diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index d782e1b09c..d121d46fa3 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -40,14 +40,14 @@ jobs: name: WeakAuras-PR${{ github.event.number }}-classic path: .release/ - - name: Create BC Package + - name: Create BCC Package uses: BigWigsMods/packager@master with: - args: -d -z -g bc -m .pkgmeta-bc + args: -d -z -g bcc -m .pkgmeta-bcc - uses: actions/upload-artifact@v2 with: - name: WeakAuras-PR${{ github.event.number }}-bc + name: WeakAuras-PR${{ github.event.number }}-bcc path: .release/ - name: Send Status to Discord diff --git a/.pkgmeta b/.pkgmeta index 14dcb355e6..fc5db721ba 100644 --- a/.pkgmeta +++ b/.pkgmeta @@ -19,7 +19,9 @@ externals: WeakAuras/Libs/LibCustomGlow-1.0: https://github.com/Stanzilla/LibCustomGlow WeakAuras/Libs/LibDBIcon-1.0: https://repos.curseforge.com/wow/libdbicon-1-0/trunk/LibDBIcon-1.0 WeakAuras/Libs/LibGetFrame-1.0: https://github.com/mrbuds/LibGetFrame - WeakAuras/Libs/Archivist: https://github.com/emptyrivers/Archivist + WeakAuras/Libs/Archivist: + url: https://github.com/emptyrivers/Archivist + tag: v1.0.8 WeakAuras/Libs/LibSerialize: url: https://github.com/rossnichols/LibSerialize tag: v1.0.0 @@ -38,7 +40,7 @@ ignore: - generate_changelog.sh - WeakAurasModelPaths/ModelPathsClassic.lua - WeakAurasTemplates/TriggerTemplatesDataClassic.lua - - WeakAurasTemplates/TriggerTemplatesDataTBC.lua + - WeakAurasTemplates/TriggerTemplatesDataBCC.lua move-folders: WeakAuras/WeakAuras: WeakAuras diff --git a/WeakAuras/AuraEnvironment.lua b/WeakAuras/AuraEnvironment.lua index c2cd9b261b..5c38f5d721 100644 --- a/WeakAuras/AuraEnvironment.lua +++ b/WeakAuras/AuraEnvironment.lua @@ -344,14 +344,12 @@ local FakeWeakAurasMixin = { GetDisplayButton = true, Import = true, NewDisplayButton = true, - NewAura = true, OpenTriggerTemplate = true, OpenCodeReview = true, PickDisplay = true, SetMoverSizer = true, SetImporting = true, SortDisplayButtons = true, - ShowOptions = true, ToggleOptions = true, UpdateDisplayButton = true, UpdateGroupOrders = true, @@ -444,7 +442,7 @@ function WeakAuras.LoadFunction(string, id, inTrigger) if function_cache[string] then return function_cache[string] else - local loadedFunction, errorString = loadstring("--[==[ Error in '" .. (id or "Unknown") .. (inTrigger and ("':'".. inTrigger) or "") .."' ]==] " .. string) + local loadedFunction, errorString = loadstring(string, "Error in: " .. (id or "Unknown") .. (inTrigger and ("':'".. inTrigger) or "")) if errorString then print(errorString) else diff --git a/WeakAuras/GenericTrigger.lua b/WeakAuras/GenericTrigger.lua index 045401b478..a71b27bd6e 100644 --- a/WeakAuras/GenericTrigger.lua +++ b/WeakAuras/GenericTrigger.lua @@ -209,11 +209,21 @@ function ConstructTest(trigger, arg) test = TestForMultiSelect(trigger, arg); elseif(arg.type == "toggle") then test = TestForToggle(trigger, arg); + elseif (arg.type == "spell") then + if arg.test then + if arg.showExactOption then + test = "("..arg.test:format(trigger[name], tostring(trigger["use_exact_" .. name]) or "false") ..")"; + else + test = "("..arg.test:format(trigger[name])..")"; + end + else + test = "(".. name .." and "..name.."==" ..(number or "\""..(trigger[name] or "").."\"")..")"; + end elseif(arg.test) then - test = "("..arg.test:format(trigger[name])..")"; + test = "("..arg.test:format(tostring(trigger[name]) or "")..")"; elseif(arg.type == "longstring" and trigger[name.."_operator"]) then test = TestForLongString(trigger, arg); - elseif (arg.type == "string" or arg.type == "select" or arg.type == "spell" or arg.type == "item") then + elseif (arg.type == "string" or arg.type == "select" or arg.type == "item") then test = "(".. name .." and "..name.."==" ..(number or "\""..(trigger[name] or "").."\"")..")"; else if(type(trigger[name]) == "table") then @@ -1418,7 +1428,7 @@ local oldPowerTriggers = { do local mh = GetInventorySlotInfo("MainHandSlot") local oh = GetInventorySlotInfo("SecondaryHandSlot") - local ranged = (WeakAuras.IsClassic() or WeakAuras.IsBC()) and GetInventorySlotInfo("RangedSlot") + local ranged = (WeakAuras.IsClassic() or WeakAuras.IsBCC()) and GetInventorySlotInfo("RangedSlot") local swingTimerFrame; local lastSwingMain, lastSwingOff, lastSwingRange; @@ -1563,12 +1573,13 @@ do end mainTimer = timer:ScheduleTimerFixed(swingEnd, mainSpeed, "main"); WeakAuras.ScanEvents(event); - elseif Private.reset_ranged_swing_spells[spell] then + end + if Private.reset_ranged_swing_spells[spell] then local event; local currentTime = GetTime(); local speed = UnitRangedDamage("player"); if(lastSwingRange) then - if WeakAuras.IsClassic() or WeakAuras.IsBC() then + if WeakAuras.IsClassic() or WeakAuras.IsBCC() then timer:CancelTimer(rangeTimer, true) else timer:CancelTimer(mainTimer, true) @@ -1579,7 +1590,7 @@ do end lastSwingRange = currentTime; swingDurationRange = speed; - if WeakAuras.IsClassic() or WeakAuras.IsBC() then + if WeakAuras.IsClassic() or WeakAuras.IsBCC() then rangeTimer = timer:ScheduleTimerFixed(swingEnd, speed, "ranged"); else mainTimer = timer:ScheduleTimerFixed(swingEnd, speed, "main"); @@ -1605,7 +1616,7 @@ do swingTimerFrame:RegisterEvent("PLAYER_ENTER_COMBAT"); swingTimerFrame:RegisterUnitEvent("UNIT_ATTACK_SPEED", "player"); swingTimerFrame:RegisterUnitEvent("UNIT_SPELLCAST_SUCCEEDED", "player"); - if WeakAuras.IsClassic() or WeakAuras.IsBC() then + if WeakAuras.IsClassic() or WeakAuras.IsBCC() then swingTimerFrame:RegisterUnitEvent("UNIT_SPELLCAST_START", "player") swingTimerFrame:RegisterUnitEvent("UNIT_SPELLCAST_INTERRUPTED", "player") swingTimerFrame:RegisterUnitEvent("UNIT_SPELLCAST_FAILED", "player") @@ -1675,7 +1686,7 @@ do local function CheckGCD() local event; local startTime, duration - if WeakAuras.IsClassic() or WeakAuras.IsBC() then + if WeakAuras.IsClassic() or WeakAuras.IsBCC() then startTime, duration = GetSpellCooldown(29515); shootStart, shootDuration = GetSpellCooldown(5019) else @@ -1758,7 +1769,7 @@ do if duration > 0 then if (startTime == gcdStart and duration == gcdDuration) - or ((WeakAuras.IsClassic() or WeakAuras.IsBC()) and duration == shootDuration and startTime == shootStart) + or ((WeakAuras.IsClassic() or WeakAuras.IsBCC()) and duration == shootDuration and startTime == shootStart) then -- GCD cooldown, this could mean that the spell reset! if self.expirationTime[id] and self.expirationTime[id] > endTime and self.expirationTime[id] ~= 0 then @@ -2538,7 +2549,7 @@ function WeakAuras.WatchUnitChange(unit) if inRaidChanged then WeakAuras.ScanEvents("UNIT_CHANGED_" .. unit, unit) else - if WeakAuras.IsClassic() or WeakAuras.IsBC() then + if WeakAuras.IsClassic() or WeakAuras.IsBCC() then local newRaidRole = WeakAuras.UnitRaidRole(unit) if watchUnitChange.unitRaidRole[unit] ~= newRaidRole then watchUnitChange.unitRaidRole[unit] = newRaidRole @@ -3110,7 +3121,7 @@ do if not(tenchFrame) then tenchFrame = CreateFrame("Frame"); tenchFrame:RegisterEvent("UNIT_INVENTORY_CHANGED"); - if WeakAuras.IsClassic() or WeakAuras.IsBC() then + if WeakAuras.IsClassic() or WeakAuras.IsBCC() then tenchFrame:RegisterEvent("PLAYER_EQUIPMENT_CHANGED"); end @@ -3469,7 +3480,7 @@ function GenericTrigger.SetToolTip(trigger, state) local lines = { strsplit("\n", state.tooltip) }; GameTooltip:ClearLines(); for i, line in ipairs(lines) do - GameTooltip:AddLine(line); + GameTooltip:AddLine(line, nil, nil, nil, state.tooltipWrap); end return true elseif (state.spellId) then @@ -3887,7 +3898,7 @@ WeakAuras.GetItemSubClassInfo = function(i) return select(subClassId, GetAuctionItemSubClasses(classId)) end -if WeakAuras.IsClassic() or WeakAuras.IsBC() then +if WeakAuras.IsClassic() or WeakAuras.IsBCC() then WeakAuras.GetCritChance = function() return max(GetRangedCritChance(), GetCritChance()) end diff --git a/WeakAuras/Init.lua b/WeakAuras/Init.lua index 89faebe9ed..fdd7575bce 100644 --- a/WeakAuras/Init.lua +++ b/WeakAuras/Init.lua @@ -27,7 +27,7 @@ function WeakAuras.IsClassic() return false end -function WeakAuras.IsBC() +function WeakAuras.IsBCC() return false end diff --git a/WeakAuras/Prototypes.lua b/WeakAuras/Prototypes.lua index eb5c7cc77c..3a47099379 100644 --- a/WeakAuras/Prototypes.lua +++ b/WeakAuras/Prototypes.lua @@ -99,7 +99,7 @@ local constants = { nameRealmFilterDesc = L[" Filter formats: 'Name', 'Name-Realm', '-Realm'. \n\nSupports multiple entries, separated by commas\n"], } -if WeakAuras.IsClassic() or WeakAuras.IsBC() then +if WeakAuras.IsClassic() or WeakAuras.IsBCC() then WeakAuras.UnitRaidRole = function(unit) local raidID = UnitInRaid(unit) if raidID then @@ -838,6 +838,14 @@ function WeakAuras.IsSpellKnownIncludingPet(spell) -- end end +function WeakAuras.CompareSpellIds(a, b, exactCheck) + if exactCheck then + return tonumber(a) == tonumber(b) + else + return GetSpellInfo(a) == GetSpellInfo(b) + end +end + function WeakAuras.UnitPowerDisplayMod(powerType) if (powerType == 7 or powerType == 14) then return 10; @@ -952,12 +960,12 @@ Private.load_prototype = { }, { name = "vehicle", - display = (WeakAuras.IsClassic() or WeakAuras.IsBC()) and L["On Taxi"] or L["In Vehicle"], + display = (WeakAuras.IsClassic() or WeakAuras.IsBCC()) and L["On Taxi"] or L["In Vehicle"], type = "tristate", init = "arg", width = WeakAuras.normalWidth, optional = true, - events = (WeakAuras.IsClassic() or WeakAuras.IsBC()) and {"UNIT_FLAGS"} + events = (WeakAuras.IsClassic() or WeakAuras.IsBCC()) and {"UNIT_FLAGS"} or {"VEHICLE_UPDATE", "UNIT_ENTERED_VEHICLE", "UNIT_EXITED_VEHICLE", "UPDATE_OVERRIDE_ACTIONBAR", "UNIT_FLAGS"} }, { @@ -1327,6 +1335,20 @@ local function AddUnitRoleChangeInternalEvents(triggerUnit, t) end end +local function AddRemainingCastInternalEvents(triggerUnit, t) + if (triggerUnit == nil) then + return + end + + if Private.multiUnitUnits[triggerUnit] then + for unit in pairs(Private.multiUnitUnits[triggerUnit]) do + tinsert(t, "CAST_REMAINING_CHECK_" .. string.lower(unit)) + end + else + tinsert(t, "CAST_REMAINING_CHECK_" .. string.lower(triggerUnit)) + end +end + local function AddUnitEventForEvents(result, unit, event) if unit then if not result.unit_events then @@ -3234,7 +3256,7 @@ Private.event_prototypes = { local stacks = maxCharges and maxCharges ~= 1 and charges or (spellCount and spellCount > 0 and spellCount) or nil; if (charges == nil) then -- Use fake charges for spells that use GetSpellCooldown - charges = (duration == 0) and 1 or 0; + charges = (duration == 0 or gcdCooldown) and 1 or 0; end local genericShowOn = %s local expirationTime = startTime and duration and startTime + duration @@ -4811,10 +4833,10 @@ Private.event_prototypes = { trigger.realSpellName = spellName; -- Cache local ret = [=[ local spellName = %s - local startTime, duration, _, readyTime = WeakAuras.GetSpellCooldown(spellName); + local startTime, duration, gcdCooldown, readyTime = WeakAuras.GetSpellCooldown(spellName); local charges, _, spellCount, chargeGainTime, chargeLostTime = WeakAuras.GetSpellCharges(spellName); if (charges == nil) then - charges = (duration == 0) and 1 or 0; + charges = (duration == 0 or gcdCooldown) and 1 or 0; end local ready = startTime == 0 or charges > 0 local active = IsUsableSpell(spellName) and ready @@ -6097,7 +6119,7 @@ Private.event_prototypes = { return L["Set IDs can be found on websites such as wowhead.com/item-sets"] elseif WeakAuras.IsClassic() then return L["Set IDs can be found on websites such as classic.wowhead.com/item-sets"] - elseif WeakAuras.IsBC() then + elseif WeakAuras.IsBCC() then return L["Set IDs can be found on websites such as tbc.wowhead.com/item-sets"] end end @@ -6484,12 +6506,13 @@ Private.event_prototypes = { end, internal_events = function(trigger) local unit = trigger.unit - local result = {"CAST_REMAINING_CHECK_" .. string.lower(unit)} + local result = {} if WeakAuras.IsClassic() and unit ~= "player" then tinsert(result, "UNIT_SPELLCAST_START") tinsert(result, "UNIT_SPELLCAST_DELAYED") tinsert(result, "UNIT_SPELLCAST_CHANNEL_START") end + AddRemainingCastInternalEvents(unit, result) AddUnitChangeInternalEvents(unit, result) AddUnitRoleChangeInternalEvents(unit, result) return result @@ -6585,8 +6608,8 @@ Private.event_prototypes = { type = "spell", enable = function(trigger) return not trigger.use_inverse end, conditionType = "number", - forceExactOption = true, - test = "GetSpellInfo(%s) == spell", + showExactOption = true, + test = "WeakAuras.CompareSpellIds(spellId, %s, %s)", store = true, }, { @@ -6602,10 +6625,10 @@ Private.event_prototypes = { name = "interruptible", display = L["Interruptible"], type = "tristate", - enable = function(trigger) return not WeakAuras.IsBC() and not trigger.use_inverse end, + enable = function(trigger) return not WeakAuras.IsBCC() and not trigger.use_inverse end, store = true, conditionType = "bool", - hidden = WeakAuras.IsBC() + hidden = WeakAuras.IsBCC() }, { name = "remaining", @@ -7008,7 +7031,7 @@ Private.event_prototypes = { type = "number", init = "select(2, UnitResistance('player', 1))", store = true, - enable = WeakAuras.IsClassic() or WeakAuras.IsBC(), + enable = WeakAuras.IsClassic() or WeakAuras.IsBCC(), conditionType = "number", hidden = WeakAuras.IsRetail() }, @@ -7018,7 +7041,7 @@ Private.event_prototypes = { type = "number", init = "select(2, UnitResistance('player', 2))", store = true, - enable = WeakAuras.IsClassic() or WeakAuras.IsBC(), + enable = WeakAuras.IsClassic() or WeakAuras.IsBCC(), conditionType = "number", hidden = WeakAuras.IsRetail() }, @@ -7028,7 +7051,7 @@ Private.event_prototypes = { type = "number", init = "select(2, UnitResistance('player', 3))", store = true, - enable = WeakAuras.IsClassic() or WeakAuras.IsBC(), + enable = WeakAuras.IsClassic() or WeakAuras.IsBCC(), conditionType = "number", hidden = WeakAuras.IsRetail() }, @@ -7038,7 +7061,7 @@ Private.event_prototypes = { type = "number", init = "select(2, UnitResistance('player', 4))", store = true, - enable = WeakAuras.IsClassic() or WeakAuras.IsBC(), + enable = WeakAuras.IsClassic() or WeakAuras.IsBCC(), conditionType = "number", hidden = WeakAuras.IsRetail() }, @@ -7048,7 +7071,7 @@ Private.event_prototypes = { type = "number", init = "select(2, UnitResistance('player', 5))", store = true, - enable = WeakAuras.IsClassic() or WeakAuras.IsBC(), + enable = WeakAuras.IsClassic() or WeakAuras.IsBCC(), conditionType = "number", hidden = WeakAuras.IsRetail() }, @@ -7058,7 +7081,7 @@ Private.event_prototypes = { type = "number", init = "select(2, UnitResistance('player', 6))", store = true, - enable = WeakAuras.IsClassic() or WeakAuras.IsBC(), + enable = WeakAuras.IsClassic() or WeakAuras.IsBCC(), conditionType = "number", hidden = WeakAuras.IsRetail() }, @@ -7232,7 +7255,7 @@ Private.event_prototypes = { local unit_events = {} local pet_unit_events = {} if trigger.use_vehicle ~= nil then - if WeakAuras.IsClassic() or WeakAuras.IsBC() then + if WeakAuras.IsClassic() or WeakAuras.IsBCC() then tinsert(unit_events, "UNIT_FLAGS") else tinsert(unit_events, "UNIT_ENTERED_VEHICLE") @@ -7684,7 +7707,7 @@ Private.event_prototypes = { }; Private.event_prototypes["Item Set"] = nil -if WeakAuras.IsClassic() then +if WeakAuras.IsClassic() or WeakAuras.IsBCC() then if not UnitDetailedThreatSituation then Private.event_prototypes["Threat Situation"] = nil end diff --git a/WeakAuras/RegionTypes/RegionPrototype.lua b/WeakAuras/RegionTypes/RegionPrototype.lua index 40df1d814b..4059c705ff 100644 --- a/WeakAuras/RegionTypes/RegionPrototype.lua +++ b/WeakAuras/RegionTypes/RegionPrototype.lua @@ -450,7 +450,7 @@ local function TimerTickForRegion(region) end local function UpdateTimerTick(self) - if self.triggerProvidesTimer and self.regionHasTimer then + if self.triggerProvidesTimer and self.regionHasTimer and self.toShow then if not self:GetScript("OnUpdate") then self:SetScript("OnUpdate", function() TimerTickForRegion(self) @@ -807,6 +807,7 @@ function WeakAuras.regionPrototype.AddExpandFunction(data, region, cloneId, pare end UnRegisterForFrameTick(region) + region:UpdateTimerTick() end function region:Expand() if (region.toShow) then @@ -852,6 +853,7 @@ function WeakAuras.regionPrototype.AddExpandFunction(data, region, cloneId, pare end UnRegisterForFrameTick(region) + region:UpdateTimerTick() end function region:Expand() if data.anchorFrameType == "SELECTFRAME" diff --git a/WeakAuras/Transmission.lua b/WeakAuras/Transmission.lua index 6976128738..6b0fbc22e8 100644 --- a/WeakAuras/Transmission.lua +++ b/WeakAuras/Transmission.lua @@ -231,6 +231,15 @@ showCodeButton:SetPoint("BOTTOMLEFT", 8, 8) showCodeButton:SetText(L["Show Code"]) showCodeButton:SetWidth(90) +local urlEditBox = CreateFrame("EDITBOX", "WeakAurasTooltipUrlEditBox", buttonAnchor) +urlEditBox:SetWidth(250) +urlEditBox:SetHeight(34) +urlEditBox:SetFont(STANDARD_TEXT_FONT, 12) +urlEditBox:SetPoint("TOPLEFT", 8, -57) +urlEditBox:SetScript("OnMouseUp", function() urlEditBox:HighlightText() end) +urlEditBox:SetScript("OnChar", function() urlEditBox:SetText(urlEditBox.text) urlEditBox:HighlightText() end) +urlEditBox:SetAutoFocus(false) + local checkButtons, radioButtons, keyToButton, pendingData = {}, {}, {}, {} for _, key in pairs(Private.internal_fields) do @@ -845,6 +854,15 @@ function Private.RefreshTooltipButtons() else showCodeButton:Show() end + urlEditBox:Enable() + if pendingData.url then + urlEditBox:Show() + urlEditBox.text = pendingData.url + urlEditBox:SetText(pendingData.url) + urlEditBox:HighlightText(0, 0) + else + urlEditBox:Hide() + end if InCombatLockdown() then importButton:SetText(L["In Combat"]) importButton.tooltipText = L["Importing is disabled while in combat"] @@ -1457,6 +1475,7 @@ local function ShowDisplayTooltip(data, children, matchInfo, icon, icons, import local highestVersion = data.internalVersion or 1; local hasDescription = data.desc and data.desc ~= ""; local hasUrl = data.url and data.url ~= ""; + pendingData.url = hasUrl and data.url local hasVersion = (data.semver and data.semver ~= "") or (data.version and data.version ~= ""); local tocversion = data.tocversion; @@ -1464,12 +1483,12 @@ local function ShowDisplayTooltip(data, children, matchInfo, icon, icons, import tinsert(tooltip, {1, " "}); end - if hasDescription then - tinsert(tooltip, {1, "\""..data.desc.."\"", 1, 0.82, 0, 1}); + if hasUrl then + tinsert(tooltip, {1, " "}); end - if hasUrl then - tinsert(tooltip, {1, L["Source: "] .. data.url, 1, 0.82, 0, 1}); + if hasDescription then + tinsert(tooltip, {1, "\""..data.desc.."\"", 1, 0.82, 0, 1}); end if hasVersion then diff --git a/WeakAuras/Types.lua b/WeakAuras/Types.lua index cf63510596..cdc5c0ee3b 100644 --- a/WeakAuras/Types.lua +++ b/WeakAuras/Types.lua @@ -1274,7 +1274,7 @@ if WeakAuras.IsRetail() then tier = 1 end else - for tab = 1, GetNumTalentTabs() do + for tab = 1, GetNumSpecializations() do for num_talent = 1, GetNumTalents(tab) do local talentId = (tab - 1) * MAX_NUM_TALENTS + num_talent Private.talent_types[talentId] = L["Tab "]..tab.." - "..num_talent @@ -1879,7 +1879,7 @@ Private.swing_types = { ["off"] = SECONDARYHANDSLOT } -if WeakAuras.IsClassic() or WeakAuras.IsBC() then +if WeakAuras.IsClassic() or WeakAuras.IsBCC() then Private.swing_types["ranged"] = RANGEDSLOT end @@ -3004,6 +3004,8 @@ Private.noreset_swing_spells = { [35475] = true, -- Drums of War [35477] = true, -- Drums of Speed [35478] = true, -- Drums of Restoration + [34120] = true, -- Steady Shot (rank 1) + [19434] = true, -- Aimed Shot (rank 1) --35474 Drums of Panic DO reset the swing timer, do not add } diff --git a/WeakAuras/WeakAuras.lua b/WeakAuras/WeakAuras.lua index 5d1971fb69..7de725090d 100644 --- a/WeakAuras/WeakAuras.lua +++ b/WeakAuras/WeakAuras.lua @@ -772,11 +772,7 @@ function WeakAuras.CountWagoUpdates() end if slug and version then local wago = CompanionData.slugs and CompanionData.slugs[slug] - if wago and wago.wagoVersion - and tonumber(wago.wagoVersion) > ( - aura.skipWagoUpdate and tonumber(aura.skipWagoUpdate) or tonumber(version) - ) - then + if wago and wago.wagoVersion and tonumber(wago.wagoVersion) > tonumber(version) then if not updatedSlugs[slug] then updatedSlugs[slug] = true updatedSlugsCount = updatedSlugsCount + 1 @@ -1365,7 +1361,7 @@ local function scanForLoadsImpl(toCheck, event, arg1, ...) local inEncounter = encounter_id ~= 0; local alive = not UnitIsDeadOrGhost('player') - if WeakAuras.IsClassic() or WeakAuras.IsBC() then + if WeakAuras.IsClassic() or WeakAuras.IsBCC() then -- local raidID = UnitInRaid("player") -- if raidID then -- raidRole = select(10, GetRaidRosterInfo(raidID)) @@ -2620,6 +2616,9 @@ local function pAdd(data, simpleChange) if simpleChange then db.displays[id] = data WeakAuras.SetRegion(data) + for cloneId, region in pairs(clones[id]) do + WeakAuras.SetRegion(data, cloneId) + end Private.UpdatedTriggerState(id) else if (data.controlledChildren) then diff --git a/WeakAurasModelPaths/ModelPathsClassic.lua b/WeakAurasModelPaths/ModelPathsClassic.lua index 957a0db2b5..c09e918587 100644 --- a/WeakAurasModelPaths/ModelPathsClassic.lua +++ b/WeakAurasModelPaths/ModelPathsClassic.lua @@ -1,84 +1,101 @@ WeakAuras.ModelPaths = { { value = "cameras", + text = "cameras", children = { { value = "flybydwarf.m2", + text = "flybydwarf.m2", fileId = "116904", text = "flybydwarf.m2", }, { value = "flybygnome.m2", + text = "flybygnome.m2", fileId = "116905", text = "flybygnome.m2", }, { value = "flybyhuman.m2", + text = "flybyhuman.m2", fileId = "116906", text = "flybyhuman.m2", }, { value = "flybynightelf.m2", + text = "flybynightelf.m2", fileId = "116907", text = "flybynightelf.m2", }, { value = "flybyorc.m2", + text = "flybyorc.m2", fileId = "116908", text = "flybyorc.m2", }, { value = "flybytauren.m2", + text = "flybytauren.m2", fileId = "116910", text = "flybytauren.m2", }, { value = "flybytroll.m2", + text = "flybytroll.m2", fileId = "116911", text = "flybytroll.m2", }, { value = "flybyundead.m2", + text = "flybyundead.m2", fileId = "116912", text = "flybyundead.m2", }, { value = "orcintro01.m2", + text = "orcintro01.m2", fileId = "116913", text = "orcintro01.m2", }, { value = "orcintro02.m2", + text = "orcintro02.m2", fileId = "116914", text = "orcintro02.m2", }, { value = "orcintro03.m2", + text = "orcintro03.m2", fileId = "116915", text = "orcintro03.m2", }, { value = "orcintro04.m2", + text = "orcintro04.m2", fileId = "116916", text = "orcintro04.m2", }, { value = "orcintro05.m2", + text = "orcintro05.m2", fileId = "116917", text = "orcintro05.m2", }, { value = "orcintro06.m2", + text = "orcintro06.m2", fileId = "116918", text = "orcintro06.m2", }, { value = "palantirofazora.m2", + text = "palantirofazora.m2", fileId = "116919", text = "palantirofazora.m2", }, { value = "scry_cam.m2", + text = "scry_cam.m2", fileId = "116920", text = "scry_cam.m2", }, @@ -87,15 +104,19 @@ WeakAuras.ModelPaths = { }, { value = "character", + text = "character", children = { { value = "dwarf", + text = "dwarf", children = { { value = "female", + text = "female", children = { { value = "dwarffemale.m2", + text = "dwarffemale.m2", fileId = "118135", text = "dwarffemale.m2", }, @@ -104,9 +125,11 @@ WeakAuras.ModelPaths = { }, { value = "male", + text = "male", children = { { value = "dwarfmale.m2", + text = "dwarfmale.m2", fileId = "118355", text = "dwarfmale.m2", }, @@ -118,12 +141,15 @@ WeakAuras.ModelPaths = { }, { value = "gnome", + text = "gnome", children = { { value = "female", + text = "female", children = { { value = "gnomefemale.m2", + text = "gnomefemale.m2", fileId = "119063", text = "gnomefemale.m2", }, @@ -132,9 +158,11 @@ WeakAuras.ModelPaths = { }, { value = "male", + text = "male", children = { { value = "gnomemale.m2", + text = "gnomemale.m2", fileId = "119159", text = "gnomemale.m2", }, @@ -146,12 +174,15 @@ WeakAuras.ModelPaths = { }, { value = "goblin", + text = "goblin", children = { { value = "female", + text = "female", children = { { value = "goblinfemale.m2", + text = "goblinfemale.m2", fileId = "119369", text = "goblinfemale.m2", }, @@ -160,9 +191,11 @@ WeakAuras.ModelPaths = { }, { value = "male", + text = "male", children = { { value = "goblinmale.m2", + text = "goblinmale.m2", fileId = "119376", text = "goblinmale.m2", }, @@ -174,12 +207,15 @@ WeakAuras.ModelPaths = { }, { value = "human", + text = "human", children = { { value = "female", + text = "female", children = { { value = "humanfemale.m2", + text = "humanfemale.m2", fileId = "119563", text = "humanfemale.m2", }, @@ -188,9 +224,11 @@ WeakAuras.ModelPaths = { }, { value = "male", + text = "male", children = { { value = "humanmale.m2", + text = "humanmale.m2", fileId = "119940", text = "humanmale.m2", }, @@ -202,12 +240,15 @@ WeakAuras.ModelPaths = { }, { value = "nightelf", + text = "nightelf", children = { { value = "female", + text = "female", children = { { value = "nightelffemale.m2", + text = "nightelffemale.m2", fileId = "120590", text = "nightelffemale.m2", }, @@ -216,9 +257,11 @@ WeakAuras.ModelPaths = { }, { value = "male", + text = "male", children = { { value = "nightelfmale.m2", + text = "nightelfmale.m2", fileId = "120791", text = "nightelfmale.m2", }, @@ -230,12 +273,15 @@ WeakAuras.ModelPaths = { }, { value = "orc", + text = "orc", children = { { value = "female", + text = "female", children = { { value = "orcfemale.m2", + text = "orcfemale.m2", fileId = "121087", text = "orcfemale.m2", }, @@ -244,9 +290,11 @@ WeakAuras.ModelPaths = { }, { value = "male", + text = "male", children = { { value = "orcmale.m2", + text = "orcmale.m2", fileId = "121287", text = "orcmale.m2", }, @@ -258,12 +306,15 @@ WeakAuras.ModelPaths = { }, { value = "scourge", + text = "scourge", children = { { value = "female", + text = "female", children = { { value = "scourgefemale.m2", + text = "scourgefemale.m2", fileId = "121608", text = "scourgefemale.m2", }, @@ -272,9 +323,11 @@ WeakAuras.ModelPaths = { }, { value = "male", + text = "male", children = { { value = "scourgemale.m2", + text = "scourgemale.m2", fileId = "121768", text = "scourgemale.m2", }, @@ -286,12 +339,15 @@ WeakAuras.ModelPaths = { }, { value = "tauren", + text = "tauren", children = { { value = "female", + text = "female", children = { { value = "taurenfemale.m2", + text = "taurenfemale.m2", fileId = "121961", text = "taurenfemale.m2", }, @@ -300,9 +356,11 @@ WeakAuras.ModelPaths = { }, { value = "male", + text = "male", children = { { value = "taurenmale.m2", + text = "taurenmale.m2", fileId = "122055", text = "taurenmale.m2", }, @@ -314,12 +372,15 @@ WeakAuras.ModelPaths = { }, { value = "troll", + text = "troll", children = { { value = "female", + text = "female", children = { { value = "trollfemale.m2", + text = "trollfemale.m2", fileId = "122414", text = "trollfemale.m2", }, @@ -328,9 +389,11 @@ WeakAuras.ModelPaths = { }, { value = "male", + text = "male", children = { { value = "trollmale.m2", + text = "trollmale.m2", fileId = "122560", text = "trollmale.m2", }, @@ -345,12 +408,15 @@ WeakAuras.ModelPaths = { }, { value = "creature", + text = "creature", children = { { value = "airelemental", + text = "airelemental", children = { { value = "airelemental.m2", + text = "airelemental.m2", fileId = "122877", text = "airelemental.m2", }, @@ -359,9 +425,11 @@ WeakAuras.ModelPaths = { }, { value = "alliancerider", + text = "alliancerider", children = { { value = "alliancerider.m2", + text = "alliancerider.m2", fileId = "122886", text = "alliancerider.m2", }, @@ -370,9 +438,11 @@ WeakAuras.ModelPaths = { }, { value = "ancientoflore", + text = "ancientoflore", children = { { value = "ancientoflore.m2", + text = "ancientoflore.m2", fileId = "122893", text = "ancientoflore.m2", }, @@ -381,9 +451,11 @@ WeakAuras.ModelPaths = { }, { value = "ancientofwar", + text = "ancientofwar", children = { { value = "ancientofwar.m2", + text = "ancientofwar.m2", fileId = "122895", text = "ancientofwar.m2", }, @@ -392,9 +464,11 @@ WeakAuras.ModelPaths = { }, { value = "ancientprotector", + text = "ancientprotector", children = { { value = "ancientprotector.m2", + text = "ancientprotector.m2", fileId = "122899", text = "ancientprotector.m2", }, @@ -403,9 +477,11 @@ WeakAuras.ModelPaths = { }, { value = "anubisath", + text = "anubisath", children = { { value = "anubisath.m2", + text = "anubisath.m2", fileId = "122906", text = "anubisath.m2", }, @@ -414,9 +490,11 @@ WeakAuras.ModelPaths = { }, { value = "banshee", + text = "banshee", children = { { value = "banshee.m2", + text = "banshee.m2", fileId = "123014", text = "banshee.m2", }, @@ -425,9 +503,11 @@ WeakAuras.ModelPaths = { }, { value = "basilisk", + text = "basilisk", children = { { value = "basilisk.m2", + text = "basilisk.m2", fileId = "123020", text = "basilisk.m2", }, @@ -436,14 +516,17 @@ WeakAuras.ModelPaths = { }, { value = "bear", + text = "bear", children = { { value = "bear.m2", + text = "bear.m2", fileId = "123040", text = "bear.m2", }, { value = "polarbearcub.m2", + text = "polarbearcub.m2", fileId = "123051", text = "polarbearcub.m2", }, @@ -452,9 +535,11 @@ WeakAuras.ModelPaths = { }, { value = "bearcub", + text = "bearcub", children = { { value = "bearcub.m2", + text = "bearcub.m2", fileId = "123053", text = "bearcub.m2", }, @@ -463,9 +548,11 @@ WeakAuras.ModelPaths = { }, { value = "boar", + text = "boar", children = { { value = "boar.m2", + text = "boar.m2", fileId = "123090", text = "boar.m2", }, @@ -474,9 +561,11 @@ WeakAuras.ModelPaths = { }, { value = "bodyofkathune", + text = "bodyofkathune", children = { { value = "bodyofkathune.m2", + text = "bodyofkathune.m2", fileId = "123101", text = "bodyofkathune.m2", }, @@ -485,9 +574,11 @@ WeakAuras.ModelPaths = { }, { value = "bogbeast", + text = "bogbeast", children = { { value = "bogbeast.m2", + text = "bogbeast.m2", fileId = "123105", text = "bogbeast.m2", }, @@ -496,9 +587,11 @@ WeakAuras.ModelPaths = { }, { value = "bonegolem", + text = "bonegolem", children = { { value = "bonegolem.m2", + text = "bonegolem.m2", fileId = "123120", text = "bonegolem.m2", }, @@ -507,9 +600,11 @@ WeakAuras.ModelPaths = { }, { value = "carrionbird", + text = "carrionbird", children = { { value = "carrionbird.m2", + text = "carrionbird.m2", fileId = "123137", text = "carrionbird.m2", }, @@ -518,9 +613,11 @@ WeakAuras.ModelPaths = { }, { value = "cat", + text = "cat", children = { { value = "cat.m2", + text = "cat.m2", fileId = "123162", text = "cat.m2", }, @@ -529,24 +626,29 @@ WeakAuras.ModelPaths = { }, { value = "centaur", + text = "centaur", children = { { value = "centaur.m2", + text = "centaur.m2", fileId = "123170", text = "centaur.m2", }, { value = "centaurcaster.m2", + text = "centaurcaster.m2", fileId = "123171", text = "centaurcaster.m2", }, { value = "centaurkhan.m2", + text = "centaurkhan.m2", fileId = "123182", text = "centaurkhan.m2", }, { value = "centaurwarrior.m2", + text = "centaurwarrior.m2", fileId = "123194", text = "centaurwarrior.m2", }, @@ -555,9 +657,11 @@ WeakAuras.ModelPaths = { }, { value = "chicken", + text = "chicken", children = { { value = "chicken.m2", + text = "chicken.m2", fileId = "123200", text = "chicken.m2", }, @@ -566,9 +670,11 @@ WeakAuras.ModelPaths = { }, { value = "chimera", + text = "chimera", children = { { value = "chimera.m2", + text = "chimera.m2", fileId = "123205", text = "chimera.m2", }, @@ -577,9 +683,11 @@ WeakAuras.ModelPaths = { }, { value = "chinesedragon", + text = "chinesedragon", children = { { value = "chinesedragon.m2", + text = "chinesedragon.m2", fileId = "123225", text = "chinesedragon.m2", }, @@ -588,9 +696,11 @@ WeakAuras.ModelPaths = { }, { value = "clawofkathune", + text = "clawofkathune", children = { { value = "clawofkathune.m2", + text = "clawofkathune.m2", fileId = "123235", text = "clawofkathune.m2", }, @@ -599,19 +709,23 @@ WeakAuras.ModelPaths = { }, { value = "cloud", + text = "cloud", children = { { value = "cloudfire.m2", + text = "cloudfire.m2", fileId = "2199326", text = "cloudfire.m2", }, { value = "cloudradioactive.m2", + text = "cloudradioactive.m2", fileId = "2199576", text = "cloudradioactive.m2", }, { value = "cloudswampgas.m2", + text = "cloudswampgas.m2", fileId = "123265", text = "cloudswampgas.m2", }, @@ -620,9 +734,11 @@ WeakAuras.ModelPaths = { }, { value = "cockroach", + text = "cockroach", children = { { value = "cockroach.m2", + text = "cockroach.m2", fileId = "123284", text = "cockroach.m2", }, @@ -631,9 +747,11 @@ WeakAuras.ModelPaths = { }, { value = "cocoon", + text = "cocoon", children = { { value = "cocoon.m2", + text = "cocoon.m2", fileId = "123285", text = "cocoon.m2", }, @@ -642,9 +760,11 @@ WeakAuras.ModelPaths = { }, { value = "cow", + text = "cow", children = { { value = "cow.m2", + text = "cow.m2", fileId = "123288", text = "cow.m2", }, @@ -653,9 +773,11 @@ WeakAuras.ModelPaths = { }, { value = "crab", + text = "crab", children = { { value = "crab.m2", + text = "crab.m2", fileId = "123291", text = "crab.m2", }, @@ -664,9 +786,11 @@ WeakAuras.ModelPaths = { }, { value = "cratecreature", + text = "cratecreature", children = { { value = "cratecreature.m2", + text = "cratecreature.m2", fileId = "123304", text = "cratecreature.m2", }, @@ -675,9 +799,11 @@ WeakAuras.ModelPaths = { }, { value = "crocodile", + text = "crocodile", children = { { value = "crocodile.m2", + text = "crocodile.m2", fileId = "123324", text = "crocodile.m2", }, @@ -686,9 +812,11 @@ WeakAuras.ModelPaths = { }, { value = "cryptfiend", + text = "cryptfiend", children = { { value = "cryptfiend.m2", + text = "cryptfiend.m2", fileId = "123329", text = "cryptfiend.m2", }, @@ -697,14 +825,17 @@ WeakAuras.ModelPaths = { }, { value = "cryptlord", + text = "cryptlord", children = { { value = "cryptlord.m2", + text = "cryptlord.m2", fileId = "123335", text = "cryptlord.m2", }, { value = "cryptlord_underground.m2", + text = "cryptlord_underground.m2", fileId = "123337", text = "cryptlord_underground.m2", }, @@ -713,9 +844,11 @@ WeakAuras.ModelPaths = { }, { value = "cryptscarab", + text = "cryptscarab", children = { { value = "crypt_scarab.m2", + text = "crypt_scarab.m2", fileId = "123343", text = "crypt_scarab.m2", }, @@ -724,9 +857,11 @@ WeakAuras.ModelPaths = { }, { value = "crystalportal", + text = "crystalportal", children = { { value = "crystalportal.m2", + text = "crystalportal.m2", fileId = "123344", text = "crystalportal.m2", }, @@ -735,9 +870,11 @@ WeakAuras.ModelPaths = { }, { value = "cupid", + text = "cupid", children = { { value = "cupid.m2", + text = "cupid.m2", fileId = "123345", text = "cupid.m2", }, @@ -746,9 +883,11 @@ WeakAuras.ModelPaths = { }, { value = "darkhound", + text = "darkhound", children = { { value = "darkhound.m2", + text = "darkhound.m2", fileId = "123348", text = "darkhound.m2", }, @@ -757,9 +896,11 @@ WeakAuras.ModelPaths = { }, { value = "deer", + text = "deer", children = { { value = "deer.m2", + text = "deer.m2", fileId = "123362", text = "deer.m2", }, @@ -768,9 +909,11 @@ WeakAuras.ModelPaths = { }, { value = "demonhunter", + text = "demonhunter", children = { { value = "demonhunter.m2", + text = "demonhunter.m2", fileId = "123372", text = "demonhunter.m2", }, @@ -779,9 +922,11 @@ WeakAuras.ModelPaths = { }, { value = "diablo", + text = "diablo", children = { { value = "diablofunsized.m2", + text = "diablofunsized.m2", fileId = "123375", text = "diablofunsized.m2", }, @@ -790,9 +935,11 @@ WeakAuras.ModelPaths = { }, { value = "diemetradon", + text = "diemetradon", children = { { value = "diemetradon.m2", + text = "diemetradon.m2", fileId = "123377", text = "diemetradon.m2", }, @@ -801,19 +948,23 @@ WeakAuras.ModelPaths = { }, { value = "direwolf", + text = "direwolf", children = { { value = "direwolf.m2", + text = "direwolf.m2", fileId = "123388", text = "direwolf.m2", }, { value = "pvpridingdirewolf.m2", + text = "pvpridingdirewolf.m2", fileId = "123410", text = "pvpridingdirewolf.m2", }, { value = "ridingdirewolf.m2", + text = "ridingdirewolf.m2", fileId = "123418", text = "ridingdirewolf.m2", }, @@ -822,9 +973,11 @@ WeakAuras.ModelPaths = { }, { value = "doomguard", + text = "doomguard", children = { { value = "doomguard.m2", + text = "doomguard.m2", fileId = "123441", text = "doomguard.m2", }, @@ -833,34 +986,41 @@ WeakAuras.ModelPaths = { }, { value = "dragon", + text = "dragon", children = { { value = "dragon.m2", + text = "dragon.m2", fileId = "123459", text = "dragon.m2", }, { value = "dragonazurgoz.m2", + text = "dragonazurgoz.m2", fileId = "123460", text = "dragonazurgoz.m2", }, { value = "dragonnefarian.m2", + text = "dragonnefarian.m2", fileId = "123461", text = "dragonnefarian.m2", }, { value = "dragononyxia.m2", + text = "dragononyxia.m2", fileId = "123465", text = "dragononyxia.m2", }, { value = "lethon.m2", + text = "lethon.m2", fileId = "123496", text = "lethon.m2", }, { value = "taerar.m2", + text = "taerar.m2", fileId = "123498", text = "taerar.m2", }, @@ -869,9 +1029,11 @@ WeakAuras.ModelPaths = { }, { value = "dragonfootsoldier", + text = "dragonfootsoldier", children = { { value = "dragonfootsoldier.m2", + text = "dragonfootsoldier.m2", fileId = "123507", text = "dragonfootsoldier.m2", }, @@ -880,24 +1042,29 @@ WeakAuras.ModelPaths = { }, { value = "dragonspawn", + text = "dragonspawn", children = { { value = "dragonspawn.m2", + text = "dragonspawn.m2", fileId = "123543", text = "dragonspawn.m2", }, { value = "dragonspawnarmored.m2", + text = "dragonspawnarmored.m2", fileId = "123544", text = "dragonspawnarmored.m2", }, { value = "dragonspawngreater.m2", + text = "dragonspawngreater.m2", fileId = "123553", text = "dragonspawngreater.m2", }, { value = "dragonspawnoverlord.m2", + text = "dragonspawnoverlord.m2", fileId = "123554", text = "dragonspawnoverlord.m2", }, @@ -906,9 +1073,11 @@ WeakAuras.ModelPaths = { }, { value = "dragonspawncaster", + text = "dragonspawncaster", children = { { value = "dragonspawncaster.m2", + text = "dragonspawncaster.m2", fileId = "123577", text = "dragonspawncaster.m2", }, @@ -917,9 +1086,11 @@ WeakAuras.ModelPaths = { }, { value = "dragonwhelp", + text = "dragonwhelp", children = { { value = "dragonwhelp.m2", + text = "dragonwhelp.m2", fileId = "123610", text = "dragonwhelp.m2", }, @@ -928,14 +1099,17 @@ WeakAuras.ModelPaths = { }, { value = "drake", + text = "drake", children = { { value = "drake.m2", + text = "drake.m2", fileId = "123636", text = "drake.m2", }, { value = "orcdrakerider.m2", + text = "orcdrakerider.m2", fileId = "123661", text = "orcdrakerider.m2", }, @@ -944,9 +1118,11 @@ WeakAuras.ModelPaths = { }, { value = "drakeadon", + text = "drakeadon", children = { { value = "drakeadon.m2", + text = "drakeadon.m2", fileId = "123664", text = "drakeadon.m2", }, @@ -955,9 +1131,11 @@ WeakAuras.ModelPaths = { }, { value = "dreadlord", + text = "dreadlord", children = { { value = "dreadlord.m2", + text = "dreadlord.m2", fileId = "123673", text = "dreadlord.m2", }, @@ -966,14 +1144,17 @@ WeakAuras.ModelPaths = { }, { value = "druidbear", + text = "druidbear", children = { { value = "druidbear.m2", + text = "druidbear.m2", fileId = "123678", text = "druidbear.m2", }, { value = "druidbeartauren.m2", + text = "druidbeartauren.m2", fileId = "123680", text = "druidbeartauren.m2", }, @@ -982,9 +1163,11 @@ WeakAuras.ModelPaths = { }, { value = "druidcat", + text = "druidcat", children = { { value = "druidcat.m2", + text = "druidcat.m2", fileId = "123682", text = "druidcat.m2", }, @@ -993,9 +1176,11 @@ WeakAuras.ModelPaths = { }, { value = "druidcattauren", + text = "druidcattauren", children = { { value = "druidcattauren.m2", + text = "druidcattauren.m2", fileId = "123688", text = "druidcattauren.m2", }, @@ -1004,14 +1189,17 @@ WeakAuras.ModelPaths = { }, { value = "druidowlbear", + text = "druidowlbear", children = { { value = "druidowlbear.m2", + text = "druidowlbear.m2", fileId = "123690", text = "druidowlbear.m2", }, { value = "druidowlbeartauren.m2", + text = "druidowlbeartauren.m2", fileId = "123695", text = "druidowlbeartauren.m2", }, @@ -1020,9 +1208,11 @@ WeakAuras.ModelPaths = { }, { value = "dryad", + text = "dryad", children = { { value = "dryad.m2", + text = "dryad.m2", fileId = "123698", text = "dryad.m2", }, @@ -1031,9 +1221,11 @@ WeakAuras.ModelPaths = { }, { value = "dryder", + text = "dryder", children = { { value = "dryder.m2", + text = "dryder.m2", fileId = "123705", text = "dryder.m2", }, @@ -1042,14 +1234,17 @@ WeakAuras.ModelPaths = { }, { value = "dwarfmalewarriorlight", + text = "dwarfmalewarriorlight", children = { { value = "dwarfmalewarriorlight.m2", + text = "dwarfmalewarriorlight.m2", fileId = "123708", text = "dwarfmalewarriorlight.m2", }, { value = "dwarfmalewarriorlight_ghost.m2", + text = "dwarfmalewarriorlight_ghost.m2", fileId = "123709", text = "dwarfmalewarriorlight_ghost.m2", }, @@ -1058,9 +1253,11 @@ WeakAuras.ModelPaths = { }, { value = "egg", + text = "egg", children = { { value = "eggcreature.m2", + text = "eggcreature.m2", fileId = "123722", text = "eggcreature.m2", }, @@ -1069,9 +1266,11 @@ WeakAuras.ModelPaths = { }, { value = "elementalearth", + text = "elementalearth", children = { { value = "elementalearth.m2", + text = "elementalearth.m2", fileId = "123747", text = "elementalearth.m2", }, @@ -1080,9 +1279,11 @@ WeakAuras.ModelPaths = { }, { value = "elementalpoison", + text = "elementalpoison", children = { { value = "poisonelemental.m2", + text = "poisonelemental.m2", fileId = "2199352", text = "poisonelemental.m2", }, @@ -1091,9 +1292,11 @@ WeakAuras.ModelPaths = { }, { value = "ent", + text = "ent", children = { { value = "ent.m2", + text = "ent.m2", fileId = "123756", text = "ent.m2", }, @@ -1102,9 +1305,11 @@ WeakAuras.ModelPaths = { }, { value = "eyeofkathune", + text = "eyeofkathune", children = { { value = "eyeofkathune.m2", + text = "eyeofkathune.m2", fileId = "123808", text = "eyeofkathune.m2", }, @@ -1113,9 +1318,11 @@ WeakAuras.ModelPaths = { }, { value = "eyestalkofkathune", + text = "eyestalkofkathune", children = { { value = "eyestalkofkathune.m2", + text = "eyestalkofkathune.m2", fileId = "123814", text = "eyestalkofkathune.m2", }, @@ -1124,14 +1331,17 @@ WeakAuras.ModelPaths = { }, { value = "faeriedragon", + text = "faeriedragon", children = { { value = "faeriedragon.m2", + text = "faeriedragon.m2", fileId = "123816", text = "faeriedragon.m2", }, { value = "faeriedragon_ghost.m2", + text = "faeriedragon_ghost.m2", fileId = "123818", text = "faeriedragon_ghost.m2", }, @@ -1140,19 +1350,23 @@ WeakAuras.ModelPaths = { }, { value = "felbat", + text = "felbat", children = { { value = "batrider.m2", + text = "batrider.m2", fileId = "123821", text = "batrider.m2", }, { value = "battaxi.m2", + text = "battaxi.m2", fileId = "123830", text = "battaxi.m2", }, { value = "felbat.m2", + text = "felbat.m2", fileId = "123831", text = "felbat.m2", }, @@ -1161,9 +1375,11 @@ WeakAuras.ModelPaths = { }, { value = "felbeast", + text = "felbeast", children = { { value = "felbeast.m2", + text = "felbeast.m2", fileId = "123834", text = "felbeast.m2", }, @@ -1172,9 +1388,11 @@ WeakAuras.ModelPaths = { }, { value = "felboar", + text = "felboar", children = { { value = "felboar.m2", + text = "felboar.m2", fileId = "123839", text = "felboar.m2", }, @@ -1183,9 +1401,11 @@ WeakAuras.ModelPaths = { }, { value = "felguard", + text = "felguard", children = { { value = "felguard.m2", + text = "felguard.m2", fileId = "123870", text = "felguard.m2", }, @@ -1194,9 +1414,11 @@ WeakAuras.ModelPaths = { }, { value = "felhound", + text = "felhound", children = { { value = "felhound.m2", + text = "felhound.m2", fileId = "123878", text = "felhound.m2", }, @@ -1205,14 +1427,17 @@ WeakAuras.ModelPaths = { }, { value = "fireelemental", + text = "fireelemental", children = { { value = "fireelemental.m2", + text = "fireelemental.m2", fileId = "123934", text = "fireelemental.m2", }, { value = "fireelementalgreen.m2", + text = "fireelementalgreen.m2", fileId = "2199522", text = "fireelementalgreen.m2", }, @@ -1221,9 +1446,11 @@ WeakAuras.ModelPaths = { }, { value = "firesprite", + text = "firesprite", children = { { value = "firesprite.m2", + text = "firesprite.m2", fileId = "123944", text = "firesprite.m2", }, @@ -1232,9 +1459,11 @@ WeakAuras.ModelPaths = { }, { value = "fish", + text = "fish", children = { { value = "fish.m2", + text = "fish.m2", fileId = "123947", text = "fish.m2", }, @@ -1243,9 +1472,11 @@ WeakAuras.ModelPaths = { }, { value = "fleshbeast", + text = "fleshbeast", children = { { value = "fleshbeast.m2", + text = "fleshbeast.m2", fileId = "123949", text = "fleshbeast.m2", }, @@ -1254,9 +1485,11 @@ WeakAuras.ModelPaths = { }, { value = "fleshgiant", + text = "fleshgiant", children = { { value = "fleshgiant.m2", + text = "fleshgiant.m2", fileId = "123952", text = "fleshgiant.m2", }, @@ -1265,9 +1498,11 @@ WeakAuras.ModelPaths = { }, { value = "fleshgolem", + text = "fleshgolem", children = { { value = "fleshgolem.m2", + text = "fleshgolem.m2", fileId = "123961", text = "fleshgolem.m2", }, @@ -1276,9 +1511,11 @@ WeakAuras.ModelPaths = { }, { value = "fleshtitan", + text = "fleshtitan", children = { { value = "fleshtitan.m2", + text = "fleshtitan.m2", fileId = "123972", text = "fleshtitan.m2", }, @@ -1287,9 +1524,11 @@ WeakAuras.ModelPaths = { }, { value = "flyingmachinecreature", + text = "flyingmachinecreature", children = { { value = "flyingmachinecreature.m2", + text = "flyingmachinecreature.m2", fileId = "123977", text = "flyingmachinecreature.m2", }, @@ -1298,9 +1537,11 @@ WeakAuras.ModelPaths = { }, { value = "forceofnature", + text = "forceofnature", children = { { value = "forceofnature.m2", + text = "forceofnature.m2", fileId = "123990", text = "forceofnature.m2", }, @@ -1309,9 +1550,11 @@ WeakAuras.ModelPaths = { }, { value = "frenzy", + text = "frenzy", children = { { value = "frenzy.m2", + text = "frenzy.m2", fileId = "124004", text = "frenzy.m2", }, @@ -1320,9 +1563,11 @@ WeakAuras.ModelPaths = { }, { value = "frog", + text = "frog", children = { { value = "frog.m2", + text = "frog.m2", fileId = "124008", text = "frog.m2", }, @@ -1331,19 +1576,23 @@ WeakAuras.ModelPaths = { }, { value = "frostsabre", + text = "frostsabre", children = { { value = "frostsabre.m2", + text = "frostsabre.m2", fileId = "124036", text = "frostsabre.m2", }, { value = "pvpridingfrostsabre.m2", + text = "pvpridingfrostsabre.m2", fileId = "124038", text = "pvpridingfrostsabre.m2", }, { value = "ridingfrostsabre.m2", + text = "ridingfrostsabre.m2", fileId = "124052", text = "ridingfrostsabre.m2", }, @@ -1352,9 +1601,11 @@ WeakAuras.ModelPaths = { }, { value = "frostwurm", + text = "frostwurm", children = { { value = "frostwurm.m2", + text = "frostwurm.m2", fileId = "124077", text = "frostwurm.m2", }, @@ -1363,9 +1614,11 @@ WeakAuras.ModelPaths = { }, { value = "fungalmonster", + text = "fungalmonster", children = { { value = "fungalmonster.m2", + text = "fungalmonster.m2", fileId = "124110", text = "fungalmonster.m2", }, @@ -1374,9 +1627,11 @@ WeakAuras.ModelPaths = { }, { value = "furbolg", + text = "furbolg", children = { { value = "furbolg.m2", + text = "furbolg.m2", fileId = "124118", text = "furbolg.m2", }, @@ -1385,9 +1640,11 @@ WeakAuras.ModelPaths = { }, { value = "gargoyle", + text = "gargoyle", children = { { value = "gargoyle.m2", + text = "gargoyle.m2", fileId = "124131", text = "gargoyle.m2", }, @@ -1396,9 +1653,11 @@ WeakAuras.ModelPaths = { }, { value = "gazelle", + text = "gazelle", children = { { value = "gazelle.m2", + text = "gazelle.m2", fileId = "124148", text = "gazelle.m2", }, @@ -1407,9 +1666,11 @@ WeakAuras.ModelPaths = { }, { value = "ghost", + text = "ghost", children = { { value = "ghost.m2", + text = "ghost.m2", fileId = "124155", text = "ghost.m2", }, @@ -1418,9 +1679,11 @@ WeakAuras.ModelPaths = { }, { value = "ghoul", + text = "ghoul", children = { { value = "ghoul.m2", + text = "ghoul.m2", fileId = "124160", text = "ghoul.m2", }, @@ -1429,9 +1692,11 @@ WeakAuras.ModelPaths = { }, { value = "giantspider", + text = "giantspider", children = { { value = "giantspider.m2", + text = "giantspider.m2", fileId = "124166", text = "giantspider.m2", }, @@ -1440,9 +1705,11 @@ WeakAuras.ModelPaths = { }, { value = "giraffe", + text = "giraffe", children = { { value = "giraffe.m2", + text = "giraffe.m2", fileId = "124169", text = "giraffe.m2", }, @@ -1451,9 +1718,11 @@ WeakAuras.ModelPaths = { }, { value = "gnoll", + text = "gnoll", children = { { value = "gnoll.m2", + text = "gnoll.m2", fileId = "124173", text = "gnoll.m2", }, @@ -1462,9 +1731,11 @@ WeakAuras.ModelPaths = { }, { value = "gnollcaster", + text = "gnollcaster", children = { { value = "gnollcaster.m2", + text = "gnollcaster.m2", fileId = "124186", text = "gnollcaster.m2", }, @@ -1473,9 +1744,11 @@ WeakAuras.ModelPaths = { }, { value = "gnollmelee", + text = "gnollmelee", children = { { value = "gnollmelee.m2", + text = "gnollmelee.m2", fileId = "124192", text = "gnollmelee.m2", }, @@ -1484,9 +1757,11 @@ WeakAuras.ModelPaths = { }, { value = "gnome", + text = "gnome", children = { { value = "gnome.m2", + text = "gnome.m2", fileId = "124198", text = "gnome.m2", }, @@ -1495,9 +1770,11 @@ WeakAuras.ModelPaths = { }, { value = "gnomerocketcar", + text = "gnomerocketcar", children = { { value = "gnomerocketcar.m2", + text = "gnomerocketcar.m2", fileId = "124203", text = "gnomerocketcar.m2", }, @@ -1506,29 +1783,35 @@ WeakAuras.ModelPaths = { }, { value = "gnomespidertank", + text = "gnomespidertank", children = { { value = "gnomealertbot.m2", + text = "gnomealertbot.m2", fileId = "124204", text = "gnomealertbot.m2", }, { value = "gnomebombot.m2", + text = "gnomebombot.m2", fileId = "124207", text = "gnomebombot.m2", }, { value = "gnomebot.m2", + text = "gnomebot.m2", fileId = "124208", text = "gnomebot.m2", }, { value = "gnomepounder.m2", + text = "gnomepounder.m2", fileId = "124209", text = "gnomepounder.m2", }, { value = "gnomespidertank.m2", + text = "gnomespidertank.m2", fileId = "124210", text = "gnomespidertank.m2", }, @@ -1537,14 +1820,17 @@ WeakAuras.ModelPaths = { }, { value = "goblin", + text = "goblin", children = { { value = "goblin.m2", + text = "goblin.m2", fileId = "124224", text = "goblin.m2", }, { value = "goblinshredder.m2", + text = "goblinshredder.m2", fileId = "124225", text = "goblinshredder.m2", }, @@ -1553,9 +1839,11 @@ WeakAuras.ModelPaths = { }, { value = "goblinrocketcar", + text = "goblinrocketcar", children = { { value = "goblinrocketcar.m2", + text = "goblinrocketcar.m2", fileId = "124234", text = "goblinrocketcar.m2", }, @@ -1564,9 +1852,11 @@ WeakAuras.ModelPaths = { }, { value = "golemharvest", + text = "golemharvest", children = { { value = "golemharvest.m2", + text = "golemharvest.m2", fileId = "124235", text = "golemharvest.m2", }, @@ -1575,9 +1865,11 @@ WeakAuras.ModelPaths = { }, { value = "golemharveststage2", + text = "golemharveststage2", children = { { value = "golemharveststage2.m2", + text = "golemharveststage2.m2", fileId = "124243", text = "golemharveststage2.m2", }, @@ -1586,14 +1878,17 @@ WeakAuras.ModelPaths = { }, { value = "golemstone", + text = "golemstone", children = { { value = "golemcannonstone.m2", + text = "golemcannonstone.m2", fileId = "124247", text = "golemcannonstone.m2", }, { value = "golemstone.m2", + text = "golemstone.m2", fileId = "124248", text = "golemstone.m2", }, @@ -1602,9 +1897,11 @@ WeakAuras.ModelPaths = { }, { value = "gorilla", + text = "gorilla", children = { { value = "gorilla.m2", + text = "gorilla.m2", fileId = "124263", text = "gorilla.m2", }, @@ -1613,9 +1910,11 @@ WeakAuras.ModelPaths = { }, { value = "grell", + text = "grell", children = { { value = "grell.m2", + text = "grell.m2", fileId = "124272", text = "grell.m2", }, @@ -1624,19 +1923,23 @@ WeakAuras.ModelPaths = { }, { value = "gryphon", + text = "gryphon", children = { { value = "gryphon.m2", + text = "gryphon.m2", fileId = "124290", text = "gryphon.m2", }, { value = "gryphon_ghost.m2", + text = "gryphon_ghost.m2", fileId = "124297", text = "gryphon_ghost.m2", }, { value = "gryphon_skeletal.m2", + text = "gryphon_skeletal.m2", fileId = "124299", text = "gryphon_skeletal.m2", }, @@ -1645,9 +1948,11 @@ WeakAuras.ModelPaths = { }, { value = "hakkar", + text = "hakkar", children = { { value = "hakkar.m2", + text = "hakkar.m2", fileId = "124317", text = "hakkar.m2", }, @@ -1656,9 +1961,11 @@ WeakAuras.ModelPaths = { }, { value = "halfbodyofkathune", + text = "halfbodyofkathune", children = { { value = "halfbodyofkathune.m2", + text = "halfbodyofkathune.m2", fileId = "124324", text = "halfbodyofkathune.m2", }, @@ -1667,9 +1974,11 @@ WeakAuras.ModelPaths = { }, { value = "harpy", + text = "harpy", children = { { value = "harpy.m2", + text = "harpy.m2", fileId = "124329", text = "harpy.m2", }, @@ -1678,44 +1987,53 @@ WeakAuras.ModelPaths = { }, { value = "highelf", + text = "highelf", children = { { value = "highelffemale_hunter.m2", + text = "highelffemale_hunter.m2", fileId = "124366", text = "highelffemale_hunter.m2", }, { value = "highelffemale_mage.m2", + text = "highelffemale_mage.m2", fileId = "124367", text = "highelffemale_mage.m2", }, { value = "highelffemale_priest.m2", + text = "highelffemale_priest.m2", fileId = "124368", text = "highelffemale_priest.m2", }, { value = "highelffemale_warrior.m2", + text = "highelffemale_warrior.m2", fileId = "124369", text = "highelffemale_warrior.m2", }, { value = "highelfmale_hunter.m2", + text = "highelfmale_hunter.m2", fileId = "124377", text = "highelfmale_hunter.m2", }, { value = "highelfmale_mage.m2", + text = "highelfmale_mage.m2", fileId = "124378", text = "highelfmale_mage.m2", }, { value = "highelfmale_priest.m2", + text = "highelfmale_priest.m2", fileId = "124379", text = "highelfmale_priest.m2", }, { value = "highelfmale_warrior.m2", + text = "highelfmale_warrior.m2", fileId = "124380", text = "highelfmale_warrior.m2", }, @@ -1724,14 +2042,17 @@ WeakAuras.ModelPaths = { }, { value = "hippogryph", + text = "hippogryph", children = { { value = "hippogryph.m2", + text = "hippogryph.m2", fileId = "124387", text = "hippogryph.m2", }, { value = "hippogryphpet.m2", + text = "hippogryphpet.m2", fileId = "124393", text = "hippogryphpet.m2", }, @@ -1740,9 +2061,11 @@ WeakAuras.ModelPaths = { }, { value = "horderider", + text = "horderider", children = { { value = "horderider.m2", + text = "horderider.m2", fileId = "124421", text = "horderider.m2", }, @@ -1751,9 +2074,11 @@ WeakAuras.ModelPaths = { }, { value = "horisath", + text = "horisath", children = { { value = "horisath.m2", + text = "horisath.m2", fileId = "124424", text = "horisath.m2", }, @@ -1762,9 +2087,11 @@ WeakAuras.ModelPaths = { }, { value = "horse", + text = "horse", children = { { value = "horse.m2", + text = "horse.m2", fileId = "124427", text = "horse.m2", }, @@ -1773,9 +2100,11 @@ WeakAuras.ModelPaths = { }, { value = "hufmcitizenlow", + text = "hufmcitizenlow", children = { { value = "hufmcitizenlow.m2", + text = "hufmcitizenlow.m2", fileId = "124437", text = "hufmcitizenlow.m2", }, @@ -1784,9 +2113,11 @@ WeakAuras.ModelPaths = { }, { value = "hufmcitizenmid", + text = "hufmcitizenmid", children = { { value = "hufmcitizenmid.m2", + text = "hufmcitizenmid.m2", fileId = "124440", text = "hufmcitizenmid.m2", }, @@ -1795,9 +2126,11 @@ WeakAuras.ModelPaths = { }, { value = "hufmmerchant", + text = "hufmmerchant", children = { { value = "hufmmerchant.m2", + text = "hufmmerchant.m2", fileId = "124442", text = "hufmmerchant.m2", }, @@ -1806,9 +2139,11 @@ WeakAuras.ModelPaths = { }, { value = "humanfemaleblacksmith", + text = "humanfemaleblacksmith", children = { { value = "humanfemaleblacksmith.m2", + text = "humanfemaleblacksmith.m2", fileId = "124444", text = "humanfemaleblacksmith.m2", }, @@ -1817,9 +2152,11 @@ WeakAuras.ModelPaths = { }, { value = "humanfemalecaster", + text = "humanfemalecaster", children = { { value = "humanfemalecaster.m2", + text = "humanfemalecaster.m2", fileId = "124448", text = "humanfemalecaster.m2", }, @@ -1828,9 +2165,11 @@ WeakAuras.ModelPaths = { }, { value = "humanfemalefarmer", + text = "humanfemalefarmer", children = { { value = "humanfemalefarmer.m2", + text = "humanfemalefarmer.m2", fileId = "124452", text = "humanfemalefarmer.m2", }, @@ -1839,9 +2178,11 @@ WeakAuras.ModelPaths = { }, { value = "humanfemalekid", + text = "humanfemalekid", children = { { value = "humanfemalekid.m2", + text = "humanfemalekid.m2", fileId = "124456", text = "humanfemalekid.m2", }, @@ -1850,9 +2191,11 @@ WeakAuras.ModelPaths = { }, { value = "humanfemalemerchantfat", + text = "humanfemalemerchantfat", children = { { value = "humanfemalemerchantfat.m2", + text = "humanfemalemerchantfat.m2", fileId = "124463", text = "humanfemalemerchantfat.m2", }, @@ -1861,9 +2204,11 @@ WeakAuras.ModelPaths = { }, { value = "humanfemalemerchantthin", + text = "humanfemalemerchantthin", children = { { value = "humanfemalemerchantthin.m2", + text = "humanfemalemerchantthin.m2", fileId = "124467", text = "humanfemalemerchantthin.m2", }, @@ -1872,9 +2217,11 @@ WeakAuras.ModelPaths = { }, { value = "humanfemalepeasant", + text = "humanfemalepeasant", children = { { value = "humanfemalepeasant.m2", + text = "humanfemalepeasant.m2", fileId = "124468", text = "humanfemalepeasant.m2", }, @@ -1883,9 +2230,11 @@ WeakAuras.ModelPaths = { }, { value = "humanfemalewarriorheavy", + text = "humanfemalewarriorheavy", children = { { value = "humanfemalewarriorheavy.m2", + text = "humanfemalewarriorheavy.m2", fileId = "124472", text = "humanfemalewarriorheavy.m2", }, @@ -1894,9 +2243,11 @@ WeakAuras.ModelPaths = { }, { value = "humanfemalewarriorlight", + text = "humanfemalewarriorlight", children = { { value = "humanfemalewarriorlight.m2", + text = "humanfemalewarriorlight.m2", fileId = "124475", text = "humanfemalewarriorlight.m2", }, @@ -1905,9 +2256,11 @@ WeakAuras.ModelPaths = { }, { value = "humanfemalewarriormedium", + text = "humanfemalewarriormedium", children = { { value = "humanfemalewarriormedium.m2", + text = "humanfemalewarriormedium.m2", fileId = "124478", text = "humanfemalewarriormedium.m2", }, @@ -1916,9 +2269,11 @@ WeakAuras.ModelPaths = { }, { value = "humanmaleblacksmith", + text = "humanmaleblacksmith", children = { { value = "humanmaleblacksmith.m2", + text = "humanmaleblacksmith.m2", fileId = "124482", text = "humanmaleblacksmith.m2", }, @@ -1927,9 +2282,11 @@ WeakAuras.ModelPaths = { }, { value = "humanmalecaster", + text = "humanmalecaster", children = { { value = "humanmalecaster.m2", + text = "humanmalecaster.m2", fileId = "124485", text = "humanmalecaster.m2", }, @@ -1938,9 +2295,11 @@ WeakAuras.ModelPaths = { }, { value = "humanmalefarmer", + text = "humanmalefarmer", children = { { value = "humanmalefarmer.m2", + text = "humanmalefarmer.m2", fileId = "124490", text = "humanmalefarmer.m2", }, @@ -1949,9 +2308,11 @@ WeakAuras.ModelPaths = { }, { value = "humanmaleguard", + text = "humanmaleguard", children = { { value = "humanmaleguard.m2", + text = "humanmaleguard.m2", fileId = "124494", text = "humanmaleguard.m2", }, @@ -1960,9 +2321,11 @@ WeakAuras.ModelPaths = { }, { value = "humanmalekid", + text = "humanmalekid", children = { { value = "humanmalekid.m2", + text = "humanmalekid.m2", fileId = "124495", text = "humanmalekid.m2", }, @@ -1971,9 +2334,11 @@ WeakAuras.ModelPaths = { }, { value = "humanmalemarshal", + text = "humanmalemarshal", children = { { value = "humanmalemarshal.m2", + text = "humanmalemarshal.m2", fileId = "124500", text = "humanmalemarshal.m2", }, @@ -1982,9 +2347,11 @@ WeakAuras.ModelPaths = { }, { value = "humanmalenoble", + text = "humanmalenoble", children = { { value = "humanmalenoble.m2", + text = "humanmalenoble.m2", fileId = "124506", text = "humanmalenoble.m2", }, @@ -1993,29 +2360,35 @@ WeakAuras.ModelPaths = { }, { value = "humanmalepeasant", + text = "humanmalepeasant", children = { { value = "humanmalepeasant.m2", + text = "humanmalepeasant.m2", fileId = "124507", text = "humanmalepeasant.m2", }, { value = "humanmalepeasantaxe.m2", + text = "humanmalepeasantaxe.m2", fileId = "124508", text = "humanmalepeasantaxe.m2", }, { value = "humanmalepeasantgold.m2", + text = "humanmalepeasantgold.m2", fileId = "124509", text = "humanmalepeasantgold.m2", }, { value = "humanmalepeasantpick.m2", + text = "humanmalepeasantpick.m2", fileId = "124512", text = "humanmalepeasantpick.m2", }, { value = "humanmalepeasantwood.m2", + text = "humanmalepeasantwood.m2", fileId = "124515", text = "humanmalepeasantwood.m2", }, @@ -2024,14 +2397,17 @@ WeakAuras.ModelPaths = { }, { value = "humanmalepiratecaptain", + text = "humanmalepiratecaptain", children = { { value = "humanmalepiratecaptain.m2", + text = "humanmalepiratecaptain.m2", fileId = "124516", text = "humanmalepiratecaptain.m2", }, { value = "humanmalepiratecaptain_ghost.m2", + text = "humanmalepiratecaptain_ghost.m2", fileId = "124517", text = "humanmalepiratecaptain_ghost.m2", }, @@ -2040,14 +2416,17 @@ WeakAuras.ModelPaths = { }, { value = "humanmalepiratecrewman", + text = "humanmalepiratecrewman", children = { { value = "humanmalepiratecrewman.m2", + text = "humanmalepiratecrewman.m2", fileId = "124521", text = "humanmalepiratecrewman.m2", }, { value = "humanmalepiratecrewman_ghost.m2", + text = "humanmalepiratecrewman_ghost.m2", fileId = "124522", text = "humanmalepiratecrewman_ghost.m2", }, @@ -2056,14 +2435,17 @@ WeakAuras.ModelPaths = { }, { value = "humanmalepirateswashbuckler", + text = "humanmalepirateswashbuckler", children = { { value = "humanmalepirateswashbuckler.m2", + text = "humanmalepirateswashbuckler.m2", fileId = "124533", text = "humanmalepirateswashbuckler.m2", }, { value = "humanmalepirateswashbuckler_ghost.m2", + text = "humanmalepirateswashbuckler_ghost.m2", fileId = "124534", text = "humanmalepirateswashbuckler_ghost.m2", }, @@ -2072,14 +2454,17 @@ WeakAuras.ModelPaths = { }, { value = "humanmalewarriorheavy", + text = "humanmalewarriorheavy", children = { { value = "humanmalewarriorheavy.m2", + text = "humanmalewarriorheavy.m2", fileId = "124540", text = "humanmalewarriorheavy.m2", }, { value = "humanmalewarriorheavy_ghost.m2", + text = "humanmalewarriorheavy_ghost.m2", fileId = "124541", text = "humanmalewarriorheavy_ghost.m2", }, @@ -2088,9 +2473,11 @@ WeakAuras.ModelPaths = { }, { value = "humanmalewarriorlight", + text = "humanmalewarriorlight", children = { { value = "humanmalewarriorlight.m2", + text = "humanmalewarriorlight.m2", fileId = "124544", text = "humanmalewarriorlight.m2", }, @@ -2099,9 +2486,11 @@ WeakAuras.ModelPaths = { }, { value = "humanmalewarriormedium", + text = "humanmalewarriormedium", children = { { value = "humanmalewarriormedium.m2", + text = "humanmalewarriormedium.m2", fileId = "124547", text = "humanmalewarriormedium.m2", }, @@ -2110,9 +2499,11 @@ WeakAuras.ModelPaths = { }, { value = "humanmalewizard", + text = "humanmalewizard", children = { { value = "humanmalewizard.m2", + text = "humanmalewizard.m2", fileId = "124552", text = "humanmalewizard.m2", }, @@ -2121,9 +2512,11 @@ WeakAuras.ModelPaths = { }, { value = "humanthief", + text = "humanthief", children = { { value = "humanthief.m2", + text = "humanthief.m2", fileId = "124553", text = "humanthief.m2", }, @@ -2132,9 +2525,11 @@ WeakAuras.ModelPaths = { }, { value = "humlblacksmith", + text = "humlblacksmith", children = { { value = "humlblacksmith.m2", + text = "humlblacksmith.m2", fileId = "124565", text = "humlblacksmith.m2", }, @@ -2143,9 +2538,11 @@ WeakAuras.ModelPaths = { }, { value = "humlcitizenmid", + text = "humlcitizenmid", children = { { value = "humlcitizenmid.m2", + text = "humlcitizenmid.m2", fileId = "124566", text = "humlcitizenmid.m2", }, @@ -2154,9 +2551,11 @@ WeakAuras.ModelPaths = { }, { value = "humlmagicsmith", + text = "humlmagicsmith", children = { { value = "humlmagicsmith.m2", + text = "humlmagicsmith.m2", fileId = "124569", text = "humlmagicsmith.m2", }, @@ -2165,9 +2564,11 @@ WeakAuras.ModelPaths = { }, { value = "humlmerchant", + text = "humlmerchant", children = { { value = "humlmerchant.m2", + text = "humlmerchant.m2", fileId = "124571", text = "humlmerchant.m2", }, @@ -2176,9 +2577,11 @@ WeakAuras.ModelPaths = { }, { value = "humluppercitizen", + text = "humluppercitizen", children = { { value = "humluppercitizen.m2", + text = "humluppercitizen.m2", fileId = "124572", text = "humluppercitizen.m2", }, @@ -2187,9 +2590,11 @@ WeakAuras.ModelPaths = { }, { value = "humnguardbig", + text = "humnguardbig", children = { { value = "humnguardbig.m2", + text = "humnguardbig.m2", fileId = "124576", text = "humnguardbig.m2", }, @@ -2198,9 +2603,11 @@ WeakAuras.ModelPaths = { }, { value = "humscitizenmid", + text = "humscitizenmid", children = { { value = "humscitizenmid.m2", + text = "humscitizenmid.m2", fileId = "124578", text = "humscitizenmid.m2", }, @@ -2209,9 +2616,11 @@ WeakAuras.ModelPaths = { }, { value = "humsguardbig", + text = "humsguardbig", children = { { value = "humsguardbig.m2", + text = "humsguardbig.m2", fileId = "124579", text = "humsguardbig.m2", }, @@ -2220,9 +2629,11 @@ WeakAuras.ModelPaths = { }, { value = "humsmerchant", + text = "humsmerchant", children = { { value = "humsmerchant.m2", + text = "humsmerchant.m2", fileId = "124580", text = "humsmerchant.m2", }, @@ -2231,9 +2642,11 @@ WeakAuras.ModelPaths = { }, { value = "hydra", + text = "hydra", children = { { value = "hydra.m2", + text = "hydra.m2", fileId = "124581", text = "hydra.m2", }, @@ -2242,9 +2655,11 @@ WeakAuras.ModelPaths = { }, { value = "hyena", + text = "hyena", children = { { value = "hyena.m2", + text = "hyena.m2", fileId = "124601", text = "hyena.m2", }, @@ -2253,14 +2668,17 @@ WeakAuras.ModelPaths = { }, { value = "imp", + text = "imp", children = { { value = "fireimp.m2", + text = "fireimp.m2", fileId = "2199501", text = "fireimp.m2", }, { value = "imp.m2", + text = "imp.m2", fileId = "124622", text = "imp.m2", }, @@ -2269,9 +2687,11 @@ WeakAuras.ModelPaths = { }, { value = "infernal", + text = "infernal", children = { { value = "infernal.m2", + text = "infernal.m2", fileId = "124637", text = "infernal.m2", }, @@ -2280,9 +2700,11 @@ WeakAuras.ModelPaths = { }, { value = "invisibleman", + text = "invisibleman", children = { { value = "invisibleman.m2", + text = "invisibleman.m2", fileId = "124639", text = "invisibleman.m2", }, @@ -2291,14 +2713,17 @@ WeakAuras.ModelPaths = { }, { value = "invisiblestalker", + text = "invisiblestalker", children = { { value = "invisiblestalker.m2", + text = "invisiblestalker.m2", fileId = "124640", text = "invisiblestalker.m2", }, { value = "invisiblestalkernoname.m2", + text = "invisiblestalkernoname.m2", fileId = "124642", text = "invisiblestalkernoname.m2", }, @@ -2307,9 +2732,11 @@ WeakAuras.ModelPaths = { }, { value = "keeperofthegrove", + text = "keeperofthegrove", children = { { value = "keeperofthegrove.m2", + text = "keeperofthegrove.m2", fileId = "124670", text = "keeperofthegrove.m2", }, @@ -2318,9 +2745,11 @@ WeakAuras.ModelPaths = { }, { value = "kelthuzad", + text = "kelthuzad", children = { { value = "kelthuzad.m2", + text = "kelthuzad.m2", fileId = "124677", text = "kelthuzad.m2", }, @@ -2329,9 +2758,11 @@ WeakAuras.ModelPaths = { }, { value = "kobold", + text = "kobold", children = { { value = "kobold.m2", + text = "kobold.m2", fileId = "124691", text = "kobold.m2", }, @@ -2340,29 +2771,35 @@ WeakAuras.ModelPaths = { }, { value = "kodobeast", + text = "kodobeast", children = { { value = "kodobeast.m2", + text = "kodobeast.m2", fileId = "124694", text = "kodobeast.m2", }, { value = "kodobeastpack.m2", + text = "kodobeastpack.m2", fileId = "124695", text = "kodobeastpack.m2", }, { value = "kodobeastpvpt2.m2", + text = "kodobeastpvpt2.m2", fileId = "124696", text = "kodobeastpvpt2.m2", }, { value = "kodobeasttame.m2", + text = "kodobeasttame.m2", fileId = "124697", text = "kodobeasttame.m2", }, { value = "ridingkodo.m2", + text = "ridingkodo.m2", fileId = "124711", text = "ridingkodo.m2", }, @@ -2371,9 +2808,11 @@ WeakAuras.ModelPaths = { }, { value = "kodobeastpack", + text = "kodobeastpack", children = { { value = "kodobeastpack.m2", + text = "kodobeastpack.m2", fileId = "2198638", text = "kodobeastpack.m2", }, @@ -2382,9 +2821,11 @@ WeakAuras.ModelPaths = { }, { value = "kodobeasttame", + text = "kodobeasttame", children = { { value = "kodobeasttame.m2", + text = "kodobeasttame.m2", fileId = "2198601", text = "kodobeasttame.m2", }, @@ -2393,9 +2834,11 @@ WeakAuras.ModelPaths = { }, { value = "landro", + text = "landro", children = { { value = "landro.m2", + text = "landro.m2", fileId = "124738", text = "landro.m2", }, @@ -2404,9 +2847,11 @@ WeakAuras.ModelPaths = { }, { value = "larva", + text = "larva", children = { { value = "larva.m2", + text = "larva.m2", fileId = "124739", text = "larva.m2", }, @@ -2415,9 +2860,11 @@ WeakAuras.ModelPaths = { }, { value = "lasher", + text = "lasher", children = { { value = "lasher.m2", + text = "lasher.m2", fileId = "124753", text = "lasher.m2", }, @@ -2426,24 +2873,29 @@ WeakAuras.ModelPaths = { }, { value = "lessermanafiend", + text = "lessermanafiend", children = { { value = "lessermanafiend_blue.m2", + text = "lessermanafiend_blue.m2", fileId = "2199322", text = "lessermanafiend_blue.m2", }, { value = "lessermanafiend_red.m2", + text = "lessermanafiend_red.m2", fileId = "2199340", text = "lessermanafiend_red.m2", }, { value = "lessermanafiend_violet.m2", + text = "lessermanafiend_violet.m2", fileId = "2199333", text = "lessermanafiend_violet.m2", }, { value = "lessermanafiend_white.m2", + text = "lessermanafiend_white.m2", fileId = "2199348", text = "lessermanafiend_white.m2", }, @@ -2452,9 +2904,11 @@ WeakAuras.ModelPaths = { }, { value = "lich", + text = "lich", children = { { value = "lich.m2", + text = "lich.m2", fileId = "124779", text = "lich.m2", }, @@ -2463,9 +2917,11 @@ WeakAuras.ModelPaths = { }, { value = "lion", + text = "lion", children = { { value = "lion.m2", + text = "lion.m2", fileId = "124781", text = "lion.m2", }, @@ -2474,9 +2930,11 @@ WeakAuras.ModelPaths = { }, { value = "lobstrok", + text = "lobstrok", children = { { value = "lobstrok.m2", + text = "lobstrok.m2", fileId = "124790", text = "lobstrok.m2", }, @@ -2485,9 +2943,11 @@ WeakAuras.ModelPaths = { }, { value = "lord kezzak", + text = "lord kezzak", children = { { value = "lordkezzak.m2", + text = "lordkezzak.m2", fileId = "124802", text = "lordkezzak.m2", }, @@ -2496,9 +2956,11 @@ WeakAuras.ModelPaths = { }, { value = "lostone", + text = "lostone", children = { { value = "lostone.m2", + text = "lostone.m2", fileId = "124809", text = "lostone.m2", }, @@ -2507,9 +2969,11 @@ WeakAuras.ModelPaths = { }, { value = "madscientist", + text = "madscientist", children = { { value = "madscientist.m2", + text = "madscientist.m2", fileId = "124827", text = "madscientist.m2", }, @@ -2518,9 +2982,11 @@ WeakAuras.ModelPaths = { }, { value = "manafiend", + text = "manafiend", children = { { value = "manafiend.m2", + text = "manafiend.m2", fileId = "124850", text = "manafiend.m2", }, @@ -2529,19 +2995,23 @@ WeakAuras.ModelPaths = { }, { value = "mechastrider", + text = "mechastrider", children = { { value = "gnomemechastrider.m2", + text = "gnomemechastrider.m2", fileId = "124865", text = "gnomemechastrider.m2", }, { value = "mechastrider.m2", + text = "mechastrider.m2", fileId = "124872", text = "mechastrider.m2", }, { value = "pvpmechastrider.m2", + text = "pvpmechastrider.m2", fileId = "124880", text = "pvpmechastrider.m2", }, @@ -2550,14 +3020,17 @@ WeakAuras.ModelPaths = { }, { value = "minespider", + text = "minespider", children = { { value = "minespider.m2", + text = "minespider.m2", fileId = "124903", text = "minespider.m2", }, { value = "minespiderboss.m2", + text = "minespiderboss.m2", fileId = "124904", text = "minespiderboss.m2", }, @@ -2566,9 +3039,11 @@ WeakAuras.ModelPaths = { }, { value = "mobat", + text = "mobat", children = { { value = "mobat.m2", + text = "mobat.m2", fileId = "124928", text = "mobat.m2", }, @@ -2577,9 +3052,11 @@ WeakAuras.ModelPaths = { }, { value = "mountaingiant", + text = "mountaingiant", children = { { value = "mountaingiant.m2", + text = "mountaingiant.m2", fileId = "124952", text = "mountaingiant.m2", }, @@ -2588,34 +3065,41 @@ WeakAuras.ModelPaths = { }, { value = "mounteddeathknight", + text = "mounteddeathknight", children = { { value = "mounteddeathknight.m2", + text = "mounteddeathknight.m2", fileId = "124984", text = "mounteddeathknight.m2", }, { value = "mounteddeathknight_blaumeux.m2", + text = "mounteddeathknight_blaumeux.m2", fileId = "124985", text = "mounteddeathknight_blaumeux.m2", }, { value = "mounteddeathknight_korthazz.m2", + text = "mounteddeathknight_korthazz.m2", fileId = "124986", text = "mounteddeathknight_korthazz.m2", }, { value = "mounteddeathknight_mograine.m2", + text = "mounteddeathknight_mograine.m2", fileId = "124987", text = "mounteddeathknight_mograine.m2", }, { value = "mounteddeathknight_zeliek.m2", + text = "mounteddeathknight_zeliek.m2", fileId = "124988", text = "mounteddeathknight_zeliek.m2", }, { value = "ridingundeadwarhorse.m2", + text = "ridingundeadwarhorse.m2", fileId = "125009", text = "ridingundeadwarhorse.m2", }, @@ -2624,9 +3108,11 @@ WeakAuras.ModelPaths = { }, { value = "mounteddemonknight", + text = "mounteddemonknight", children = { { value = "mounteddemonknight.m2", + text = "mounteddemonknight.m2", fileId = "125013", text = "mounteddemonknight.m2", }, @@ -2635,9 +3121,11 @@ WeakAuras.ModelPaths = { }, { value = "mountedknight", + text = "mountedknight", children = { { value = "mountedknight.m2", + text = "mountedknight.m2", fileId = "125017", text = "mountedknight.m2", }, @@ -2646,9 +3134,11 @@ WeakAuras.ModelPaths = { }, { value = "mouthofkathune01", + text = "mouthofkathune01", children = { { value = "mouthofkathune01.m2", + text = "mouthofkathune01.m2", fileId = "125021", text = "mouthofkathune01.m2", }, @@ -2657,14 +3147,17 @@ WeakAuras.ModelPaths = { }, { value = "murloc", + text = "murloc", children = { { value = "babymurloc.m2", + text = "babymurloc.m2", fileId = "125023", text = "babymurloc.m2", }, { value = "murloc.m2", + text = "murloc.m2", fileId = "125024", text = "murloc.m2", }, @@ -2673,9 +3166,11 @@ WeakAuras.ModelPaths = { }, { value = "nagafemale", + text = "nagafemale", children = { { value = "siren.m2", + text = "siren.m2", fileId = "125069", text = "siren.m2", }, @@ -2684,9 +3179,11 @@ WeakAuras.ModelPaths = { }, { value = "nagamale", + text = "nagamale", children = { { value = "nagamale.m2", + text = "nagamale.m2", fileId = "125078", text = "nagamale.m2", }, @@ -2695,9 +3192,11 @@ WeakAuras.ModelPaths = { }, { value = "necromancer", + text = "necromancer", children = { { value = "necromancer.m2", + text = "necromancer.m2", fileId = "125092", text = "necromancer.m2", }, @@ -2706,9 +3205,11 @@ WeakAuras.ModelPaths = { }, { value = "nefarian", + text = "nefarian", children = { { value = "dragonnefarian.m2", + text = "dragonnefarian.m2", fileId = "2198559", text = "dragonnefarian.m2", }, @@ -2717,9 +3218,11 @@ WeakAuras.ModelPaths = { }, { value = "nian", + text = "nian", children = { { value = "nian.m2", + text = "nian.m2", fileId = "125217", text = "nian.m2", }, @@ -2728,14 +3231,17 @@ WeakAuras.ModelPaths = { }, { value = "nightmare", + text = "nightmare", children = { { value = "gorgon101.m2", + text = "gorgon101.m2", fileId = "125223", text = "gorgon101.m2", }, { value = "nightmare.m2", + text = "nightmare.m2", fileId = "125227", text = "nightmare.m2", }, @@ -2744,19 +3250,23 @@ WeakAuras.ModelPaths = { }, { value = "object", + text = "object", children = { { value = "archerytarget.m2", + text = "archerytarget.m2", fileId = "125254", text = "archerytarget.m2", }, { value = "cannon.m2", + text = "cannon.m2", fileId = "125257", text = "cannon.m2", }, { value = "woodendummy.m2", + text = "woodendummy.m2", fileId = "125259", text = "woodendummy.m2", }, @@ -2765,9 +3275,11 @@ WeakAuras.ModelPaths = { }, { value = "obsidiandestroyer", + text = "obsidiandestroyer", children = { { value = "obsidiandestroyer.m2", + text = "obsidiandestroyer.m2", fileId = "125260", text = "obsidiandestroyer.m2", }, @@ -2776,19 +3288,23 @@ WeakAuras.ModelPaths = { }, { value = "ogre", + text = "ogre", children = { { value = "ogre.m2", + text = "ogre.m2", fileId = "125263", text = "ogre.m2", }, { value = "ogremage.m2", + text = "ogremage.m2", fileId = "125264", text = "ogremage.m2", }, { value = "ogrewarlord.m2", + text = "ogrewarlord.m2", fileId = "125293", text = "ogrewarlord.m2", }, @@ -2797,9 +3313,11 @@ WeakAuras.ModelPaths = { }, { value = "orca", + text = "orca", children = { { value = "orca.m2", + text = "orca.m2", fileId = "125358", text = "orca.m2", }, @@ -2808,9 +3326,11 @@ WeakAuras.ModelPaths = { }, { value = "orcfemalekid", + text = "orcfemalekid", children = { { value = "orcfemalekid.m2", + text = "orcfemalekid.m2", fileId = "125362", text = "orcfemalekid.m2", }, @@ -2819,9 +3339,11 @@ WeakAuras.ModelPaths = { }, { value = "orcfemalewarriorlight", + text = "orcfemalewarriorlight", children = { { value = "orcfemale.m2", + text = "orcfemale.m2", fileId = "2198642", text = "orcfemale.m2", }, @@ -2830,9 +3352,11 @@ WeakAuras.ModelPaths = { }, { value = "orcmalekid", + text = "orcmalekid", children = { { value = "orcmalekid.m2", + text = "orcmalekid.m2", fileId = "125367", text = "orcmalekid.m2", }, @@ -2841,9 +3365,11 @@ WeakAuras.ModelPaths = { }, { value = "orcmalemerchantlight", + text = "orcmalemerchantlight", children = { { value = "orcmalemerchantlight.m2", + text = "orcmalemerchantlight.m2", fileId = "125372", text = "orcmalemerchantlight.m2", }, @@ -2852,9 +3378,11 @@ WeakAuras.ModelPaths = { }, { value = "orcmalewarriorheavy", + text = "orcmalewarriorheavy", children = { { value = "orcmalewarriorheavy.m2", + text = "orcmalewarriorheavy.m2", fileId = "125374", text = "orcmalewarriorheavy.m2", }, @@ -2863,9 +3391,11 @@ WeakAuras.ModelPaths = { }, { value = "orcmalewarriorlight", + text = "orcmalewarriorlight", children = { { value = "orcmalewarriorlight.m2", + text = "orcmalewarriorlight.m2", fileId = "125377", text = "orcmalewarriorlight.m2", }, @@ -2874,9 +3404,11 @@ WeakAuras.ModelPaths = { }, { value = "owl", + text = "owl", children = { { value = "owl.m2", + text = "owl.m2", fileId = "125378", text = "owl.m2", }, @@ -2885,9 +3417,11 @@ WeakAuras.ModelPaths = { }, { value = "panda", + text = "panda", children = { { value = "pandacub.m2", + text = "pandacub.m2", fileId = "125389", text = "pandacub.m2", }, @@ -2896,9 +3430,11 @@ WeakAuras.ModelPaths = { }, { value = "parrot", + text = "parrot", children = { { value = "parrot.m2", + text = "parrot.m2", fileId = "125395", text = "parrot.m2", }, @@ -2907,9 +3443,11 @@ WeakAuras.ModelPaths = { }, { value = "pig", + text = "pig", children = { { value = "pig.m2", + text = "pig.m2", fileId = "125420", text = "pig.m2", }, @@ -2918,9 +3456,11 @@ WeakAuras.ModelPaths = { }, { value = "portalofkathune", + text = "portalofkathune", children = { { value = "portalofkathune.m2", + text = "portalofkathune.m2", fileId = "125432", text = "portalofkathune.m2", }, @@ -2929,9 +3469,11 @@ WeakAuras.ModelPaths = { }, { value = "prariedog", + text = "prariedog", children = { { value = "prariedog.m2", + text = "prariedog.m2", fileId = "125434", text = "prariedog.m2", }, @@ -2940,9 +3482,11 @@ WeakAuras.ModelPaths = { }, { value = "pterrordax", + text = "pterrordax", children = { { value = "pterrordax.m2", + text = "pterrordax.m2", fileId = "125437", text = "pterrordax.m2", }, @@ -2951,14 +3495,17 @@ WeakAuras.ModelPaths = { }, { value = "questobjects", + text = "questobjects", children = { { value = "creature_scourgecrystal.m2", + text = "creature_scourgecrystal.m2", fileId = "125452", text = "creature_scourgecrystal.m2", }, { value = "creature_scourgecrystaldamaged.m2", + text = "creature_scourgecrystaldamaged.m2", fileId = "125454", text = "creature_scourgecrystaldamaged.m2", }, @@ -2967,19 +3514,23 @@ WeakAuras.ModelPaths = { }, { value = "quillboar", + text = "quillboar", children = { { value = "quillboar.m2", + text = "quillboar.m2", fileId = "125497", text = "quillboar.m2", }, { value = "quillboarcaster.m2", + text = "quillboarcaster.m2", fileId = "125498", text = "quillboarcaster.m2", }, { value = "quillboarwarrior.m2", + text = "quillboarwarrior.m2", fileId = "125499", text = "quillboarwarrior.m2", }, @@ -2988,9 +3539,11 @@ WeakAuras.ModelPaths = { }, { value = "quirajbattleguard", + text = "quirajbattleguard", children = { { value = "battleguard.m2", + text = "battleguard.m2", fileId = "125500", text = "battleguard.m2", }, @@ -2999,9 +3552,11 @@ WeakAuras.ModelPaths = { }, { value = "quirajgladiator", + text = "quirajgladiator", children = { { value = "quirajgladiator.m2", + text = "quirajgladiator.m2", fileId = "125504", text = "quirajgladiator.m2", }, @@ -3010,9 +3565,11 @@ WeakAuras.ModelPaths = { }, { value = "quirajprophet", + text = "quirajprophet", children = { { value = "quirajprophet.m2", + text = "quirajprophet.m2", fileId = "125508", text = "quirajprophet.m2", }, @@ -3021,9 +3578,11 @@ WeakAuras.ModelPaths = { }, { value = "rabbit", + text = "rabbit", children = { { value = "rabbit.m2", + text = "rabbit.m2", fileId = "125512", text = "rabbit.m2", }, @@ -3032,9 +3591,11 @@ WeakAuras.ModelPaths = { }, { value = "ragnaros", + text = "ragnaros", children = { { value = "ragnaros.m2", + text = "ragnaros.m2", fileId = "125519", text = "ragnaros.m2", }, @@ -3043,19 +3604,23 @@ WeakAuras.ModelPaths = { }, { value = "ram", + text = "ram", children = { { value = "pvpridingram.m2", + text = "pvpridingram.m2", fileId = "125522", text = "pvpridingram.m2", }, { value = "ram.m2", + text = "ram.m2", fileId = "125531", text = "ram.m2", }, { value = "ridingram.m2", + text = "ridingram.m2", fileId = "125546", text = "ridingram.m2", }, @@ -3064,9 +3629,11 @@ WeakAuras.ModelPaths = { }, { value = "raptor", + text = "raptor", children = { { value = "raptor.m2", + text = "raptor.m2", fileId = "125559", text = "raptor.m2", }, @@ -3075,9 +3642,11 @@ WeakAuras.ModelPaths = { }, { value = "rat", + text = "rat", children = { { value = "rat.m2", + text = "rat.m2", fileId = "125576", text = "rat.m2", }, @@ -3086,14 +3655,17 @@ WeakAuras.ModelPaths = { }, { value = "reindeer", + text = "reindeer", children = { { value = "reindeer.m2", + text = "reindeer.m2", fileId = "125581", text = "reindeer.m2", }, { value = "reindeermount.m2", + text = "reindeermount.m2", fileId = "125583", text = "reindeermount.m2", }, @@ -3102,19 +3674,23 @@ WeakAuras.ModelPaths = { }, { value = "ridinghorse", + text = "ridinghorse", children = { { value = "packmule.m2", + text = "packmule.m2", fileId = "125603", text = "packmule.m2", }, { value = "ridinghorse.m2", + text = "ridinghorse.m2", fileId = "125614", text = "ridinghorse.m2", }, { value = "ridinghorsepvpt2.m2", + text = "ridinghorsepvpt2.m2", fileId = "125620", text = "ridinghorsepvpt2.m2", }, @@ -3123,14 +3699,17 @@ WeakAuras.ModelPaths = { }, { value = "ridingraptor", + text = "ridingraptor", children = { { value = "pvpridingraptor.m2", + text = "pvpridingraptor.m2", fileId = "125649", text = "pvpridingraptor.m2", }, { value = "ridingraptor.m2", + text = "ridingraptor.m2", fileId = "125680", text = "ridingraptor.m2", }, @@ -3139,9 +3718,11 @@ WeakAuras.ModelPaths = { }, { value = "ridingsilithid", + text = "ridingsilithid", children = { { value = "ridingsilithid.m2", + text = "ridingsilithid.m2", fileId = "125687", text = "ridingsilithid.m2", }, @@ -3150,9 +3731,11 @@ WeakAuras.ModelPaths = { }, { value = "ridingturtle", + text = "ridingturtle", children = { { value = "ridingturtle.m2", + text = "ridingturtle.m2", fileId = "125715", text = "ridingturtle.m2", }, @@ -3161,9 +3744,11 @@ WeakAuras.ModelPaths = { }, { value = "salamander", + text = "salamander", children = { { value = "salamandermale.m2", + text = "salamandermale.m2", fileId = "125777", text = "salamandermale.m2", }, @@ -3172,9 +3757,11 @@ WeakAuras.ModelPaths = { }, { value = "sandreaver", + text = "sandreaver", children = { { value = "sandreaver.m2", + text = "sandreaver.m2", fileId = "125782", text = "sandreaver.m2", }, @@ -3183,9 +3770,11 @@ WeakAuras.ModelPaths = { }, { value = "sandworm", + text = "sandworm", children = { { value = "sandworm.m2", + text = "sandworm.m2", fileId = "125795", text = "sandworm.m2", }, @@ -3194,9 +3783,11 @@ WeakAuras.ModelPaths = { }, { value = "satyr", + text = "satyr", children = { { value = "satyr.m2", + text = "satyr.m2", fileId = "125796", text = "satyr.m2", }, @@ -3205,9 +3796,11 @@ WeakAuras.ModelPaths = { }, { value = "scorpion", + text = "scorpion", children = { { value = "scorpion.m2", + text = "scorpion.m2", fileId = "125815", text = "scorpion.m2", }, @@ -3216,9 +3809,11 @@ WeakAuras.ModelPaths = { }, { value = "seagiant", + text = "seagiant", children = { { value = "seagiant.m2", + text = "seagiant.m2", fileId = "125830", text = "seagiant.m2", }, @@ -3227,9 +3822,11 @@ WeakAuras.ModelPaths = { }, { value = "sealion", + text = "sealion", children = { { value = "sealion.m2", + text = "sealion.m2", fileId = "125835", text = "sealion.m2", }, @@ -3238,9 +3835,11 @@ WeakAuras.ModelPaths = { }, { value = "seaturtle", + text = "seaturtle", children = { { value = "seaturtle.m2", + text = "seaturtle.m2", fileId = "125837", text = "seaturtle.m2", }, @@ -3249,9 +3848,11 @@ WeakAuras.ModelPaths = { }, { value = "serpent", + text = "serpent", children = { { value = "serpent.m2", + text = "serpent.m2", fileId = "125851", text = "serpent.m2", }, @@ -3260,14 +3861,17 @@ WeakAuras.ModelPaths = { }, { value = "shade", + text = "shade", children = { { value = "shade.m2", + text = "shade.m2", fileId = "125854", text = "shade.m2", }, { value = "shadewhite.m2", + text = "shadewhite.m2", fileId = "2199329", text = "shadewhite.m2", }, @@ -3276,14 +3880,17 @@ WeakAuras.ModelPaths = { }, { value = "shark", + text = "shark", children = { { value = "hammerhead.m2", + text = "hammerhead.m2", fileId = "125859", text = "hammerhead.m2", }, { value = "shark.m2", + text = "shark.m2", fileId = "125860", text = "shark.m2", }, @@ -3292,9 +3899,11 @@ WeakAuras.ModelPaths = { }, { value = "sheep", + text = "sheep", children = { { value = "sheep.m2", + text = "sheep.m2", fileId = "125865", text = "sheep.m2", }, @@ -3303,9 +3912,11 @@ WeakAuras.ModelPaths = { }, { value = "silithid", + text = "silithid", children = { { value = "silithid.m2", + text = "silithid.m2", fileId = "125891", text = "silithid.m2", }, @@ -3314,9 +3925,11 @@ WeakAuras.ModelPaths = { }, { value = "silithidscarab", + text = "silithidscarab", children = { { value = "silithidscarab.m2", + text = "silithidscarab.m2", fileId = "125892", text = "silithidscarab.m2", }, @@ -3325,9 +3938,11 @@ WeakAuras.ModelPaths = { }, { value = "silithidtank", + text = "silithidtank", children = { { value = "silithidtank.m2", + text = "silithidtank.m2", fileId = "125902", text = "silithidtank.m2", }, @@ -3336,14 +3951,17 @@ WeakAuras.ModelPaths = { }, { value = "silithidtankboss", + text = "silithidtankboss", children = { { value = "silithidtankboss.m2", + text = "silithidtankboss.m2", fileId = "125912", text = "silithidtankboss.m2", }, { value = "silithidtankboss_damaged.m2", + text = "silithidtankboss_damaged.m2", fileId = "125913", text = "silithidtankboss_damaged.m2", }, @@ -3352,9 +3970,11 @@ WeakAuras.ModelPaths = { }, { value = "silithidwasp", + text = "silithidwasp", children = { { value = "silithidwasp.m2", + text = "silithidwasp.m2", fileId = "125931", text = "silithidwasp.m2", }, @@ -3363,9 +3983,11 @@ WeakAuras.ModelPaths = { }, { value = "silithidwaspboss", + text = "silithidwaspboss", children = { { value = "silithidwaspboss.m2", + text = "silithidwaspboss.m2", fileId = "125932", text = "silithidwaspboss.m2", }, @@ -3374,9 +3996,11 @@ WeakAuras.ModelPaths = { }, { value = "skeletalserpent", + text = "skeletalserpent", children = { { value = "skeletalserpent.m2", + text = "skeletalserpent.m2", fileId = "125938", text = "skeletalserpent.m2", }, @@ -3385,9 +4009,11 @@ WeakAuras.ModelPaths = { }, { value = "skeleton", + text = "skeleton", children = { { value = "skeleton.m2", + text = "skeleton.m2", fileId = "125942", text = "skeleton.m2", }, @@ -3396,9 +4022,11 @@ WeakAuras.ModelPaths = { }, { value = "skeletonmage", + text = "skeletonmage", children = { { value = "skeletonmage.m2", + text = "skeletonmage.m2", fileId = "125947", text = "skeletonmage.m2", }, @@ -3407,9 +4035,11 @@ WeakAuras.ModelPaths = { }, { value = "skeletonnaked", + text = "skeletonnaked", children = { { value = "skeletonnaked.m2", + text = "skeletonnaked.m2", fileId = "125948", text = "skeletonnaked.m2", }, @@ -3418,14 +4048,17 @@ WeakAuras.ModelPaths = { }, { value = "slime", + text = "slime", children = { { value = "slime.m2", + text = "slime.m2", fileId = "125957", text = "slime.m2", }, { value = "slimelesser.m2", + text = "slimelesser.m2", fileId = "125958", text = "slimelesser.m2", }, @@ -3434,9 +4067,11 @@ WeakAuras.ModelPaths = { }, { value = "slimegiant", + text = "slimegiant", children = { { value = "giantslime.m2", + text = "giantslime.m2", fileId = "125965", text = "giantslime.m2", }, @@ -3445,9 +4080,11 @@ WeakAuras.ModelPaths = { }, { value = "slith", + text = "slith", children = { { value = "slith.m2", + text = "slith.m2", fileId = "125967", text = "slith.m2", }, @@ -3456,9 +4093,11 @@ WeakAuras.ModelPaths = { }, { value = "snake", + text = "snake", children = { { value = "snake.m2", + text = "snake.m2", fileId = "125969", text = "snake.m2", }, @@ -3467,9 +4106,11 @@ WeakAuras.ModelPaths = { }, { value = "snowman", + text = "snowman", children = { { value = "snowman.m2", + text = "snowman.m2", fileId = "125984", text = "snowman.m2", }, @@ -3478,99 +4119,119 @@ WeakAuras.ModelPaths = { }, { value = "spells", + text = "spells", children = { { value = "airelementaltotem.m2", + text = "airelementaltotem.m2", fileId = "125990", text = "airelementaltotem.m2", }, { value = "battlestandard_alliance.m2", + text = "battlestandard_alliance.m2", fileId = "125991", text = "battlestandard_alliance.m2", }, { value = "battlestandard_horde.m2", + text = "battlestandard_horde.m2", fileId = "125993", text = "battlestandard_horde.m2", }, { value = "creature_spellportal.m2", + text = "creature_spellportal.m2", fileId = "125995", text = "creature_spellportal.m2", }, { value = "earthelementaltotem.m2", + text = "earthelementaltotem.m2", fileId = "126009", text = "earthelementaltotem.m2", }, { value = "eyeofkilrog.m2", + text = "eyeofkilrog.m2", fileId = "126011", text = "eyeofkilrog.m2", }, { value = "fireelementaltotem.m2", + text = "fireelementaltotem.m2", fileId = "126012", text = "fireelementaltotem.m2", }, { value = "firelighttotem.m2", + text = "firelighttotem.m2", fileId = "126013", text = "firelighttotem.m2", }, { value = "firetotem.m2", + text = "firetotem.m2", fileId = "126014", text = "firetotem.m2", }, { value = "healingtotem.m2", + text = "healingtotem.m2", fileId = "126018", text = "healingtotem.m2", }, { value = "invisibilitytotem.m2", + text = "invisibilitytotem.m2", fileId = "126020", text = "invisibilitytotem.m2", }, { value = "landmine01.m2", + text = "landmine01.m2", fileId = "126022", text = "landmine01.m2", }, { value = "manatotem.m2", + text = "manatotem.m2", fileId = "126024", text = "manatotem.m2", }, { value = "monsterlure01.m2", + text = "monsterlure01.m2", fileId = "126026", text = "monsterlure01.m2", }, { value = "sentrytotem.m2", + text = "sentrytotem.m2", fileId = "126032", text = "sentrytotem.m2", }, { value = "serpent_totem.m2", + text = "serpent_totem.m2", fileId = "126033", text = "serpent_totem.m2", }, { value = "stasistotem.m2", + text = "stasistotem.m2", fileId = "126036", text = "stasistotem.m2", }, { value = "valentinesdummy.m2", + text = "valentinesdummy.m2", fileId = "126040", text = "valentinesdummy.m2", }, { value = "waterelementaltotem.m2", + text = "waterelementaltotem.m2", fileId = "126041", text = "waterelementaltotem.m2", }, @@ -3579,9 +4240,11 @@ WeakAuras.ModelPaths = { }, { value = "spirithealer", + text = "spirithealer", children = { { value = "spirithealer.m2", + text = "spirithealer.m2", fileId = "126042", text = "spirithealer.m2", }, @@ -3590,9 +4253,11 @@ WeakAuras.ModelPaths = { }, { value = "spiritofredemption", + text = "spiritofredemption", children = { { value = "spiritofredemption.m2", + text = "spiritofredemption.m2", fileId = "126045", text = "spiritofredemption.m2", }, @@ -3601,9 +4266,11 @@ WeakAuras.ModelPaths = { }, { value = "sporecreature", + text = "sporecreature", children = { { value = "sporecreature.m2", + text = "sporecreature.m2", fileId = "126052", text = "sporecreature.m2", }, @@ -3612,9 +4279,11 @@ WeakAuras.ModelPaths = { }, { value = "squirrel", + text = "squirrel", children = { { value = "squirrel.m2", + text = "squirrel.m2", fileId = "126061", text = "squirrel.m2", }, @@ -3623,9 +4292,11 @@ WeakAuras.ModelPaths = { }, { value = "stag", + text = "stag", children = { { value = "stag.m2", + text = "stag.m2", fileId = "126065", text = "stag.m2", }, @@ -3634,9 +4305,11 @@ WeakAuras.ModelPaths = { }, { value = "steamtonk", + text = "steamtonk", children = { { value = "steamtonk.m2", + text = "steamtonk.m2", fileId = "126069", text = "steamtonk.m2", }, @@ -3645,9 +4318,11 @@ WeakAuras.ModelPaths = { }, { value = "stonekeeper", + text = "stonekeeper", children = { { value = "stonekeeper.m2", + text = "stonekeeper.m2", fileId = "126072", text = "stonekeeper.m2", }, @@ -3656,9 +4331,11 @@ WeakAuras.ModelPaths = { }, { value = "stormcrow", + text = "stormcrow", children = { { value = "stormcrow.m2", + text = "stormcrow.m2", fileId = "126075", text = "stormcrow.m2", }, @@ -3667,9 +4344,11 @@ WeakAuras.ModelPaths = { }, { value = "succubus", + text = "succubus", children = { { value = "succubus.m2", + text = "succubus.m2", fileId = "126081", text = "succubus.m2", }, @@ -3678,9 +4357,11 @@ WeakAuras.ModelPaths = { }, { value = "tallstrider", + text = "tallstrider", children = { { value = "tallstrider.m2", + text = "tallstrider.m2", fileId = "126117", text = "tallstrider.m2", }, @@ -3689,9 +4370,11 @@ WeakAuras.ModelPaths = { }, { value = "tarantula", + text = "tarantula", children = { { value = "tarantula.m2", + text = "tarantula.m2", fileId = "126124", text = "tarantula.m2", }, @@ -3700,9 +4383,11 @@ WeakAuras.ModelPaths = { }, { value = "tempdeathguard", + text = "tempdeathguard", children = { { value = "deathguard.m2", + text = "deathguard.m2", fileId = "126131", text = "deathguard.m2", }, @@ -3711,9 +4396,11 @@ WeakAuras.ModelPaths = { }, { value = "tempscarletcrusaderheavy", + text = "tempscarletcrusaderheavy", children = { { value = "scarletcrusaderheavy.m2", + text = "scarletcrusaderheavy.m2", fileId = "126133", text = "scarletcrusaderheavy.m2", }, @@ -3722,9 +4409,11 @@ WeakAuras.ModelPaths = { }, { value = "tempscarletcrusaderlight", + text = "tempscarletcrusaderlight", children = { { value = "scarletcrusaderlight.m2", + text = "scarletcrusaderlight.m2", fileId = "126136", text = "scarletcrusaderlight.m2", }, @@ -3733,9 +4422,11 @@ WeakAuras.ModelPaths = { }, { value = "tempscourgemalenpc", + text = "tempscourgemalenpc", children = { { value = "scourgemalenpc.m2", + text = "scourgemalenpc.m2", fileId = "126137", text = "scourgemalenpc.m2", }, @@ -3744,9 +4435,11 @@ WeakAuras.ModelPaths = { }, { value = "tharazun", + text = "tharazun", children = { { value = "tharazun.m2", + text = "tharazun.m2", fileId = "126150", text = "tharazun.m2", }, @@ -3755,9 +4448,11 @@ WeakAuras.ModelPaths = { }, { value = "threshadon", + text = "threshadon", children = { { value = "threshadon.m2", + text = "threshadon.m2", fileId = "126153", text = "threshadon.m2", }, @@ -3766,9 +4461,11 @@ WeakAuras.ModelPaths = { }, { value = "thunderaan", + text = "thunderaan", children = { { value = "thunderaan.m2", + text = "thunderaan.m2", fileId = "126158", text = "thunderaan.m2", }, @@ -3777,9 +4474,11 @@ WeakAuras.ModelPaths = { }, { value = "thunderlizard", + text = "thunderlizard", children = { { value = "thunderlizard.m2", + text = "thunderlizard.m2", fileId = "126169", text = "thunderlizard.m2", }, @@ -3788,19 +4487,23 @@ WeakAuras.ModelPaths = { }, { value = "tiger", + text = "tiger", children = { { value = "tiger.m2", + text = "tiger.m2", fileId = "126171", text = "tiger.m2", }, { value = "tiger_ghost.m2", + text = "tiger_ghost.m2", fileId = "126172", text = "tiger_ghost.m2", }, { value = "tigercub.m2", + text = "tigercub.m2", fileId = "126173", text = "tigercub.m2", }, @@ -3809,19 +4512,23 @@ WeakAuras.ModelPaths = { }, { value = "tigon", + text = "tigon", children = { { value = "tigon.m2", + text = "tigon.m2", fileId = "2199505", text = "tigon.m2", }, { value = "tigonfemale.m2", + text = "tigonfemale.m2", fileId = "126194", text = "tigonfemale.m2", }, { value = "tigonmale.m2", + text = "tigonmale.m2", fileId = "126195", text = "tigonmale.m2", }, @@ -3830,9 +4537,11 @@ WeakAuras.ModelPaths = { }, { value = "titanfemale", + text = "titanfemale", children = { { value = "titanfemale.m2", + text = "titanfemale.m2", fileId = "126199", text = "titanfemale.m2", }, @@ -3841,14 +4550,17 @@ WeakAuras.ModelPaths = { }, { value = "titanmale", + text = "titanmale", children = { { value = "titanmale.m2", + text = "titanmale.m2", fileId = "126214", text = "titanmale.m2", }, { value = "titanmale_ghost.m2", + text = "titanmale_ghost.m2", fileId = "126215", text = "titanmale_ghost.m2", }, @@ -3857,9 +4569,11 @@ WeakAuras.ModelPaths = { }, { value = "tree", + text = "tree", children = { { value = "ashenvaletreefalling01.m2", + text = "ashenvaletreefalling01.m2", fileId = "126223", text = "ashenvaletreefalling01.m2", }, @@ -3868,9 +4582,11 @@ WeakAuras.ModelPaths = { }, { value = "trex", + text = "trex", children = { { value = "trex.m2", + text = "trex.m2", fileId = "126225", text = "trex.m2", }, @@ -3879,9 +4595,11 @@ WeakAuras.ModelPaths = { }, { value = "troglodyte", + text = "troglodyte", children = { { value = "troglodyte.m2", + text = "troglodyte.m2", fileId = "126239", text = "troglodyte.m2", }, @@ -3890,39 +4608,47 @@ WeakAuras.ModelPaths = { }, { value = "troll", + text = "troll", children = { { value = "troll.m2", + text = "troll.m2", fileId = "126244", text = "troll.m2", }, { value = "trollforestboss.m2", + text = "trollforestboss.m2", fileId = "126245", text = "trollforestboss.m2", }, { value = "trollforestcaster.m2", + text = "trollforestcaster.m2", fileId = "126246", text = "trollforestcaster.m2", }, { value = "trolljungleboss.m2", + text = "trolljungleboss.m2", fileId = "126247", text = "trolljungleboss.m2", }, { value = "trolljunglecaster.m2", + text = "trolljunglecaster.m2", fileId = "126248", text = "trolljunglecaster.m2", }, { value = "trollmelee.m2", + text = "trollmelee.m2", fileId = "126249", text = "trollmelee.m2", }, { value = "trollwhelp.m2", + text = "trollwhelp.m2", fileId = "126267", text = "trollwhelp.m2", }, @@ -3931,9 +4657,11 @@ WeakAuras.ModelPaths = { }, { value = "trolldire", + text = "trolldire", children = { { value = "trolldire.m2", + text = "trolldire.m2", fileId = "126277", text = "trolldire.m2", }, @@ -3942,9 +4670,11 @@ WeakAuras.ModelPaths = { }, { value = "turkey", + text = "turkey", children = { { value = "turkey.m2", + text = "turkey.m2", fileId = "126278", text = "turkey.m2", }, @@ -3953,9 +4683,11 @@ WeakAuras.ModelPaths = { }, { value = "turtle", + text = "turtle", children = { { value = "turtle.m2", + text = "turtle.m2", fileId = "126281", text = "turtle.m2", }, @@ -3964,9 +4696,11 @@ WeakAuras.ModelPaths = { }, { value = "twinemperor", + text = "twinemperor", children = { { value = "twinemperor.m2", + text = "twinemperor.m2", fileId = "126289", text = "twinemperor.m2", }, @@ -3975,9 +4709,11 @@ WeakAuras.ModelPaths = { }, { value = "undeadbeast", + text = "undeadbeast", children = { { value = "undeadbeast.m2", + text = "undeadbeast.m2", fileId = "126302", text = "undeadbeast.m2", }, @@ -3986,14 +4722,17 @@ WeakAuras.ModelPaths = { }, { value = "undeadhorse", + text = "undeadhorse", children = { { value = "ridingundeadhorse.m2", + text = "ridingundeadhorse.m2", fileId = "126304", text = "ridingundeadhorse.m2", }, { value = "undeadhorse.m2", + text = "undeadhorse.m2", fileId = "126306", text = "undeadhorse.m2", }, @@ -4002,9 +4741,11 @@ WeakAuras.ModelPaths = { }, { value = "unicorn", + text = "unicorn", children = { { value = "unicorn.m2", + text = "unicorn.m2", fileId = "126320", text = "unicorn.m2", }, @@ -4013,9 +4754,11 @@ WeakAuras.ModelPaths = { }, { value = "voidterror", + text = "voidterror", children = { { value = "voidterror.m2", + text = "voidterror.m2", fileId = "126363", text = "voidterror.m2", }, @@ -4024,9 +4767,11 @@ WeakAuras.ModelPaths = { }, { value = "voidwalker", + text = "voidwalker", children = { { value = "voidwalker.m2", + text = "voidwalker.m2", fileId = "126369", text = "voidwalker.m2", }, @@ -4035,14 +4780,17 @@ WeakAuras.ModelPaths = { }, { value = "warhorse", + text = "warhorse", children = { { value = "pvpwarhorse.m2", + text = "pvpwarhorse.m2", fileId = "126403", text = "pvpwarhorse.m2", }, { value = "warhorse.m2", + text = "warhorse.m2", fileId = "126407", text = "warhorse.m2", }, @@ -4051,9 +4799,11 @@ WeakAuras.ModelPaths = { }, { value = "waterelemental", + text = "waterelemental", children = { { value = "waterelemental.m2", + text = "waterelemental.m2", fileId = "126426", text = "waterelemental.m2", }, @@ -4062,9 +4812,11 @@ WeakAuras.ModelPaths = { }, { value = "wendigo", + text = "wendigo", children = { { value = "wendigo.m2", + text = "wendigo.m2", fileId = "126444", text = "wendigo.m2", }, @@ -4073,9 +4825,11 @@ WeakAuras.ModelPaths = { }, { value = "wight", + text = "wight", children = { { value = "wight.m2", + text = "wight.m2", fileId = "126449", text = "wight.m2", }, @@ -4084,9 +4838,11 @@ WeakAuras.ModelPaths = { }, { value = "windserpent", + text = "windserpent", children = { { value = "windserpent.m2", + text = "windserpent.m2", fileId = "126452", text = "windserpent.m2", }, @@ -4095,14 +4851,17 @@ WeakAuras.ModelPaths = { }, { value = "wisp", + text = "wisp", children = { { value = "wisp.m2", + text = "wisp.m2", fileId = "126483", text = "wisp.m2", }, { value = "wispred.m2", + text = "wispred.m2", fileId = "2199512", text = "wispred.m2", }, @@ -4111,14 +4870,17 @@ WeakAuras.ModelPaths = { }, { value = "wolf", + text = "wolf", children = { { value = "wolf.m2", + text = "wolf.m2", fileId = "126487", text = "wolf.m2", }, { value = "wolf_ghost.m2", + text = "wolf_ghost.m2", fileId = "126488", text = "wolf_ghost.m2", }, @@ -4127,9 +4889,11 @@ WeakAuras.ModelPaths = { }, { value = "worgen", + text = "worgen", children = { { value = "worgen.m2", + text = "worgen.m2", fileId = "126511", text = "worgen.m2", }, @@ -4138,9 +4902,11 @@ WeakAuras.ModelPaths = { }, { value = "worm", + text = "worm", children = { { value = "worm.m2", + text = "worm.m2", fileId = "126512", text = "worm.m2", }, @@ -4149,9 +4915,11 @@ WeakAuras.ModelPaths = { }, { value = "wyvern", + text = "wyvern", children = { { value = "wyvern.m2", + text = "wyvern.m2", fileId = "126530", text = "wyvern.m2", }, @@ -4160,9 +4928,11 @@ WeakAuras.ModelPaths = { }, { value = "zergling", + text = "zergling", children = { { value = "zerglingpet.m2", + text = "zerglingpet.m2", fileId = "126561", text = "zerglingpet.m2", }, @@ -4171,9 +4941,11 @@ WeakAuras.ModelPaths = { }, { value = "zigguratcrystal", + text = "zigguratcrystal", children = { { value = "zigguratcrystal.m2", + text = "zigguratcrystal.m2", fileId = "126565", text = "zigguratcrystal.m2", }, @@ -4182,9 +4954,11 @@ WeakAuras.ModelPaths = { }, { value = "zippelin", + text = "zippelin", children = { { value = "zippelin.m2", + text = "zippelin.m2", fileId = "126568", text = "zippelin.m2", }, @@ -4193,19 +4967,23 @@ WeakAuras.ModelPaths = { }, { value = "zombie", + text = "zombie", children = { { value = "zombie.m2", + text = "zombie.m2", fileId = "126570", text = "zombie.m2", }, { value = "zombiearm.m2", + text = "zombiearm.m2", fileId = "126571", text = "zombiearm.m2", }, { value = "zombiesword.m2", + text = "zombiesword.m2", fileId = "126575", text = "zombiesword.m2", }, @@ -4217,37 +4995,45 @@ WeakAuras.ModelPaths = { }, { value = "environments", + text = "environments", children = { { value = "stars", + text = "stars", children = { { value = "cavernsoftimesky.m2", + text = "cavernsoftimesky.m2", fileId = "130482", text = "cavernsoftimesky.m2", }, { value = "cot_sky01.m2", + text = "cot_sky01.m2", fileId = "130493", text = "cot_sky01.m2", }, { value = "deathclouds.m2", + text = "deathclouds.m2", fileId = "130495", text = "deathclouds.m2", }, { value = "diremaulskybox.m2", + text = "diremaulskybox.m2", fileId = "130497", text = "diremaulskybox.m2", }, { value = "stars.m2", + text = "stars.m2", fileId = "130629", text = "stars.m2", }, { value = "stratholmeskybox.m2", + text = "stratholmeskybox.m2", fileId = "130636", text = "stratholmeskybox.m2", }, @@ -4259,112 +5045,135 @@ WeakAuras.ModelPaths = { }, { value = "interface", + text = "interface", children = { { value = "buttons", + text = "buttons", children = { { value = "talktome.m2", + text = "talktome.m2", fileId = "130731", text = "talktome.m2", }, { value = "talktome_chat.m2", + text = "talktome_chat.m2", fileId = "587741", text = "talktome_chat.m2", }, { value = "talktome_gears.m2", + text = "talktome_gears.m2", fileId = "587744", text = "talktome_gears.m2", }, { value = "talktome_legendary.m2", + text = "talktome_legendary.m2", fileId = "650616", text = "talktome_legendary.m2", }, { value = "talktome_petbattles.m2", + text = "talktome_petbattles.m2", fileId = "650036", text = "talktome_petbattles.m2", }, { value = "talktome_petbattles_gold.m2", + text = "talktome_petbattles_gold.m2", fileId = "667489", text = "talktome_petbattles_gold.m2", }, { value = "talktome_questionlegendary.m2", + text = "talktome_questionlegendary.m2", fileId = "650619", text = "talktome_questionlegendary.m2", }, { value = "talktomeblue.m2", + text = "talktomeblue.m2", fileId = "130732", text = "talktomeblue.m2", }, { value = "talktomeblue_faded.m2", + text = "talktomeblue_faded.m2", fileId = "1444889", text = "talktomeblue_faded.m2", }, { value = "talktomefaded.m2", + text = "talktomefaded.m2", fileId = "1417649", text = "talktomefaded.m2", }, { value = "talktomegreen.m2", + text = "talktomegreen.m2", fileId = "130733", text = "talktomegreen.m2", }, { value = "talktomegrey.m2", + text = "talktomegrey.m2", fileId = "130734", text = "talktomegrey.m2", }, { value = "talktomequestion_grey.m2", + text = "talktomequestion_grey.m2", fileId = "130735", text = "talktomequestion_grey.m2", }, { value = "talktomequestion_ltblue.m2", + text = "talktomequestion_ltblue.m2", fileId = "130736", text = "talktomequestion_ltblue.m2", }, { value = "talktomequestion_white.m2", + text = "talktomequestion_white.m2", fileId = "130737", text = "talktomequestion_white.m2", }, { value = "talktomequestionltblue_faded.m2", + text = "talktomequestionltblue_faded.m2", fileId = "1444892", text = "talktomequestionltblue_faded.m2", }, { value = "talktomequestionmark.m2", + text = "talktomequestionmark.m2", fileId = "130738", text = "talktomequestionmark.m2", }, { value = "talktomered.m2", + text = "talktomered.m2", fileId = "433904", text = "talktomered.m2", }, { value = "talktometrainerclass.m2", + text = "talktometrainerclass.m2", fileId = "523824", text = "talktometrainerclass.m2", }, { value = "ui-autocastbutton.m2", + text = "ui-autocastbutton.m2", fileId = "130745", text = "ui-autocastbutton.m2", }, { value = "ui-buffon.m2", + text = "ui-buffon.m2", fileId = "130746", text = "ui-buffon.m2", }, @@ -4373,9 +5182,11 @@ WeakAuras.ModelPaths = { }, { value = "cooldown", + text = "cooldown", children = { { value = "ui-cooldown-indicator.m2", + text = "ui-cooldown-indicator.m2", fileId = "131012", text = "ui-cooldown-indicator.m2", }, @@ -4384,15 +5195,19 @@ WeakAuras.ModelPaths = { }, { value = "glues", + text = "glues", children = { { value = "models", + text = "models", children = { { value = "ui_alliance", + text = "ui_alliance", children = { { value = "ui_alliance.m2", + text = "ui_alliance.m2", fileId = "623712", text = "ui_alliance.m2", }, @@ -4401,9 +5216,11 @@ WeakAuras.ModelPaths = { }, { value = "ui_alliance_lowres", + text = "ui_alliance_lowres", children = { { value = "ui_alliance_lowres.m2", + text = "ui_alliance_lowres.m2", fileId = "651555", text = "ui_alliance_lowres.m2", }, @@ -4412,9 +5229,11 @@ WeakAuras.ModelPaths = { }, { value = "ui_bloodelf", + text = "ui_bloodelf", children = { { value = "ui_bloodelf.m2", + text = "ui_bloodelf.m2", fileId = "131921", text = "ui_bloodelf.m2", }, @@ -4423,9 +5242,11 @@ WeakAuras.ModelPaths = { }, { value = "ui_characterselect", + text = "ui_characterselect", children = { { value = "ui_characterselect.m2", + text = "ui_characterselect.m2", fileId = "343630", text = "ui_characterselect.m2", }, @@ -4434,14 +5255,17 @@ WeakAuras.ModelPaths = { }, { value = "ui_deathknight", + text = "ui_deathknight", children = { { value = "ui_deathknight.m2", + text = "ui_deathknight.m2", fileId = "236082", text = "ui_deathknight.m2", }, { value = "ui_deathknight_lowres.m2", + text = "ui_deathknight_lowres.m2", fileId = "1560617", text = "ui_deathknight_lowres.m2", }, @@ -4450,14 +5274,17 @@ WeakAuras.ModelPaths = { }, { value = "ui_demonhunter", + text = "ui_demonhunter", children = { { value = "ui_demonhunter.m2", + text = "ui_demonhunter.m2", fileId = "1305036", text = "ui_demonhunter.m2", }, { value = "ui_demonhunter_lowres.m2", + text = "ui_demonhunter_lowres.m2", fileId = "1560446", text = "ui_demonhunter_lowres.m2", }, @@ -4466,9 +5293,11 @@ WeakAuras.ModelPaths = { }, { value = "ui_draenei", + text = "ui_draenei", children = { { value = "ui_draenei.m2", + text = "ui_draenei.m2", fileId = "131934", text = "ui_draenei.m2", }, @@ -4477,9 +5306,11 @@ WeakAuras.ModelPaths = { }, { value = "ui_dwarf", + text = "ui_dwarf", children = { { value = "ui_dwarf.m2", + text = "ui_dwarf.m2", fileId = "131940", text = "ui_dwarf.m2", }, @@ -4488,9 +5319,11 @@ WeakAuras.ModelPaths = { }, { value = "ui_gnome", + text = "ui_gnome", children = { { value = "ui_gnome.m2", + text = "ui_gnome.m2", fileId = "430171", text = "ui_gnome.m2", }, @@ -4499,9 +5332,11 @@ WeakAuras.ModelPaths = { }, { value = "ui_goblin", + text = "ui_goblin", children = { { value = "ui_goblin.m2", + text = "ui_goblin.m2", fileId = "319097", text = "ui_goblin.m2", }, @@ -4510,9 +5345,11 @@ WeakAuras.ModelPaths = { }, { value = "ui_highmountaintauren", + text = "ui_highmountaintauren", children = { { value = "ui_highmountaintauren.m2", + text = "ui_highmountaintauren.m2", fileId = "1662239", text = "ui_highmountaintauren.m2", }, @@ -4521,9 +5358,11 @@ WeakAuras.ModelPaths = { }, { value = "ui_horde", + text = "ui_horde", children = { { value = "ui_horde.m2", + text = "ui_horde.m2", fileId = "623714", text = "ui_horde.m2", }, @@ -4532,9 +5371,11 @@ WeakAuras.ModelPaths = { }, { value = "ui_horde_lowres", + text = "ui_horde_lowres", children = { { value = "ui_horde_lowres.m2", + text = "ui_horde_lowres.m2", fileId = "651558", text = "ui_horde_lowres.m2", }, @@ -4543,9 +5384,11 @@ WeakAuras.ModelPaths = { }, { value = "ui_human", + text = "ui_human", children = { { value = "ui_human.m2", + text = "ui_human.m2", fileId = "131948", text = "ui_human.m2", }, @@ -4554,9 +5397,11 @@ WeakAuras.ModelPaths = { }, { value = "ui_lightforgeddraenei", + text = "ui_lightforgeddraenei", children = { { value = "ui_lightforgeddraenei.m2", + text = "ui_lightforgeddraenei.m2", fileId = "1662241", text = "ui_lightforgeddraenei.m2", }, @@ -4565,9 +5410,11 @@ WeakAuras.ModelPaths = { }, { value = "ui_mainmenu", + text = "ui_mainmenu", children = { { value = "ui_mainmenu.m2", + text = "ui_mainmenu.m2", fileId = "131970", text = "ui_mainmenu.m2", }, @@ -4576,9 +5423,11 @@ WeakAuras.ModelPaths = { }, { value = "ui_mainmenu_burningcrusade", + text = "ui_mainmenu_burningcrusade", children = { { value = "ui_mainmenu_burningcrusade.m2", + text = "ui_mainmenu_burningcrusade.m2", fileId = "131982", text = "ui_mainmenu_burningcrusade.m2", }, @@ -4587,9 +5436,11 @@ WeakAuras.ModelPaths = { }, { value = "ui_mainmenu_cata_lowbandwidth", + text = "ui_mainmenu_cata_lowbandwidth", children = { { value = "ui_mainmenu_cata_lowbandwidth.m2", + text = "ui_mainmenu_cata_lowbandwidth.m2", fileId = "653518", text = "ui_mainmenu_cata_lowbandwidth.m2", }, @@ -4598,9 +5449,11 @@ WeakAuras.ModelPaths = { }, { value = "ui_mainmenu_cataclysm", + text = "ui_mainmenu_cataclysm", children = { { value = "ui_mainmenu_cataclysm.m2", + text = "ui_mainmenu_cataclysm.m2", fileId = "466614", text = "ui_mainmenu_cataclysm.m2", }, @@ -4609,14 +5462,17 @@ WeakAuras.ModelPaths = { }, { value = "ui_mainmenu_legion", + text = "ui_mainmenu_legion", children = { { value = "ui_mainmenu_legion.m2", + text = "ui_mainmenu_legion.m2", fileId = "1396280", text = "ui_mainmenu_legion.m2", }, { value = "ui_mainmenu_legion_lowbandwidth.m2", + text = "ui_mainmenu_legion_lowbandwidth.m2", fileId = "1396283", text = "ui_mainmenu_legion_lowbandwidth.m2", }, @@ -4625,9 +5481,11 @@ WeakAuras.ModelPaths = { }, { value = "ui_mainmenu_lowbandwidth", + text = "ui_mainmenu_lowbandwidth", children = { { value = "ui_mainmenu_lowbandwidth.m2", + text = "ui_mainmenu_lowbandwidth.m2", fileId = "467804", text = "ui_mainmenu_lowbandwidth.m2", }, @@ -4636,9 +5494,11 @@ WeakAuras.ModelPaths = { }, { value = "ui_mainmenu_northrend", + text = "ui_mainmenu_northrend", children = { { value = "ui_mainmenu_northrend.m2", + text = "ui_mainmenu_northrend.m2", fileId = "236122", text = "ui_mainmenu_northrend.m2", }, @@ -4647,9 +5507,11 @@ WeakAuras.ModelPaths = { }, { value = "ui_mainmenu_pandaria", + text = "ui_mainmenu_pandaria", children = { { value = "ui_mainmenu_pandaria.m2", + text = "ui_mainmenu_pandaria.m2", fileId = "631713", text = "ui_mainmenu_pandaria.m2", }, @@ -4658,14 +5520,17 @@ WeakAuras.ModelPaths = { }, { value = "ui_mainmenu_warlords", + text = "ui_mainmenu_warlords", children = { { value = "ui_mainmenu_warlords.m2", + text = "ui_mainmenu_warlords.m2", fileId = "1067592", text = "ui_mainmenu_warlords.m2", }, { value = "ui_mainmenu_warlords_lowbandwidth.m2", + text = "ui_mainmenu_warlords_lowbandwidth.m2", fileId = "1067658", text = "ui_mainmenu_warlords_lowbandwidth.m2", }, @@ -4674,9 +5539,11 @@ WeakAuras.ModelPaths = { }, { value = "ui_nightborneelf", + text = "ui_nightborneelf", children = { { value = "ui_nightborneelf.m2", + text = "ui_nightborneelf.m2", fileId = "1662240", text = "ui_nightborneelf.m2", }, @@ -4685,9 +5552,11 @@ WeakAuras.ModelPaths = { }, { value = "ui_nightelf", + text = "ui_nightelf", children = { { value = "ui_nightelf.m2", + text = "ui_nightelf.m2", fileId = "131993", text = "ui_nightelf.m2", }, @@ -4696,9 +5565,11 @@ WeakAuras.ModelPaths = { }, { value = "ui_orc", + text = "ui_orc", children = { { value = "ui_orc.m2", + text = "ui_orc.m2", fileId = "132003", text = "ui_orc.m2", }, @@ -4707,9 +5578,11 @@ WeakAuras.ModelPaths = { }, { value = "ui_pandaren", + text = "ui_pandaren", children = { { value = "ui_pandaren.m2", + text = "ui_pandaren.m2", fileId = "574549", text = "ui_pandaren.m2", }, @@ -4718,9 +5591,11 @@ WeakAuras.ModelPaths = { }, { value = "ui_pandarencharacterselect", + text = "ui_pandarencharacterselect", children = { { value = "ui_pandarencharacterselect.m2", + text = "ui_pandarencharacterselect.m2", fileId = "623716", text = "ui_pandarencharacterselect.m2", }, @@ -4729,9 +5604,11 @@ WeakAuras.ModelPaths = { }, { value = "ui_pandarencharacterselect_lowres", + text = "ui_pandarencharacterselect_lowres", children = { { value = "ui_pandarencharacterselect_lowres.m2", + text = "ui_pandarencharacterselect_lowres.m2", fileId = "651561", text = "ui_pandarencharacterselect_lowres.m2", }, @@ -4740,9 +5617,11 @@ WeakAuras.ModelPaths = { }, { value = "ui_rs_dwarf", + text = "ui_rs_dwarf", children = { { value = "ui_rs_dwarf.m2", + text = "ui_rs_dwarf.m2", fileId = "132005", text = "ui_rs_dwarf.m2", }, @@ -4751,9 +5630,11 @@ WeakAuras.ModelPaths = { }, { value = "ui_rs_human", + text = "ui_rs_human", children = { { value = "ui_rs_human.m2", + text = "ui_rs_human.m2", fileId = "132007", text = "ui_rs_human.m2", }, @@ -4762,9 +5643,11 @@ WeakAuras.ModelPaths = { }, { value = "ui_rs_nightelf", + text = "ui_rs_nightelf", children = { { value = "ui_rs_nightelf.m2", + text = "ui_rs_nightelf.m2", fileId = "132010", text = "ui_rs_nightelf.m2", }, @@ -4773,9 +5656,11 @@ WeakAuras.ModelPaths = { }, { value = "ui_rs_orc", + text = "ui_rs_orc", children = { { value = "ui_rs_orc.m2", + text = "ui_rs_orc.m2", fileId = "132016", text = "ui_rs_orc.m2", }, @@ -4784,9 +5669,11 @@ WeakAuras.ModelPaths = { }, { value = "ui_rs_scourge", + text = "ui_rs_scourge", children = { { value = "ui_rs_scourge.m2", + text = "ui_rs_scourge.m2", fileId = "132020", text = "ui_rs_scourge.m2", }, @@ -4795,9 +5682,11 @@ WeakAuras.ModelPaths = { }, { value = "ui_rs_tauren", + text = "ui_rs_tauren", children = { { value = "ui_rs_tauren.m2", + text = "ui_rs_tauren.m2", fileId = "132025", text = "ui_rs_tauren.m2", }, @@ -4806,9 +5695,11 @@ WeakAuras.ModelPaths = { }, { value = "ui_scourge", + text = "ui_scourge", children = { { value = "ui_scourge.m2", + text = "ui_scourge.m2", fileId = "132035", text = "ui_scourge.m2", }, @@ -4817,9 +5708,11 @@ WeakAuras.ModelPaths = { }, { value = "ui_tauren", + text = "ui_tauren", children = { { value = "ui_tauren.m2", + text = "ui_tauren.m2", fileId = "132046", text = "ui_tauren.m2", }, @@ -4828,9 +5721,11 @@ WeakAuras.ModelPaths = { }, { value = "ui_troll", + text = "ui_troll", children = { { value = "ui_troll.m2", + text = "ui_troll.m2", fileId = "429097", text = "ui_troll.m2", }, @@ -4839,9 +5734,11 @@ WeakAuras.ModelPaths = { }, { value = "ui_voidelf", + text = "ui_voidelf", children = { { value = "ui_voidelf.m2", + text = "ui_voidelf.m2", fileId = "1662242", text = "ui_voidelf.m2", }, @@ -4850,9 +5747,11 @@ WeakAuras.ModelPaths = { }, { value = "ui_worgen", + text = "ui_worgen", children = { { value = "ui_worgen.m2", + text = "ui_worgen.m2", fileId = "313254", text = "ui_worgen.m2", }, @@ -4867,19 +5766,23 @@ WeakAuras.ModelPaths = { }, { value = "inventoryitems", + text = "inventoryitems", children = { { value = "inventoryartgeometry.m2", + text = "inventoryartgeometry.m2", fileId = "2198609", text = "inventoryartgeometry.m2", }, { value = "inventoryartgeometryold.m2", + text = "inventoryartgeometryold.m2", fileId = "2198630", text = "inventoryartgeometryold.m2", }, { value = "invnoart.m2", + text = "invnoart.m2", fileId = "2198512", text = "invnoart.m2", }, @@ -4888,9 +5791,11 @@ WeakAuras.ModelPaths = { }, { value = "itemanimations", + text = "itemanimations", children = { { value = "forcedbackpackitem.m2", + text = "forcedbackpackitem.m2", fileId = "136255", text = "forcedbackpackitem.m2", }, @@ -4899,22 +5804,27 @@ WeakAuras.ModelPaths = { }, { value = "minimap", + text = "minimap", children = { { value = "minimaparrow.m2", + text = "minimaparrow.m2", fileId = "136432", text = "minimaparrow.m2", }, { value = "minimapcompassring.m2", + text = "minimapcompassring.m2", fileId = "136433", text = "minimapcompassring.m2", }, { value = "ping", + text = "ping", children = { { value = "minimapping.m2", + text = "minimapping.m2", fileId = "136436", text = "minimapping.m2", }, @@ -4923,11 +5833,13 @@ WeakAuras.ModelPaths = { }, { value = "rotating-minimaparrow.m2", + text = "rotating-minimaparrow.m2", fileId = "136444", text = "rotating-minimaparrow.m2", }, { value = "rotating-minimapgrouparrow.m2", + text = "rotating-minimapgrouparrow.m2", fileId = "136447", text = "rotating-minimapgrouparrow.m2", }, @@ -4936,39 +5848,47 @@ WeakAuras.ModelPaths = { }, { value = "titlecards", + text = "titlecards", children = { { value = "6hu_title_garrison.m2", + text = "6hu_title_garrison.m2", fileId = "1068226", text = "6hu_title_garrison.m2", }, { value = "6ih_title_blackhand.m2", + text = "6ih_title_blackhand.m2", fileId = "1068263", text = "6ih_title_blackhand.m2", }, { value = "6ih_title_guldan.m2", + text = "6ih_title_guldan.m2", fileId = "1068262", text = "6ih_title_guldan.m2", }, { value = "6ih_title_kargath.m2", + text = "6ih_title_kargath.m2", fileId = "1068259", text = "6ih_title_kargath.m2", }, { value = "6ih_title_kilrogg.m2", + text = "6ih_title_kilrogg.m2", fileId = "1068258", text = "6ih_title_kilrogg.m2", }, { value = "6ih_title_nerzhul.m2", + text = "6ih_title_nerzhul.m2", fileId = "1068253", text = "6ih_title_nerzhul.m2", }, { value = "6or_title_garrison.m2", + text = "6or_title_garrison.m2", fileId = "1068227", text = "6or_title_garrison.m2", }, @@ -4977,14 +5897,17 @@ WeakAuras.ModelPaths = { }, { value = "vehicles", + text = "vehicles", children = { { value = "vehicle_target_01.m2", + text = "vehicle_target_01.m2", fileId = "237714", text = "vehicle_target_01.m2", }, { value = "vehicle_target_02.m2", + text = "vehicle_target_02.m2", fileId = "237715", text = "vehicle_target_02.m2", }, @@ -4996,40 +5919,49 @@ WeakAuras.ModelPaths = { }, { value = "item", + text = "item", children = { { value = "objectcomponents", + text = "objectcomponents", children = { { value = "ammo", + text = "ammo", children = { { value = "arrowacidflight_01.m2", + text = "arrowacidflight_01.m2", fileId = "137238", text = "arrowacidflight_01.m2", }, { value = "arrowfireflight_01.m2", + text = "arrowfireflight_01.m2", fileId = "137239", text = "arrowfireflight_01.m2", }, { value = "arrowflight_01.m2", + text = "arrowflight_01.m2", fileId = "137240", text = "arrowflight_01.m2", }, { value = "arrowiceflight_01.m2", + text = "arrowiceflight_01.m2", fileId = "137241", text = "arrowiceflight_01.m2", }, { value = "arrowmagicflight_01.m2", + text = "arrowmagicflight_01.m2", fileId = "137242", text = "arrowmagicflight_01.m2", }, { value = "bulletflight_01.m2", + text = "bulletflight_01.m2", fileId = "137245", text = "bulletflight_01.m2", }, @@ -5038,17 +5970,21 @@ WeakAuras.ModelPaths = { }, { value = "battlestandards", + text = "battlestandards", children = { { value = "battlestandard_alliance_a_01", + text = "battlestandard_alliance_a_01", children = { { value = "battlestandard_alliance_a_01.m2", + text = "battlestandard_alliance_a_01.m2", fileId = "137247", text = "battlestandard_alliance_a_01.m2", }, { value = "battlestandard_stormpike_a_01.m2", + text = "battlestandard_stormpike_a_01.m2", fileId = "2198613", text = "battlestandard_stormpike_a_01.m2", }, @@ -5057,14 +5993,17 @@ WeakAuras.ModelPaths = { }, { value = "battlestandard_horde_a_01", + text = "battlestandard_horde_a_01", children = { { value = "battlestandard_frostwolf_a_01.m2", + text = "battlestandard_frostwolf_a_01.m2", fileId = "2199527", text = "battlestandard_frostwolf_a_01.m2", }, { value = "battlestandard_horde_a_01.m2", + text = "battlestandard_horde_a_01.m2", fileId = "137253", text = "battlestandard_horde_a_01.m2", }, @@ -5076,9009 +6015,10811 @@ WeakAuras.ModelPaths = { }, { value = "head", + text = "head", children = { { value = "helm_blindfold_a_01_dwf.m2", + text = "helm_blindfold_a_01_dwf.m2", fileId = "137447", text = "helm_blindfold_a_01_dwf.m2", }, { value = "helm_blindfold_a_01_dwm.m2", + text = "helm_blindfold_a_01_dwm.m2", fileId = "137448", text = "helm_blindfold_a_01_dwm.m2", }, { value = "helm_blindfold_a_01_gnf.m2", + text = "helm_blindfold_a_01_gnf.m2", fileId = "137449", text = "helm_blindfold_a_01_gnf.m2", }, { value = "helm_blindfold_a_01_gnm.m2", + text = "helm_blindfold_a_01_gnm.m2", fileId = "137450", text = "helm_blindfold_a_01_gnm.m2", }, { value = "helm_blindfold_a_01_huf.m2", + text = "helm_blindfold_a_01_huf.m2", fileId = "137453", text = "helm_blindfold_a_01_huf.m2", }, { value = "helm_blindfold_a_01_hum.m2", + text = "helm_blindfold_a_01_hum.m2", fileId = "137454", text = "helm_blindfold_a_01_hum.m2", }, { value = "helm_blindfold_a_01_nif.m2", + text = "helm_blindfold_a_01_nif.m2", fileId = "137455", text = "helm_blindfold_a_01_nif.m2", }, { value = "helm_blindfold_a_01_nim.m2", + text = "helm_blindfold_a_01_nim.m2", fileId = "137456", text = "helm_blindfold_a_01_nim.m2", }, { value = "helm_blindfold_a_01_orf.m2", + text = "helm_blindfold_a_01_orf.m2", fileId = "137457", text = "helm_blindfold_a_01_orf.m2", }, { value = "helm_blindfold_a_01_orm.m2", + text = "helm_blindfold_a_01_orm.m2", fileId = "137458", text = "helm_blindfold_a_01_orm.m2", }, { value = "helm_blindfold_a_01_scf.m2", + text = "helm_blindfold_a_01_scf.m2", fileId = "137459", text = "helm_blindfold_a_01_scf.m2", }, { value = "helm_blindfold_a_01_scm.m2", + text = "helm_blindfold_a_01_scm.m2", fileId = "137460", text = "helm_blindfold_a_01_scm.m2", }, { value = "helm_blindfold_a_01_taf.m2", + text = "helm_blindfold_a_01_taf.m2", fileId = "137461", text = "helm_blindfold_a_01_taf.m2", }, { value = "helm_blindfold_a_01_tam.m2", + text = "helm_blindfold_a_01_tam.m2", fileId = "137462", text = "helm_blindfold_a_01_tam.m2", }, { value = "helm_blindfold_a_01_trf.m2", + text = "helm_blindfold_a_01_trf.m2", fileId = "137463", text = "helm_blindfold_a_01_trf.m2", }, { value = "helm_blindfold_a_01_trm.m2", + text = "helm_blindfold_a_01_trm.m2", fileId = "137464", text = "helm_blindfold_a_01_trm.m2", }, { value = "helm_circlet_a_01_dwf.m2", + text = "helm_circlet_a_01_dwf.m2", fileId = "137471", text = "helm_circlet_a_01_dwf.m2", }, { value = "helm_circlet_a_01_dwm.m2", + text = "helm_circlet_a_01_dwm.m2", fileId = "137472", text = "helm_circlet_a_01_dwm.m2", }, { value = "helm_circlet_a_01_gnf.m2", + text = "helm_circlet_a_01_gnf.m2", fileId = "137473", text = "helm_circlet_a_01_gnf.m2", }, { value = "helm_circlet_a_01_gnm.m2", + text = "helm_circlet_a_01_gnm.m2", fileId = "137474", text = "helm_circlet_a_01_gnm.m2", }, { value = "helm_circlet_a_01_huf.m2", + text = "helm_circlet_a_01_huf.m2", fileId = "137477", text = "helm_circlet_a_01_huf.m2", }, { value = "helm_circlet_a_01_hum.m2", + text = "helm_circlet_a_01_hum.m2", fileId = "137478", text = "helm_circlet_a_01_hum.m2", }, { value = "helm_circlet_a_01_nif.m2", + text = "helm_circlet_a_01_nif.m2", fileId = "137479", text = "helm_circlet_a_01_nif.m2", }, { value = "helm_circlet_a_01_nim.m2", + text = "helm_circlet_a_01_nim.m2", fileId = "137480", text = "helm_circlet_a_01_nim.m2", }, { value = "helm_circlet_a_01_orf.m2", + text = "helm_circlet_a_01_orf.m2", fileId = "137481", text = "helm_circlet_a_01_orf.m2", }, { value = "helm_circlet_a_01_orm.m2", + text = "helm_circlet_a_01_orm.m2", fileId = "137482", text = "helm_circlet_a_01_orm.m2", }, { value = "helm_circlet_a_01_scf.m2", + text = "helm_circlet_a_01_scf.m2", fileId = "137483", text = "helm_circlet_a_01_scf.m2", }, { value = "helm_circlet_a_01_scm.m2", + text = "helm_circlet_a_01_scm.m2", fileId = "137484", text = "helm_circlet_a_01_scm.m2", }, { value = "helm_circlet_a_01_taf.m2", + text = "helm_circlet_a_01_taf.m2", fileId = "137485", text = "helm_circlet_a_01_taf.m2", }, { value = "helm_circlet_a_01_tam.m2", + text = "helm_circlet_a_01_tam.m2", fileId = "137486", text = "helm_circlet_a_01_tam.m2", }, { value = "helm_circlet_a_01_trf.m2", + text = "helm_circlet_a_01_trf.m2", fileId = "137487", text = "helm_circlet_a_01_trf.m2", }, { value = "helm_circlet_a_01_trm.m2", + text = "helm_circlet_a_01_trm.m2", fileId = "137488", text = "helm_circlet_a_01_trm.m2", }, { value = "helm_circlet_b_01_dwf.m2", + text = "helm_circlet_b_01_dwf.m2", fileId = "137495", text = "helm_circlet_b_01_dwf.m2", }, { value = "helm_circlet_b_01_dwm.m2", + text = "helm_circlet_b_01_dwm.m2", fileId = "137496", text = "helm_circlet_b_01_dwm.m2", }, { value = "helm_circlet_b_01_gnf.m2", + text = "helm_circlet_b_01_gnf.m2", fileId = "137497", text = "helm_circlet_b_01_gnf.m2", }, { value = "helm_circlet_b_01_gnm.m2", + text = "helm_circlet_b_01_gnm.m2", fileId = "137498", text = "helm_circlet_b_01_gnm.m2", }, { value = "helm_circlet_b_01_huf.m2", + text = "helm_circlet_b_01_huf.m2", fileId = "137501", text = "helm_circlet_b_01_huf.m2", }, { value = "helm_circlet_b_01_hum.m2", + text = "helm_circlet_b_01_hum.m2", fileId = "137502", text = "helm_circlet_b_01_hum.m2", }, { value = "helm_circlet_b_01_nif.m2", + text = "helm_circlet_b_01_nif.m2", fileId = "137503", text = "helm_circlet_b_01_nif.m2", }, { value = "helm_circlet_b_01_nim.m2", + text = "helm_circlet_b_01_nim.m2", fileId = "137504", text = "helm_circlet_b_01_nim.m2", }, { value = "helm_circlet_b_01_orf.m2", + text = "helm_circlet_b_01_orf.m2", fileId = "137505", text = "helm_circlet_b_01_orf.m2", }, { value = "helm_circlet_b_01_orm.m2", + text = "helm_circlet_b_01_orm.m2", fileId = "137506", text = "helm_circlet_b_01_orm.m2", }, { value = "helm_circlet_b_01_scf.m2", + text = "helm_circlet_b_01_scf.m2", fileId = "137507", text = "helm_circlet_b_01_scf.m2", }, { value = "helm_circlet_b_01_scm.m2", + text = "helm_circlet_b_01_scm.m2", fileId = "137508", text = "helm_circlet_b_01_scm.m2", }, { value = "helm_circlet_b_01_taf.m2", + text = "helm_circlet_b_01_taf.m2", fileId = "137509", text = "helm_circlet_b_01_taf.m2", }, { value = "helm_circlet_b_01_tam.m2", + text = "helm_circlet_b_01_tam.m2", fileId = "137510", text = "helm_circlet_b_01_tam.m2", }, { value = "helm_circlet_b_01_trf.m2", + text = "helm_circlet_b_01_trf.m2", fileId = "137511", text = "helm_circlet_b_01_trf.m2", }, { value = "helm_circlet_b_01_trm.m2", + text = "helm_circlet_b_01_trm.m2", fileId = "137512", text = "helm_circlet_b_01_trm.m2", }, { value = "helm_circlet_b_02_dwf.m2", + text = "helm_circlet_b_02_dwf.m2", fileId = "137524", text = "helm_circlet_b_02_dwf.m2", }, { value = "helm_circlet_b_02_dwm.m2", + text = "helm_circlet_b_02_dwm.m2", fileId = "137525", text = "helm_circlet_b_02_dwm.m2", }, { value = "helm_circlet_b_02_gnf.m2", + text = "helm_circlet_b_02_gnf.m2", fileId = "137526", text = "helm_circlet_b_02_gnf.m2", }, { value = "helm_circlet_b_02_gnm.m2", + text = "helm_circlet_b_02_gnm.m2", fileId = "137527", text = "helm_circlet_b_02_gnm.m2", }, { value = "helm_circlet_b_02_huf.m2", + text = "helm_circlet_b_02_huf.m2", fileId = "137530", text = "helm_circlet_b_02_huf.m2", }, { value = "helm_circlet_b_02_hum.m2", + text = "helm_circlet_b_02_hum.m2", fileId = "137531", text = "helm_circlet_b_02_hum.m2", }, { value = "helm_circlet_b_02_nif.m2", + text = "helm_circlet_b_02_nif.m2", fileId = "137532", text = "helm_circlet_b_02_nif.m2", }, { value = "helm_circlet_b_02_nim.m2", + text = "helm_circlet_b_02_nim.m2", fileId = "137533", text = "helm_circlet_b_02_nim.m2", }, { value = "helm_circlet_b_02_orf.m2", + text = "helm_circlet_b_02_orf.m2", fileId = "137534", text = "helm_circlet_b_02_orf.m2", }, { value = "helm_circlet_b_02_orm.m2", + text = "helm_circlet_b_02_orm.m2", fileId = "137535", text = "helm_circlet_b_02_orm.m2", }, { value = "helm_circlet_b_02_scf.m2", + text = "helm_circlet_b_02_scf.m2", fileId = "137536", text = "helm_circlet_b_02_scf.m2", }, { value = "helm_circlet_b_02_scm.m2", + text = "helm_circlet_b_02_scm.m2", fileId = "137537", text = "helm_circlet_b_02_scm.m2", }, { value = "helm_circlet_b_02_taf.m2", + text = "helm_circlet_b_02_taf.m2", fileId = "137538", text = "helm_circlet_b_02_taf.m2", }, { value = "helm_circlet_b_02_tam.m2", + text = "helm_circlet_b_02_tam.m2", fileId = "137539", text = "helm_circlet_b_02_tam.m2", }, { value = "helm_circlet_b_02_trf.m2", + text = "helm_circlet_b_02_trf.m2", fileId = "137540", text = "helm_circlet_b_02_trf.m2", }, { value = "helm_circlet_b_02_trm.m2", + text = "helm_circlet_b_02_trm.m2", fileId = "137541", text = "helm_circlet_b_02_trm.m2", }, { value = "helm_circlet_c_01_dwf.m2", + text = "helm_circlet_c_01_dwf.m2", fileId = "137552", text = "helm_circlet_c_01_dwf.m2", }, { value = "helm_circlet_c_01_dwm.m2", + text = "helm_circlet_c_01_dwm.m2", fileId = "137553", text = "helm_circlet_c_01_dwm.m2", }, { value = "helm_circlet_c_01_gnf.m2", + text = "helm_circlet_c_01_gnf.m2", fileId = "137554", text = "helm_circlet_c_01_gnf.m2", }, { value = "helm_circlet_c_01_gnm.m2", + text = "helm_circlet_c_01_gnm.m2", fileId = "137555", text = "helm_circlet_c_01_gnm.m2", }, { value = "helm_circlet_c_01_huf.m2", + text = "helm_circlet_c_01_huf.m2", fileId = "137558", text = "helm_circlet_c_01_huf.m2", }, { value = "helm_circlet_c_01_hum.m2", + text = "helm_circlet_c_01_hum.m2", fileId = "137559", text = "helm_circlet_c_01_hum.m2", }, { value = "helm_circlet_c_01_nif.m2", + text = "helm_circlet_c_01_nif.m2", fileId = "137560", text = "helm_circlet_c_01_nif.m2", }, { value = "helm_circlet_c_01_nim.m2", + text = "helm_circlet_c_01_nim.m2", fileId = "137561", text = "helm_circlet_c_01_nim.m2", }, { value = "helm_circlet_c_01_orf.m2", + text = "helm_circlet_c_01_orf.m2", fileId = "137562", text = "helm_circlet_c_01_orf.m2", }, { value = "helm_circlet_c_01_orm.m2", + text = "helm_circlet_c_01_orm.m2", fileId = "137563", text = "helm_circlet_c_01_orm.m2", }, { value = "helm_circlet_c_01_scf.m2", + text = "helm_circlet_c_01_scf.m2", fileId = "137564", text = "helm_circlet_c_01_scf.m2", }, { value = "helm_circlet_c_01_scm.m2", + text = "helm_circlet_c_01_scm.m2", fileId = "137565", text = "helm_circlet_c_01_scm.m2", }, { value = "helm_circlet_c_01_taf.m2", + text = "helm_circlet_c_01_taf.m2", fileId = "137566", text = "helm_circlet_c_01_taf.m2", }, { value = "helm_circlet_c_01_tam.m2", + text = "helm_circlet_c_01_tam.m2", fileId = "137567", text = "helm_circlet_c_01_tam.m2", }, { value = "helm_circlet_c_01_trf.m2", + text = "helm_circlet_c_01_trf.m2", fileId = "137568", text = "helm_circlet_c_01_trf.m2", }, { value = "helm_circlet_c_01_trm.m2", + text = "helm_circlet_c_01_trm.m2", fileId = "137569", text = "helm_circlet_c_01_trm.m2", }, { value = "helm_cloth_a_01_dwf.m2", + text = "helm_cloth_a_01_dwf.m2", fileId = "137577", text = "helm_cloth_a_01_dwf.m2", }, { value = "helm_cloth_a_01_dwm.m2", + text = "helm_cloth_a_01_dwm.m2", fileId = "137578", text = "helm_cloth_a_01_dwm.m2", }, { value = "helm_cloth_a_01_gnf.m2", + text = "helm_cloth_a_01_gnf.m2", fileId = "137579", text = "helm_cloth_a_01_gnf.m2", }, { value = "helm_cloth_a_01_gnm.m2", + text = "helm_cloth_a_01_gnm.m2", fileId = "137580", text = "helm_cloth_a_01_gnm.m2", }, { value = "helm_cloth_a_01_huf.m2", + text = "helm_cloth_a_01_huf.m2", fileId = "137583", text = "helm_cloth_a_01_huf.m2", }, { value = "helm_cloth_a_01_hum.m2", + text = "helm_cloth_a_01_hum.m2", fileId = "137584", text = "helm_cloth_a_01_hum.m2", }, { value = "helm_cloth_a_01_nif.m2", + text = "helm_cloth_a_01_nif.m2", fileId = "137585", text = "helm_cloth_a_01_nif.m2", }, { value = "helm_cloth_a_01_nim.m2", + text = "helm_cloth_a_01_nim.m2", fileId = "137586", text = "helm_cloth_a_01_nim.m2", }, { value = "helm_cloth_a_01_orf.m2", + text = "helm_cloth_a_01_orf.m2", fileId = "137587", text = "helm_cloth_a_01_orf.m2", }, { value = "helm_cloth_a_01_orm.m2", + text = "helm_cloth_a_01_orm.m2", fileId = "137588", text = "helm_cloth_a_01_orm.m2", }, { value = "helm_cloth_a_01_scf.m2", + text = "helm_cloth_a_01_scf.m2", fileId = "137589", text = "helm_cloth_a_01_scf.m2", }, { value = "helm_cloth_a_01_scm.m2", + text = "helm_cloth_a_01_scm.m2", fileId = "137590", text = "helm_cloth_a_01_scm.m2", }, { value = "helm_cloth_a_01_taf.m2", + text = "helm_cloth_a_01_taf.m2", fileId = "137591", text = "helm_cloth_a_01_taf.m2", }, { value = "helm_cloth_a_01_tam.m2", + text = "helm_cloth_a_01_tam.m2", fileId = "137592", text = "helm_cloth_a_01_tam.m2", }, { value = "helm_cloth_a_01_trf.m2", + text = "helm_cloth_a_01_trf.m2", fileId = "137593", text = "helm_cloth_a_01_trf.m2", }, { value = "helm_cloth_a_01_trm.m2", + text = "helm_cloth_a_01_trm.m2", fileId = "137594", text = "helm_cloth_a_01_trm.m2", }, { value = "helm_cloth_b_01pirate_dwf.m2", + text = "helm_cloth_b_01pirate_dwf.m2", fileId = "137651", text = "helm_cloth_b_01pirate_dwf.m2", }, { value = "helm_cloth_b_01pirate_dwm.m2", + text = "helm_cloth_b_01pirate_dwm.m2", fileId = "137652", text = "helm_cloth_b_01pirate_dwm.m2", }, { value = "helm_cloth_b_01pirate_gnf.m2", + text = "helm_cloth_b_01pirate_gnf.m2", fileId = "137653", text = "helm_cloth_b_01pirate_gnf.m2", }, { value = "helm_cloth_b_01pirate_gnm.m2", + text = "helm_cloth_b_01pirate_gnm.m2", fileId = "137654", text = "helm_cloth_b_01pirate_gnm.m2", }, { value = "helm_cloth_b_01pirate_huf.m2", + text = "helm_cloth_b_01pirate_huf.m2", fileId = "137657", text = "helm_cloth_b_01pirate_huf.m2", }, { value = "helm_cloth_b_01pirate_hum.m2", + text = "helm_cloth_b_01pirate_hum.m2", fileId = "137658", text = "helm_cloth_b_01pirate_hum.m2", }, { value = "helm_cloth_b_01pirate_nif.m2", + text = "helm_cloth_b_01pirate_nif.m2", fileId = "137659", text = "helm_cloth_b_01pirate_nif.m2", }, { value = "helm_cloth_b_01pirate_nim.m2", + text = "helm_cloth_b_01pirate_nim.m2", fileId = "137660", text = "helm_cloth_b_01pirate_nim.m2", }, { value = "helm_cloth_b_01pirate_orf.m2", + text = "helm_cloth_b_01pirate_orf.m2", fileId = "137661", text = "helm_cloth_b_01pirate_orf.m2", }, { value = "helm_cloth_b_01pirate_orm.m2", + text = "helm_cloth_b_01pirate_orm.m2", fileId = "137662", text = "helm_cloth_b_01pirate_orm.m2", }, { value = "helm_cloth_b_01pirate_scf.m2", + text = "helm_cloth_b_01pirate_scf.m2", fileId = "137663", text = "helm_cloth_b_01pirate_scf.m2", }, { value = "helm_cloth_b_01pirate_scm.m2", + text = "helm_cloth_b_01pirate_scm.m2", fileId = "137664", text = "helm_cloth_b_01pirate_scm.m2", }, { value = "helm_cloth_b_01pirate_taf.m2", + text = "helm_cloth_b_01pirate_taf.m2", fileId = "137665", text = "helm_cloth_b_01pirate_taf.m2", }, { value = "helm_cloth_b_01pirate_tam.m2", + text = "helm_cloth_b_01pirate_tam.m2", fileId = "137666", text = "helm_cloth_b_01pirate_tam.m2", }, { value = "helm_cloth_b_01pirate_trf.m2", + text = "helm_cloth_b_01pirate_trf.m2", fileId = "137667", text = "helm_cloth_b_01pirate_trf.m2", }, { value = "helm_cloth_b_01pirate_trm.m2", + text = "helm_cloth_b_01pirate_trm.m2", fileId = "137668", text = "helm_cloth_b_01pirate_trm.m2", }, { value = "helm_cloth_b_03admiral_dwf.m2", + text = "helm_cloth_b_03admiral_dwf.m2", fileId = "137676", text = "helm_cloth_b_03admiral_dwf.m2", }, { value = "helm_cloth_b_03admiral_dwm.m2", + text = "helm_cloth_b_03admiral_dwm.m2", fileId = "137677", text = "helm_cloth_b_03admiral_dwm.m2", }, { value = "helm_cloth_b_03admiral_gnf.m2", + text = "helm_cloth_b_03admiral_gnf.m2", fileId = "137678", text = "helm_cloth_b_03admiral_gnf.m2", }, { value = "helm_cloth_b_03admiral_gnm.m2", + text = "helm_cloth_b_03admiral_gnm.m2", fileId = "137679", text = "helm_cloth_b_03admiral_gnm.m2", }, { value = "helm_cloth_b_03admiral_huf.m2", + text = "helm_cloth_b_03admiral_huf.m2", fileId = "137682", text = "helm_cloth_b_03admiral_huf.m2", }, { value = "helm_cloth_b_03admiral_hum.m2", + text = "helm_cloth_b_03admiral_hum.m2", fileId = "137683", text = "helm_cloth_b_03admiral_hum.m2", }, { value = "helm_cloth_b_03admiral_nif.m2", + text = "helm_cloth_b_03admiral_nif.m2", fileId = "137684", text = "helm_cloth_b_03admiral_nif.m2", }, { value = "helm_cloth_b_03admiral_nim.m2", + text = "helm_cloth_b_03admiral_nim.m2", fileId = "137685", text = "helm_cloth_b_03admiral_nim.m2", }, { value = "helm_cloth_b_03admiral_orf.m2", + text = "helm_cloth_b_03admiral_orf.m2", fileId = "137686", text = "helm_cloth_b_03admiral_orf.m2", }, { value = "helm_cloth_b_03admiral_orm.m2", + text = "helm_cloth_b_03admiral_orm.m2", fileId = "137687", text = "helm_cloth_b_03admiral_orm.m2", }, { value = "helm_cloth_b_03admiral_scf.m2", + text = "helm_cloth_b_03admiral_scf.m2", fileId = "137688", text = "helm_cloth_b_03admiral_scf.m2", }, { value = "helm_cloth_b_03admiral_scm.m2", + text = "helm_cloth_b_03admiral_scm.m2", fileId = "137689", text = "helm_cloth_b_03admiral_scm.m2", }, { value = "helm_cloth_b_03admiral_taf.m2", + text = "helm_cloth_b_03admiral_taf.m2", fileId = "137690", text = "helm_cloth_b_03admiral_taf.m2", }, { value = "helm_cloth_b_03admiral_tam.m2", + text = "helm_cloth_b_03admiral_tam.m2", fileId = "137691", text = "helm_cloth_b_03admiral_tam.m2", }, { value = "helm_cloth_b_03admiral_trf.m2", + text = "helm_cloth_b_03admiral_trf.m2", fileId = "137692", text = "helm_cloth_b_03admiral_trf.m2", }, { value = "helm_cloth_b_03admiral_trm.m2", + text = "helm_cloth_b_03admiral_trm.m2", fileId = "137693", text = "helm_cloth_b_03admiral_trm.m2", }, { value = "helm_cloth_b_04widebrim_dwf.m2", + text = "helm_cloth_b_04widebrim_dwf.m2", fileId = "137700", text = "helm_cloth_b_04widebrim_dwf.m2", }, { value = "helm_cloth_b_04widebrim_dwm.m2", + text = "helm_cloth_b_04widebrim_dwm.m2", fileId = "137701", text = "helm_cloth_b_04widebrim_dwm.m2", }, { value = "helm_cloth_b_04widebrim_gnf.m2", + text = "helm_cloth_b_04widebrim_gnf.m2", fileId = "137702", text = "helm_cloth_b_04widebrim_gnf.m2", }, { value = "helm_cloth_b_04widebrim_gnm.m2", + text = "helm_cloth_b_04widebrim_gnm.m2", fileId = "137703", text = "helm_cloth_b_04widebrim_gnm.m2", }, { value = "helm_cloth_b_04widebrim_huf.m2", + text = "helm_cloth_b_04widebrim_huf.m2", fileId = "137706", text = "helm_cloth_b_04widebrim_huf.m2", }, { value = "helm_cloth_b_04widebrim_hum.m2", + text = "helm_cloth_b_04widebrim_hum.m2", fileId = "137707", text = "helm_cloth_b_04widebrim_hum.m2", }, { value = "helm_cloth_b_04widebrim_nif.m2", + text = "helm_cloth_b_04widebrim_nif.m2", fileId = "137708", text = "helm_cloth_b_04widebrim_nif.m2", }, { value = "helm_cloth_b_04widebrim_nim.m2", + text = "helm_cloth_b_04widebrim_nim.m2", fileId = "137709", text = "helm_cloth_b_04widebrim_nim.m2", }, { value = "helm_cloth_b_04widebrim_orf.m2", + text = "helm_cloth_b_04widebrim_orf.m2", fileId = "137710", text = "helm_cloth_b_04widebrim_orf.m2", }, { value = "helm_cloth_b_04widebrim_orm.m2", + text = "helm_cloth_b_04widebrim_orm.m2", fileId = "137711", text = "helm_cloth_b_04widebrim_orm.m2", }, { value = "helm_cloth_b_04widebrim_scf.m2", + text = "helm_cloth_b_04widebrim_scf.m2", fileId = "137712", text = "helm_cloth_b_04widebrim_scf.m2", }, { value = "helm_cloth_b_04widebrim_scm.m2", + text = "helm_cloth_b_04widebrim_scm.m2", fileId = "137713", text = "helm_cloth_b_04widebrim_scm.m2", }, { value = "helm_cloth_b_04widebrim_taf.m2", + text = "helm_cloth_b_04widebrim_taf.m2", fileId = "137714", text = "helm_cloth_b_04widebrim_taf.m2", }, { value = "helm_cloth_b_04widebrim_tam.m2", + text = "helm_cloth_b_04widebrim_tam.m2", fileId = "137715", text = "helm_cloth_b_04widebrim_tam.m2", }, { value = "helm_cloth_b_04widebrim_trf.m2", + text = "helm_cloth_b_04widebrim_trf.m2", fileId = "137716", text = "helm_cloth_b_04widebrim_trf.m2", }, { value = "helm_cloth_b_04widebrim_trm.m2", + text = "helm_cloth_b_04widebrim_trm.m2", fileId = "137717", text = "helm_cloth_b_04widebrim_trm.m2", }, { value = "helm_cloth_b_05_dwf.m2", + text = "helm_cloth_b_05_dwf.m2", fileId = "137730", text = "helm_cloth_b_05_dwf.m2", }, { value = "helm_cloth_b_05_dwm.m2", + text = "helm_cloth_b_05_dwm.m2", fileId = "137731", text = "helm_cloth_b_05_dwm.m2", }, { value = "helm_cloth_b_05_gnf.m2", + text = "helm_cloth_b_05_gnf.m2", fileId = "137732", text = "helm_cloth_b_05_gnf.m2", }, { value = "helm_cloth_b_05_gnm.m2", + text = "helm_cloth_b_05_gnm.m2", fileId = "137733", text = "helm_cloth_b_05_gnm.m2", }, { value = "helm_cloth_b_05_huf.m2", + text = "helm_cloth_b_05_huf.m2", fileId = "137736", text = "helm_cloth_b_05_huf.m2", }, { value = "helm_cloth_b_05_hum.m2", + text = "helm_cloth_b_05_hum.m2", fileId = "137737", text = "helm_cloth_b_05_hum.m2", }, { value = "helm_cloth_b_05_nif.m2", + text = "helm_cloth_b_05_nif.m2", fileId = "137738", text = "helm_cloth_b_05_nif.m2", }, { value = "helm_cloth_b_05_nim.m2", + text = "helm_cloth_b_05_nim.m2", fileId = "137739", text = "helm_cloth_b_05_nim.m2", }, { value = "helm_cloth_b_05_orf.m2", + text = "helm_cloth_b_05_orf.m2", fileId = "137740", text = "helm_cloth_b_05_orf.m2", }, { value = "helm_cloth_b_05_orm.m2", + text = "helm_cloth_b_05_orm.m2", fileId = "137741", text = "helm_cloth_b_05_orm.m2", }, { value = "helm_cloth_b_05_scf.m2", + text = "helm_cloth_b_05_scf.m2", fileId = "137742", text = "helm_cloth_b_05_scf.m2", }, { value = "helm_cloth_b_05_scm.m2", + text = "helm_cloth_b_05_scm.m2", fileId = "137743", text = "helm_cloth_b_05_scm.m2", }, { value = "helm_cloth_b_05_taf.m2", + text = "helm_cloth_b_05_taf.m2", fileId = "137744", text = "helm_cloth_b_05_taf.m2", }, { value = "helm_cloth_b_05_tam.m2", + text = "helm_cloth_b_05_tam.m2", fileId = "137745", text = "helm_cloth_b_05_tam.m2", }, { value = "helm_cloth_b_05_trf.m2", + text = "helm_cloth_b_05_trf.m2", fileId = "137746", text = "helm_cloth_b_05_trf.m2", }, { value = "helm_cloth_b_05_trm.m2", + text = "helm_cloth_b_05_trm.m2", fileId = "137747", text = "helm_cloth_b_05_trm.m2", }, { value = "helm_cloth_b_06_dwf.m2", + text = "helm_cloth_b_06_dwf.m2", fileId = "137755", text = "helm_cloth_b_06_dwf.m2", }, { value = "helm_cloth_b_06_dwm.m2", + text = "helm_cloth_b_06_dwm.m2", fileId = "137756", text = "helm_cloth_b_06_dwm.m2", }, { value = "helm_cloth_b_06_gnf.m2", + text = "helm_cloth_b_06_gnf.m2", fileId = "137757", text = "helm_cloth_b_06_gnf.m2", }, { value = "helm_cloth_b_06_gnm.m2", + text = "helm_cloth_b_06_gnm.m2", fileId = "137758", text = "helm_cloth_b_06_gnm.m2", }, { value = "helm_cloth_b_06_huf.m2", + text = "helm_cloth_b_06_huf.m2", fileId = "137761", text = "helm_cloth_b_06_huf.m2", }, { value = "helm_cloth_b_06_hum.m2", + text = "helm_cloth_b_06_hum.m2", fileId = "137762", text = "helm_cloth_b_06_hum.m2", }, { value = "helm_cloth_b_06_nif.m2", + text = "helm_cloth_b_06_nif.m2", fileId = "137763", text = "helm_cloth_b_06_nif.m2", }, { value = "helm_cloth_b_06_nim.m2", + text = "helm_cloth_b_06_nim.m2", fileId = "137764", text = "helm_cloth_b_06_nim.m2", }, { value = "helm_cloth_b_06_orf.m2", + text = "helm_cloth_b_06_orf.m2", fileId = "137765", text = "helm_cloth_b_06_orf.m2", }, { value = "helm_cloth_b_06_orm.m2", + text = "helm_cloth_b_06_orm.m2", fileId = "137766", text = "helm_cloth_b_06_orm.m2", }, { value = "helm_cloth_b_06_scf.m2", + text = "helm_cloth_b_06_scf.m2", fileId = "137767", text = "helm_cloth_b_06_scf.m2", }, { value = "helm_cloth_b_06_scm.m2", + text = "helm_cloth_b_06_scm.m2", fileId = "137768", text = "helm_cloth_b_06_scm.m2", }, { value = "helm_cloth_b_06_taf.m2", + text = "helm_cloth_b_06_taf.m2", fileId = "137769", text = "helm_cloth_b_06_taf.m2", }, { value = "helm_cloth_b_06_tam.m2", + text = "helm_cloth_b_06_tam.m2", fileId = "137770", text = "helm_cloth_b_06_tam.m2", }, { value = "helm_cloth_b_06_trf.m2", + text = "helm_cloth_b_06_trf.m2", fileId = "137771", text = "helm_cloth_b_06_trf.m2", }, { value = "helm_cloth_b_06_trm.m2", + text = "helm_cloth_b_06_trm.m2", fileId = "137772", text = "helm_cloth_b_06_trm.m2", }, { value = "helm_cloth_c_01mitre_dwf.m2", + text = "helm_cloth_c_01mitre_dwf.m2", fileId = "137786", text = "helm_cloth_c_01mitre_dwf.m2", }, { value = "helm_cloth_c_01mitre_dwm.m2", + text = "helm_cloth_c_01mitre_dwm.m2", fileId = "137787", text = "helm_cloth_c_01mitre_dwm.m2", }, { value = "helm_cloth_c_01mitre_gnf.m2", + text = "helm_cloth_c_01mitre_gnf.m2", fileId = "137788", text = "helm_cloth_c_01mitre_gnf.m2", }, { value = "helm_cloth_c_01mitre_gnm.m2", + text = "helm_cloth_c_01mitre_gnm.m2", fileId = "137789", text = "helm_cloth_c_01mitre_gnm.m2", }, { value = "helm_cloth_c_01mitre_huf.m2", + text = "helm_cloth_c_01mitre_huf.m2", fileId = "137792", text = "helm_cloth_c_01mitre_huf.m2", }, { value = "helm_cloth_c_01mitre_hum.m2", + text = "helm_cloth_c_01mitre_hum.m2", fileId = "137793", text = "helm_cloth_c_01mitre_hum.m2", }, { value = "helm_cloth_c_01mitre_nif.m2", + text = "helm_cloth_c_01mitre_nif.m2", fileId = "137794", text = "helm_cloth_c_01mitre_nif.m2", }, { value = "helm_cloth_c_01mitre_nim.m2", + text = "helm_cloth_c_01mitre_nim.m2", fileId = "137795", text = "helm_cloth_c_01mitre_nim.m2", }, { value = "helm_cloth_c_01mitre_orf.m2", + text = "helm_cloth_c_01mitre_orf.m2", fileId = "137796", text = "helm_cloth_c_01mitre_orf.m2", }, { value = "helm_cloth_c_01mitre_orm.m2", + text = "helm_cloth_c_01mitre_orm.m2", fileId = "137797", text = "helm_cloth_c_01mitre_orm.m2", }, { value = "helm_cloth_c_01mitre_scf.m2", + text = "helm_cloth_c_01mitre_scf.m2", fileId = "137798", text = "helm_cloth_c_01mitre_scf.m2", }, { value = "helm_cloth_c_01mitre_scm.m2", + text = "helm_cloth_c_01mitre_scm.m2", fileId = "137799", text = "helm_cloth_c_01mitre_scm.m2", }, { value = "helm_cloth_c_01mitre_taf.m2", + text = "helm_cloth_c_01mitre_taf.m2", fileId = "137800", text = "helm_cloth_c_01mitre_taf.m2", }, { value = "helm_cloth_c_01mitre_tam.m2", + text = "helm_cloth_c_01mitre_tam.m2", fileId = "137801", text = "helm_cloth_c_01mitre_tam.m2", }, { value = "helm_cloth_c_01mitre_trf.m2", + text = "helm_cloth_c_01mitre_trf.m2", fileId = "137802", text = "helm_cloth_c_01mitre_trf.m2", }, { value = "helm_cloth_c_01mitre_trm.m2", + text = "helm_cloth_c_01mitre_trm.m2", fileId = "137803", text = "helm_cloth_c_01mitre_trm.m2", }, { value = "helm_cloth_holiday_christmas_a_01_dwf.m2", + text = "helm_cloth_holiday_christmas_a_01_dwf.m2", fileId = "137809", text = "helm_cloth_holiday_christmas_a_01_dwf.m2", }, { value = "helm_cloth_holiday_christmas_a_01_dwm.m2", + text = "helm_cloth_holiday_christmas_a_01_dwm.m2", fileId = "137810", text = "helm_cloth_holiday_christmas_a_01_dwm.m2", }, { value = "helm_cloth_holiday_christmas_a_01_gnf.m2", + text = "helm_cloth_holiday_christmas_a_01_gnf.m2", fileId = "137811", text = "helm_cloth_holiday_christmas_a_01_gnf.m2", }, { value = "helm_cloth_holiday_christmas_a_01_gnm.m2", + text = "helm_cloth_holiday_christmas_a_01_gnm.m2", fileId = "137812", text = "helm_cloth_holiday_christmas_a_01_gnm.m2", }, { value = "helm_cloth_holiday_christmas_a_01_huf.m2", + text = "helm_cloth_holiday_christmas_a_01_huf.m2", fileId = "137815", text = "helm_cloth_holiday_christmas_a_01_huf.m2", }, { value = "helm_cloth_holiday_christmas_a_01_hum.m2", + text = "helm_cloth_holiday_christmas_a_01_hum.m2", fileId = "137816", text = "helm_cloth_holiday_christmas_a_01_hum.m2", }, { value = "helm_cloth_holiday_christmas_a_01_nif.m2", + text = "helm_cloth_holiday_christmas_a_01_nif.m2", fileId = "137817", text = "helm_cloth_holiday_christmas_a_01_nif.m2", }, { value = "helm_cloth_holiday_christmas_a_01_nim.m2", + text = "helm_cloth_holiday_christmas_a_01_nim.m2", fileId = "137818", text = "helm_cloth_holiday_christmas_a_01_nim.m2", }, { value = "helm_cloth_holiday_christmas_a_01_orf.m2", + text = "helm_cloth_holiday_christmas_a_01_orf.m2", fileId = "137819", text = "helm_cloth_holiday_christmas_a_01_orf.m2", }, { value = "helm_cloth_holiday_christmas_a_01_orm.m2", + text = "helm_cloth_holiday_christmas_a_01_orm.m2", fileId = "137820", text = "helm_cloth_holiday_christmas_a_01_orm.m2", }, { value = "helm_cloth_holiday_christmas_a_01_scf.m2", + text = "helm_cloth_holiday_christmas_a_01_scf.m2", fileId = "137821", text = "helm_cloth_holiday_christmas_a_01_scf.m2", }, { value = "helm_cloth_holiday_christmas_a_01_scm.m2", + text = "helm_cloth_holiday_christmas_a_01_scm.m2", fileId = "137822", text = "helm_cloth_holiday_christmas_a_01_scm.m2", }, { value = "helm_cloth_holiday_christmas_a_01_taf.m2", + text = "helm_cloth_holiday_christmas_a_01_taf.m2", fileId = "137823", text = "helm_cloth_holiday_christmas_a_01_taf.m2", }, { value = "helm_cloth_holiday_christmas_a_01_tam.m2", + text = "helm_cloth_holiday_christmas_a_01_tam.m2", fileId = "137824", text = "helm_cloth_holiday_christmas_a_01_tam.m2", }, { value = "helm_cloth_holiday_christmas_a_01_trf.m2", + text = "helm_cloth_holiday_christmas_a_01_trf.m2", fileId = "137825", text = "helm_cloth_holiday_christmas_a_01_trf.m2", }, { value = "helm_cloth_holiday_christmas_a_01_trm.m2", + text = "helm_cloth_holiday_christmas_a_01_trm.m2", fileId = "137826", text = "helm_cloth_holiday_christmas_a_01_trm.m2", }, { value = "helm_engi_b_01_dwf.m2", + text = "helm_engi_b_01_dwf.m2", fileId = "137878", text = "helm_engi_b_01_dwf.m2", }, { value = "helm_engi_b_01_dwm.m2", + text = "helm_engi_b_01_dwm.m2", fileId = "137879", text = "helm_engi_b_01_dwm.m2", }, { value = "helm_engi_b_01_gnf.m2", + text = "helm_engi_b_01_gnf.m2", fileId = "137880", text = "helm_engi_b_01_gnf.m2", }, { value = "helm_engi_b_01_gnm.m2", + text = "helm_engi_b_01_gnm.m2", fileId = "137881", text = "helm_engi_b_01_gnm.m2", }, { value = "helm_engi_b_01_huf.m2", + text = "helm_engi_b_01_huf.m2", fileId = "137884", text = "helm_engi_b_01_huf.m2", }, { value = "helm_engi_b_01_hum.m2", + text = "helm_engi_b_01_hum.m2", fileId = "137885", text = "helm_engi_b_01_hum.m2", }, { value = "helm_engi_b_01_nif.m2", + text = "helm_engi_b_01_nif.m2", fileId = "137886", text = "helm_engi_b_01_nif.m2", }, { value = "helm_engi_b_01_nim.m2", + text = "helm_engi_b_01_nim.m2", fileId = "137887", text = "helm_engi_b_01_nim.m2", }, { value = "helm_engi_b_01_orf.m2", + text = "helm_engi_b_01_orf.m2", fileId = "137888", text = "helm_engi_b_01_orf.m2", }, { value = "helm_engi_b_01_orm.m2", + text = "helm_engi_b_01_orm.m2", fileId = "137889", text = "helm_engi_b_01_orm.m2", }, { value = "helm_engi_b_01_scf.m2", + text = "helm_engi_b_01_scf.m2", fileId = "137890", text = "helm_engi_b_01_scf.m2", }, { value = "helm_engi_b_01_scm.m2", + text = "helm_engi_b_01_scm.m2", fileId = "137891", text = "helm_engi_b_01_scm.m2", }, { value = "helm_engi_b_01_taf.m2", + text = "helm_engi_b_01_taf.m2", fileId = "137892", text = "helm_engi_b_01_taf.m2", }, { value = "helm_engi_b_01_tam.m2", + text = "helm_engi_b_01_tam.m2", fileId = "137893", text = "helm_engi_b_01_tam.m2", }, { value = "helm_engi_b_01_trf.m2", + text = "helm_engi_b_01_trf.m2", fileId = "137894", text = "helm_engi_b_01_trf.m2", }, { value = "helm_engi_b_01_trm.m2", + text = "helm_engi_b_01_trm.m2", fileId = "137895", text = "helm_engi_b_01_trm.m2", }, { value = "helm_engi_b_02_dwf.m2", + text = "helm_engi_b_02_dwf.m2", fileId = "137901", text = "helm_engi_b_02_dwf.m2", }, { value = "helm_engi_b_02_dwm.m2", + text = "helm_engi_b_02_dwm.m2", fileId = "137902", text = "helm_engi_b_02_dwm.m2", }, { value = "helm_engi_b_02_gnf.m2", + text = "helm_engi_b_02_gnf.m2", fileId = "137903", text = "helm_engi_b_02_gnf.m2", }, { value = "helm_engi_b_02_gnm.m2", + text = "helm_engi_b_02_gnm.m2", fileId = "137904", text = "helm_engi_b_02_gnm.m2", }, { value = "helm_engi_b_02_huf.m2", + text = "helm_engi_b_02_huf.m2", fileId = "137907", text = "helm_engi_b_02_huf.m2", }, { value = "helm_engi_b_02_hum.m2", + text = "helm_engi_b_02_hum.m2", fileId = "137908", text = "helm_engi_b_02_hum.m2", }, { value = "helm_engi_b_02_nif.m2", + text = "helm_engi_b_02_nif.m2", fileId = "137909", text = "helm_engi_b_02_nif.m2", }, { value = "helm_engi_b_02_nim.m2", + text = "helm_engi_b_02_nim.m2", fileId = "137910", text = "helm_engi_b_02_nim.m2", }, { value = "helm_engi_b_02_orf.m2", + text = "helm_engi_b_02_orf.m2", fileId = "137911", text = "helm_engi_b_02_orf.m2", }, { value = "helm_engi_b_02_orm.m2", + text = "helm_engi_b_02_orm.m2", fileId = "137912", text = "helm_engi_b_02_orm.m2", }, { value = "helm_engi_b_02_scf.m2", + text = "helm_engi_b_02_scf.m2", fileId = "137913", text = "helm_engi_b_02_scf.m2", }, { value = "helm_engi_b_02_scm.m2", + text = "helm_engi_b_02_scm.m2", fileId = "137914", text = "helm_engi_b_02_scm.m2", }, { value = "helm_engi_b_02_taf.m2", + text = "helm_engi_b_02_taf.m2", fileId = "137915", text = "helm_engi_b_02_taf.m2", }, { value = "helm_engi_b_02_tam.m2", + text = "helm_engi_b_02_tam.m2", fileId = "137916", text = "helm_engi_b_02_tam.m2", }, { value = "helm_engi_b_02_trf.m2", + text = "helm_engi_b_02_trf.m2", fileId = "137917", text = "helm_engi_b_02_trf.m2", }, { value = "helm_engi_b_02_trm.m2", + text = "helm_engi_b_02_trm.m2", fileId = "137918", text = "helm_engi_b_02_trm.m2", }, { value = "helm_engi_c_01diver.m2", + text = "helm_engi_c_01diver.m2", fileId = "2199344", text = "helm_engi_c_01diver.m2", }, { value = "helm_engi_c_01diver_dwf.m2", + text = "helm_engi_c_01diver_dwf.m2", fileId = "137925", text = "helm_engi_c_01diver_dwf.m2", }, { value = "helm_engi_c_01diver_dwm.m2", + text = "helm_engi_c_01diver_dwm.m2", fileId = "137926", text = "helm_engi_c_01diver_dwm.m2", }, { value = "helm_engi_c_01diver_gnf.m2", + text = "helm_engi_c_01diver_gnf.m2", fileId = "137927", text = "helm_engi_c_01diver_gnf.m2", }, { value = "helm_engi_c_01diver_gnm.m2", + text = "helm_engi_c_01diver_gnm.m2", fileId = "137928", text = "helm_engi_c_01diver_gnm.m2", }, { value = "helm_engi_c_01diver_huf.m2", + text = "helm_engi_c_01diver_huf.m2", fileId = "137931", text = "helm_engi_c_01diver_huf.m2", }, { value = "helm_engi_c_01diver_hum.m2", + text = "helm_engi_c_01diver_hum.m2", fileId = "137932", text = "helm_engi_c_01diver_hum.m2", }, { value = "helm_engi_c_01diver_nif.m2", + text = "helm_engi_c_01diver_nif.m2", fileId = "137933", text = "helm_engi_c_01diver_nif.m2", }, { value = "helm_engi_c_01diver_nim.m2", + text = "helm_engi_c_01diver_nim.m2", fileId = "137934", text = "helm_engi_c_01diver_nim.m2", }, { value = "helm_engi_c_01diver_orf.m2", + text = "helm_engi_c_01diver_orf.m2", fileId = "137935", text = "helm_engi_c_01diver_orf.m2", }, { value = "helm_engi_c_01diver_orm.m2", + text = "helm_engi_c_01diver_orm.m2", fileId = "137936", text = "helm_engi_c_01diver_orm.m2", }, { value = "helm_engi_c_01diver_scf.m2", + text = "helm_engi_c_01diver_scf.m2", fileId = "137937", text = "helm_engi_c_01diver_scf.m2", }, { value = "helm_engi_c_01diver_scm.m2", + text = "helm_engi_c_01diver_scm.m2", fileId = "137938", text = "helm_engi_c_01diver_scm.m2", }, { value = "helm_engi_c_01diver_taf.m2", + text = "helm_engi_c_01diver_taf.m2", fileId = "137939", text = "helm_engi_c_01diver_taf.m2", }, { value = "helm_engi_c_01diver_tam.m2", + text = "helm_engi_c_01diver_tam.m2", fileId = "137940", text = "helm_engi_c_01diver_tam.m2", }, { value = "helm_engi_c_01diver_trf.m2", + text = "helm_engi_c_01diver_trf.m2", fileId = "137941", text = "helm_engi_c_01diver_trf.m2", }, { value = "helm_engi_c_01diver_trm.m2", + text = "helm_engi_c_01diver_trm.m2", fileId = "137942", text = "helm_engi_c_01diver_trm.m2", }, { value = "helm_engi_c_02space_dwf.m2", + text = "helm_engi_c_02space_dwf.m2", fileId = "137950", text = "helm_engi_c_02space_dwf.m2", }, { value = "helm_engi_c_02space_dwm.m2", + text = "helm_engi_c_02space_dwm.m2", fileId = "137951", text = "helm_engi_c_02space_dwm.m2", }, { value = "helm_engi_c_02space_gnf.m2", + text = "helm_engi_c_02space_gnf.m2", fileId = "137952", text = "helm_engi_c_02space_gnf.m2", }, { value = "helm_engi_c_02space_gnm.m2", + text = "helm_engi_c_02space_gnm.m2", fileId = "137953", text = "helm_engi_c_02space_gnm.m2", }, { value = "helm_engi_c_02space_huf.m2", + text = "helm_engi_c_02space_huf.m2", fileId = "137956", text = "helm_engi_c_02space_huf.m2", }, { value = "helm_engi_c_02space_hum.m2", + text = "helm_engi_c_02space_hum.m2", fileId = "137957", text = "helm_engi_c_02space_hum.m2", }, { value = "helm_engi_c_02space_nif.m2", + text = "helm_engi_c_02space_nif.m2", fileId = "137958", text = "helm_engi_c_02space_nif.m2", }, { value = "helm_engi_c_02space_nim.m2", + text = "helm_engi_c_02space_nim.m2", fileId = "137959", text = "helm_engi_c_02space_nim.m2", }, { value = "helm_engi_c_02space_orf.m2", + text = "helm_engi_c_02space_orf.m2", fileId = "137960", text = "helm_engi_c_02space_orf.m2", }, { value = "helm_engi_c_02space_orm.m2", + text = "helm_engi_c_02space_orm.m2", fileId = "137961", text = "helm_engi_c_02space_orm.m2", }, { value = "helm_engi_c_02space_scf.m2", + text = "helm_engi_c_02space_scf.m2", fileId = "137962", text = "helm_engi_c_02space_scf.m2", }, { value = "helm_engi_c_02space_scm.m2", + text = "helm_engi_c_02space_scm.m2", fileId = "137963", text = "helm_engi_c_02space_scm.m2", }, { value = "helm_engi_c_02space_taf.m2", + text = "helm_engi_c_02space_taf.m2", fileId = "137964", text = "helm_engi_c_02space_taf.m2", }, { value = "helm_engi_c_02space_tam.m2", + text = "helm_engi_c_02space_tam.m2", fileId = "137965", text = "helm_engi_c_02space_tam.m2", }, { value = "helm_engi_c_02space_trf.m2", + text = "helm_engi_c_02space_trf.m2", fileId = "137966", text = "helm_engi_c_02space_trf.m2", }, { value = "helm_engi_c_02space_trm.m2", + text = "helm_engi_c_02space_trm.m2", fileId = "137967", text = "helm_engi_c_02space_trm.m2", }, { value = "helm_eyepatch_a_01_dwf.m2", + text = "helm_eyepatch_a_01_dwf.m2", fileId = "137972", text = "helm_eyepatch_a_01_dwf.m2", }, { value = "helm_eyepatch_a_01_dwm.m2", + text = "helm_eyepatch_a_01_dwm.m2", fileId = "137973", text = "helm_eyepatch_a_01_dwm.m2", }, { value = "helm_eyepatch_a_01_gnf.m2", + text = "helm_eyepatch_a_01_gnf.m2", fileId = "137974", text = "helm_eyepatch_a_01_gnf.m2", }, { value = "helm_eyepatch_a_01_gnm.m2", + text = "helm_eyepatch_a_01_gnm.m2", fileId = "137975", text = "helm_eyepatch_a_01_gnm.m2", }, { value = "helm_eyepatch_a_01_huf.m2", + text = "helm_eyepatch_a_01_huf.m2", fileId = "137978", text = "helm_eyepatch_a_01_huf.m2", }, { value = "helm_eyepatch_a_01_hum.m2", + text = "helm_eyepatch_a_01_hum.m2", fileId = "137979", text = "helm_eyepatch_a_01_hum.m2", }, { value = "helm_eyepatch_a_01_nif.m2", + text = "helm_eyepatch_a_01_nif.m2", fileId = "137980", text = "helm_eyepatch_a_01_nif.m2", }, { value = "helm_eyepatch_a_01_nim.m2", + text = "helm_eyepatch_a_01_nim.m2", fileId = "137981", text = "helm_eyepatch_a_01_nim.m2", }, { value = "helm_eyepatch_a_01_orf.m2", + text = "helm_eyepatch_a_01_orf.m2", fileId = "137982", text = "helm_eyepatch_a_01_orf.m2", }, { value = "helm_eyepatch_a_01_orm.m2", + text = "helm_eyepatch_a_01_orm.m2", fileId = "137983", text = "helm_eyepatch_a_01_orm.m2", }, { value = "helm_eyepatch_a_01_scf.m2", + text = "helm_eyepatch_a_01_scf.m2", fileId = "137984", text = "helm_eyepatch_a_01_scf.m2", }, { value = "helm_eyepatch_a_01_scm.m2", + text = "helm_eyepatch_a_01_scm.m2", fileId = "137985", text = "helm_eyepatch_a_01_scm.m2", }, { value = "helm_eyepatch_a_01_taf.m2", + text = "helm_eyepatch_a_01_taf.m2", fileId = "137986", text = "helm_eyepatch_a_01_taf.m2", }, { value = "helm_eyepatch_a_01_tam.m2", + text = "helm_eyepatch_a_01_tam.m2", fileId = "137987", text = "helm_eyepatch_a_01_tam.m2", }, { value = "helm_eyepatch_a_01_trf.m2", + text = "helm_eyepatch_a_01_trf.m2", fileId = "137988", text = "helm_eyepatch_a_01_trf.m2", }, { value = "helm_eyepatch_a_01_trm.m2", + text = "helm_eyepatch_a_01_trm.m2", fileId = "137989", text = "helm_eyepatch_a_01_trm.m2", }, { value = "helm_goggles_b_01_dwf.m2", + text = "helm_goggles_b_01_dwf.m2", fileId = "138002", text = "helm_goggles_b_01_dwf.m2", }, { value = "helm_goggles_b_01_dwm.m2", + text = "helm_goggles_b_01_dwm.m2", fileId = "138003", text = "helm_goggles_b_01_dwm.m2", }, { value = "helm_goggles_b_01_gnf.m2", + text = "helm_goggles_b_01_gnf.m2", fileId = "138004", text = "helm_goggles_b_01_gnf.m2", }, { value = "helm_goggles_b_01_gnm.m2", + text = "helm_goggles_b_01_gnm.m2", fileId = "138005", text = "helm_goggles_b_01_gnm.m2", }, { value = "helm_goggles_b_01_huf.m2", + text = "helm_goggles_b_01_huf.m2", fileId = "138007", text = "helm_goggles_b_01_huf.m2", }, { value = "helm_goggles_b_01_hum.m2", + text = "helm_goggles_b_01_hum.m2", fileId = "138008", text = "helm_goggles_b_01_hum.m2", }, { value = "helm_goggles_b_01_nif.m2", + text = "helm_goggles_b_01_nif.m2", fileId = "138009", text = "helm_goggles_b_01_nif.m2", }, { value = "helm_goggles_b_01_nim.m2", + text = "helm_goggles_b_01_nim.m2", fileId = "138010", text = "helm_goggles_b_01_nim.m2", }, { value = "helm_goggles_b_01_orf.m2", + text = "helm_goggles_b_01_orf.m2", fileId = "138011", text = "helm_goggles_b_01_orf.m2", }, { value = "helm_goggles_b_01_orm.m2", + text = "helm_goggles_b_01_orm.m2", fileId = "138012", text = "helm_goggles_b_01_orm.m2", }, { value = "helm_goggles_b_01_scf.m2", + text = "helm_goggles_b_01_scf.m2", fileId = "138013", text = "helm_goggles_b_01_scf.m2", }, { value = "helm_goggles_b_01_scm.m2", + text = "helm_goggles_b_01_scm.m2", fileId = "138014", text = "helm_goggles_b_01_scm.m2", }, { value = "helm_goggles_b_01_taf.m2", + text = "helm_goggles_b_01_taf.m2", fileId = "138015", text = "helm_goggles_b_01_taf.m2", }, { value = "helm_goggles_b_01_tam.m2", + text = "helm_goggles_b_01_tam.m2", fileId = "138016", text = "helm_goggles_b_01_tam.m2", }, { value = "helm_goggles_b_01_trf.m2", + text = "helm_goggles_b_01_trf.m2", fileId = "138017", text = "helm_goggles_b_01_trf.m2", }, { value = "helm_goggles_b_01_trm.m2", + text = "helm_goggles_b_01_trm.m2", fileId = "138018", text = "helm_goggles_b_01_trm.m2", }, { value = "helm_goggles_b_02engi_dwf.m2", + text = "helm_goggles_b_02engi_dwf.m2", fileId = "138032", text = "helm_goggles_b_02engi_dwf.m2", }, { value = "helm_goggles_b_02engi_dwm.m2", + text = "helm_goggles_b_02engi_dwm.m2", fileId = "138033", text = "helm_goggles_b_02engi_dwm.m2", }, { value = "helm_goggles_b_02engi_gnf.m2", + text = "helm_goggles_b_02engi_gnf.m2", fileId = "138034", text = "helm_goggles_b_02engi_gnf.m2", }, { value = "helm_goggles_b_02engi_gnm.m2", + text = "helm_goggles_b_02engi_gnm.m2", fileId = "138035", text = "helm_goggles_b_02engi_gnm.m2", }, { value = "helm_goggles_b_02engi_huf.m2", + text = "helm_goggles_b_02engi_huf.m2", fileId = "138038", text = "helm_goggles_b_02engi_huf.m2", }, { value = "helm_goggles_b_02engi_hum.m2", + text = "helm_goggles_b_02engi_hum.m2", fileId = "138039", text = "helm_goggles_b_02engi_hum.m2", }, { value = "helm_goggles_b_02engi_nif.m2", + text = "helm_goggles_b_02engi_nif.m2", fileId = "138040", text = "helm_goggles_b_02engi_nif.m2", }, { value = "helm_goggles_b_02engi_nim.m2", + text = "helm_goggles_b_02engi_nim.m2", fileId = "138041", text = "helm_goggles_b_02engi_nim.m2", }, { value = "helm_goggles_b_02engi_orf.m2", + text = "helm_goggles_b_02engi_orf.m2", fileId = "138042", text = "helm_goggles_b_02engi_orf.m2", }, { value = "helm_goggles_b_02engi_orm.m2", + text = "helm_goggles_b_02engi_orm.m2", fileId = "138043", text = "helm_goggles_b_02engi_orm.m2", }, { value = "helm_goggles_b_02engi_scf.m2", + text = "helm_goggles_b_02engi_scf.m2", fileId = "138044", text = "helm_goggles_b_02engi_scf.m2", }, { value = "helm_goggles_b_02engi_scm.m2", + text = "helm_goggles_b_02engi_scm.m2", fileId = "138045", text = "helm_goggles_b_02engi_scm.m2", }, { value = "helm_goggles_b_02engi_taf.m2", + text = "helm_goggles_b_02engi_taf.m2", fileId = "138046", text = "helm_goggles_b_02engi_taf.m2", }, { value = "helm_goggles_b_02engi_tam.m2", + text = "helm_goggles_b_02engi_tam.m2", fileId = "138047", text = "helm_goggles_b_02engi_tam.m2", }, { value = "helm_goggles_b_02engi_trf.m2", + text = "helm_goggles_b_02engi_trf.m2", fileId = "138048", text = "helm_goggles_b_02engi_trf.m2", }, { value = "helm_goggles_b_02engi_trm.m2", + text = "helm_goggles_b_02engi_trm.m2", fileId = "138049", text = "helm_goggles_b_02engi_trm.m2", }, { value = "helm_goggles_b_03_dwf.m2", + text = "helm_goggles_b_03_dwf.m2", fileId = "138055", text = "helm_goggles_b_03_dwf.m2", }, { value = "helm_goggles_b_03_dwm.m2", + text = "helm_goggles_b_03_dwm.m2", fileId = "138056", text = "helm_goggles_b_03_dwm.m2", }, { value = "helm_goggles_b_03_gnf.m2", + text = "helm_goggles_b_03_gnf.m2", fileId = "138057", text = "helm_goggles_b_03_gnf.m2", }, { value = "helm_goggles_b_03_gnm.m2", + text = "helm_goggles_b_03_gnm.m2", fileId = "138058", text = "helm_goggles_b_03_gnm.m2", }, { value = "helm_goggles_b_03_huf.m2", + text = "helm_goggles_b_03_huf.m2", fileId = "138061", text = "helm_goggles_b_03_huf.m2", }, { value = "helm_goggles_b_03_hum.m2", + text = "helm_goggles_b_03_hum.m2", fileId = "138062", text = "helm_goggles_b_03_hum.m2", }, { value = "helm_goggles_b_03_nif.m2", + text = "helm_goggles_b_03_nif.m2", fileId = "138063", text = "helm_goggles_b_03_nif.m2", }, { value = "helm_goggles_b_03_nim.m2", + text = "helm_goggles_b_03_nim.m2", fileId = "138064", text = "helm_goggles_b_03_nim.m2", }, { value = "helm_goggles_b_03_orf.m2", + text = "helm_goggles_b_03_orf.m2", fileId = "138065", text = "helm_goggles_b_03_orf.m2", }, { value = "helm_goggles_b_03_orm.m2", + text = "helm_goggles_b_03_orm.m2", fileId = "138066", text = "helm_goggles_b_03_orm.m2", }, { value = "helm_goggles_b_03_scf.m2", + text = "helm_goggles_b_03_scf.m2", fileId = "138067", text = "helm_goggles_b_03_scf.m2", }, { value = "helm_goggles_b_03_scm.m2", + text = "helm_goggles_b_03_scm.m2", fileId = "138068", text = "helm_goggles_b_03_scm.m2", }, { value = "helm_goggles_b_03_taf.m2", + text = "helm_goggles_b_03_taf.m2", fileId = "138069", text = "helm_goggles_b_03_taf.m2", }, { value = "helm_goggles_b_03_tam.m2", + text = "helm_goggles_b_03_tam.m2", fileId = "138070", text = "helm_goggles_b_03_tam.m2", }, { value = "helm_goggles_b_03_trf.m2", + text = "helm_goggles_b_03_trf.m2", fileId = "138071", text = "helm_goggles_b_03_trf.m2", }, { value = "helm_goggles_b_03_trm.m2", + text = "helm_goggles_b_03_trm.m2", fileId = "138072", text = "helm_goggles_b_03_trm.m2", }, { value = "helm_goggles_b_04.m2", + text = "helm_goggles_b_04.m2", fileId = "138074", text = "helm_goggles_b_04.m2", }, { value = "helm_goggles_b_04_dwf.m2", + text = "helm_goggles_b_04_dwf.m2", fileId = "138075", text = "helm_goggles_b_04_dwf.m2", }, { value = "helm_goggles_b_04_dwm.m2", + text = "helm_goggles_b_04_dwm.m2", fileId = "138076", text = "helm_goggles_b_04_dwm.m2", }, { value = "helm_goggles_c_01_dwf.m2", + text = "helm_goggles_c_01_dwf.m2", fileId = "138082", text = "helm_goggles_c_01_dwf.m2", }, { value = "helm_goggles_c_01_dwm.m2", + text = "helm_goggles_c_01_dwm.m2", fileId = "138083", text = "helm_goggles_c_01_dwm.m2", }, { value = "helm_goggles_c_01_gnf.m2", + text = "helm_goggles_c_01_gnf.m2", fileId = "138084", text = "helm_goggles_c_01_gnf.m2", }, { value = "helm_goggles_c_01_gnm.m2", + text = "helm_goggles_c_01_gnm.m2", fileId = "138085", text = "helm_goggles_c_01_gnm.m2", }, { value = "helm_goggles_c_01_huf.m2", + text = "helm_goggles_c_01_huf.m2", fileId = "138088", text = "helm_goggles_c_01_huf.m2", }, { value = "helm_goggles_c_01_hum.m2", + text = "helm_goggles_c_01_hum.m2", fileId = "138089", text = "helm_goggles_c_01_hum.m2", }, { value = "helm_goggles_c_01_nif.m2", + text = "helm_goggles_c_01_nif.m2", fileId = "138090", text = "helm_goggles_c_01_nif.m2", }, { value = "helm_goggles_c_01_nim.m2", + text = "helm_goggles_c_01_nim.m2", fileId = "138091", text = "helm_goggles_c_01_nim.m2", }, { value = "helm_goggles_c_01_orf.m2", + text = "helm_goggles_c_01_orf.m2", fileId = "138092", text = "helm_goggles_c_01_orf.m2", }, { value = "helm_goggles_c_01_orm.m2", + text = "helm_goggles_c_01_orm.m2", fileId = "138093", text = "helm_goggles_c_01_orm.m2", }, { value = "helm_goggles_c_01_scf.m2", + text = "helm_goggles_c_01_scf.m2", fileId = "138094", text = "helm_goggles_c_01_scf.m2", }, { value = "helm_goggles_c_01_scm.m2", + text = "helm_goggles_c_01_scm.m2", fileId = "138095", text = "helm_goggles_c_01_scm.m2", }, { value = "helm_goggles_c_01_taf.m2", + text = "helm_goggles_c_01_taf.m2", fileId = "138096", text = "helm_goggles_c_01_taf.m2", }, { value = "helm_goggles_c_01_tam.m2", + text = "helm_goggles_c_01_tam.m2", fileId = "138097", text = "helm_goggles_c_01_tam.m2", }, { value = "helm_goggles_c_01_trf.m2", + text = "helm_goggles_c_01_trf.m2", fileId = "138098", text = "helm_goggles_c_01_trf.m2", }, { value = "helm_goggles_c_01_trm.m2", + text = "helm_goggles_c_01_trm.m2", fileId = "138099", text = "helm_goggles_c_01_trm.m2", }, { value = "helm_leather_a_01_dwf.m2", + text = "helm_leather_a_01_dwf.m2", fileId = "138141", text = "helm_leather_a_01_dwf.m2", }, { value = "helm_leather_a_01_dwm.m2", + text = "helm_leather_a_01_dwm.m2", fileId = "138142", text = "helm_leather_a_01_dwm.m2", }, { value = "helm_leather_a_01_gnf.m2", + text = "helm_leather_a_01_gnf.m2", fileId = "138143", text = "helm_leather_a_01_gnf.m2", }, { value = "helm_leather_a_01_gnm.m2", + text = "helm_leather_a_01_gnm.m2", fileId = "138144", text = "helm_leather_a_01_gnm.m2", }, { value = "helm_leather_a_01_huf.m2", + text = "helm_leather_a_01_huf.m2", fileId = "138147", text = "helm_leather_a_01_huf.m2", }, { value = "helm_leather_a_01_hum.m2", + text = "helm_leather_a_01_hum.m2", fileId = "138148", text = "helm_leather_a_01_hum.m2", }, { value = "helm_leather_a_01_nif.m2", + text = "helm_leather_a_01_nif.m2", fileId = "138149", text = "helm_leather_a_01_nif.m2", }, { value = "helm_leather_a_01_nim.m2", + text = "helm_leather_a_01_nim.m2", fileId = "138150", text = "helm_leather_a_01_nim.m2", }, { value = "helm_leather_a_01_orf.m2", + text = "helm_leather_a_01_orf.m2", fileId = "138151", text = "helm_leather_a_01_orf.m2", }, { value = "helm_leather_a_01_orm.m2", + text = "helm_leather_a_01_orm.m2", fileId = "138152", text = "helm_leather_a_01_orm.m2", }, { value = "helm_leather_a_01_scf.m2", + text = "helm_leather_a_01_scf.m2", fileId = "138153", text = "helm_leather_a_01_scf.m2", }, { value = "helm_leather_a_01_scm.m2", + text = "helm_leather_a_01_scm.m2", fileId = "138154", text = "helm_leather_a_01_scm.m2", }, { value = "helm_leather_a_01_taf.m2", + text = "helm_leather_a_01_taf.m2", fileId = "138155", text = "helm_leather_a_01_taf.m2", }, { value = "helm_leather_a_01_tam.m2", + text = "helm_leather_a_01_tam.m2", fileId = "138156", text = "helm_leather_a_01_tam.m2", }, { value = "helm_leather_a_01_trf.m2", + text = "helm_leather_a_01_trf.m2", fileId = "138157", text = "helm_leather_a_01_trf.m2", }, { value = "helm_leather_a_01_trm.m2", + text = "helm_leather_a_01_trm.m2", fileId = "138158", text = "helm_leather_a_01_trm.m2", }, { value = "helm_leather_a_02_dwf.m2", + text = "helm_leather_a_02_dwf.m2", fileId = "138171", text = "helm_leather_a_02_dwf.m2", }, { value = "helm_leather_a_02_dwm.m2", + text = "helm_leather_a_02_dwm.m2", fileId = "138172", text = "helm_leather_a_02_dwm.m2", }, { value = "helm_leather_a_02_gnf.m2", + text = "helm_leather_a_02_gnf.m2", fileId = "138173", text = "helm_leather_a_02_gnf.m2", }, { value = "helm_leather_a_02_gnm.m2", + text = "helm_leather_a_02_gnm.m2", fileId = "138174", text = "helm_leather_a_02_gnm.m2", }, { value = "helm_leather_a_02_huf.m2", + text = "helm_leather_a_02_huf.m2", fileId = "138177", text = "helm_leather_a_02_huf.m2", }, { value = "helm_leather_a_02_hum.m2", + text = "helm_leather_a_02_hum.m2", fileId = "138178", text = "helm_leather_a_02_hum.m2", }, { value = "helm_leather_a_02_nif.m2", + text = "helm_leather_a_02_nif.m2", fileId = "138179", text = "helm_leather_a_02_nif.m2", }, { value = "helm_leather_a_02_nim.m2", + text = "helm_leather_a_02_nim.m2", fileId = "138180", text = "helm_leather_a_02_nim.m2", }, { value = "helm_leather_a_02_orf.m2", + text = "helm_leather_a_02_orf.m2", fileId = "138181", text = "helm_leather_a_02_orf.m2", }, { value = "helm_leather_a_02_orm.m2", + text = "helm_leather_a_02_orm.m2", fileId = "138182", text = "helm_leather_a_02_orm.m2", }, { value = "helm_leather_a_02_scf.m2", + text = "helm_leather_a_02_scf.m2", fileId = "138183", text = "helm_leather_a_02_scf.m2", }, { value = "helm_leather_a_02_scm.m2", + text = "helm_leather_a_02_scm.m2", fileId = "138184", text = "helm_leather_a_02_scm.m2", }, { value = "helm_leather_a_02_taf.m2", + text = "helm_leather_a_02_taf.m2", fileId = "138185", text = "helm_leather_a_02_taf.m2", }, { value = "helm_leather_a_02_tam.m2", + text = "helm_leather_a_02_tam.m2", fileId = "138186", text = "helm_leather_a_02_tam.m2", }, { value = "helm_leather_a_02_trf.m2", + text = "helm_leather_a_02_trf.m2", fileId = "138187", text = "helm_leather_a_02_trf.m2", }, { value = "helm_leather_a_02_trm.m2", + text = "helm_leather_a_02_trm.m2", fileId = "138188", text = "helm_leather_a_02_trm.m2", }, { value = "helm_leather_a_03defias_dwf.m2", + text = "helm_leather_a_03defias_dwf.m2", fileId = "138198", text = "helm_leather_a_03defias_dwf.m2", }, { value = "helm_leather_a_03defias_dwm.m2", + text = "helm_leather_a_03defias_dwm.m2", fileId = "138199", text = "helm_leather_a_03defias_dwm.m2", }, { value = "helm_leather_a_03defias_gnf.m2", + text = "helm_leather_a_03defias_gnf.m2", fileId = "138200", text = "helm_leather_a_03defias_gnf.m2", }, { value = "helm_leather_a_03defias_gnm.m2", + text = "helm_leather_a_03defias_gnm.m2", fileId = "138201", text = "helm_leather_a_03defias_gnm.m2", }, { value = "helm_leather_a_03defias_huf.m2", + text = "helm_leather_a_03defias_huf.m2", fileId = "138204", text = "helm_leather_a_03defias_huf.m2", }, { value = "helm_leather_a_03defias_hum.m2", + text = "helm_leather_a_03defias_hum.m2", fileId = "138205", text = "helm_leather_a_03defias_hum.m2", }, { value = "helm_leather_a_03defias_nif.m2", + text = "helm_leather_a_03defias_nif.m2", fileId = "138206", text = "helm_leather_a_03defias_nif.m2", }, { value = "helm_leather_a_03defias_nim.m2", + text = "helm_leather_a_03defias_nim.m2", fileId = "138207", text = "helm_leather_a_03defias_nim.m2", }, { value = "helm_leather_a_03defias_orf.m2", + text = "helm_leather_a_03defias_orf.m2", fileId = "138208", text = "helm_leather_a_03defias_orf.m2", }, { value = "helm_leather_a_03defias_orm.m2", + text = "helm_leather_a_03defias_orm.m2", fileId = "138209", text = "helm_leather_a_03defias_orm.m2", }, { value = "helm_leather_a_03defias_scf.m2", + text = "helm_leather_a_03defias_scf.m2", fileId = "138210", text = "helm_leather_a_03defias_scf.m2", }, { value = "helm_leather_a_03defias_scm.m2", + text = "helm_leather_a_03defias_scm.m2", fileId = "138211", text = "helm_leather_a_03defias_scm.m2", }, { value = "helm_leather_a_03defias_taf.m2", + text = "helm_leather_a_03defias_taf.m2", fileId = "138212", text = "helm_leather_a_03defias_taf.m2", }, { value = "helm_leather_a_03defias_tam.m2", + text = "helm_leather_a_03defias_tam.m2", fileId = "138213", text = "helm_leather_a_03defias_tam.m2", }, { value = "helm_leather_a_03defias_trf.m2", + text = "helm_leather_a_03defias_trf.m2", fileId = "138214", text = "helm_leather_a_03defias_trf.m2", }, { value = "helm_leather_a_03defias_trm.m2", + text = "helm_leather_a_03defias_trm.m2", fileId = "138215", text = "helm_leather_a_03defias_trm.m2", }, { value = "helm_leather_ahnqiraj_a_01_dwf.m2", + text = "helm_leather_ahnqiraj_a_01_dwf.m2", fileId = "138227", text = "helm_leather_ahnqiraj_a_01_dwf.m2", }, { value = "helm_leather_ahnqiraj_a_01_dwm.m2", + text = "helm_leather_ahnqiraj_a_01_dwm.m2", fileId = "138228", text = "helm_leather_ahnqiraj_a_01_dwm.m2", }, { value = "helm_leather_ahnqiraj_a_01_gnf.m2", + text = "helm_leather_ahnqiraj_a_01_gnf.m2", fileId = "138229", text = "helm_leather_ahnqiraj_a_01_gnf.m2", }, { value = "helm_leather_ahnqiraj_a_01_gnm.m2", + text = "helm_leather_ahnqiraj_a_01_gnm.m2", fileId = "138230", text = "helm_leather_ahnqiraj_a_01_gnm.m2", }, { value = "helm_leather_ahnqiraj_a_01_huf.m2", + text = "helm_leather_ahnqiraj_a_01_huf.m2", fileId = "138233", text = "helm_leather_ahnqiraj_a_01_huf.m2", }, { value = "helm_leather_ahnqiraj_a_01_hum.m2", + text = "helm_leather_ahnqiraj_a_01_hum.m2", fileId = "138234", text = "helm_leather_ahnqiraj_a_01_hum.m2", }, { value = "helm_leather_ahnqiraj_a_01_nif.m2", + text = "helm_leather_ahnqiraj_a_01_nif.m2", fileId = "138235", text = "helm_leather_ahnqiraj_a_01_nif.m2", }, { value = "helm_leather_ahnqiraj_a_01_nim.m2", + text = "helm_leather_ahnqiraj_a_01_nim.m2", fileId = "138236", text = "helm_leather_ahnqiraj_a_01_nim.m2", }, { value = "helm_leather_ahnqiraj_a_01_orf.m2", + text = "helm_leather_ahnqiraj_a_01_orf.m2", fileId = "138237", text = "helm_leather_ahnqiraj_a_01_orf.m2", }, { value = "helm_leather_ahnqiraj_a_01_orm.m2", + text = "helm_leather_ahnqiraj_a_01_orm.m2", fileId = "138238", text = "helm_leather_ahnqiraj_a_01_orm.m2", }, { value = "helm_leather_ahnqiraj_a_01_scf.m2", + text = "helm_leather_ahnqiraj_a_01_scf.m2", fileId = "138239", text = "helm_leather_ahnqiraj_a_01_scf.m2", }, { value = "helm_leather_ahnqiraj_a_01_scm.m2", + text = "helm_leather_ahnqiraj_a_01_scm.m2", fileId = "138240", text = "helm_leather_ahnqiraj_a_01_scm.m2", }, { value = "helm_leather_ahnqiraj_a_01_taf.m2", + text = "helm_leather_ahnqiraj_a_01_taf.m2", fileId = "138241", text = "helm_leather_ahnqiraj_a_01_taf.m2", }, { value = "helm_leather_ahnqiraj_a_01_tam.m2", + text = "helm_leather_ahnqiraj_a_01_tam.m2", fileId = "138242", text = "helm_leather_ahnqiraj_a_01_tam.m2", }, { value = "helm_leather_ahnqiraj_a_01_trf.m2", + text = "helm_leather_ahnqiraj_a_01_trf.m2", fileId = "138243", text = "helm_leather_ahnqiraj_a_01_trf.m2", }, { value = "helm_leather_ahnqiraj_a_01_trm.m2", + text = "helm_leather_ahnqiraj_a_01_trm.m2", fileId = "138244", text = "helm_leather_ahnqiraj_a_01_trm.m2", }, { value = "helm_leather_b_01_dwf.m2", + text = "helm_leather_b_01_dwf.m2", fileId = "138252", text = "helm_leather_b_01_dwf.m2", }, { value = "helm_leather_b_01_dwm.m2", + text = "helm_leather_b_01_dwm.m2", fileId = "138253", text = "helm_leather_b_01_dwm.m2", }, { value = "helm_leather_b_01_gnf.m2", + text = "helm_leather_b_01_gnf.m2", fileId = "138254", text = "helm_leather_b_01_gnf.m2", }, { value = "helm_leather_b_01_gnm.m2", + text = "helm_leather_b_01_gnm.m2", fileId = "138255", text = "helm_leather_b_01_gnm.m2", }, { value = "helm_leather_b_01_huf.m2", + text = "helm_leather_b_01_huf.m2", fileId = "138258", text = "helm_leather_b_01_huf.m2", }, { value = "helm_leather_b_01_hum.m2", + text = "helm_leather_b_01_hum.m2", fileId = "138259", text = "helm_leather_b_01_hum.m2", }, { value = "helm_leather_b_01_nif.m2", + text = "helm_leather_b_01_nif.m2", fileId = "138260", text = "helm_leather_b_01_nif.m2", }, { value = "helm_leather_b_01_nim.m2", + text = "helm_leather_b_01_nim.m2", fileId = "138261", text = "helm_leather_b_01_nim.m2", }, { value = "helm_leather_b_01_orf.m2", + text = "helm_leather_b_01_orf.m2", fileId = "138262", text = "helm_leather_b_01_orf.m2", }, { value = "helm_leather_b_01_orm.m2", + text = "helm_leather_b_01_orm.m2", fileId = "138263", text = "helm_leather_b_01_orm.m2", }, { value = "helm_leather_b_01_scf.m2", + text = "helm_leather_b_01_scf.m2", fileId = "138264", text = "helm_leather_b_01_scf.m2", }, { value = "helm_leather_b_01_scm.m2", + text = "helm_leather_b_01_scm.m2", fileId = "138265", text = "helm_leather_b_01_scm.m2", }, { value = "helm_leather_b_01_taf.m2", + text = "helm_leather_b_01_taf.m2", fileId = "138266", text = "helm_leather_b_01_taf.m2", }, { value = "helm_leather_b_01_tam.m2", + text = "helm_leather_b_01_tam.m2", fileId = "138267", text = "helm_leather_b_01_tam.m2", }, { value = "helm_leather_b_01_trf.m2", + text = "helm_leather_b_01_trf.m2", fileId = "138268", text = "helm_leather_b_01_trf.m2", }, { value = "helm_leather_b_01_trm.m2", + text = "helm_leather_b_01_trm.m2", fileId = "138269", text = "helm_leather_b_01_trm.m2", }, { value = "helm_leather_b_03venture_dwf.m2", + text = "helm_leather_b_03venture_dwf.m2", fileId = "138283", text = "helm_leather_b_03venture_dwf.m2", }, { value = "helm_leather_b_03venture_dwm.m2", + text = "helm_leather_b_03venture_dwm.m2", fileId = "138284", text = "helm_leather_b_03venture_dwm.m2", }, { value = "helm_leather_b_03venture_gnf.m2", + text = "helm_leather_b_03venture_gnf.m2", fileId = "138286", text = "helm_leather_b_03venture_gnf.m2", }, { value = "helm_leather_b_03venture_gnm.m2", + text = "helm_leather_b_03venture_gnm.m2", fileId = "138287", text = "helm_leather_b_03venture_gnm.m2", }, { value = "helm_leather_b_03venture_huf.m2", + text = "helm_leather_b_03venture_huf.m2", fileId = "138290", text = "helm_leather_b_03venture_huf.m2", }, { value = "helm_leather_b_03venture_hum.m2", + text = "helm_leather_b_03venture_hum.m2", fileId = "138291", text = "helm_leather_b_03venture_hum.m2", }, { value = "helm_leather_b_03venture_nif.m2", + text = "helm_leather_b_03venture_nif.m2", fileId = "138292", text = "helm_leather_b_03venture_nif.m2", }, { value = "helm_leather_b_03venture_nim.m2", + text = "helm_leather_b_03venture_nim.m2", fileId = "138293", text = "helm_leather_b_03venture_nim.m2", }, { value = "helm_leather_b_03venture_orf.m2", + text = "helm_leather_b_03venture_orf.m2", fileId = "138294", text = "helm_leather_b_03venture_orf.m2", }, { value = "helm_leather_b_03venture_orm.m2", + text = "helm_leather_b_03venture_orm.m2", fileId = "138295", text = "helm_leather_b_03venture_orm.m2", }, { value = "helm_leather_b_03venture_scf.m2", + text = "helm_leather_b_03venture_scf.m2", fileId = "138296", text = "helm_leather_b_03venture_scf.m2", }, { value = "helm_leather_b_03venture_scm.m2", + text = "helm_leather_b_03venture_scm.m2", fileId = "138297", text = "helm_leather_b_03venture_scm.m2", }, { value = "helm_leather_b_03venture_taf.m2", + text = "helm_leather_b_03venture_taf.m2", fileId = "138298", text = "helm_leather_b_03venture_taf.m2", }, { value = "helm_leather_b_03venture_tam.m2", + text = "helm_leather_b_03venture_tam.m2", fileId = "138299", text = "helm_leather_b_03venture_tam.m2", }, { value = "helm_leather_b_03venture_trf.m2", + text = "helm_leather_b_03venture_trf.m2", fileId = "138300", text = "helm_leather_b_03venture_trf.m2", }, { value = "helm_leather_b_03venture_trm.m2", + text = "helm_leather_b_03venture_trm.m2", fileId = "138301", text = "helm_leather_b_03venture_trm.m2", }, { value = "helm_leather_b_06_dwf.m2", + text = "helm_leather_b_06_dwf.m2", fileId = "138306", text = "helm_leather_b_06_dwf.m2", }, { value = "helm_leather_b_06_dwm.m2", + text = "helm_leather_b_06_dwm.m2", fileId = "138307", text = "helm_leather_b_06_dwm.m2", }, { value = "helm_leather_b_06_gnf.m2", + text = "helm_leather_b_06_gnf.m2", fileId = "138308", text = "helm_leather_b_06_gnf.m2", }, { value = "helm_leather_b_06_gnm.m2", + text = "helm_leather_b_06_gnm.m2", fileId = "138309", text = "helm_leather_b_06_gnm.m2", }, { value = "helm_leather_b_06_huf.m2", + text = "helm_leather_b_06_huf.m2", fileId = "138311", text = "helm_leather_b_06_huf.m2", }, { value = "helm_leather_b_06_hum.m2", + text = "helm_leather_b_06_hum.m2", fileId = "138312", text = "helm_leather_b_06_hum.m2", }, { value = "helm_leather_b_06_nif.m2", + text = "helm_leather_b_06_nif.m2", fileId = "138313", text = "helm_leather_b_06_nif.m2", }, { value = "helm_leather_b_06_nim.m2", + text = "helm_leather_b_06_nim.m2", fileId = "138314", text = "helm_leather_b_06_nim.m2", }, { value = "helm_leather_b_06_orf.m2", + text = "helm_leather_b_06_orf.m2", fileId = "138315", text = "helm_leather_b_06_orf.m2", }, { value = "helm_leather_b_06_orm.m2", + text = "helm_leather_b_06_orm.m2", fileId = "138316", text = "helm_leather_b_06_orm.m2", }, { value = "helm_leather_b_06_scf.m2", + text = "helm_leather_b_06_scf.m2", fileId = "138317", text = "helm_leather_b_06_scf.m2", }, { value = "helm_leather_b_06_scm.m2", + text = "helm_leather_b_06_scm.m2", fileId = "138318", text = "helm_leather_b_06_scm.m2", }, { value = "helm_leather_b_06_taf.m2", + text = "helm_leather_b_06_taf.m2", fileId = "138319", text = "helm_leather_b_06_taf.m2", }, { value = "helm_leather_b_06_tam.m2", + text = "helm_leather_b_06_tam.m2", fileId = "138320", text = "helm_leather_b_06_tam.m2", }, { value = "helm_leather_b_06_trf.m2", + text = "helm_leather_b_06_trf.m2", fileId = "138321", text = "helm_leather_b_06_trf.m2", }, { value = "helm_leather_b_06_trm.m2", + text = "helm_leather_b_06_trm.m2", fileId = "138322", text = "helm_leather_b_06_trm.m2", }, { value = "helm_leather_d_01_dwf.m2", + text = "helm_leather_d_01_dwf.m2", fileId = "138362", text = "helm_leather_d_01_dwf.m2", }, { value = "helm_leather_d_01_dwm.m2", + text = "helm_leather_d_01_dwm.m2", fileId = "138363", text = "helm_leather_d_01_dwm.m2", }, { value = "helm_leather_d_01_gnf.m2", + text = "helm_leather_d_01_gnf.m2", fileId = "138364", text = "helm_leather_d_01_gnf.m2", }, { value = "helm_leather_d_01_gnm.m2", + text = "helm_leather_d_01_gnm.m2", fileId = "138365", text = "helm_leather_d_01_gnm.m2", }, { value = "helm_leather_d_01_huf.m2", + text = "helm_leather_d_01_huf.m2", fileId = "138368", text = "helm_leather_d_01_huf.m2", }, { value = "helm_leather_d_01_hum.m2", + text = "helm_leather_d_01_hum.m2", fileId = "138369", text = "helm_leather_d_01_hum.m2", }, { value = "helm_leather_d_01_nif.m2", + text = "helm_leather_d_01_nif.m2", fileId = "138370", text = "helm_leather_d_01_nif.m2", }, { value = "helm_leather_d_01_nim.m2", + text = "helm_leather_d_01_nim.m2", fileId = "138371", text = "helm_leather_d_01_nim.m2", }, { value = "helm_leather_d_01_orf.m2", + text = "helm_leather_d_01_orf.m2", fileId = "138372", text = "helm_leather_d_01_orf.m2", }, { value = "helm_leather_d_01_orm.m2", + text = "helm_leather_d_01_orm.m2", fileId = "138373", text = "helm_leather_d_01_orm.m2", }, { value = "helm_leather_d_01_scf.m2", + text = "helm_leather_d_01_scf.m2", fileId = "138374", text = "helm_leather_d_01_scf.m2", }, { value = "helm_leather_d_01_scm.m2", + text = "helm_leather_d_01_scm.m2", fileId = "138375", text = "helm_leather_d_01_scm.m2", }, { value = "helm_leather_d_01_taf.m2", + text = "helm_leather_d_01_taf.m2", fileId = "138376", text = "helm_leather_d_01_taf.m2", }, { value = "helm_leather_d_01_tam.m2", + text = "helm_leather_d_01_tam.m2", fileId = "138377", text = "helm_leather_d_01_tam.m2", }, { value = "helm_leather_d_01_trf.m2", + text = "helm_leather_d_01_trf.m2", fileId = "138378", text = "helm_leather_d_01_trf.m2", }, { value = "helm_leather_d_01_trm.m2", + text = "helm_leather_d_01_trm.m2", fileId = "138379", text = "helm_leather_d_01_trm.m2", }, { value = "helm_leather_d_02_dwf.m2", + text = "helm_leather_d_02_dwf.m2", fileId = "138393", text = "helm_leather_d_02_dwf.m2", }, { value = "helm_leather_d_02_dwm.m2", + text = "helm_leather_d_02_dwm.m2", fileId = "138394", text = "helm_leather_d_02_dwm.m2", }, { value = "helm_leather_d_02_gnf.m2", + text = "helm_leather_d_02_gnf.m2", fileId = "138395", text = "helm_leather_d_02_gnf.m2", }, { value = "helm_leather_d_02_gnm.m2", + text = "helm_leather_d_02_gnm.m2", fileId = "138396", text = "helm_leather_d_02_gnm.m2", }, { value = "helm_leather_d_02_huf.m2", + text = "helm_leather_d_02_huf.m2", fileId = "138399", text = "helm_leather_d_02_huf.m2", }, { value = "helm_leather_d_02_hum.m2", + text = "helm_leather_d_02_hum.m2", fileId = "138400", text = "helm_leather_d_02_hum.m2", }, { value = "helm_leather_d_02_nif.m2", + text = "helm_leather_d_02_nif.m2", fileId = "138401", text = "helm_leather_d_02_nif.m2", }, { value = "helm_leather_d_02_nim.m2", + text = "helm_leather_d_02_nim.m2", fileId = "138402", text = "helm_leather_d_02_nim.m2", }, { value = "helm_leather_d_02_orf.m2", + text = "helm_leather_d_02_orf.m2", fileId = "138403", text = "helm_leather_d_02_orf.m2", }, { value = "helm_leather_d_02_orm.m2", + text = "helm_leather_d_02_orm.m2", fileId = "138404", text = "helm_leather_d_02_orm.m2", }, { value = "helm_leather_d_02_scf.m2", + text = "helm_leather_d_02_scf.m2", fileId = "138405", text = "helm_leather_d_02_scf.m2", }, { value = "helm_leather_d_02_scm.m2", + text = "helm_leather_d_02_scm.m2", fileId = "138406", text = "helm_leather_d_02_scm.m2", }, { value = "helm_leather_d_02_taf.m2", + text = "helm_leather_d_02_taf.m2", fileId = "138407", text = "helm_leather_d_02_taf.m2", }, { value = "helm_leather_d_02_tam.m2", + text = "helm_leather_d_02_tam.m2", fileId = "138408", text = "helm_leather_d_02_tam.m2", }, { value = "helm_leather_d_02_trf.m2", + text = "helm_leather_d_02_trf.m2", fileId = "138409", text = "helm_leather_d_02_trf.m2", }, { value = "helm_leather_d_02_trm.m2", + text = "helm_leather_d_02_trm.m2", fileId = "138410", text = "helm_leather_d_02_trm.m2", }, { value = "helm_leather_dungeondruid_a_01_dwf.m2", + text = "helm_leather_dungeondruid_a_01_dwf.m2", fileId = "138423", text = "helm_leather_dungeondruid_a_01_dwf.m2", }, { value = "helm_leather_dungeondruid_a_01_dwm.m2", + text = "helm_leather_dungeondruid_a_01_dwm.m2", fileId = "138424", text = "helm_leather_dungeondruid_a_01_dwm.m2", }, { value = "helm_leather_dungeondruid_a_01_gnf.m2", + text = "helm_leather_dungeondruid_a_01_gnf.m2", fileId = "138425", text = "helm_leather_dungeondruid_a_01_gnf.m2", }, { value = "helm_leather_dungeondruid_a_01_gnm.m2", + text = "helm_leather_dungeondruid_a_01_gnm.m2", fileId = "138426", text = "helm_leather_dungeondruid_a_01_gnm.m2", }, { value = "helm_leather_dungeondruid_a_01_huf.m2", + text = "helm_leather_dungeondruid_a_01_huf.m2", fileId = "138428", text = "helm_leather_dungeondruid_a_01_huf.m2", }, { value = "helm_leather_dungeondruid_a_01_hum.m2", + text = "helm_leather_dungeondruid_a_01_hum.m2", fileId = "138429", text = "helm_leather_dungeondruid_a_01_hum.m2", }, { value = "helm_leather_dungeondruid_a_01_nif.m2", + text = "helm_leather_dungeondruid_a_01_nif.m2", fileId = "138430", text = "helm_leather_dungeondruid_a_01_nif.m2", }, { value = "helm_leather_dungeondruid_a_01_nim.m2", + text = "helm_leather_dungeondruid_a_01_nim.m2", fileId = "138431", text = "helm_leather_dungeondruid_a_01_nim.m2", }, { value = "helm_leather_dungeondruid_a_01_orf.m2", + text = "helm_leather_dungeondruid_a_01_orf.m2", fileId = "138432", text = "helm_leather_dungeondruid_a_01_orf.m2", }, { value = "helm_leather_dungeondruid_a_01_orm.m2", + text = "helm_leather_dungeondruid_a_01_orm.m2", fileId = "138433", text = "helm_leather_dungeondruid_a_01_orm.m2", }, { value = "helm_leather_dungeondruid_a_01_scf.m2", + text = "helm_leather_dungeondruid_a_01_scf.m2", fileId = "138435", text = "helm_leather_dungeondruid_a_01_scf.m2", }, { value = "helm_leather_dungeondruid_a_01_scm.m2", + text = "helm_leather_dungeondruid_a_01_scm.m2", fileId = "138436", text = "helm_leather_dungeondruid_a_01_scm.m2", }, { value = "helm_leather_dungeondruid_a_01_taf.m2", + text = "helm_leather_dungeondruid_a_01_taf.m2", fileId = "138437", text = "helm_leather_dungeondruid_a_01_taf.m2", }, { value = "helm_leather_dungeondruid_a_01_tam.m2", + text = "helm_leather_dungeondruid_a_01_tam.m2", fileId = "138438", text = "helm_leather_dungeondruid_a_01_tam.m2", }, { value = "helm_leather_dungeondruid_a_01_trf.m2", + text = "helm_leather_dungeondruid_a_01_trf.m2", fileId = "138439", text = "helm_leather_dungeondruid_a_01_trf.m2", }, { value = "helm_leather_dungeondruid_a_01_trm.m2", + text = "helm_leather_dungeondruid_a_01_trm.m2", fileId = "138440", text = "helm_leather_dungeondruid_a_01_trm.m2", }, { value = "helm_leather_pvpalliance_a_01_dwf.m2", + text = "helm_leather_pvpalliance_a_01_dwf.m2", fileId = "138622", text = "helm_leather_pvpalliance_a_01_dwf.m2", }, { value = "helm_leather_pvpalliance_a_01_dwm.m2", + text = "helm_leather_pvpalliance_a_01_dwm.m2", fileId = "138623", text = "helm_leather_pvpalliance_a_01_dwm.m2", }, { value = "helm_leather_pvpalliance_a_01_gnf.m2", + text = "helm_leather_pvpalliance_a_01_gnf.m2", fileId = "138624", text = "helm_leather_pvpalliance_a_01_gnf.m2", }, { value = "helm_leather_pvpalliance_a_01_gnm.m2", + text = "helm_leather_pvpalliance_a_01_gnm.m2", fileId = "138625", text = "helm_leather_pvpalliance_a_01_gnm.m2", }, { value = "helm_leather_pvpalliance_a_01_huf.m2", + text = "helm_leather_pvpalliance_a_01_huf.m2", fileId = "138628", text = "helm_leather_pvpalliance_a_01_huf.m2", }, { value = "helm_leather_pvpalliance_a_01_hum.m2", + text = "helm_leather_pvpalliance_a_01_hum.m2", fileId = "138629", text = "helm_leather_pvpalliance_a_01_hum.m2", }, { value = "helm_leather_pvpalliance_a_01_nif.m2", + text = "helm_leather_pvpalliance_a_01_nif.m2", fileId = "138630", text = "helm_leather_pvpalliance_a_01_nif.m2", }, { value = "helm_leather_pvpalliance_a_01_nim.m2", + text = "helm_leather_pvpalliance_a_01_nim.m2", fileId = "138631", text = "helm_leather_pvpalliance_a_01_nim.m2", }, { value = "helm_leather_pvpalliance_a_01_orf.m2", + text = "helm_leather_pvpalliance_a_01_orf.m2", fileId = "138632", text = "helm_leather_pvpalliance_a_01_orf.m2", }, { value = "helm_leather_pvpalliance_a_01_orm.m2", + text = "helm_leather_pvpalliance_a_01_orm.m2", fileId = "138633", text = "helm_leather_pvpalliance_a_01_orm.m2", }, { value = "helm_leather_pvpalliance_a_01_scf.m2", + text = "helm_leather_pvpalliance_a_01_scf.m2", fileId = "138634", text = "helm_leather_pvpalliance_a_01_scf.m2", }, { value = "helm_leather_pvpalliance_a_01_scm.m2", + text = "helm_leather_pvpalliance_a_01_scm.m2", fileId = "138635", text = "helm_leather_pvpalliance_a_01_scm.m2", }, { value = "helm_leather_pvpalliance_a_01_taf.m2", + text = "helm_leather_pvpalliance_a_01_taf.m2", fileId = "138636", text = "helm_leather_pvpalliance_a_01_taf.m2", }, { value = "helm_leather_pvpalliance_a_01_tam.m2", + text = "helm_leather_pvpalliance_a_01_tam.m2", fileId = "138637", text = "helm_leather_pvpalliance_a_01_tam.m2", }, { value = "helm_leather_pvpalliance_a_01_trf.m2", + text = "helm_leather_pvpalliance_a_01_trf.m2", fileId = "138638", text = "helm_leather_pvpalliance_a_01_trf.m2", }, { value = "helm_leather_pvpalliance_a_01_trm.m2", + text = "helm_leather_pvpalliance_a_01_trm.m2", fileId = "138639", text = "helm_leather_pvpalliance_a_01_trm.m2", }, { value = "helm_leather_pvphorde_a_01_dwf.m2", + text = "helm_leather_pvphorde_a_01_dwf.m2", fileId = "138650", text = "helm_leather_pvphorde_a_01_dwf.m2", }, { value = "helm_leather_pvphorde_a_01_dwm.m2", + text = "helm_leather_pvphorde_a_01_dwm.m2", fileId = "138651", text = "helm_leather_pvphorde_a_01_dwm.m2", }, { value = "helm_leather_pvphorde_a_01_gnf.m2", + text = "helm_leather_pvphorde_a_01_gnf.m2", fileId = "138652", text = "helm_leather_pvphorde_a_01_gnf.m2", }, { value = "helm_leather_pvphorde_a_01_gnm.m2", + text = "helm_leather_pvphorde_a_01_gnm.m2", fileId = "138653", text = "helm_leather_pvphorde_a_01_gnm.m2", }, { value = "helm_leather_pvphorde_a_01_huf.m2", + text = "helm_leather_pvphorde_a_01_huf.m2", fileId = "138656", text = "helm_leather_pvphorde_a_01_huf.m2", }, { value = "helm_leather_pvphorde_a_01_hum.m2", + text = "helm_leather_pvphorde_a_01_hum.m2", fileId = "138657", text = "helm_leather_pvphorde_a_01_hum.m2", }, { value = "helm_leather_pvphorde_a_01_nif.m2", + text = "helm_leather_pvphorde_a_01_nif.m2", fileId = "138658", text = "helm_leather_pvphorde_a_01_nif.m2", }, { value = "helm_leather_pvphorde_a_01_nim.m2", + text = "helm_leather_pvphorde_a_01_nim.m2", fileId = "138659", text = "helm_leather_pvphorde_a_01_nim.m2", }, { value = "helm_leather_pvphorde_a_01_orf.m2", + text = "helm_leather_pvphorde_a_01_orf.m2", fileId = "138660", text = "helm_leather_pvphorde_a_01_orf.m2", }, { value = "helm_leather_pvphorde_a_01_orm.m2", + text = "helm_leather_pvphorde_a_01_orm.m2", fileId = "138661", text = "helm_leather_pvphorde_a_01_orm.m2", }, { value = "helm_leather_pvphorde_a_01_scf.m2", + text = "helm_leather_pvphorde_a_01_scf.m2", fileId = "138662", text = "helm_leather_pvphorde_a_01_scf.m2", }, { value = "helm_leather_pvphorde_a_01_scm.m2", + text = "helm_leather_pvphorde_a_01_scm.m2", fileId = "138663", text = "helm_leather_pvphorde_a_01_scm.m2", }, { value = "helm_leather_pvphorde_a_01_taf.m2", + text = "helm_leather_pvphorde_a_01_taf.m2", fileId = "138664", text = "helm_leather_pvphorde_a_01_taf.m2", }, { value = "helm_leather_pvphorde_a_01_tam.m2", + text = "helm_leather_pvphorde_a_01_tam.m2", fileId = "138665", text = "helm_leather_pvphorde_a_01_tam.m2", }, { value = "helm_leather_pvphorde_a_01_trf.m2", + text = "helm_leather_pvphorde_a_01_trf.m2", fileId = "138666", text = "helm_leather_pvphorde_a_01_trf.m2", }, { value = "helm_leather_pvphorde_a_01_trm.m2", + text = "helm_leather_pvphorde_a_01_trm.m2", fileId = "138667", text = "helm_leather_pvphorde_a_01_trm.m2", }, { value = "helm_leather_pvphorde_c_01_dwf.m2", + text = "helm_leather_pvphorde_c_01_dwf.m2", fileId = "138674", text = "helm_leather_pvphorde_c_01_dwf.m2", }, { value = "helm_leather_pvphorde_c_01_dwm.m2", + text = "helm_leather_pvphorde_c_01_dwm.m2", fileId = "138675", text = "helm_leather_pvphorde_c_01_dwm.m2", }, { value = "helm_leather_pvphorde_c_01_gnf.m2", + text = "helm_leather_pvphorde_c_01_gnf.m2", fileId = "138676", text = "helm_leather_pvphorde_c_01_gnf.m2", }, { value = "helm_leather_pvphorde_c_01_gnm.m2", + text = "helm_leather_pvphorde_c_01_gnm.m2", fileId = "138677", text = "helm_leather_pvphorde_c_01_gnm.m2", }, { value = "helm_leather_pvphorde_c_01_huf.m2", + text = "helm_leather_pvphorde_c_01_huf.m2", fileId = "138680", text = "helm_leather_pvphorde_c_01_huf.m2", }, { value = "helm_leather_pvphorde_c_01_hum.m2", + text = "helm_leather_pvphorde_c_01_hum.m2", fileId = "138681", text = "helm_leather_pvphorde_c_01_hum.m2", }, { value = "helm_leather_pvphorde_c_01_nif.m2", + text = "helm_leather_pvphorde_c_01_nif.m2", fileId = "138682", text = "helm_leather_pvphorde_c_01_nif.m2", }, { value = "helm_leather_pvphorde_c_01_nim.m2", + text = "helm_leather_pvphorde_c_01_nim.m2", fileId = "138683", text = "helm_leather_pvphorde_c_01_nim.m2", }, { value = "helm_leather_pvphorde_c_01_orf.m2", + text = "helm_leather_pvphorde_c_01_orf.m2", fileId = "138684", text = "helm_leather_pvphorde_c_01_orf.m2", }, { value = "helm_leather_pvphorde_c_01_orm.m2", + text = "helm_leather_pvphorde_c_01_orm.m2", fileId = "138685", text = "helm_leather_pvphorde_c_01_orm.m2", }, { value = "helm_leather_pvphorde_c_01_scf.m2", + text = "helm_leather_pvphorde_c_01_scf.m2", fileId = "138686", text = "helm_leather_pvphorde_c_01_scf.m2", }, { value = "helm_leather_pvphorde_c_01_scm.m2", + text = "helm_leather_pvphorde_c_01_scm.m2", fileId = "138687", text = "helm_leather_pvphorde_c_01_scm.m2", }, { value = "helm_leather_pvphorde_c_01_taf.m2", + text = "helm_leather_pvphorde_c_01_taf.m2", fileId = "138688", text = "helm_leather_pvphorde_c_01_taf.m2", }, { value = "helm_leather_pvphorde_c_01_tam.m2", + text = "helm_leather_pvphorde_c_01_tam.m2", fileId = "138689", text = "helm_leather_pvphorde_c_01_tam.m2", }, { value = "helm_leather_pvphorde_c_01_trf.m2", + text = "helm_leather_pvphorde_c_01_trf.m2", fileId = "138690", text = "helm_leather_pvphorde_c_01_trf.m2", }, { value = "helm_leather_pvphorde_c_01_trm.m2", + text = "helm_leather_pvphorde_c_01_trm.m2", fileId = "138691", text = "helm_leather_pvphorde_c_01_trm.m2", }, { value = "helm_leather_raiddruid_a_01_dwf.m2", + text = "helm_leather_raiddruid_a_01_dwf.m2", fileId = "138699", text = "helm_leather_raiddruid_a_01_dwf.m2", }, { value = "helm_leather_raiddruid_a_01_dwm.m2", + text = "helm_leather_raiddruid_a_01_dwm.m2", fileId = "138700", text = "helm_leather_raiddruid_a_01_dwm.m2", }, { value = "helm_leather_raiddruid_a_01_gnf.m2", + text = "helm_leather_raiddruid_a_01_gnf.m2", fileId = "138701", text = "helm_leather_raiddruid_a_01_gnf.m2", }, { value = "helm_leather_raiddruid_a_01_gnm.m2", + text = "helm_leather_raiddruid_a_01_gnm.m2", fileId = "138702", text = "helm_leather_raiddruid_a_01_gnm.m2", }, { value = "helm_leather_raiddruid_a_01_huf.m2", + text = "helm_leather_raiddruid_a_01_huf.m2", fileId = "138704", text = "helm_leather_raiddruid_a_01_huf.m2", }, { value = "helm_leather_raiddruid_a_01_hum.m2", + text = "helm_leather_raiddruid_a_01_hum.m2", fileId = "138705", text = "helm_leather_raiddruid_a_01_hum.m2", }, { value = "helm_leather_raiddruid_a_01_nif.m2", + text = "helm_leather_raiddruid_a_01_nif.m2", fileId = "138706", text = "helm_leather_raiddruid_a_01_nif.m2", }, { value = "helm_leather_raiddruid_a_01_nim.m2", + text = "helm_leather_raiddruid_a_01_nim.m2", fileId = "138707", text = "helm_leather_raiddruid_a_01_nim.m2", }, { value = "helm_leather_raiddruid_a_01_orf.m2", + text = "helm_leather_raiddruid_a_01_orf.m2", fileId = "138708", text = "helm_leather_raiddruid_a_01_orf.m2", }, { value = "helm_leather_raiddruid_a_01_orm.m2", + text = "helm_leather_raiddruid_a_01_orm.m2", fileId = "138709", text = "helm_leather_raiddruid_a_01_orm.m2", }, { value = "helm_leather_raiddruid_a_01_scf.m2", + text = "helm_leather_raiddruid_a_01_scf.m2", fileId = "138710", text = "helm_leather_raiddruid_a_01_scf.m2", }, { value = "helm_leather_raiddruid_a_01_scm.m2", + text = "helm_leather_raiddruid_a_01_scm.m2", fileId = "138711", text = "helm_leather_raiddruid_a_01_scm.m2", }, { value = "helm_leather_raiddruid_a_01_taf.m2", + text = "helm_leather_raiddruid_a_01_taf.m2", fileId = "138712", text = "helm_leather_raiddruid_a_01_taf.m2", }, { value = "helm_leather_raiddruid_a_01_tam.m2", + text = "helm_leather_raiddruid_a_01_tam.m2", fileId = "138713", text = "helm_leather_raiddruid_a_01_tam.m2", }, { value = "helm_leather_raiddruid_a_01_trf.m2", + text = "helm_leather_raiddruid_a_01_trf.m2", fileId = "138714", text = "helm_leather_raiddruid_a_01_trf.m2", }, { value = "helm_leather_raiddruid_a_01_trm.m2", + text = "helm_leather_raiddruid_a_01_trm.m2", fileId = "138715", text = "helm_leather_raiddruid_a_01_trm.m2", }, { value = "helm_leather_raiddruid_b_01_dwf.m2", + text = "helm_leather_raiddruid_b_01_dwf.m2", fileId = "138724", text = "helm_leather_raiddruid_b_01_dwf.m2", }, { value = "helm_leather_raiddruid_b_01_dwm.m2", + text = "helm_leather_raiddruid_b_01_dwm.m2", fileId = "138725", text = "helm_leather_raiddruid_b_01_dwm.m2", }, { value = "helm_leather_raiddruid_b_01_gnf.m2", + text = "helm_leather_raiddruid_b_01_gnf.m2", fileId = "138726", text = "helm_leather_raiddruid_b_01_gnf.m2", }, { value = "helm_leather_raiddruid_b_01_gnm.m2", + text = "helm_leather_raiddruid_b_01_gnm.m2", fileId = "138727", text = "helm_leather_raiddruid_b_01_gnm.m2", }, { value = "helm_leather_raiddruid_b_01_huf.m2", + text = "helm_leather_raiddruid_b_01_huf.m2", fileId = "138730", text = "helm_leather_raiddruid_b_01_huf.m2", }, { value = "helm_leather_raiddruid_b_01_hum.m2", + text = "helm_leather_raiddruid_b_01_hum.m2", fileId = "138731", text = "helm_leather_raiddruid_b_01_hum.m2", }, { value = "helm_leather_raiddruid_b_01_nif.m2", + text = "helm_leather_raiddruid_b_01_nif.m2", fileId = "138732", text = "helm_leather_raiddruid_b_01_nif.m2", }, { value = "helm_leather_raiddruid_b_01_nim.m2", + text = "helm_leather_raiddruid_b_01_nim.m2", fileId = "138733", text = "helm_leather_raiddruid_b_01_nim.m2", }, { value = "helm_leather_raiddruid_b_01_orf.m2", + text = "helm_leather_raiddruid_b_01_orf.m2", fileId = "138734", text = "helm_leather_raiddruid_b_01_orf.m2", }, { value = "helm_leather_raiddruid_b_01_orm.m2", + text = "helm_leather_raiddruid_b_01_orm.m2", fileId = "138735", text = "helm_leather_raiddruid_b_01_orm.m2", }, { value = "helm_leather_raiddruid_b_01_scf.m2", + text = "helm_leather_raiddruid_b_01_scf.m2", fileId = "138736", text = "helm_leather_raiddruid_b_01_scf.m2", }, { value = "helm_leather_raiddruid_b_01_scm.m2", + text = "helm_leather_raiddruid_b_01_scm.m2", fileId = "138737", text = "helm_leather_raiddruid_b_01_scm.m2", }, { value = "helm_leather_raiddruid_b_01_taf.m2", + text = "helm_leather_raiddruid_b_01_taf.m2", fileId = "138738", text = "helm_leather_raiddruid_b_01_taf.m2", }, { value = "helm_leather_raiddruid_b_01_tam.m2", + text = "helm_leather_raiddruid_b_01_tam.m2", fileId = "138739", text = "helm_leather_raiddruid_b_01_tam.m2", }, { value = "helm_leather_raiddruid_b_01_trf.m2", + text = "helm_leather_raiddruid_b_01_trf.m2", fileId = "138740", text = "helm_leather_raiddruid_b_01_trf.m2", }, { value = "helm_leather_raiddruid_b_01_trm.m2", + text = "helm_leather_raiddruid_b_01_trm.m2", fileId = "138741", text = "helm_leather_raiddruid_b_01_trm.m2", }, { value = "helm_leather_raiddruid_c_01_dwf.m2", + text = "helm_leather_raiddruid_c_01_dwf.m2", fileId = "138750", text = "helm_leather_raiddruid_c_01_dwf.m2", }, { value = "helm_leather_raiddruid_c_01_dwm.m2", + text = "helm_leather_raiddruid_c_01_dwm.m2", fileId = "138751", text = "helm_leather_raiddruid_c_01_dwm.m2", }, { value = "helm_leather_raiddruid_c_01_gnf.m2", + text = "helm_leather_raiddruid_c_01_gnf.m2", fileId = "138752", text = "helm_leather_raiddruid_c_01_gnf.m2", }, { value = "helm_leather_raiddruid_c_01_gnm.m2", + text = "helm_leather_raiddruid_c_01_gnm.m2", fileId = "138753", text = "helm_leather_raiddruid_c_01_gnm.m2", }, { value = "helm_leather_raiddruid_c_01_huf.m2", + text = "helm_leather_raiddruid_c_01_huf.m2", fileId = "138756", text = "helm_leather_raiddruid_c_01_huf.m2", }, { value = "helm_leather_raiddruid_c_01_hum.m2", + text = "helm_leather_raiddruid_c_01_hum.m2", fileId = "138757", text = "helm_leather_raiddruid_c_01_hum.m2", }, { value = "helm_leather_raiddruid_c_01_nif.m2", + text = "helm_leather_raiddruid_c_01_nif.m2", fileId = "138758", text = "helm_leather_raiddruid_c_01_nif.m2", }, { value = "helm_leather_raiddruid_c_01_nim.m2", + text = "helm_leather_raiddruid_c_01_nim.m2", fileId = "138759", text = "helm_leather_raiddruid_c_01_nim.m2", }, { value = "helm_leather_raiddruid_c_01_orf.m2", + text = "helm_leather_raiddruid_c_01_orf.m2", fileId = "138760", text = "helm_leather_raiddruid_c_01_orf.m2", }, { value = "helm_leather_raiddruid_c_01_orm.m2", + text = "helm_leather_raiddruid_c_01_orm.m2", fileId = "138761", text = "helm_leather_raiddruid_c_01_orm.m2", }, { value = "helm_leather_raiddruid_c_01_scf.m2", + text = "helm_leather_raiddruid_c_01_scf.m2", fileId = "138762", text = "helm_leather_raiddruid_c_01_scf.m2", }, { value = "helm_leather_raiddruid_c_01_scm.m2", + text = "helm_leather_raiddruid_c_01_scm.m2", fileId = "138763", text = "helm_leather_raiddruid_c_01_scm.m2", }, { value = "helm_leather_raiddruid_c_01_taf.m2", + text = "helm_leather_raiddruid_c_01_taf.m2", fileId = "138764", text = "helm_leather_raiddruid_c_01_taf.m2", }, { value = "helm_leather_raiddruid_c_01_tam.m2", + text = "helm_leather_raiddruid_c_01_tam.m2", fileId = "138765", text = "helm_leather_raiddruid_c_01_tam.m2", }, { value = "helm_leather_raiddruid_c_01_trf.m2", + text = "helm_leather_raiddruid_c_01_trf.m2", fileId = "138766", text = "helm_leather_raiddruid_c_01_trf.m2", }, { value = "helm_leather_raiddruid_c_01_trm.m2", + text = "helm_leather_raiddruid_c_01_trm.m2", fileId = "138767", text = "helm_leather_raiddruid_c_01_trm.m2", }, { value = "helm_leather_raidrogue_a_01_dwf.m2", + text = "helm_leather_raidrogue_a_01_dwf.m2", fileId = "138846", text = "helm_leather_raidrogue_a_01_dwf.m2", }, { value = "helm_leather_raidrogue_a_01_dwm.m2", + text = "helm_leather_raidrogue_a_01_dwm.m2", fileId = "138847", text = "helm_leather_raidrogue_a_01_dwm.m2", }, { value = "helm_leather_raidrogue_a_01_gnf.m2", + text = "helm_leather_raidrogue_a_01_gnf.m2", fileId = "138848", text = "helm_leather_raidrogue_a_01_gnf.m2", }, { value = "helm_leather_raidrogue_a_01_gnm.m2", + text = "helm_leather_raidrogue_a_01_gnm.m2", fileId = "138849", text = "helm_leather_raidrogue_a_01_gnm.m2", }, { value = "helm_leather_raidrogue_a_01_huf.m2", + text = "helm_leather_raidrogue_a_01_huf.m2", fileId = "138852", text = "helm_leather_raidrogue_a_01_huf.m2", }, { value = "helm_leather_raidrogue_a_01_hum.m2", + text = "helm_leather_raidrogue_a_01_hum.m2", fileId = "138853", text = "helm_leather_raidrogue_a_01_hum.m2", }, { value = "helm_leather_raidrogue_a_01_nif.m2", + text = "helm_leather_raidrogue_a_01_nif.m2", fileId = "138854", text = "helm_leather_raidrogue_a_01_nif.m2", }, { value = "helm_leather_raidrogue_a_01_nim.m2", + text = "helm_leather_raidrogue_a_01_nim.m2", fileId = "138855", text = "helm_leather_raidrogue_a_01_nim.m2", }, { value = "helm_leather_raidrogue_a_01_orf.m2", + text = "helm_leather_raidrogue_a_01_orf.m2", fileId = "138856", text = "helm_leather_raidrogue_a_01_orf.m2", }, { value = "helm_leather_raidrogue_a_01_orm.m2", + text = "helm_leather_raidrogue_a_01_orm.m2", fileId = "138857", text = "helm_leather_raidrogue_a_01_orm.m2", }, { value = "helm_leather_raidrogue_a_01_scf.m2", + text = "helm_leather_raidrogue_a_01_scf.m2", fileId = "138858", text = "helm_leather_raidrogue_a_01_scf.m2", }, { value = "helm_leather_raidrogue_a_01_scm.m2", + text = "helm_leather_raidrogue_a_01_scm.m2", fileId = "138859", text = "helm_leather_raidrogue_a_01_scm.m2", }, { value = "helm_leather_raidrogue_a_01_taf.m2", + text = "helm_leather_raidrogue_a_01_taf.m2", fileId = "138860", text = "helm_leather_raidrogue_a_01_taf.m2", }, { value = "helm_leather_raidrogue_a_01_tam.m2", + text = "helm_leather_raidrogue_a_01_tam.m2", fileId = "138861", text = "helm_leather_raidrogue_a_01_tam.m2", }, { value = "helm_leather_raidrogue_a_01_trf.m2", + text = "helm_leather_raidrogue_a_01_trf.m2", fileId = "138862", text = "helm_leather_raidrogue_a_01_trf.m2", }, { value = "helm_leather_raidrogue_a_01_trm.m2", + text = "helm_leather_raidrogue_a_01_trm.m2", fileId = "138863", text = "helm_leather_raidrogue_a_01_trm.m2", }, { value = "helm_leather_raidrogue_b_01_dwf.m2", + text = "helm_leather_raidrogue_b_01_dwf.m2", fileId = "138871", text = "helm_leather_raidrogue_b_01_dwf.m2", }, { value = "helm_leather_raidrogue_b_01_dwm.m2", + text = "helm_leather_raidrogue_b_01_dwm.m2", fileId = "138872", text = "helm_leather_raidrogue_b_01_dwm.m2", }, { value = "helm_leather_raidrogue_b_01_gnf.m2", + text = "helm_leather_raidrogue_b_01_gnf.m2", fileId = "138873", text = "helm_leather_raidrogue_b_01_gnf.m2", }, { value = "helm_leather_raidrogue_b_01_gnm.m2", + text = "helm_leather_raidrogue_b_01_gnm.m2", fileId = "138874", text = "helm_leather_raidrogue_b_01_gnm.m2", }, { value = "helm_leather_raidrogue_b_01_huf.m2", + text = "helm_leather_raidrogue_b_01_huf.m2", fileId = "138877", text = "helm_leather_raidrogue_b_01_huf.m2", }, { value = "helm_leather_raidrogue_b_01_hum.m2", + text = "helm_leather_raidrogue_b_01_hum.m2", fileId = "138878", text = "helm_leather_raidrogue_b_01_hum.m2", }, { value = "helm_leather_raidrogue_b_01_nif.m2", + text = "helm_leather_raidrogue_b_01_nif.m2", fileId = "138879", text = "helm_leather_raidrogue_b_01_nif.m2", }, { value = "helm_leather_raidrogue_b_01_nim.m2", + text = "helm_leather_raidrogue_b_01_nim.m2", fileId = "138880", text = "helm_leather_raidrogue_b_01_nim.m2", }, { value = "helm_leather_raidrogue_b_01_orf.m2", + text = "helm_leather_raidrogue_b_01_orf.m2", fileId = "138881", text = "helm_leather_raidrogue_b_01_orf.m2", }, { value = "helm_leather_raidrogue_b_01_orm.m2", + text = "helm_leather_raidrogue_b_01_orm.m2", fileId = "138882", text = "helm_leather_raidrogue_b_01_orm.m2", }, { value = "helm_leather_raidrogue_b_01_scf.m2", + text = "helm_leather_raidrogue_b_01_scf.m2", fileId = "138883", text = "helm_leather_raidrogue_b_01_scf.m2", }, { value = "helm_leather_raidrogue_b_01_scm.m2", + text = "helm_leather_raidrogue_b_01_scm.m2", fileId = "138884", text = "helm_leather_raidrogue_b_01_scm.m2", }, { value = "helm_leather_raidrogue_b_01_taf.m2", + text = "helm_leather_raidrogue_b_01_taf.m2", fileId = "138885", text = "helm_leather_raidrogue_b_01_taf.m2", }, { value = "helm_leather_raidrogue_b_01_tam.m2", + text = "helm_leather_raidrogue_b_01_tam.m2", fileId = "138886", text = "helm_leather_raidrogue_b_01_tam.m2", }, { value = "helm_leather_raidrogue_b_01_trf.m2", + text = "helm_leather_raidrogue_b_01_trf.m2", fileId = "138887", text = "helm_leather_raidrogue_b_01_trf.m2", }, { value = "helm_leather_raidrogue_b_01_trm.m2", + text = "helm_leather_raidrogue_b_01_trm.m2", fileId = "138888", text = "helm_leather_raidrogue_b_01_trm.m2", }, { value = "helm_leather_raidrogue_c_01_dwf.m2", + text = "helm_leather_raidrogue_c_01_dwf.m2", fileId = "138897", text = "helm_leather_raidrogue_c_01_dwf.m2", }, { value = "helm_leather_raidrogue_c_01_dwm.m2", + text = "helm_leather_raidrogue_c_01_dwm.m2", fileId = "138898", text = "helm_leather_raidrogue_c_01_dwm.m2", }, { value = "helm_leather_raidrogue_c_01_gnf.m2", + text = "helm_leather_raidrogue_c_01_gnf.m2", fileId = "138899", text = "helm_leather_raidrogue_c_01_gnf.m2", }, { value = "helm_leather_raidrogue_c_01_gnm.m2", + text = "helm_leather_raidrogue_c_01_gnm.m2", fileId = "138900", text = "helm_leather_raidrogue_c_01_gnm.m2", }, { value = "helm_leather_raidrogue_c_01_huf.m2", + text = "helm_leather_raidrogue_c_01_huf.m2", fileId = "138903", text = "helm_leather_raidrogue_c_01_huf.m2", }, { value = "helm_leather_raidrogue_c_01_hum.m2", + text = "helm_leather_raidrogue_c_01_hum.m2", fileId = "138904", text = "helm_leather_raidrogue_c_01_hum.m2", }, { value = "helm_leather_raidrogue_c_01_nif.m2", + text = "helm_leather_raidrogue_c_01_nif.m2", fileId = "138905", text = "helm_leather_raidrogue_c_01_nif.m2", }, { value = "helm_leather_raidrogue_c_01_nim.m2", + text = "helm_leather_raidrogue_c_01_nim.m2", fileId = "138906", text = "helm_leather_raidrogue_c_01_nim.m2", }, { value = "helm_leather_raidrogue_c_01_orf.m2", + text = "helm_leather_raidrogue_c_01_orf.m2", fileId = "138907", text = "helm_leather_raidrogue_c_01_orf.m2", }, { value = "helm_leather_raidrogue_c_01_orm.m2", + text = "helm_leather_raidrogue_c_01_orm.m2", fileId = "138908", text = "helm_leather_raidrogue_c_01_orm.m2", }, { value = "helm_leather_raidrogue_c_01_scf.m2", + text = "helm_leather_raidrogue_c_01_scf.m2", fileId = "138909", text = "helm_leather_raidrogue_c_01_scf.m2", }, { value = "helm_leather_raidrogue_c_01_scm.m2", + text = "helm_leather_raidrogue_c_01_scm.m2", fileId = "138910", text = "helm_leather_raidrogue_c_01_scm.m2", }, { value = "helm_leather_raidrogue_c_01_taf.m2", + text = "helm_leather_raidrogue_c_01_taf.m2", fileId = "138911", text = "helm_leather_raidrogue_c_01_taf.m2", }, { value = "helm_leather_raidrogue_c_01_tam.m2", + text = "helm_leather_raidrogue_c_01_tam.m2", fileId = "138912", text = "helm_leather_raidrogue_c_01_tam.m2", }, { value = "helm_leather_raidrogue_c_01_trf.m2", + text = "helm_leather_raidrogue_c_01_trf.m2", fileId = "138913", text = "helm_leather_raidrogue_c_01_trf.m2", }, { value = "helm_leather_raidrogue_c_01_trm.m2", + text = "helm_leather_raidrogue_c_01_trm.m2", fileId = "138914", text = "helm_leather_raidrogue_c_01_trm.m2", }, { value = "helm_magic_b_01_dwf.m2", + text = "helm_magic_b_01_dwf.m2", fileId = "139097", text = "helm_magic_b_01_dwf.m2", }, { value = "helm_magic_b_01_dwm.m2", + text = "helm_magic_b_01_dwm.m2", fileId = "139098", text = "helm_magic_b_01_dwm.m2", }, { value = "helm_magic_b_01_gnf.m2", + text = "helm_magic_b_01_gnf.m2", fileId = "139099", text = "helm_magic_b_01_gnf.m2", }, { value = "helm_magic_b_01_gnm.m2", + text = "helm_magic_b_01_gnm.m2", fileId = "139100", text = "helm_magic_b_01_gnm.m2", }, { value = "helm_magic_b_01_huf.m2", + text = "helm_magic_b_01_huf.m2", fileId = "139103", text = "helm_magic_b_01_huf.m2", }, { value = "helm_magic_b_01_hum.m2", + text = "helm_magic_b_01_hum.m2", fileId = "139104", text = "helm_magic_b_01_hum.m2", }, { value = "helm_magic_b_01_nif.m2", + text = "helm_magic_b_01_nif.m2", fileId = "139105", text = "helm_magic_b_01_nif.m2", }, { value = "helm_magic_b_01_nim.m2", + text = "helm_magic_b_01_nim.m2", fileId = "139106", text = "helm_magic_b_01_nim.m2", }, { value = "helm_magic_b_01_orf.m2", + text = "helm_magic_b_01_orf.m2", fileId = "139107", text = "helm_magic_b_01_orf.m2", }, { value = "helm_magic_b_01_orm.m2", + text = "helm_magic_b_01_orm.m2", fileId = "139108", text = "helm_magic_b_01_orm.m2", }, { value = "helm_magic_b_01_scf.m2", + text = "helm_magic_b_01_scf.m2", fileId = "139109", text = "helm_magic_b_01_scf.m2", }, { value = "helm_magic_b_01_scm.m2", + text = "helm_magic_b_01_scm.m2", fileId = "139110", text = "helm_magic_b_01_scm.m2", }, { value = "helm_magic_b_01_taf.m2", + text = "helm_magic_b_01_taf.m2", fileId = "139111", text = "helm_magic_b_01_taf.m2", }, { value = "helm_magic_b_01_tam.m2", + text = "helm_magic_b_01_tam.m2", fileId = "139112", text = "helm_magic_b_01_tam.m2", }, { value = "helm_magic_b_01_trf.m2", + text = "helm_magic_b_01_trf.m2", fileId = "139113", text = "helm_magic_b_01_trf.m2", }, { value = "helm_magic_b_01_trm.m2", + text = "helm_magic_b_01_trm.m2", fileId = "139114", text = "helm_magic_b_01_trm.m2", }, { value = "helm_magic_b_02_dwf.m2", + text = "helm_magic_b_02_dwf.m2", fileId = "139120", text = "helm_magic_b_02_dwf.m2", }, { value = "helm_magic_b_02_dwm.m2", + text = "helm_magic_b_02_dwm.m2", fileId = "139121", text = "helm_magic_b_02_dwm.m2", }, { value = "helm_magic_b_02_gnf.m2", + text = "helm_magic_b_02_gnf.m2", fileId = "139122", text = "helm_magic_b_02_gnf.m2", }, { value = "helm_magic_b_02_gnm.m2", + text = "helm_magic_b_02_gnm.m2", fileId = "139123", text = "helm_magic_b_02_gnm.m2", }, { value = "helm_magic_b_02_huf.m2", + text = "helm_magic_b_02_huf.m2", fileId = "139126", text = "helm_magic_b_02_huf.m2", }, { value = "helm_magic_b_02_hum.m2", + text = "helm_magic_b_02_hum.m2", fileId = "139127", text = "helm_magic_b_02_hum.m2", }, { value = "helm_magic_b_02_nif.m2", + text = "helm_magic_b_02_nif.m2", fileId = "139128", text = "helm_magic_b_02_nif.m2", }, { value = "helm_magic_b_02_nim.m2", + text = "helm_magic_b_02_nim.m2", fileId = "139129", text = "helm_magic_b_02_nim.m2", }, { value = "helm_magic_b_02_orf.m2", + text = "helm_magic_b_02_orf.m2", fileId = "139130", text = "helm_magic_b_02_orf.m2", }, { value = "helm_magic_b_02_orm.m2", + text = "helm_magic_b_02_orm.m2", fileId = "139131", text = "helm_magic_b_02_orm.m2", }, { value = "helm_magic_b_02_scf.m2", + text = "helm_magic_b_02_scf.m2", fileId = "139132", text = "helm_magic_b_02_scf.m2", }, { value = "helm_magic_b_02_scm.m2", + text = "helm_magic_b_02_scm.m2", fileId = "139133", text = "helm_magic_b_02_scm.m2", }, { value = "helm_magic_b_02_taf.m2", + text = "helm_magic_b_02_taf.m2", fileId = "139134", text = "helm_magic_b_02_taf.m2", }, { value = "helm_magic_b_02_tam.m2", + text = "helm_magic_b_02_tam.m2", fileId = "139135", text = "helm_magic_b_02_tam.m2", }, { value = "helm_magic_b_02_trf.m2", + text = "helm_magic_b_02_trf.m2", fileId = "139136", text = "helm_magic_b_02_trf.m2", }, { value = "helm_magic_b_02_trm.m2", + text = "helm_magic_b_02_trm.m2", fileId = "139137", text = "helm_magic_b_02_trm.m2", }, { value = "helm_magic_c_01_dwf.m2", + text = "helm_magic_c_01_dwf.m2", fileId = "139143", text = "helm_magic_c_01_dwf.m2", }, { value = "helm_magic_c_01_dwm.m2", + text = "helm_magic_c_01_dwm.m2", fileId = "139144", text = "helm_magic_c_01_dwm.m2", }, { value = "helm_magic_c_01_gnf.m2", + text = "helm_magic_c_01_gnf.m2", fileId = "139145", text = "helm_magic_c_01_gnf.m2", }, { value = "helm_magic_c_01_gnm.m2", + text = "helm_magic_c_01_gnm.m2", fileId = "139146", text = "helm_magic_c_01_gnm.m2", }, { value = "helm_magic_c_01_huf.m2", + text = "helm_magic_c_01_huf.m2", fileId = "139149", text = "helm_magic_c_01_huf.m2", }, { value = "helm_magic_c_01_hum.m2", + text = "helm_magic_c_01_hum.m2", fileId = "139150", text = "helm_magic_c_01_hum.m2", }, { value = "helm_magic_c_01_nif.m2", + text = "helm_magic_c_01_nif.m2", fileId = "139151", text = "helm_magic_c_01_nif.m2", }, { value = "helm_magic_c_01_nim.m2", + text = "helm_magic_c_01_nim.m2", fileId = "139152", text = "helm_magic_c_01_nim.m2", }, { value = "helm_magic_c_01_orf.m2", + text = "helm_magic_c_01_orf.m2", fileId = "139153", text = "helm_magic_c_01_orf.m2", }, { value = "helm_magic_c_01_orm.m2", + text = "helm_magic_c_01_orm.m2", fileId = "139154", text = "helm_magic_c_01_orm.m2", }, { value = "helm_magic_c_01_scf.m2", + text = "helm_magic_c_01_scf.m2", fileId = "139155", text = "helm_magic_c_01_scf.m2", }, { value = "helm_magic_c_01_scm.m2", + text = "helm_magic_c_01_scm.m2", fileId = "139156", text = "helm_magic_c_01_scm.m2", }, { value = "helm_magic_c_01_taf.m2", + text = "helm_magic_c_01_taf.m2", fileId = "139157", text = "helm_magic_c_01_taf.m2", }, { value = "helm_magic_c_01_tam.m2", + text = "helm_magic_c_01_tam.m2", fileId = "139158", text = "helm_magic_c_01_tam.m2", }, { value = "helm_magic_c_01_trf.m2", + text = "helm_magic_c_01_trf.m2", fileId = "139159", text = "helm_magic_c_01_trf.m2", }, { value = "helm_magic_c_01_trm.m2", + text = "helm_magic_c_01_trm.m2", fileId = "139160", text = "helm_magic_c_01_trm.m2", }, { value = "helm_mail_a_01_dwf.m2", + text = "helm_mail_a_01_dwf.m2", fileId = "139167", text = "helm_mail_a_01_dwf.m2", }, { value = "helm_mail_a_01_dwm.m2", + text = "helm_mail_a_01_dwm.m2", fileId = "139168", text = "helm_mail_a_01_dwm.m2", }, { value = "helm_mail_a_01_gnf.m2", + text = "helm_mail_a_01_gnf.m2", fileId = "139169", text = "helm_mail_a_01_gnf.m2", }, { value = "helm_mail_a_01_gnm.m2", + text = "helm_mail_a_01_gnm.m2", fileId = "139170", text = "helm_mail_a_01_gnm.m2", }, { value = "helm_mail_a_01_huf.m2", + text = "helm_mail_a_01_huf.m2", fileId = "139173", text = "helm_mail_a_01_huf.m2", }, { value = "helm_mail_a_01_hum.m2", + text = "helm_mail_a_01_hum.m2", fileId = "139174", text = "helm_mail_a_01_hum.m2", }, { value = "helm_mail_a_01_nif.m2", + text = "helm_mail_a_01_nif.m2", fileId = "139175", text = "helm_mail_a_01_nif.m2", }, { value = "helm_mail_a_01_nim.m2", + text = "helm_mail_a_01_nim.m2", fileId = "139176", text = "helm_mail_a_01_nim.m2", }, { value = "helm_mail_a_01_orf.m2", + text = "helm_mail_a_01_orf.m2", fileId = "139177", text = "helm_mail_a_01_orf.m2", }, { value = "helm_mail_a_01_orm.m2", + text = "helm_mail_a_01_orm.m2", fileId = "139178", text = "helm_mail_a_01_orm.m2", }, { value = "helm_mail_a_01_scf.m2", + text = "helm_mail_a_01_scf.m2", fileId = "139179", text = "helm_mail_a_01_scf.m2", }, { value = "helm_mail_a_01_scm.m2", + text = "helm_mail_a_01_scm.m2", fileId = "139180", text = "helm_mail_a_01_scm.m2", }, { value = "helm_mail_a_01_taf.m2", + text = "helm_mail_a_01_taf.m2", fileId = "139181", text = "helm_mail_a_01_taf.m2", }, { value = "helm_mail_a_01_tam.m2", + text = "helm_mail_a_01_tam.m2", fileId = "139182", text = "helm_mail_a_01_tam.m2", }, { value = "helm_mail_a_01_trf.m2", + text = "helm_mail_a_01_trf.m2", fileId = "139183", text = "helm_mail_a_01_trf.m2", }, { value = "helm_mail_a_01_trm.m2", + text = "helm_mail_a_01_trm.m2", fileId = "139184", text = "helm_mail_a_01_trm.m2", }, { value = "helm_mail_a_02_dwf.m2", + text = "helm_mail_a_02_dwf.m2", fileId = "139195", text = "helm_mail_a_02_dwf.m2", }, { value = "helm_mail_a_02_dwm.m2", + text = "helm_mail_a_02_dwm.m2", fileId = "139196", text = "helm_mail_a_02_dwm.m2", }, { value = "helm_mail_a_02_gnf.m2", + text = "helm_mail_a_02_gnf.m2", fileId = "139197", text = "helm_mail_a_02_gnf.m2", }, { value = "helm_mail_a_02_gnm.m2", + text = "helm_mail_a_02_gnm.m2", fileId = "139198", text = "helm_mail_a_02_gnm.m2", }, { value = "helm_mail_a_02_huf.m2", + text = "helm_mail_a_02_huf.m2", fileId = "139201", text = "helm_mail_a_02_huf.m2", }, { value = "helm_mail_a_02_hum.m2", + text = "helm_mail_a_02_hum.m2", fileId = "139202", text = "helm_mail_a_02_hum.m2", }, { value = "helm_mail_a_02_nif.m2", + text = "helm_mail_a_02_nif.m2", fileId = "139203", text = "helm_mail_a_02_nif.m2", }, { value = "helm_mail_a_02_nim.m2", + text = "helm_mail_a_02_nim.m2", fileId = "139204", text = "helm_mail_a_02_nim.m2", }, { value = "helm_mail_a_02_orf.m2", + text = "helm_mail_a_02_orf.m2", fileId = "139205", text = "helm_mail_a_02_orf.m2", }, { value = "helm_mail_a_02_orm.m2", + text = "helm_mail_a_02_orm.m2", fileId = "139206", text = "helm_mail_a_02_orm.m2", }, { value = "helm_mail_a_02_scf.m2", + text = "helm_mail_a_02_scf.m2", fileId = "139207", text = "helm_mail_a_02_scf.m2", }, { value = "helm_mail_a_02_scm.m2", + text = "helm_mail_a_02_scm.m2", fileId = "139208", text = "helm_mail_a_02_scm.m2", }, { value = "helm_mail_a_02_taf.m2", + text = "helm_mail_a_02_taf.m2", fileId = "139209", text = "helm_mail_a_02_taf.m2", }, { value = "helm_mail_a_02_tam.m2", + text = "helm_mail_a_02_tam.m2", fileId = "139210", text = "helm_mail_a_02_tam.m2", }, { value = "helm_mail_a_02_trf.m2", + text = "helm_mail_a_02_trf.m2", fileId = "139211", text = "helm_mail_a_02_trf.m2", }, { value = "helm_mail_a_02_trm.m2", + text = "helm_mail_a_02_trm.m2", fileId = "139212", text = "helm_mail_a_02_trm.m2", }, { value = "helm_mail_ahnqiraj_a_01_dwf.m2", + text = "helm_mail_ahnqiraj_a_01_dwf.m2", fileId = "139221", text = "helm_mail_ahnqiraj_a_01_dwf.m2", }, { value = "helm_mail_ahnqiraj_a_01_dwm.m2", + text = "helm_mail_ahnqiraj_a_01_dwm.m2", fileId = "139222", text = "helm_mail_ahnqiraj_a_01_dwm.m2", }, { value = "helm_mail_ahnqiraj_a_01_gnf.m2", + text = "helm_mail_ahnqiraj_a_01_gnf.m2", fileId = "139223", text = "helm_mail_ahnqiraj_a_01_gnf.m2", }, { value = "helm_mail_ahnqiraj_a_01_gnm.m2", + text = "helm_mail_ahnqiraj_a_01_gnm.m2", fileId = "139224", text = "helm_mail_ahnqiraj_a_01_gnm.m2", }, { value = "helm_mail_ahnqiraj_a_01_huf.m2", + text = "helm_mail_ahnqiraj_a_01_huf.m2", fileId = "139227", text = "helm_mail_ahnqiraj_a_01_huf.m2", }, { value = "helm_mail_ahnqiraj_a_01_hum.m2", + text = "helm_mail_ahnqiraj_a_01_hum.m2", fileId = "139228", text = "helm_mail_ahnqiraj_a_01_hum.m2", }, { value = "helm_mail_ahnqiraj_a_01_nif.m2", + text = "helm_mail_ahnqiraj_a_01_nif.m2", fileId = "139229", text = "helm_mail_ahnqiraj_a_01_nif.m2", }, { value = "helm_mail_ahnqiraj_a_01_nim.m2", + text = "helm_mail_ahnqiraj_a_01_nim.m2", fileId = "139230", text = "helm_mail_ahnqiraj_a_01_nim.m2", }, { value = "helm_mail_ahnqiraj_a_01_orf.m2", + text = "helm_mail_ahnqiraj_a_01_orf.m2", fileId = "139231", text = "helm_mail_ahnqiraj_a_01_orf.m2", }, { value = "helm_mail_ahnqiraj_a_01_orm.m2", + text = "helm_mail_ahnqiraj_a_01_orm.m2", fileId = "139232", text = "helm_mail_ahnqiraj_a_01_orm.m2", }, { value = "helm_mail_ahnqiraj_a_01_scf.m2", + text = "helm_mail_ahnqiraj_a_01_scf.m2", fileId = "139233", text = "helm_mail_ahnqiraj_a_01_scf.m2", }, { value = "helm_mail_ahnqiraj_a_01_scm.m2", + text = "helm_mail_ahnqiraj_a_01_scm.m2", fileId = "139234", text = "helm_mail_ahnqiraj_a_01_scm.m2", }, { value = "helm_mail_ahnqiraj_a_01_taf.m2", + text = "helm_mail_ahnqiraj_a_01_taf.m2", fileId = "139235", text = "helm_mail_ahnqiraj_a_01_taf.m2", }, { value = "helm_mail_ahnqiraj_a_01_tam.m2", + text = "helm_mail_ahnqiraj_a_01_tam.m2", fileId = "139236", text = "helm_mail_ahnqiraj_a_01_tam.m2", }, { value = "helm_mail_ahnqiraj_a_01_trf.m2", + text = "helm_mail_ahnqiraj_a_01_trf.m2", fileId = "139237", text = "helm_mail_ahnqiraj_a_01_trf.m2", }, { value = "helm_mail_ahnqiraj_a_01_trm.m2", + text = "helm_mail_ahnqiraj_a_01_trm.m2", fileId = "139238", text = "helm_mail_ahnqiraj_a_01_trm.m2", }, { value = "helm_mail_c_02_dwf.m2", + text = "helm_mail_c_02_dwf.m2", fileId = "139272", text = "helm_mail_c_02_dwf.m2", }, { value = "helm_mail_c_02_dwm.m2", + text = "helm_mail_c_02_dwm.m2", fileId = "139273", text = "helm_mail_c_02_dwm.m2", }, { value = "helm_mail_c_02_gnf.m2", + text = "helm_mail_c_02_gnf.m2", fileId = "139274", text = "helm_mail_c_02_gnf.m2", }, { value = "helm_mail_c_02_gnm.m2", + text = "helm_mail_c_02_gnm.m2", fileId = "139275", text = "helm_mail_c_02_gnm.m2", }, { value = "helm_mail_c_02_huf.m2", + text = "helm_mail_c_02_huf.m2", fileId = "139277", text = "helm_mail_c_02_huf.m2", }, { value = "helm_mail_c_02_hum.m2", + text = "helm_mail_c_02_hum.m2", fileId = "139278", text = "helm_mail_c_02_hum.m2", }, { value = "helm_mail_c_02_nif.m2", + text = "helm_mail_c_02_nif.m2", fileId = "139279", text = "helm_mail_c_02_nif.m2", }, { value = "helm_mail_c_02_nim.m2", + text = "helm_mail_c_02_nim.m2", fileId = "139280", text = "helm_mail_c_02_nim.m2", }, { value = "helm_mail_c_02_orf.m2", + text = "helm_mail_c_02_orf.m2", fileId = "139281", text = "helm_mail_c_02_orf.m2", }, { value = "helm_mail_c_02_orm.m2", + text = "helm_mail_c_02_orm.m2", fileId = "139282", text = "helm_mail_c_02_orm.m2", }, { value = "helm_mail_c_02_scf.m2", + text = "helm_mail_c_02_scf.m2", fileId = "139283", text = "helm_mail_c_02_scf.m2", }, { value = "helm_mail_c_02_scm.m2", + text = "helm_mail_c_02_scm.m2", fileId = "139284", text = "helm_mail_c_02_scm.m2", }, { value = "helm_mail_c_02_taf.m2", + text = "helm_mail_c_02_taf.m2", fileId = "139285", text = "helm_mail_c_02_taf.m2", }, { value = "helm_mail_c_02_tam.m2", + text = "helm_mail_c_02_tam.m2", fileId = "139286", text = "helm_mail_c_02_tam.m2", }, { value = "helm_mail_c_02_trf.m2", + text = "helm_mail_c_02_trf.m2", fileId = "139287", text = "helm_mail_c_02_trf.m2", }, { value = "helm_mail_c_02_trm.m2", + text = "helm_mail_c_02_trm.m2", fileId = "139288", text = "helm_mail_c_02_trm.m2", }, { value = "helm_mail_d_01_dwf.m2", + text = "helm_mail_d_01_dwf.m2", fileId = "139297", text = "helm_mail_d_01_dwf.m2", }, { value = "helm_mail_d_01_dwm.m2", + text = "helm_mail_d_01_dwm.m2", fileId = "139298", text = "helm_mail_d_01_dwm.m2", }, { value = "helm_mail_d_01_gnf.m2", + text = "helm_mail_d_01_gnf.m2", fileId = "139299", text = "helm_mail_d_01_gnf.m2", }, { value = "helm_mail_d_01_gnm.m2", + text = "helm_mail_d_01_gnm.m2", fileId = "139300", text = "helm_mail_d_01_gnm.m2", }, { value = "helm_mail_d_01_huf.m2", + text = "helm_mail_d_01_huf.m2", fileId = "139303", text = "helm_mail_d_01_huf.m2", }, { value = "helm_mail_d_01_hum.m2", + text = "helm_mail_d_01_hum.m2", fileId = "139304", text = "helm_mail_d_01_hum.m2", }, { value = "helm_mail_d_01_nif.m2", + text = "helm_mail_d_01_nif.m2", fileId = "139305", text = "helm_mail_d_01_nif.m2", }, { value = "helm_mail_d_01_nim.m2", + text = "helm_mail_d_01_nim.m2", fileId = "139306", text = "helm_mail_d_01_nim.m2", }, { value = "helm_mail_d_01_orf.m2", + text = "helm_mail_d_01_orf.m2", fileId = "139307", text = "helm_mail_d_01_orf.m2", }, { value = "helm_mail_d_01_orm.m2", + text = "helm_mail_d_01_orm.m2", fileId = "139308", text = "helm_mail_d_01_orm.m2", }, { value = "helm_mail_d_01_scf.m2", + text = "helm_mail_d_01_scf.m2", fileId = "139309", text = "helm_mail_d_01_scf.m2", }, { value = "helm_mail_d_01_scm.m2", + text = "helm_mail_d_01_scm.m2", fileId = "139310", text = "helm_mail_d_01_scm.m2", }, { value = "helm_mail_d_01_taf.m2", + text = "helm_mail_d_01_taf.m2", fileId = "139311", text = "helm_mail_d_01_taf.m2", }, { value = "helm_mail_d_01_tam.m2", + text = "helm_mail_d_01_tam.m2", fileId = "139312", text = "helm_mail_d_01_tam.m2", }, { value = "helm_mail_d_01_trf.m2", + text = "helm_mail_d_01_trf.m2", fileId = "139313", text = "helm_mail_d_01_trf.m2", }, { value = "helm_mail_d_01_trm.m2", + text = "helm_mail_d_01_trm.m2", fileId = "139314", text = "helm_mail_d_01_trm.m2", }, { value = "helm_mail_dungeonhunter_a_01_dwf.m2", + text = "helm_mail_dungeonhunter_a_01_dwf.m2", fileId = "139325", text = "helm_mail_dungeonhunter_a_01_dwf.m2", }, { value = "helm_mail_dungeonhunter_a_01_dwm.m2", + text = "helm_mail_dungeonhunter_a_01_dwm.m2", fileId = "139326", text = "helm_mail_dungeonhunter_a_01_dwm.m2", }, { value = "helm_mail_dungeonhunter_a_01_gnf.m2", + text = "helm_mail_dungeonhunter_a_01_gnf.m2", fileId = "139327", text = "helm_mail_dungeonhunter_a_01_gnf.m2", }, { value = "helm_mail_dungeonhunter_a_01_gnm.m2", + text = "helm_mail_dungeonhunter_a_01_gnm.m2", fileId = "139328", text = "helm_mail_dungeonhunter_a_01_gnm.m2", }, { value = "helm_mail_dungeonhunter_a_01_huf.m2", + text = "helm_mail_dungeonhunter_a_01_huf.m2", fileId = "139330", text = "helm_mail_dungeonhunter_a_01_huf.m2", }, { value = "helm_mail_dungeonhunter_a_01_hum.m2", + text = "helm_mail_dungeonhunter_a_01_hum.m2", fileId = "139331", text = "helm_mail_dungeonhunter_a_01_hum.m2", }, { value = "helm_mail_dungeonhunter_a_01_nif.m2", + text = "helm_mail_dungeonhunter_a_01_nif.m2", fileId = "139332", text = "helm_mail_dungeonhunter_a_01_nif.m2", }, { value = "helm_mail_dungeonhunter_a_01_nim.m2", + text = "helm_mail_dungeonhunter_a_01_nim.m2", fileId = "139333", text = "helm_mail_dungeonhunter_a_01_nim.m2", }, { value = "helm_mail_dungeonhunter_a_01_orf.m2", + text = "helm_mail_dungeonhunter_a_01_orf.m2", fileId = "139334", text = "helm_mail_dungeonhunter_a_01_orf.m2", }, { value = "helm_mail_dungeonhunter_a_01_orm.m2", + text = "helm_mail_dungeonhunter_a_01_orm.m2", fileId = "139335", text = "helm_mail_dungeonhunter_a_01_orm.m2", }, { value = "helm_mail_dungeonhunter_a_01_scf.m2", + text = "helm_mail_dungeonhunter_a_01_scf.m2", fileId = "139336", text = "helm_mail_dungeonhunter_a_01_scf.m2", }, { value = "helm_mail_dungeonhunter_a_01_scm.m2", + text = "helm_mail_dungeonhunter_a_01_scm.m2", fileId = "139337", text = "helm_mail_dungeonhunter_a_01_scm.m2", }, { value = "helm_mail_dungeonhunter_a_01_taf.m2", + text = "helm_mail_dungeonhunter_a_01_taf.m2", fileId = "139338", text = "helm_mail_dungeonhunter_a_01_taf.m2", }, { value = "helm_mail_dungeonhunter_a_01_tam.m2", + text = "helm_mail_dungeonhunter_a_01_tam.m2", fileId = "139339", text = "helm_mail_dungeonhunter_a_01_tam.m2", }, { value = "helm_mail_dungeonhunter_a_01_trf.m2", + text = "helm_mail_dungeonhunter_a_01_trf.m2", fileId = "139340", text = "helm_mail_dungeonhunter_a_01_trf.m2", }, { value = "helm_mail_dungeonhunter_a_01_trm.m2", + text = "helm_mail_dungeonhunter_a_01_trm.m2", fileId = "139341", text = "helm_mail_dungeonhunter_a_01_trm.m2", }, { value = "helm_mail_dungeonshaman_a_01_dwf.m2", + text = "helm_mail_dungeonshaman_a_01_dwf.m2", fileId = "139377", text = "helm_mail_dungeonshaman_a_01_dwf.m2", }, { value = "helm_mail_dungeonshaman_a_01_dwm.m2", + text = "helm_mail_dungeonshaman_a_01_dwm.m2", fileId = "139378", text = "helm_mail_dungeonshaman_a_01_dwm.m2", }, { value = "helm_mail_dungeonshaman_a_01_gnf.m2", + text = "helm_mail_dungeonshaman_a_01_gnf.m2", fileId = "139379", text = "helm_mail_dungeonshaman_a_01_gnf.m2", }, { value = "helm_mail_dungeonshaman_a_01_gnm.m2", + text = "helm_mail_dungeonshaman_a_01_gnm.m2", fileId = "139380", text = "helm_mail_dungeonshaman_a_01_gnm.m2", }, { value = "helm_mail_dungeonshaman_a_01_huf.m2", + text = "helm_mail_dungeonshaman_a_01_huf.m2", fileId = "139383", text = "helm_mail_dungeonshaman_a_01_huf.m2", }, { value = "helm_mail_dungeonshaman_a_01_hum.m2", + text = "helm_mail_dungeonshaman_a_01_hum.m2", fileId = "139384", text = "helm_mail_dungeonshaman_a_01_hum.m2", }, { value = "helm_mail_dungeonshaman_a_01_nif.m2", + text = "helm_mail_dungeonshaman_a_01_nif.m2", fileId = "139385", text = "helm_mail_dungeonshaman_a_01_nif.m2", }, { value = "helm_mail_dungeonshaman_a_01_nim.m2", + text = "helm_mail_dungeonshaman_a_01_nim.m2", fileId = "139386", text = "helm_mail_dungeonshaman_a_01_nim.m2", }, { value = "helm_mail_dungeonshaman_a_01_orf.m2", + text = "helm_mail_dungeonshaman_a_01_orf.m2", fileId = "139387", text = "helm_mail_dungeonshaman_a_01_orf.m2", }, { value = "helm_mail_dungeonshaman_a_01_orm.m2", + text = "helm_mail_dungeonshaman_a_01_orm.m2", fileId = "139388", text = "helm_mail_dungeonshaman_a_01_orm.m2", }, { value = "helm_mail_dungeonshaman_a_01_scf.m2", + text = "helm_mail_dungeonshaman_a_01_scf.m2", fileId = "139389", text = "helm_mail_dungeonshaman_a_01_scf.m2", }, { value = "helm_mail_dungeonshaman_a_01_scm.m2", + text = "helm_mail_dungeonshaman_a_01_scm.m2", fileId = "139390", text = "helm_mail_dungeonshaman_a_01_scm.m2", }, { value = "helm_mail_dungeonshaman_a_01_taf.m2", + text = "helm_mail_dungeonshaman_a_01_taf.m2", fileId = "139391", text = "helm_mail_dungeonshaman_a_01_taf.m2", }, { value = "helm_mail_dungeonshaman_a_01_tam.m2", + text = "helm_mail_dungeonshaman_a_01_tam.m2", fileId = "139392", text = "helm_mail_dungeonshaman_a_01_tam.m2", }, { value = "helm_mail_dungeonshaman_a_01_trf.m2", + text = "helm_mail_dungeonshaman_a_01_trf.m2", fileId = "139393", text = "helm_mail_dungeonshaman_a_01_trf.m2", }, { value = "helm_mail_dungeonshaman_a_01_trm.m2", + text = "helm_mail_dungeonshaman_a_01_trm.m2", fileId = "139394", text = "helm_mail_dungeonshaman_a_01_trm.m2", }, { value = "helm_mail_pvpalliance_a_01_dwf.m2", + text = "helm_mail_pvpalliance_a_01_dwf.m2", fileId = "139530", text = "helm_mail_pvpalliance_a_01_dwf.m2", }, { value = "helm_mail_pvpalliance_a_01_dwm.m2", + text = "helm_mail_pvpalliance_a_01_dwm.m2", fileId = "139531", text = "helm_mail_pvpalliance_a_01_dwm.m2", }, { value = "helm_mail_pvpalliance_a_01_gnf.m2", + text = "helm_mail_pvpalliance_a_01_gnf.m2", fileId = "139532", text = "helm_mail_pvpalliance_a_01_gnf.m2", }, { value = "helm_mail_pvpalliance_a_01_gnm.m2", + text = "helm_mail_pvpalliance_a_01_gnm.m2", fileId = "139533", text = "helm_mail_pvpalliance_a_01_gnm.m2", }, { value = "helm_mail_pvpalliance_a_01_huf.m2", + text = "helm_mail_pvpalliance_a_01_huf.m2", fileId = "139536", text = "helm_mail_pvpalliance_a_01_huf.m2", }, { value = "helm_mail_pvpalliance_a_01_hum.m2", + text = "helm_mail_pvpalliance_a_01_hum.m2", fileId = "139537", text = "helm_mail_pvpalliance_a_01_hum.m2", }, { value = "helm_mail_pvpalliance_a_01_nif.m2", + text = "helm_mail_pvpalliance_a_01_nif.m2", fileId = "139538", text = "helm_mail_pvpalliance_a_01_nif.m2", }, { value = "helm_mail_pvpalliance_a_01_nim.m2", + text = "helm_mail_pvpalliance_a_01_nim.m2", fileId = "139539", text = "helm_mail_pvpalliance_a_01_nim.m2", }, { value = "helm_mail_pvpalliance_a_01_orf.m2", + text = "helm_mail_pvpalliance_a_01_orf.m2", fileId = "139540", text = "helm_mail_pvpalliance_a_01_orf.m2", }, { value = "helm_mail_pvpalliance_a_01_orm.m2", + text = "helm_mail_pvpalliance_a_01_orm.m2", fileId = "139541", text = "helm_mail_pvpalliance_a_01_orm.m2", }, { value = "helm_mail_pvpalliance_a_01_scf.m2", + text = "helm_mail_pvpalliance_a_01_scf.m2", fileId = "139542", text = "helm_mail_pvpalliance_a_01_scf.m2", }, { value = "helm_mail_pvpalliance_a_01_scm.m2", + text = "helm_mail_pvpalliance_a_01_scm.m2", fileId = "139543", text = "helm_mail_pvpalliance_a_01_scm.m2", }, { value = "helm_mail_pvpalliance_a_01_taf.m2", + text = "helm_mail_pvpalliance_a_01_taf.m2", fileId = "139544", text = "helm_mail_pvpalliance_a_01_taf.m2", }, { value = "helm_mail_pvpalliance_a_01_tam.m2", + text = "helm_mail_pvpalliance_a_01_tam.m2", fileId = "139545", text = "helm_mail_pvpalliance_a_01_tam.m2", }, { value = "helm_mail_pvpalliance_a_01_trf.m2", + text = "helm_mail_pvpalliance_a_01_trf.m2", fileId = "139546", text = "helm_mail_pvpalliance_a_01_trf.m2", }, { value = "helm_mail_pvpalliance_a_01_trm.m2", + text = "helm_mail_pvpalliance_a_01_trm.m2", fileId = "139547", text = "helm_mail_pvpalliance_a_01_trm.m2", }, { value = "helm_mail_pvpalliance_c_01_dwf.m2", + text = "helm_mail_pvpalliance_c_01_dwf.m2", fileId = "139555", text = "helm_mail_pvpalliance_c_01_dwf.m2", }, { value = "helm_mail_pvpalliance_c_01_dwm.m2", + text = "helm_mail_pvpalliance_c_01_dwm.m2", fileId = "139556", text = "helm_mail_pvpalliance_c_01_dwm.m2", }, { value = "helm_mail_pvpalliance_c_01_gnf.m2", + text = "helm_mail_pvpalliance_c_01_gnf.m2", fileId = "139557", text = "helm_mail_pvpalliance_c_01_gnf.m2", }, { value = "helm_mail_pvpalliance_c_01_gnm.m2", + text = "helm_mail_pvpalliance_c_01_gnm.m2", fileId = "139558", text = "helm_mail_pvpalliance_c_01_gnm.m2", }, { value = "helm_mail_pvpalliance_c_01_huf.m2", + text = "helm_mail_pvpalliance_c_01_huf.m2", fileId = "139561", text = "helm_mail_pvpalliance_c_01_huf.m2", }, { value = "helm_mail_pvpalliance_c_01_hum.m2", + text = "helm_mail_pvpalliance_c_01_hum.m2", fileId = "139562", text = "helm_mail_pvpalliance_c_01_hum.m2", }, { value = "helm_mail_pvpalliance_c_01_nif.m2", + text = "helm_mail_pvpalliance_c_01_nif.m2", fileId = "139563", text = "helm_mail_pvpalliance_c_01_nif.m2", }, { value = "helm_mail_pvpalliance_c_01_nim.m2", + text = "helm_mail_pvpalliance_c_01_nim.m2", fileId = "139564", text = "helm_mail_pvpalliance_c_01_nim.m2", }, { value = "helm_mail_pvpalliance_c_01_orf.m2", + text = "helm_mail_pvpalliance_c_01_orf.m2", fileId = "139565", text = "helm_mail_pvpalliance_c_01_orf.m2", }, { value = "helm_mail_pvpalliance_c_01_orm.m2", + text = "helm_mail_pvpalliance_c_01_orm.m2", fileId = "139566", text = "helm_mail_pvpalliance_c_01_orm.m2", }, { value = "helm_mail_pvpalliance_c_01_scf.m2", + text = "helm_mail_pvpalliance_c_01_scf.m2", fileId = "139567", text = "helm_mail_pvpalliance_c_01_scf.m2", }, { value = "helm_mail_pvpalliance_c_01_scm.m2", + text = "helm_mail_pvpalliance_c_01_scm.m2", fileId = "139568", text = "helm_mail_pvpalliance_c_01_scm.m2", }, { value = "helm_mail_pvpalliance_c_01_taf.m2", + text = "helm_mail_pvpalliance_c_01_taf.m2", fileId = "139569", text = "helm_mail_pvpalliance_c_01_taf.m2", }, { value = "helm_mail_pvpalliance_c_01_tam.m2", + text = "helm_mail_pvpalliance_c_01_tam.m2", fileId = "139570", text = "helm_mail_pvpalliance_c_01_tam.m2", }, { value = "helm_mail_pvpalliance_c_01_trf.m2", + text = "helm_mail_pvpalliance_c_01_trf.m2", fileId = "139571", text = "helm_mail_pvpalliance_c_01_trf.m2", }, { value = "helm_mail_pvpalliance_c_01_trm.m2", + text = "helm_mail_pvpalliance_c_01_trm.m2", fileId = "139572", text = "helm_mail_pvpalliance_c_01_trm.m2", }, { value = "helm_mail_pvphorde_a_01_dwf.m2", + text = "helm_mail_pvphorde_a_01_dwf.m2", fileId = "139577", text = "helm_mail_pvphorde_a_01_dwf.m2", }, { value = "helm_mail_pvphorde_a_01_dwm.m2", + text = "helm_mail_pvphorde_a_01_dwm.m2", fileId = "139578", text = "helm_mail_pvphorde_a_01_dwm.m2", }, { value = "helm_mail_pvphorde_a_01_gnf.m2", + text = "helm_mail_pvphorde_a_01_gnf.m2", fileId = "139579", text = "helm_mail_pvphorde_a_01_gnf.m2", }, { value = "helm_mail_pvphorde_a_01_gnm.m2", + text = "helm_mail_pvphorde_a_01_gnm.m2", fileId = "139580", text = "helm_mail_pvphorde_a_01_gnm.m2", }, { value = "helm_mail_pvphorde_a_01_huf.m2", + text = "helm_mail_pvphorde_a_01_huf.m2", fileId = "139582", text = "helm_mail_pvphorde_a_01_huf.m2", }, { value = "helm_mail_pvphorde_a_01_hum.m2", + text = "helm_mail_pvphorde_a_01_hum.m2", fileId = "139583", text = "helm_mail_pvphorde_a_01_hum.m2", }, { value = "helm_mail_pvphorde_a_01_nif.m2", + text = "helm_mail_pvphorde_a_01_nif.m2", fileId = "139584", text = "helm_mail_pvphorde_a_01_nif.m2", }, { value = "helm_mail_pvphorde_a_01_nim.m2", + text = "helm_mail_pvphorde_a_01_nim.m2", fileId = "139585", text = "helm_mail_pvphorde_a_01_nim.m2", }, { value = "helm_mail_pvphorde_a_01_orf.m2", + text = "helm_mail_pvphorde_a_01_orf.m2", fileId = "139586", text = "helm_mail_pvphorde_a_01_orf.m2", }, { value = "helm_mail_pvphorde_a_01_orm.m2", + text = "helm_mail_pvphorde_a_01_orm.m2", fileId = "139587", text = "helm_mail_pvphorde_a_01_orm.m2", }, { value = "helm_mail_pvphorde_a_01_scf.m2", + text = "helm_mail_pvphorde_a_01_scf.m2", fileId = "139588", text = "helm_mail_pvphorde_a_01_scf.m2", }, { value = "helm_mail_pvphorde_a_01_scm.m2", + text = "helm_mail_pvphorde_a_01_scm.m2", fileId = "139589", text = "helm_mail_pvphorde_a_01_scm.m2", }, { value = "helm_mail_pvphorde_a_01_taf.m2", + text = "helm_mail_pvphorde_a_01_taf.m2", fileId = "139590", text = "helm_mail_pvphorde_a_01_taf.m2", }, { value = "helm_mail_pvphorde_a_01_tam.m2", + text = "helm_mail_pvphorde_a_01_tam.m2", fileId = "139591", text = "helm_mail_pvphorde_a_01_tam.m2", }, { value = "helm_mail_pvphorde_a_01_trf.m2", + text = "helm_mail_pvphorde_a_01_trf.m2", fileId = "139592", text = "helm_mail_pvphorde_a_01_trf.m2", }, { value = "helm_mail_pvphorde_a_01_trm.m2", + text = "helm_mail_pvphorde_a_01_trm.m2", fileId = "139593", text = "helm_mail_pvphorde_a_01_trm.m2", }, { value = "helm_mail_pvphorde_c_01_dwf.m2", + text = "helm_mail_pvphorde_c_01_dwf.m2", fileId = "139600", text = "helm_mail_pvphorde_c_01_dwf.m2", }, { value = "helm_mail_pvphorde_c_01_dwm.m2", + text = "helm_mail_pvphorde_c_01_dwm.m2", fileId = "139601", text = "helm_mail_pvphorde_c_01_dwm.m2", }, { value = "helm_mail_pvphorde_c_01_gnf.m2", + text = "helm_mail_pvphorde_c_01_gnf.m2", fileId = "139602", text = "helm_mail_pvphorde_c_01_gnf.m2", }, { value = "helm_mail_pvphorde_c_01_gnm.m2", + text = "helm_mail_pvphorde_c_01_gnm.m2", fileId = "139603", text = "helm_mail_pvphorde_c_01_gnm.m2", }, { value = "helm_mail_pvphorde_c_01_huf.m2", + text = "helm_mail_pvphorde_c_01_huf.m2", fileId = "139606", text = "helm_mail_pvphorde_c_01_huf.m2", }, { value = "helm_mail_pvphorde_c_01_hum.m2", + text = "helm_mail_pvphorde_c_01_hum.m2", fileId = "139607", text = "helm_mail_pvphorde_c_01_hum.m2", }, { value = "helm_mail_pvphorde_c_01_nif.m2", + text = "helm_mail_pvphorde_c_01_nif.m2", fileId = "139608", text = "helm_mail_pvphorde_c_01_nif.m2", }, { value = "helm_mail_pvphorde_c_01_nim.m2", + text = "helm_mail_pvphorde_c_01_nim.m2", fileId = "139609", text = "helm_mail_pvphorde_c_01_nim.m2", }, { value = "helm_mail_pvphorde_c_01_orf.m2", + text = "helm_mail_pvphorde_c_01_orf.m2", fileId = "139610", text = "helm_mail_pvphorde_c_01_orf.m2", }, { value = "helm_mail_pvphorde_c_01_orm.m2", + text = "helm_mail_pvphorde_c_01_orm.m2", fileId = "139611", text = "helm_mail_pvphorde_c_01_orm.m2", }, { value = "helm_mail_pvphorde_c_01_scf.m2", + text = "helm_mail_pvphorde_c_01_scf.m2", fileId = "139612", text = "helm_mail_pvphorde_c_01_scf.m2", }, { value = "helm_mail_pvphorde_c_01_scm.m2", + text = "helm_mail_pvphorde_c_01_scm.m2", fileId = "139613", text = "helm_mail_pvphorde_c_01_scm.m2", }, { value = "helm_mail_pvphorde_c_01_taf.m2", + text = "helm_mail_pvphorde_c_01_taf.m2", fileId = "139614", text = "helm_mail_pvphorde_c_01_taf.m2", }, { value = "helm_mail_pvphorde_c_01_tam.m2", + text = "helm_mail_pvphorde_c_01_tam.m2", fileId = "139615", text = "helm_mail_pvphorde_c_01_tam.m2", }, { value = "helm_mail_pvphorde_c_01_trf.m2", + text = "helm_mail_pvphorde_c_01_trf.m2", fileId = "139616", text = "helm_mail_pvphorde_c_01_trf.m2", }, { value = "helm_mail_pvphorde_c_01_trm.m2", + text = "helm_mail_pvphorde_c_01_trm.m2", fileId = "139617", text = "helm_mail_pvphorde_c_01_trm.m2", }, { value = "helm_mail_raidhunter_a_01_dwf.m2", + text = "helm_mail_raidhunter_a_01_dwf.m2", fileId = "139625", text = "helm_mail_raidhunter_a_01_dwf.m2", }, { value = "helm_mail_raidhunter_a_01_dwm.m2", + text = "helm_mail_raidhunter_a_01_dwm.m2", fileId = "139626", text = "helm_mail_raidhunter_a_01_dwm.m2", }, { value = "helm_mail_raidhunter_a_01_gnf.m2", + text = "helm_mail_raidhunter_a_01_gnf.m2", fileId = "139627", text = "helm_mail_raidhunter_a_01_gnf.m2", }, { value = "helm_mail_raidhunter_a_01_gnm.m2", + text = "helm_mail_raidhunter_a_01_gnm.m2", fileId = "139628", text = "helm_mail_raidhunter_a_01_gnm.m2", }, { value = "helm_mail_raidhunter_a_01_huf.m2", + text = "helm_mail_raidhunter_a_01_huf.m2", fileId = "139629", text = "helm_mail_raidhunter_a_01_huf.m2", }, { value = "helm_mail_raidhunter_a_01_hum.m2", + text = "helm_mail_raidhunter_a_01_hum.m2", fileId = "139630", text = "helm_mail_raidhunter_a_01_hum.m2", }, { value = "helm_mail_raidhunter_a_01_nif.m2", + text = "helm_mail_raidhunter_a_01_nif.m2", fileId = "139631", text = "helm_mail_raidhunter_a_01_nif.m2", }, { value = "helm_mail_raidhunter_a_01_nim.m2", + text = "helm_mail_raidhunter_a_01_nim.m2", fileId = "139632", text = "helm_mail_raidhunter_a_01_nim.m2", }, { value = "helm_mail_raidhunter_a_01_orf.m2", + text = "helm_mail_raidhunter_a_01_orf.m2", fileId = "139633", text = "helm_mail_raidhunter_a_01_orf.m2", }, { value = "helm_mail_raidhunter_a_01_orm.m2", + text = "helm_mail_raidhunter_a_01_orm.m2", fileId = "139634", text = "helm_mail_raidhunter_a_01_orm.m2", }, { value = "helm_mail_raidhunter_a_01_scf.m2", + text = "helm_mail_raidhunter_a_01_scf.m2", fileId = "139635", text = "helm_mail_raidhunter_a_01_scf.m2", }, { value = "helm_mail_raidhunter_a_01_scm.m2", + text = "helm_mail_raidhunter_a_01_scm.m2", fileId = "139636", text = "helm_mail_raidhunter_a_01_scm.m2", }, { value = "helm_mail_raidhunter_a_01_taf.m2", + text = "helm_mail_raidhunter_a_01_taf.m2", fileId = "139637", text = "helm_mail_raidhunter_a_01_taf.m2", }, { value = "helm_mail_raidhunter_a_01_tam.m2", + text = "helm_mail_raidhunter_a_01_tam.m2", fileId = "139638", text = "helm_mail_raidhunter_a_01_tam.m2", }, { value = "helm_mail_raidhunter_a_01_trf.m2", + text = "helm_mail_raidhunter_a_01_trf.m2", fileId = "139639", text = "helm_mail_raidhunter_a_01_trf.m2", }, { value = "helm_mail_raidhunter_a_01_trm.m2", + text = "helm_mail_raidhunter_a_01_trm.m2", fileId = "139640", text = "helm_mail_raidhunter_a_01_trm.m2", }, { value = "helm_mail_raidhunter_b_01_dwf.m2", + text = "helm_mail_raidhunter_b_01_dwf.m2", fileId = "139649", text = "helm_mail_raidhunter_b_01_dwf.m2", }, { value = "helm_mail_raidhunter_b_01_dwm.m2", + text = "helm_mail_raidhunter_b_01_dwm.m2", fileId = "139650", text = "helm_mail_raidhunter_b_01_dwm.m2", }, { value = "helm_mail_raidhunter_b_01_gnf.m2", + text = "helm_mail_raidhunter_b_01_gnf.m2", fileId = "139651", text = "helm_mail_raidhunter_b_01_gnf.m2", }, { value = "helm_mail_raidhunter_b_01_gnm.m2", + text = "helm_mail_raidhunter_b_01_gnm.m2", fileId = "139652", text = "helm_mail_raidhunter_b_01_gnm.m2", }, { value = "helm_mail_raidhunter_b_01_huf.m2", + text = "helm_mail_raidhunter_b_01_huf.m2", fileId = "139655", text = "helm_mail_raidhunter_b_01_huf.m2", }, { value = "helm_mail_raidhunter_b_01_hum.m2", + text = "helm_mail_raidhunter_b_01_hum.m2", fileId = "139656", text = "helm_mail_raidhunter_b_01_hum.m2", }, { value = "helm_mail_raidhunter_b_01_nif.m2", + text = "helm_mail_raidhunter_b_01_nif.m2", fileId = "139657", text = "helm_mail_raidhunter_b_01_nif.m2", }, { value = "helm_mail_raidhunter_b_01_nim.m2", + text = "helm_mail_raidhunter_b_01_nim.m2", fileId = "139658", text = "helm_mail_raidhunter_b_01_nim.m2", }, { value = "helm_mail_raidhunter_b_01_orf.m2", + text = "helm_mail_raidhunter_b_01_orf.m2", fileId = "139659", text = "helm_mail_raidhunter_b_01_orf.m2", }, { value = "helm_mail_raidhunter_b_01_orm.m2", + text = "helm_mail_raidhunter_b_01_orm.m2", fileId = "139660", text = "helm_mail_raidhunter_b_01_orm.m2", }, { value = "helm_mail_raidhunter_b_01_scf.m2", + text = "helm_mail_raidhunter_b_01_scf.m2", fileId = "139661", text = "helm_mail_raidhunter_b_01_scf.m2", }, { value = "helm_mail_raidhunter_b_01_scm.m2", + text = "helm_mail_raidhunter_b_01_scm.m2", fileId = "139662", text = "helm_mail_raidhunter_b_01_scm.m2", }, { value = "helm_mail_raidhunter_b_01_taf.m2", + text = "helm_mail_raidhunter_b_01_taf.m2", fileId = "139663", text = "helm_mail_raidhunter_b_01_taf.m2", }, { value = "helm_mail_raidhunter_b_01_tam.m2", + text = "helm_mail_raidhunter_b_01_tam.m2", fileId = "139664", text = "helm_mail_raidhunter_b_01_tam.m2", }, { value = "helm_mail_raidhunter_b_01_trf.m2", + text = "helm_mail_raidhunter_b_01_trf.m2", fileId = "139665", text = "helm_mail_raidhunter_b_01_trf.m2", }, { value = "helm_mail_raidhunter_b_01_trm.m2", + text = "helm_mail_raidhunter_b_01_trm.m2", fileId = "139666", text = "helm_mail_raidhunter_b_01_trm.m2", }, { value = "helm_mail_raidhunter_c_01_dwf.m2", + text = "helm_mail_raidhunter_c_01_dwf.m2", fileId = "139676", text = "helm_mail_raidhunter_c_01_dwf.m2", }, { value = "helm_mail_raidhunter_c_01_dwm.m2", + text = "helm_mail_raidhunter_c_01_dwm.m2", fileId = "139677", text = "helm_mail_raidhunter_c_01_dwm.m2", }, { value = "helm_mail_raidhunter_c_01_gnf.m2", + text = "helm_mail_raidhunter_c_01_gnf.m2", fileId = "139678", text = "helm_mail_raidhunter_c_01_gnf.m2", }, { value = "helm_mail_raidhunter_c_01_gnm.m2", + text = "helm_mail_raidhunter_c_01_gnm.m2", fileId = "139679", text = "helm_mail_raidhunter_c_01_gnm.m2", }, { value = "helm_mail_raidhunter_c_01_huf.m2", + text = "helm_mail_raidhunter_c_01_huf.m2", fileId = "139682", text = "helm_mail_raidhunter_c_01_huf.m2", }, { value = "helm_mail_raidhunter_c_01_hum.m2", + text = "helm_mail_raidhunter_c_01_hum.m2", fileId = "139683", text = "helm_mail_raidhunter_c_01_hum.m2", }, { value = "helm_mail_raidhunter_c_01_nif.m2", + text = "helm_mail_raidhunter_c_01_nif.m2", fileId = "139684", text = "helm_mail_raidhunter_c_01_nif.m2", }, { value = "helm_mail_raidhunter_c_01_nim.m2", + text = "helm_mail_raidhunter_c_01_nim.m2", fileId = "139685", text = "helm_mail_raidhunter_c_01_nim.m2", }, { value = "helm_mail_raidhunter_c_01_orf.m2", + text = "helm_mail_raidhunter_c_01_orf.m2", fileId = "139686", text = "helm_mail_raidhunter_c_01_orf.m2", }, { value = "helm_mail_raidhunter_c_01_orm.m2", + text = "helm_mail_raidhunter_c_01_orm.m2", fileId = "139687", text = "helm_mail_raidhunter_c_01_orm.m2", }, { value = "helm_mail_raidhunter_c_01_scf.m2", + text = "helm_mail_raidhunter_c_01_scf.m2", fileId = "139688", text = "helm_mail_raidhunter_c_01_scf.m2", }, { value = "helm_mail_raidhunter_c_01_scm.m2", + text = "helm_mail_raidhunter_c_01_scm.m2", fileId = "139689", text = "helm_mail_raidhunter_c_01_scm.m2", }, { value = "helm_mail_raidhunter_c_01_taf.m2", + text = "helm_mail_raidhunter_c_01_taf.m2", fileId = "139690", text = "helm_mail_raidhunter_c_01_taf.m2", }, { value = "helm_mail_raidhunter_c_01_tam.m2", + text = "helm_mail_raidhunter_c_01_tam.m2", fileId = "139691", text = "helm_mail_raidhunter_c_01_tam.m2", }, { value = "helm_mail_raidhunter_c_01_trf.m2", + text = "helm_mail_raidhunter_c_01_trf.m2", fileId = "139692", text = "helm_mail_raidhunter_c_01_trf.m2", }, { value = "helm_mail_raidhunter_c_01_trm.m2", + text = "helm_mail_raidhunter_c_01_trm.m2", fileId = "139693", text = "helm_mail_raidhunter_c_01_trm.m2", }, { value = "helm_mail_raidshaman_a_01_dwf.m2", + text = "helm_mail_raidshaman_a_01_dwf.m2", fileId = "139800", text = "helm_mail_raidshaman_a_01_dwf.m2", }, { value = "helm_mail_raidshaman_a_01_dwm.m2", + text = "helm_mail_raidshaman_a_01_dwm.m2", fileId = "139801", text = "helm_mail_raidshaman_a_01_dwm.m2", }, { value = "helm_mail_raidshaman_a_01_gnf.m2", + text = "helm_mail_raidshaman_a_01_gnf.m2", fileId = "139802", text = "helm_mail_raidshaman_a_01_gnf.m2", }, { value = "helm_mail_raidshaman_a_01_gnm.m2", + text = "helm_mail_raidshaman_a_01_gnm.m2", fileId = "139803", text = "helm_mail_raidshaman_a_01_gnm.m2", }, { value = "helm_mail_raidshaman_a_01_huf.m2", + text = "helm_mail_raidshaman_a_01_huf.m2", fileId = "139806", text = "helm_mail_raidshaman_a_01_huf.m2", }, { value = "helm_mail_raidshaman_a_01_hum.m2", + text = "helm_mail_raidshaman_a_01_hum.m2", fileId = "139807", text = "helm_mail_raidshaman_a_01_hum.m2", }, { value = "helm_mail_raidshaman_a_01_nif.m2", + text = "helm_mail_raidshaman_a_01_nif.m2", fileId = "139808", text = "helm_mail_raidshaman_a_01_nif.m2", }, { value = "helm_mail_raidshaman_a_01_nim.m2", + text = "helm_mail_raidshaman_a_01_nim.m2", fileId = "139809", text = "helm_mail_raidshaman_a_01_nim.m2", }, { value = "helm_mail_raidshaman_a_01_orf.m2", + text = "helm_mail_raidshaman_a_01_orf.m2", fileId = "139810", text = "helm_mail_raidshaman_a_01_orf.m2", }, { value = "helm_mail_raidshaman_a_01_orm.m2", + text = "helm_mail_raidshaman_a_01_orm.m2", fileId = "139811", text = "helm_mail_raidshaman_a_01_orm.m2", }, { value = "helm_mail_raidshaman_a_01_scf.m2", + text = "helm_mail_raidshaman_a_01_scf.m2", fileId = "139812", text = "helm_mail_raidshaman_a_01_scf.m2", }, { value = "helm_mail_raidshaman_a_01_scm.m2", + text = "helm_mail_raidshaman_a_01_scm.m2", fileId = "139813", text = "helm_mail_raidshaman_a_01_scm.m2", }, { value = "helm_mail_raidshaman_a_01_taf.m2", + text = "helm_mail_raidshaman_a_01_taf.m2", fileId = "139814", text = "helm_mail_raidshaman_a_01_taf.m2", }, { value = "helm_mail_raidshaman_a_01_tam.m2", + text = "helm_mail_raidshaman_a_01_tam.m2", fileId = "139815", text = "helm_mail_raidshaman_a_01_tam.m2", }, { value = "helm_mail_raidshaman_a_01_trf.m2", + text = "helm_mail_raidshaman_a_01_trf.m2", fileId = "139816", text = "helm_mail_raidshaman_a_01_trf.m2", }, { value = "helm_mail_raidshaman_a_01_trm.m2", + text = "helm_mail_raidshaman_a_01_trm.m2", fileId = "139817", text = "helm_mail_raidshaman_a_01_trm.m2", }, { value = "helm_mail_raidshaman_b_01_dwf.m2", + text = "helm_mail_raidshaman_b_01_dwf.m2", fileId = "139828", text = "helm_mail_raidshaman_b_01_dwf.m2", }, { value = "helm_mail_raidshaman_b_01_dwm.m2", + text = "helm_mail_raidshaman_b_01_dwm.m2", fileId = "139829", text = "helm_mail_raidshaman_b_01_dwm.m2", }, { value = "helm_mail_raidshaman_b_01_gnf.m2", + text = "helm_mail_raidshaman_b_01_gnf.m2", fileId = "139830", text = "helm_mail_raidshaman_b_01_gnf.m2", }, { value = "helm_mail_raidshaman_b_01_gnm.m2", + text = "helm_mail_raidshaman_b_01_gnm.m2", fileId = "139831", text = "helm_mail_raidshaman_b_01_gnm.m2", }, { value = "helm_mail_raidshaman_b_01_huf.m2", + text = "helm_mail_raidshaman_b_01_huf.m2", fileId = "139834", text = "helm_mail_raidshaman_b_01_huf.m2", }, { value = "helm_mail_raidshaman_b_01_hum.m2", + text = "helm_mail_raidshaman_b_01_hum.m2", fileId = "139835", text = "helm_mail_raidshaman_b_01_hum.m2", }, { value = "helm_mail_raidshaman_b_01_nif.m2", + text = "helm_mail_raidshaman_b_01_nif.m2", fileId = "139836", text = "helm_mail_raidshaman_b_01_nif.m2", }, { value = "helm_mail_raidshaman_b_01_nim.m2", + text = "helm_mail_raidshaman_b_01_nim.m2", fileId = "139837", text = "helm_mail_raidshaman_b_01_nim.m2", }, { value = "helm_mail_raidshaman_b_01_orf.m2", + text = "helm_mail_raidshaman_b_01_orf.m2", fileId = "139838", text = "helm_mail_raidshaman_b_01_orf.m2", }, { value = "helm_mail_raidshaman_b_01_orm.m2", + text = "helm_mail_raidshaman_b_01_orm.m2", fileId = "139839", text = "helm_mail_raidshaman_b_01_orm.m2", }, { value = "helm_mail_raidshaman_b_01_scf.m2", + text = "helm_mail_raidshaman_b_01_scf.m2", fileId = "139840", text = "helm_mail_raidshaman_b_01_scf.m2", }, { value = "helm_mail_raidshaman_b_01_scm.m2", + text = "helm_mail_raidshaman_b_01_scm.m2", fileId = "139841", text = "helm_mail_raidshaman_b_01_scm.m2", }, { value = "helm_mail_raidshaman_b_01_taf.m2", + text = "helm_mail_raidshaman_b_01_taf.m2", fileId = "139842", text = "helm_mail_raidshaman_b_01_taf.m2", }, { value = "helm_mail_raidshaman_b_01_tam.m2", + text = "helm_mail_raidshaman_b_01_tam.m2", fileId = "139843", text = "helm_mail_raidshaman_b_01_tam.m2", }, { value = "helm_mail_raidshaman_b_01_trf.m2", + text = "helm_mail_raidshaman_b_01_trf.m2", fileId = "139844", text = "helm_mail_raidshaman_b_01_trf.m2", }, { value = "helm_mail_raidshaman_b_01_trm.m2", + text = "helm_mail_raidshaman_b_01_trm.m2", fileId = "139845", text = "helm_mail_raidshaman_b_01_trm.m2", }, { value = "helm_mask_a_01troll_dwf.m2", + text = "helm_mask_a_01troll_dwf.m2", fileId = "140006", text = "helm_mask_a_01troll_dwf.m2", }, { value = "helm_mask_a_01troll_dwm.m2", + text = "helm_mask_a_01troll_dwm.m2", fileId = "140007", text = "helm_mask_a_01troll_dwm.m2", }, { value = "helm_mask_a_01troll_gnf.m2", + text = "helm_mask_a_01troll_gnf.m2", fileId = "140008", text = "helm_mask_a_01troll_gnf.m2", }, { value = "helm_mask_a_01troll_gnm.m2", + text = "helm_mask_a_01troll_gnm.m2", fileId = "140009", text = "helm_mask_a_01troll_gnm.m2", }, { value = "helm_mask_a_01troll_huf.m2", + text = "helm_mask_a_01troll_huf.m2", fileId = "140012", text = "helm_mask_a_01troll_huf.m2", }, { value = "helm_mask_a_01troll_hum.m2", + text = "helm_mask_a_01troll_hum.m2", fileId = "140013", text = "helm_mask_a_01troll_hum.m2", }, { value = "helm_mask_a_01troll_nif.m2", + text = "helm_mask_a_01troll_nif.m2", fileId = "140014", text = "helm_mask_a_01troll_nif.m2", }, { value = "helm_mask_a_01troll_nim.m2", + text = "helm_mask_a_01troll_nim.m2", fileId = "140015", text = "helm_mask_a_01troll_nim.m2", }, { value = "helm_mask_a_01troll_orf.m2", + text = "helm_mask_a_01troll_orf.m2", fileId = "140016", text = "helm_mask_a_01troll_orf.m2", }, { value = "helm_mask_a_01troll_orm.m2", + text = "helm_mask_a_01troll_orm.m2", fileId = "140017", text = "helm_mask_a_01troll_orm.m2", }, { value = "helm_mask_a_01troll_scf.m2", + text = "helm_mask_a_01troll_scf.m2", fileId = "140018", text = "helm_mask_a_01troll_scf.m2", }, { value = "helm_mask_a_01troll_scm.m2", + text = "helm_mask_a_01troll_scm.m2", fileId = "140019", text = "helm_mask_a_01troll_scm.m2", }, { value = "helm_mask_a_01troll_taf.m2", + text = "helm_mask_a_01troll_taf.m2", fileId = "140020", text = "helm_mask_a_01troll_taf.m2", }, { value = "helm_mask_a_01troll_tam.m2", + text = "helm_mask_a_01troll_tam.m2", fileId = "140021", text = "helm_mask_a_01troll_tam.m2", }, { value = "helm_mask_a_01troll_trf.m2", + text = "helm_mask_a_01troll_trf.m2", fileId = "140022", text = "helm_mask_a_01troll_trf.m2", }, { value = "helm_mask_a_01troll_trm.m2", + text = "helm_mask_a_01troll_trm.m2", fileId = "140023", text = "helm_mask_a_01troll_trm.m2", }, { value = "helm_mask_halloween_dwf.m2", + text = "helm_mask_halloween_dwf.m2", fileId = "140040", text = "helm_mask_halloween_dwf.m2", }, { value = "helm_mask_halloween_dwm.m2", + text = "helm_mask_halloween_dwm.m2", fileId = "140042", text = "helm_mask_halloween_dwm.m2", }, { value = "helm_mask_halloween_gnf.m2", + text = "helm_mask_halloween_gnf.m2", fileId = "140044", text = "helm_mask_halloween_gnf.m2", }, { value = "helm_mask_halloween_gnm.m2", + text = "helm_mask_halloween_gnm.m2", fileId = "140046", text = "helm_mask_halloween_gnm.m2", }, { value = "helm_mask_halloween_huf.m2", + text = "helm_mask_halloween_huf.m2", fileId = "140050", text = "helm_mask_halloween_huf.m2", }, { value = "helm_mask_halloween_hum.m2", + text = "helm_mask_halloween_hum.m2", fileId = "140052", text = "helm_mask_halloween_hum.m2", }, { value = "helm_mask_halloween_nif.m2", + text = "helm_mask_halloween_nif.m2", fileId = "140054", text = "helm_mask_halloween_nif.m2", }, { value = "helm_mask_halloween_nim.m2", + text = "helm_mask_halloween_nim.m2", fileId = "140056", text = "helm_mask_halloween_nim.m2", }, { value = "helm_mask_halloween_orf.m2", + text = "helm_mask_halloween_orf.m2", fileId = "140058", text = "helm_mask_halloween_orf.m2", }, { value = "helm_mask_halloween_orm.m2", + text = "helm_mask_halloween_orm.m2", fileId = "140060", text = "helm_mask_halloween_orm.m2", }, { value = "helm_mask_halloween_scf.m2", + text = "helm_mask_halloween_scf.m2", fileId = "140062", text = "helm_mask_halloween_scf.m2", }, { value = "helm_mask_halloween_scm.m2", + text = "helm_mask_halloween_scm.m2", fileId = "140064", text = "helm_mask_halloween_scm.m2", }, { value = "helm_mask_halloween_taf.m2", + text = "helm_mask_halloween_taf.m2", fileId = "140066", text = "helm_mask_halloween_taf.m2", }, { value = "helm_mask_halloween_tam.m2", + text = "helm_mask_halloween_tam.m2", fileId = "140068", text = "helm_mask_halloween_tam.m2", }, { value = "helm_mask_halloween_trf.m2", + text = "helm_mask_halloween_trf.m2", fileId = "140070", text = "helm_mask_halloween_trf.m2", }, { value = "helm_mask_halloween_trm.m2", + text = "helm_mask_halloween_trm.m2", fileId = "140072", text = "helm_mask_halloween_trm.m2", }, { value = "helm_mask_zulgurub_d_01_dwf.m2", + text = "helm_mask_zulgurub_d_01_dwf.m2", fileId = "140123", text = "helm_mask_zulgurub_d_01_dwf.m2", }, { value = "helm_mask_zulgurub_d_01_dwm.m2", + text = "helm_mask_zulgurub_d_01_dwm.m2", fileId = "140124", text = "helm_mask_zulgurub_d_01_dwm.m2", }, { value = "helm_mask_zulgurub_d_01_gnf.m2", + text = "helm_mask_zulgurub_d_01_gnf.m2", fileId = "140125", text = "helm_mask_zulgurub_d_01_gnf.m2", }, { value = "helm_mask_zulgurub_d_01_gnm.m2", + text = "helm_mask_zulgurub_d_01_gnm.m2", fileId = "140126", text = "helm_mask_zulgurub_d_01_gnm.m2", }, { value = "helm_mask_zulgurub_d_01_huf.m2", + text = "helm_mask_zulgurub_d_01_huf.m2", fileId = "140129", text = "helm_mask_zulgurub_d_01_huf.m2", }, { value = "helm_mask_zulgurub_d_01_hum.m2", + text = "helm_mask_zulgurub_d_01_hum.m2", fileId = "140130", text = "helm_mask_zulgurub_d_01_hum.m2", }, { value = "helm_mask_zulgurub_d_01_nif.m2", + text = "helm_mask_zulgurub_d_01_nif.m2", fileId = "140131", text = "helm_mask_zulgurub_d_01_nif.m2", }, { value = "helm_mask_zulgurub_d_01_nim.m2", + text = "helm_mask_zulgurub_d_01_nim.m2", fileId = "140132", text = "helm_mask_zulgurub_d_01_nim.m2", }, { value = "helm_mask_zulgurub_d_01_orf.m2", + text = "helm_mask_zulgurub_d_01_orf.m2", fileId = "140133", text = "helm_mask_zulgurub_d_01_orf.m2", }, { value = "helm_mask_zulgurub_d_01_orm.m2", + text = "helm_mask_zulgurub_d_01_orm.m2", fileId = "140134", text = "helm_mask_zulgurub_d_01_orm.m2", }, { value = "helm_mask_zulgurub_d_01_scf.m2", + text = "helm_mask_zulgurub_d_01_scf.m2", fileId = "140135", text = "helm_mask_zulgurub_d_01_scf.m2", }, { value = "helm_mask_zulgurub_d_01_scm.m2", + text = "helm_mask_zulgurub_d_01_scm.m2", fileId = "140136", text = "helm_mask_zulgurub_d_01_scm.m2", }, { value = "helm_mask_zulgurub_d_01_taf.m2", + text = "helm_mask_zulgurub_d_01_taf.m2", fileId = "140137", text = "helm_mask_zulgurub_d_01_taf.m2", }, { value = "helm_mask_zulgurub_d_01_tam.m2", + text = "helm_mask_zulgurub_d_01_tam.m2", fileId = "140138", text = "helm_mask_zulgurub_d_01_tam.m2", }, { value = "helm_mask_zulgurub_d_01_trf.m2", + text = "helm_mask_zulgurub_d_01_trf.m2", fileId = "140139", text = "helm_mask_zulgurub_d_01_trf.m2", }, { value = "helm_mask_zulgurub_d_01_trm.m2", + text = "helm_mask_zulgurub_d_01_trm.m2", fileId = "140140", text = "helm_mask_zulgurub_d_01_trm.m2", }, { value = "helm_monocle_a_01_dwf.m2", + text = "helm_monocle_a_01_dwf.m2", fileId = "140146", text = "helm_monocle_a_01_dwf.m2", }, { value = "helm_monocle_a_01_dwm.m2", + text = "helm_monocle_a_01_dwm.m2", fileId = "140147", text = "helm_monocle_a_01_dwm.m2", }, { value = "helm_monocle_a_01_gnf.m2", + text = "helm_monocle_a_01_gnf.m2", fileId = "140148", text = "helm_monocle_a_01_gnf.m2", }, { value = "helm_monocle_a_01_gnm.m2", + text = "helm_monocle_a_01_gnm.m2", fileId = "140149", text = "helm_monocle_a_01_gnm.m2", }, { value = "helm_monocle_a_01_huf.m2", + text = "helm_monocle_a_01_huf.m2", fileId = "140152", text = "helm_monocle_a_01_huf.m2", }, { value = "helm_monocle_a_01_hum.m2", + text = "helm_monocle_a_01_hum.m2", fileId = "140153", text = "helm_monocle_a_01_hum.m2", }, { value = "helm_monocle_a_01_nif.m2", + text = "helm_monocle_a_01_nif.m2", fileId = "140154", text = "helm_monocle_a_01_nif.m2", }, { value = "helm_monocle_a_01_nim.m2", + text = "helm_monocle_a_01_nim.m2", fileId = "140155", text = "helm_monocle_a_01_nim.m2", }, { value = "helm_monocle_a_01_orf.m2", + text = "helm_monocle_a_01_orf.m2", fileId = "140156", text = "helm_monocle_a_01_orf.m2", }, { value = "helm_monocle_a_01_orm.m2", + text = "helm_monocle_a_01_orm.m2", fileId = "140157", text = "helm_monocle_a_01_orm.m2", }, { value = "helm_monocle_a_01_scf.m2", + text = "helm_monocle_a_01_scf.m2", fileId = "140158", text = "helm_monocle_a_01_scf.m2", }, { value = "helm_monocle_a_01_scm.m2", + text = "helm_monocle_a_01_scm.m2", fileId = "140159", text = "helm_monocle_a_01_scm.m2", }, { value = "helm_monocle_a_01_taf.m2", + text = "helm_monocle_a_01_taf.m2", fileId = "140160", text = "helm_monocle_a_01_taf.m2", }, { value = "helm_monocle_a_01_tam.m2", + text = "helm_monocle_a_01_tam.m2", fileId = "140161", text = "helm_monocle_a_01_tam.m2", }, { value = "helm_monocle_a_01_trf.m2", + text = "helm_monocle_a_01_trf.m2", fileId = "140162", text = "helm_monocle_a_01_trf.m2", }, { value = "helm_monocle_a_01_trm.m2", + text = "helm_monocle_a_01_trm.m2", fileId = "140163", text = "helm_monocle_a_01_trm.m2", }, { value = "helm_monocle_b_01_dwf.m2", + text = "helm_monocle_b_01_dwf.m2", fileId = "140171", text = "helm_monocle_b_01_dwf.m2", }, { value = "helm_monocle_b_01_dwm.m2", + text = "helm_monocle_b_01_dwm.m2", fileId = "140172", text = "helm_monocle_b_01_dwm.m2", }, { value = "helm_monocle_b_01_gnf.m2", + text = "helm_monocle_b_01_gnf.m2", fileId = "140173", text = "helm_monocle_b_01_gnf.m2", }, { value = "helm_monocle_b_01_gnm.m2", + text = "helm_monocle_b_01_gnm.m2", fileId = "140174", text = "helm_monocle_b_01_gnm.m2", }, { value = "helm_monocle_b_01_huf.m2", + text = "helm_monocle_b_01_huf.m2", fileId = "140177", text = "helm_monocle_b_01_huf.m2", }, { value = "helm_monocle_b_01_hum.m2", + text = "helm_monocle_b_01_hum.m2", fileId = "140178", text = "helm_monocle_b_01_hum.m2", }, { value = "helm_monocle_b_01_nif.m2", + text = "helm_monocle_b_01_nif.m2", fileId = "140179", text = "helm_monocle_b_01_nif.m2", }, { value = "helm_monocle_b_01_nim.m2", + text = "helm_monocle_b_01_nim.m2", fileId = "140180", text = "helm_monocle_b_01_nim.m2", }, { value = "helm_monocle_b_01_orf.m2", + text = "helm_monocle_b_01_orf.m2", fileId = "140181", text = "helm_monocle_b_01_orf.m2", }, { value = "helm_monocle_b_01_orm.m2", + text = "helm_monocle_b_01_orm.m2", fileId = "140182", text = "helm_monocle_b_01_orm.m2", }, { value = "helm_monocle_b_01_scf.m2", + text = "helm_monocle_b_01_scf.m2", fileId = "140183", text = "helm_monocle_b_01_scf.m2", }, { value = "helm_monocle_b_01_scm.m2", + text = "helm_monocle_b_01_scm.m2", fileId = "140184", text = "helm_monocle_b_01_scm.m2", }, { value = "helm_monocle_b_01_taf.m2", + text = "helm_monocle_b_01_taf.m2", fileId = "140185", text = "helm_monocle_b_01_taf.m2", }, { value = "helm_monocle_b_01_tam.m2", + text = "helm_monocle_b_01_tam.m2", fileId = "140186", text = "helm_monocle_b_01_tam.m2", }, { value = "helm_monocle_b_01_trf.m2", + text = "helm_monocle_b_01_trf.m2", fileId = "140187", text = "helm_monocle_b_01_trf.m2", }, { value = "helm_monocle_b_01_trm.m2", + text = "helm_monocle_b_01_trm.m2", fileId = "140188", text = "helm_monocle_b_01_trm.m2", }, { value = "helm_monocle_b_02engi_dwf.m2", + text = "helm_monocle_b_02engi_dwf.m2", fileId = "140193", text = "helm_monocle_b_02engi_dwf.m2", }, { value = "helm_monocle_b_02engi_dwm.m2", + text = "helm_monocle_b_02engi_dwm.m2", fileId = "140194", text = "helm_monocle_b_02engi_dwm.m2", }, { value = "helm_monocle_b_02engi_gnf.m2", + text = "helm_monocle_b_02engi_gnf.m2", fileId = "140195", text = "helm_monocle_b_02engi_gnf.m2", }, { value = "helm_monocle_b_02engi_gnm.m2", + text = "helm_monocle_b_02engi_gnm.m2", fileId = "140196", text = "helm_monocle_b_02engi_gnm.m2", }, { value = "helm_monocle_b_02engi_huf.m2", + text = "helm_monocle_b_02engi_huf.m2", fileId = "140199", text = "helm_monocle_b_02engi_huf.m2", }, { value = "helm_monocle_b_02engi_hum.m2", + text = "helm_monocle_b_02engi_hum.m2", fileId = "140200", text = "helm_monocle_b_02engi_hum.m2", }, { value = "helm_monocle_b_02engi_nif.m2", + text = "helm_monocle_b_02engi_nif.m2", fileId = "140201", text = "helm_monocle_b_02engi_nif.m2", }, { value = "helm_monocle_b_02engi_nim.m2", + text = "helm_monocle_b_02engi_nim.m2", fileId = "140202", text = "helm_monocle_b_02engi_nim.m2", }, { value = "helm_monocle_b_02engi_orf.m2", + text = "helm_monocle_b_02engi_orf.m2", fileId = "140203", text = "helm_monocle_b_02engi_orf.m2", }, { value = "helm_monocle_b_02engi_orm.m2", + text = "helm_monocle_b_02engi_orm.m2", fileId = "140204", text = "helm_monocle_b_02engi_orm.m2", }, { value = "helm_monocle_b_02engi_scf.m2", + text = "helm_monocle_b_02engi_scf.m2", fileId = "140205", text = "helm_monocle_b_02engi_scf.m2", }, { value = "helm_monocle_b_02engi_scm.m2", + text = "helm_monocle_b_02engi_scm.m2", fileId = "140206", text = "helm_monocle_b_02engi_scm.m2", }, { value = "helm_monocle_b_02engi_taf.m2", + text = "helm_monocle_b_02engi_taf.m2", fileId = "140207", text = "helm_monocle_b_02engi_taf.m2", }, { value = "helm_monocle_b_02engi_tam.m2", + text = "helm_monocle_b_02engi_tam.m2", fileId = "140208", text = "helm_monocle_b_02engi_tam.m2", }, { value = "helm_monocle_b_02engi_trf.m2", + text = "helm_monocle_b_02engi_trf.m2", fileId = "140209", text = "helm_monocle_b_02engi_trf.m2", }, { value = "helm_monocle_b_02engi_trm.m2", + text = "helm_monocle_b_02engi_trm.m2", fileId = "140210", text = "helm_monocle_b_02engi_trm.m2", }, { value = "helm_monocle_c_01_dwf.m2", + text = "helm_monocle_c_01_dwf.m2", fileId = "140215", text = "helm_monocle_c_01_dwf.m2", }, { value = "helm_monocle_c_01_dwm.m2", + text = "helm_monocle_c_01_dwm.m2", fileId = "140216", text = "helm_monocle_c_01_dwm.m2", }, { value = "helm_monocle_c_01_gnf.m2", + text = "helm_monocle_c_01_gnf.m2", fileId = "140217", text = "helm_monocle_c_01_gnf.m2", }, { value = "helm_monocle_c_01_gnm.m2", + text = "helm_monocle_c_01_gnm.m2", fileId = "140218", text = "helm_monocle_c_01_gnm.m2", }, { value = "helm_monocle_c_01_huf.m2", + text = "helm_monocle_c_01_huf.m2", fileId = "140221", text = "helm_monocle_c_01_huf.m2", }, { value = "helm_monocle_c_01_hum.m2", + text = "helm_monocle_c_01_hum.m2", fileId = "140222", text = "helm_monocle_c_01_hum.m2", }, { value = "helm_monocle_c_01_nif.m2", + text = "helm_monocle_c_01_nif.m2", fileId = "140223", text = "helm_monocle_c_01_nif.m2", }, { value = "helm_monocle_c_01_nim.m2", + text = "helm_monocle_c_01_nim.m2", fileId = "140224", text = "helm_monocle_c_01_nim.m2", }, { value = "helm_monocle_c_01_orf.m2", + text = "helm_monocle_c_01_orf.m2", fileId = "140225", text = "helm_monocle_c_01_orf.m2", }, { value = "helm_monocle_c_01_orm.m2", + text = "helm_monocle_c_01_orm.m2", fileId = "140226", text = "helm_monocle_c_01_orm.m2", }, { value = "helm_monocle_c_01_scf.m2", + text = "helm_monocle_c_01_scf.m2", fileId = "140227", text = "helm_monocle_c_01_scf.m2", }, { value = "helm_monocle_c_01_scm.m2", + text = "helm_monocle_c_01_scm.m2", fileId = "140228", text = "helm_monocle_c_01_scm.m2", }, { value = "helm_monocle_c_01_taf.m2", + text = "helm_monocle_c_01_taf.m2", fileId = "140229", text = "helm_monocle_c_01_taf.m2", }, { value = "helm_monocle_c_01_tam.m2", + text = "helm_monocle_c_01_tam.m2", fileId = "140230", text = "helm_monocle_c_01_tam.m2", }, { value = "helm_monocle_c_01_trf.m2", + text = "helm_monocle_c_01_trf.m2", fileId = "140231", text = "helm_monocle_c_01_trf.m2", }, { value = "helm_monocle_c_01_trm.m2", + text = "helm_monocle_c_01_trm.m2", fileId = "140232", text = "helm_monocle_c_01_trm.m2", }, { value = "helm_plate_a_01crusader_dwf.m2", + text = "helm_plate_a_01crusader_dwf.m2", fileId = "140239", text = "helm_plate_a_01crusader_dwf.m2", }, { value = "helm_plate_a_01crusader_dwm.m2", + text = "helm_plate_a_01crusader_dwm.m2", fileId = "140240", text = "helm_plate_a_01crusader_dwm.m2", }, { value = "helm_plate_a_01crusader_gnf.m2", + text = "helm_plate_a_01crusader_gnf.m2", fileId = "140241", text = "helm_plate_a_01crusader_gnf.m2", }, { value = "helm_plate_a_01crusader_gnm.m2", + text = "helm_plate_a_01crusader_gnm.m2", fileId = "140242", text = "helm_plate_a_01crusader_gnm.m2", }, { value = "helm_plate_a_01crusader_huf.m2", + text = "helm_plate_a_01crusader_huf.m2", fileId = "140245", text = "helm_plate_a_01crusader_huf.m2", }, { value = "helm_plate_a_01crusader_hum.m2", + text = "helm_plate_a_01crusader_hum.m2", fileId = "140246", text = "helm_plate_a_01crusader_hum.m2", }, { value = "helm_plate_a_01crusader_nif.m2", + text = "helm_plate_a_01crusader_nif.m2", fileId = "140247", text = "helm_plate_a_01crusader_nif.m2", }, { value = "helm_plate_a_01crusader_nim.m2", + text = "helm_plate_a_01crusader_nim.m2", fileId = "140248", text = "helm_plate_a_01crusader_nim.m2", }, { value = "helm_plate_a_01crusader_orf.m2", + text = "helm_plate_a_01crusader_orf.m2", fileId = "140249", text = "helm_plate_a_01crusader_orf.m2", }, { value = "helm_plate_a_01crusader_orm.m2", + text = "helm_plate_a_01crusader_orm.m2", fileId = "140250", text = "helm_plate_a_01crusader_orm.m2", }, { value = "helm_plate_a_01crusader_scf.m2", + text = "helm_plate_a_01crusader_scf.m2", fileId = "140251", text = "helm_plate_a_01crusader_scf.m2", }, { value = "helm_plate_a_01crusader_scm.m2", + text = "helm_plate_a_01crusader_scm.m2", fileId = "140252", text = "helm_plate_a_01crusader_scm.m2", }, { value = "helm_plate_a_01crusader_taf.m2", + text = "helm_plate_a_01crusader_taf.m2", fileId = "140253", text = "helm_plate_a_01crusader_taf.m2", }, { value = "helm_plate_a_01crusader_tam.m2", + text = "helm_plate_a_01crusader_tam.m2", fileId = "140254", text = "helm_plate_a_01crusader_tam.m2", }, { value = "helm_plate_a_01crusader_trf.m2", + text = "helm_plate_a_01crusader_trf.m2", fileId = "140255", text = "helm_plate_a_01crusader_trf.m2", }, { value = "helm_plate_a_01crusader_trm.m2", + text = "helm_plate_a_01crusader_trm.m2", fileId = "140256", text = "helm_plate_a_01crusader_trm.m2", }, { value = "helm_plate_a_02ironforgeguard_dwf.m2", + text = "helm_plate_a_02ironforgeguard_dwf.m2", fileId = "140267", text = "helm_plate_a_02ironforgeguard_dwf.m2", }, { value = "helm_plate_a_02ironforgeguard_dwm.m2", + text = "helm_plate_a_02ironforgeguard_dwm.m2", fileId = "140268", text = "helm_plate_a_02ironforgeguard_dwm.m2", }, { value = "helm_plate_a_02ironforgeguard_gnf.m2", + text = "helm_plate_a_02ironforgeguard_gnf.m2", fileId = "140269", text = "helm_plate_a_02ironforgeguard_gnf.m2", }, { value = "helm_plate_a_02ironforgeguard_gnm.m2", + text = "helm_plate_a_02ironforgeguard_gnm.m2", fileId = "140270", text = "helm_plate_a_02ironforgeguard_gnm.m2", }, { value = "helm_plate_a_02ironforgeguard_huf.m2", + text = "helm_plate_a_02ironforgeguard_huf.m2", fileId = "140272", text = "helm_plate_a_02ironforgeguard_huf.m2", }, { value = "helm_plate_a_02ironforgeguard_hum.m2", + text = "helm_plate_a_02ironforgeguard_hum.m2", fileId = "140273", text = "helm_plate_a_02ironforgeguard_hum.m2", }, { value = "helm_plate_a_02ironforgeguard_nif.m2", + text = "helm_plate_a_02ironforgeguard_nif.m2", fileId = "140274", text = "helm_plate_a_02ironforgeguard_nif.m2", }, { value = "helm_plate_a_02ironforgeguard_nim.m2", + text = "helm_plate_a_02ironforgeguard_nim.m2", fileId = "140275", text = "helm_plate_a_02ironforgeguard_nim.m2", }, { value = "helm_plate_a_02ironforgeguard_orf.m2", + text = "helm_plate_a_02ironforgeguard_orf.m2", fileId = "140276", text = "helm_plate_a_02ironforgeguard_orf.m2", }, { value = "helm_plate_a_02ironforgeguard_orm.m2", + text = "helm_plate_a_02ironforgeguard_orm.m2", fileId = "140277", text = "helm_plate_a_02ironforgeguard_orm.m2", }, { value = "helm_plate_a_02ironforgeguard_scf.m2", + text = "helm_plate_a_02ironforgeguard_scf.m2", fileId = "140278", text = "helm_plate_a_02ironforgeguard_scf.m2", }, { value = "helm_plate_a_02ironforgeguard_scm.m2", + text = "helm_plate_a_02ironforgeguard_scm.m2", fileId = "140279", text = "helm_plate_a_02ironforgeguard_scm.m2", }, { value = "helm_plate_a_02ironforgeguard_taf.m2", + text = "helm_plate_a_02ironforgeguard_taf.m2", fileId = "140280", text = "helm_plate_a_02ironforgeguard_taf.m2", }, { value = "helm_plate_a_02ironforgeguard_tam.m2", + text = "helm_plate_a_02ironforgeguard_tam.m2", fileId = "140281", text = "helm_plate_a_02ironforgeguard_tam.m2", }, { value = "helm_plate_a_02ironforgeguard_trf.m2", + text = "helm_plate_a_02ironforgeguard_trf.m2", fileId = "140282", text = "helm_plate_a_02ironforgeguard_trf.m2", }, { value = "helm_plate_a_02ironforgeguard_trm.m2", + text = "helm_plate_a_02ironforgeguard_trm.m2", fileId = "140283", text = "helm_plate_a_02ironforgeguard_trm.m2", }, { value = "helm_plate_ahnqiraj_a_01_dwf.m2", + text = "helm_plate_ahnqiraj_a_01_dwf.m2", fileId = "140289", text = "helm_plate_ahnqiraj_a_01_dwf.m2", }, { value = "helm_plate_ahnqiraj_a_01_dwm.m2", + text = "helm_plate_ahnqiraj_a_01_dwm.m2", fileId = "140290", text = "helm_plate_ahnqiraj_a_01_dwm.m2", }, { value = "helm_plate_ahnqiraj_a_01_gnf.m2", + text = "helm_plate_ahnqiraj_a_01_gnf.m2", fileId = "140291", text = "helm_plate_ahnqiraj_a_01_gnf.m2", }, { value = "helm_plate_ahnqiraj_a_01_gnm.m2", + text = "helm_plate_ahnqiraj_a_01_gnm.m2", fileId = "140292", text = "helm_plate_ahnqiraj_a_01_gnm.m2", }, { value = "helm_plate_ahnqiraj_a_01_huf.m2", + text = "helm_plate_ahnqiraj_a_01_huf.m2", fileId = "140295", text = "helm_plate_ahnqiraj_a_01_huf.m2", }, { value = "helm_plate_ahnqiraj_a_01_hum.m2", + text = "helm_plate_ahnqiraj_a_01_hum.m2", fileId = "140296", text = "helm_plate_ahnqiraj_a_01_hum.m2", }, { value = "helm_plate_ahnqiraj_a_01_nif.m2", + text = "helm_plate_ahnqiraj_a_01_nif.m2", fileId = "140297", text = "helm_plate_ahnqiraj_a_01_nif.m2", }, { value = "helm_plate_ahnqiraj_a_01_nim.m2", + text = "helm_plate_ahnqiraj_a_01_nim.m2", fileId = "140298", text = "helm_plate_ahnqiraj_a_01_nim.m2", }, { value = "helm_plate_ahnqiraj_a_01_orf.m2", + text = "helm_plate_ahnqiraj_a_01_orf.m2", fileId = "140299", text = "helm_plate_ahnqiraj_a_01_orf.m2", }, { value = "helm_plate_ahnqiraj_a_01_orm.m2", + text = "helm_plate_ahnqiraj_a_01_orm.m2", fileId = "140300", text = "helm_plate_ahnqiraj_a_01_orm.m2", }, { value = "helm_plate_ahnqiraj_a_01_scf.m2", + text = "helm_plate_ahnqiraj_a_01_scf.m2", fileId = "140301", text = "helm_plate_ahnqiraj_a_01_scf.m2", }, { value = "helm_plate_ahnqiraj_a_01_scm.m2", + text = "helm_plate_ahnqiraj_a_01_scm.m2", fileId = "140302", text = "helm_plate_ahnqiraj_a_01_scm.m2", }, { value = "helm_plate_ahnqiraj_a_01_taf.m2", + text = "helm_plate_ahnqiraj_a_01_taf.m2", fileId = "140303", text = "helm_plate_ahnqiraj_a_01_taf.m2", }, { value = "helm_plate_ahnqiraj_a_01_tam.m2", + text = "helm_plate_ahnqiraj_a_01_tam.m2", fileId = "140304", text = "helm_plate_ahnqiraj_a_01_tam.m2", }, { value = "helm_plate_ahnqiraj_a_01_trf.m2", + text = "helm_plate_ahnqiraj_a_01_trf.m2", fileId = "140305", text = "helm_plate_ahnqiraj_a_01_trf.m2", }, { value = "helm_plate_ahnqiraj_a_01_trm.m2", + text = "helm_plate_ahnqiraj_a_01_trm.m2", fileId = "140306", text = "helm_plate_ahnqiraj_a_01_trm.m2", }, { value = "helm_plate_b_01stormwind_dwf.m2", + text = "helm_plate_b_01stormwind_dwf.m2", fileId = "140319", text = "helm_plate_b_01stormwind_dwf.m2", }, { value = "helm_plate_b_01stormwind_dwm.m2", + text = "helm_plate_b_01stormwind_dwm.m2", fileId = "140320", text = "helm_plate_b_01stormwind_dwm.m2", }, { value = "helm_plate_b_01stormwind_gnf.m2", + text = "helm_plate_b_01stormwind_gnf.m2", fileId = "140321", text = "helm_plate_b_01stormwind_gnf.m2", }, { value = "helm_plate_b_01stormwind_gnm.m2", + text = "helm_plate_b_01stormwind_gnm.m2", fileId = "140322", text = "helm_plate_b_01stormwind_gnm.m2", }, { value = "helm_plate_b_01stormwind_huf.m2", + text = "helm_plate_b_01stormwind_huf.m2", fileId = "140325", text = "helm_plate_b_01stormwind_huf.m2", }, { value = "helm_plate_b_01stormwind_hum.m2", + text = "helm_plate_b_01stormwind_hum.m2", fileId = "140326", text = "helm_plate_b_01stormwind_hum.m2", }, { value = "helm_plate_b_01stormwind_nif.m2", + text = "helm_plate_b_01stormwind_nif.m2", fileId = "140327", text = "helm_plate_b_01stormwind_nif.m2", }, { value = "helm_plate_b_01stormwind_nim.m2", + text = "helm_plate_b_01stormwind_nim.m2", fileId = "140328", text = "helm_plate_b_01stormwind_nim.m2", }, { value = "helm_plate_b_01stormwind_orf.m2", + text = "helm_plate_b_01stormwind_orf.m2", fileId = "140329", text = "helm_plate_b_01stormwind_orf.m2", }, { value = "helm_plate_b_01stormwind_orm.m2", + text = "helm_plate_b_01stormwind_orm.m2", fileId = "140330", text = "helm_plate_b_01stormwind_orm.m2", }, { value = "helm_plate_b_01stormwind_scf.m2", + text = "helm_plate_b_01stormwind_scf.m2", fileId = "140331", text = "helm_plate_b_01stormwind_scf.m2", }, { value = "helm_plate_b_01stormwind_scm.m2", + text = "helm_plate_b_01stormwind_scm.m2", fileId = "140332", text = "helm_plate_b_01stormwind_scm.m2", }, { value = "helm_plate_b_01stormwind_taf.m2", + text = "helm_plate_b_01stormwind_taf.m2", fileId = "140333", text = "helm_plate_b_01stormwind_taf.m2", }, { value = "helm_plate_b_01stormwind_tam.m2", + text = "helm_plate_b_01stormwind_tam.m2", fileId = "140334", text = "helm_plate_b_01stormwind_tam.m2", }, { value = "helm_plate_b_01stormwind_trf.m2", + text = "helm_plate_b_01stormwind_trf.m2", fileId = "140335", text = "helm_plate_b_01stormwind_trf.m2", }, { value = "helm_plate_b_01stormwind_trm.m2", + text = "helm_plate_b_01stormwind_trm.m2", fileId = "140336", text = "helm_plate_b_01stormwind_trm.m2", }, { value = "helm_plate_b_03sentinel_dwf.m2", + text = "helm_plate_b_03sentinel_dwf.m2", fileId = "140344", text = "helm_plate_b_03sentinel_dwf.m2", }, { value = "helm_plate_b_03sentinel_dwm.m2", + text = "helm_plate_b_03sentinel_dwm.m2", fileId = "140345", text = "helm_plate_b_03sentinel_dwm.m2", }, { value = "helm_plate_b_03sentinel_gnf.m2", + text = "helm_plate_b_03sentinel_gnf.m2", fileId = "140346", text = "helm_plate_b_03sentinel_gnf.m2", }, { value = "helm_plate_b_03sentinel_gnm.m2", + text = "helm_plate_b_03sentinel_gnm.m2", fileId = "140347", text = "helm_plate_b_03sentinel_gnm.m2", }, { value = "helm_plate_b_03sentinel_huf.m2", + text = "helm_plate_b_03sentinel_huf.m2", fileId = "140350", text = "helm_plate_b_03sentinel_huf.m2", }, { value = "helm_plate_b_03sentinel_hum.m2", + text = "helm_plate_b_03sentinel_hum.m2", fileId = "140351", text = "helm_plate_b_03sentinel_hum.m2", }, { value = "helm_plate_b_03sentinel_nif.m2", + text = "helm_plate_b_03sentinel_nif.m2", fileId = "140352", text = "helm_plate_b_03sentinel_nif.m2", }, { value = "helm_plate_b_03sentinel_nim.m2", + text = "helm_plate_b_03sentinel_nim.m2", fileId = "140353", text = "helm_plate_b_03sentinel_nim.m2", }, { value = "helm_plate_b_03sentinel_orf.m2", + text = "helm_plate_b_03sentinel_orf.m2", fileId = "140354", text = "helm_plate_b_03sentinel_orf.m2", }, { value = "helm_plate_b_03sentinel_orm.m2", + text = "helm_plate_b_03sentinel_orm.m2", fileId = "140355", text = "helm_plate_b_03sentinel_orm.m2", }, { value = "helm_plate_b_03sentinel_scf.m2", + text = "helm_plate_b_03sentinel_scf.m2", fileId = "140356", text = "helm_plate_b_03sentinel_scf.m2", }, { value = "helm_plate_b_03sentinel_scm.m2", + text = "helm_plate_b_03sentinel_scm.m2", fileId = "140357", text = "helm_plate_b_03sentinel_scm.m2", }, { value = "helm_plate_b_03sentinel_taf.m2", + text = "helm_plate_b_03sentinel_taf.m2", fileId = "140358", text = "helm_plate_b_03sentinel_taf.m2", }, { value = "helm_plate_b_03sentinel_tam.m2", + text = "helm_plate_b_03sentinel_tam.m2", fileId = "140359", text = "helm_plate_b_03sentinel_tam.m2", }, { value = "helm_plate_b_03sentinel_trf.m2", + text = "helm_plate_b_03sentinel_trf.m2", fileId = "140360", text = "helm_plate_b_03sentinel_trf.m2", }, { value = "helm_plate_b_03sentinel_trm.m2", + text = "helm_plate_b_03sentinel_trm.m2", fileId = "140361", text = "helm_plate_b_03sentinel_trm.m2", }, { value = "helm_plate_b_04_dwf.m2", + text = "helm_plate_b_04_dwf.m2", fileId = "140366", text = "helm_plate_b_04_dwf.m2", }, { value = "helm_plate_b_04_dwm.m2", + text = "helm_plate_b_04_dwm.m2", fileId = "140367", text = "helm_plate_b_04_dwm.m2", }, { value = "helm_plate_b_04_gnf.m2", + text = "helm_plate_b_04_gnf.m2", fileId = "140368", text = "helm_plate_b_04_gnf.m2", }, { value = "helm_plate_b_04_gnm.m2", + text = "helm_plate_b_04_gnm.m2", fileId = "140369", text = "helm_plate_b_04_gnm.m2", }, { value = "helm_plate_b_04_huf.m2", + text = "helm_plate_b_04_huf.m2", fileId = "140372", text = "helm_plate_b_04_huf.m2", }, { value = "helm_plate_b_04_hum.m2", + text = "helm_plate_b_04_hum.m2", fileId = "140373", text = "helm_plate_b_04_hum.m2", }, { value = "helm_plate_b_04_nif.m2", + text = "helm_plate_b_04_nif.m2", fileId = "140374", text = "helm_plate_b_04_nif.m2", }, { value = "helm_plate_b_04_nim.m2", + text = "helm_plate_b_04_nim.m2", fileId = "140375", text = "helm_plate_b_04_nim.m2", }, { value = "helm_plate_b_04_orf.m2", + text = "helm_plate_b_04_orf.m2", fileId = "140376", text = "helm_plate_b_04_orf.m2", }, { value = "helm_plate_b_04_orm.m2", + text = "helm_plate_b_04_orm.m2", fileId = "140377", text = "helm_plate_b_04_orm.m2", }, { value = "helm_plate_b_04_scf.m2", + text = "helm_plate_b_04_scf.m2", fileId = "140378", text = "helm_plate_b_04_scf.m2", }, { value = "helm_plate_b_04_scm.m2", + text = "helm_plate_b_04_scm.m2", fileId = "140379", text = "helm_plate_b_04_scm.m2", }, { value = "helm_plate_b_04_taf.m2", + text = "helm_plate_b_04_taf.m2", fileId = "140380", text = "helm_plate_b_04_taf.m2", }, { value = "helm_plate_b_04_tam.m2", + text = "helm_plate_b_04_tam.m2", fileId = "140381", text = "helm_plate_b_04_tam.m2", }, { value = "helm_plate_b_04_trf.m2", + text = "helm_plate_b_04_trf.m2", fileId = "140382", text = "helm_plate_b_04_trf.m2", }, { value = "helm_plate_b_04_trm.m2", + text = "helm_plate_b_04_trm.m2", fileId = "140383", text = "helm_plate_b_04_trm.m2", }, { value = "helm_plate_d_01_dwf.m2", + text = "helm_plate_d_01_dwf.m2", fileId = "140413", text = "helm_plate_d_01_dwf.m2", }, { value = "helm_plate_d_01_dwm.m2", + text = "helm_plate_d_01_dwm.m2", fileId = "140414", text = "helm_plate_d_01_dwm.m2", }, { value = "helm_plate_d_01_gnf.m2", + text = "helm_plate_d_01_gnf.m2", fileId = "140415", text = "helm_plate_d_01_gnf.m2", }, { value = "helm_plate_d_01_gnm.m2", + text = "helm_plate_d_01_gnm.m2", fileId = "140416", text = "helm_plate_d_01_gnm.m2", }, { value = "helm_plate_d_01_huf.m2", + text = "helm_plate_d_01_huf.m2", fileId = "140419", text = "helm_plate_d_01_huf.m2", }, { value = "helm_plate_d_01_hum.m2", + text = "helm_plate_d_01_hum.m2", fileId = "140420", text = "helm_plate_d_01_hum.m2", }, { value = "helm_plate_d_01_nif.m2", + text = "helm_plate_d_01_nif.m2", fileId = "140421", text = "helm_plate_d_01_nif.m2", }, { value = "helm_plate_d_01_nim.m2", + text = "helm_plate_d_01_nim.m2", fileId = "140422", text = "helm_plate_d_01_nim.m2", }, { value = "helm_plate_d_01_orf.m2", + text = "helm_plate_d_01_orf.m2", fileId = "140423", text = "helm_plate_d_01_orf.m2", }, { value = "helm_plate_d_01_orm.m2", + text = "helm_plate_d_01_orm.m2", fileId = "140424", text = "helm_plate_d_01_orm.m2", }, { value = "helm_plate_d_01_scf.m2", + text = "helm_plate_d_01_scf.m2", fileId = "140425", text = "helm_plate_d_01_scf.m2", }, { value = "helm_plate_d_01_scm.m2", + text = "helm_plate_d_01_scm.m2", fileId = "140426", text = "helm_plate_d_01_scm.m2", }, { value = "helm_plate_d_01_taf.m2", + text = "helm_plate_d_01_taf.m2", fileId = "140427", text = "helm_plate_d_01_taf.m2", }, { value = "helm_plate_d_01_tam.m2", + text = "helm_plate_d_01_tam.m2", fileId = "140428", text = "helm_plate_d_01_tam.m2", }, { value = "helm_plate_d_01_trf.m2", + text = "helm_plate_d_01_trf.m2", fileId = "140429", text = "helm_plate_d_01_trf.m2", }, { value = "helm_plate_d_01_trm.m2", + text = "helm_plate_d_01_trm.m2", fileId = "140430", text = "helm_plate_d_01_trm.m2", }, { value = "helm_plate_d_02_dwf.m2", + text = "helm_plate_d_02_dwf.m2", fileId = "140436", text = "helm_plate_d_02_dwf.m2", }, { value = "helm_plate_d_02_dwm.m2", + text = "helm_plate_d_02_dwm.m2", fileId = "140437", text = "helm_plate_d_02_dwm.m2", }, { value = "helm_plate_d_02_gnf.m2", + text = "helm_plate_d_02_gnf.m2", fileId = "140438", text = "helm_plate_d_02_gnf.m2", }, { value = "helm_plate_d_02_gnm.m2", + text = "helm_plate_d_02_gnm.m2", fileId = "140439", text = "helm_plate_d_02_gnm.m2", }, { value = "helm_plate_d_02_huf.m2", + text = "helm_plate_d_02_huf.m2", fileId = "140442", text = "helm_plate_d_02_huf.m2", }, { value = "helm_plate_d_02_hum.m2", + text = "helm_plate_d_02_hum.m2", fileId = "140443", text = "helm_plate_d_02_hum.m2", }, { value = "helm_plate_d_02_nif.m2", + text = "helm_plate_d_02_nif.m2", fileId = "140444", text = "helm_plate_d_02_nif.m2", }, { value = "helm_plate_d_02_nim.m2", + text = "helm_plate_d_02_nim.m2", fileId = "140445", text = "helm_plate_d_02_nim.m2", }, { value = "helm_plate_d_02_orf.m2", + text = "helm_plate_d_02_orf.m2", fileId = "140446", text = "helm_plate_d_02_orf.m2", }, { value = "helm_plate_d_02_orm.m2", + text = "helm_plate_d_02_orm.m2", fileId = "140447", text = "helm_plate_d_02_orm.m2", }, { value = "helm_plate_d_02_scf.m2", + text = "helm_plate_d_02_scf.m2", fileId = "140448", text = "helm_plate_d_02_scf.m2", }, { value = "helm_plate_d_02_scm.m2", + text = "helm_plate_d_02_scm.m2", fileId = "140449", text = "helm_plate_d_02_scm.m2", }, { value = "helm_plate_d_02_taf.m2", + text = "helm_plate_d_02_taf.m2", fileId = "140450", text = "helm_plate_d_02_taf.m2", }, { value = "helm_plate_d_02_tam.m2", + text = "helm_plate_d_02_tam.m2", fileId = "140451", text = "helm_plate_d_02_tam.m2", }, { value = "helm_plate_d_02_trf.m2", + text = "helm_plate_d_02_trf.m2", fileId = "140452", text = "helm_plate_d_02_trf.m2", }, { value = "helm_plate_d_02_trm.m2", + text = "helm_plate_d_02_trm.m2", fileId = "140453", text = "helm_plate_d_02_trm.m2", }, { value = "helm_plate_d_03_dwf.m2", + text = "helm_plate_d_03_dwf.m2", fileId = "140460", text = "helm_plate_d_03_dwf.m2", }, { value = "helm_plate_d_03_dwm.m2", + text = "helm_plate_d_03_dwm.m2", fileId = "140461", text = "helm_plate_d_03_dwm.m2", }, { value = "helm_plate_d_03_gnf.m2", + text = "helm_plate_d_03_gnf.m2", fileId = "140462", text = "helm_plate_d_03_gnf.m2", }, { value = "helm_plate_d_03_gnm.m2", + text = "helm_plate_d_03_gnm.m2", fileId = "140463", text = "helm_plate_d_03_gnm.m2", }, { value = "helm_plate_d_03_huf.m2", + text = "helm_plate_d_03_huf.m2", fileId = "140466", text = "helm_plate_d_03_huf.m2", }, { value = "helm_plate_d_03_hum.m2", + text = "helm_plate_d_03_hum.m2", fileId = "140467", text = "helm_plate_d_03_hum.m2", }, { value = "helm_plate_d_03_nif.m2", + text = "helm_plate_d_03_nif.m2", fileId = "140468", text = "helm_plate_d_03_nif.m2", }, { value = "helm_plate_d_03_nim.m2", + text = "helm_plate_d_03_nim.m2", fileId = "140469", text = "helm_plate_d_03_nim.m2", }, { value = "helm_plate_d_03_orf.m2", + text = "helm_plate_d_03_orf.m2", fileId = "140470", text = "helm_plate_d_03_orf.m2", }, { value = "helm_plate_d_03_orm.m2", + text = "helm_plate_d_03_orm.m2", fileId = "140471", text = "helm_plate_d_03_orm.m2", }, { value = "helm_plate_d_03_scf.m2", + text = "helm_plate_d_03_scf.m2", fileId = "140472", text = "helm_plate_d_03_scf.m2", }, { value = "helm_plate_d_03_scm.m2", + text = "helm_plate_d_03_scm.m2", fileId = "140473", text = "helm_plate_d_03_scm.m2", }, { value = "helm_plate_d_03_taf.m2", + text = "helm_plate_d_03_taf.m2", fileId = "140474", text = "helm_plate_d_03_taf.m2", }, { value = "helm_plate_d_03_tam.m2", + text = "helm_plate_d_03_tam.m2", fileId = "140475", text = "helm_plate_d_03_tam.m2", }, { value = "helm_plate_d_03_trf.m2", + text = "helm_plate_d_03_trf.m2", fileId = "140476", text = "helm_plate_d_03_trf.m2", }, { value = "helm_plate_d_03_trm.m2", + text = "helm_plate_d_03_trm.m2", fileId = "140477", text = "helm_plate_d_03_trm.m2", }, { value = "helm_plate_d_04_dwf.m2", + text = "helm_plate_d_04_dwf.m2", fileId = "140497", text = "helm_plate_d_04_dwf.m2", }, { value = "helm_plate_d_04_dwm.m2", + text = "helm_plate_d_04_dwm.m2", fileId = "140498", text = "helm_plate_d_04_dwm.m2", }, { value = "helm_plate_d_04_gnf.m2", + text = "helm_plate_d_04_gnf.m2", fileId = "140499", text = "helm_plate_d_04_gnf.m2", }, { value = "helm_plate_d_04_gnm.m2", + text = "helm_plate_d_04_gnm.m2", fileId = "140500", text = "helm_plate_d_04_gnm.m2", }, { value = "helm_plate_d_04_huf.m2", + text = "helm_plate_d_04_huf.m2", fileId = "140503", text = "helm_plate_d_04_huf.m2", }, { value = "helm_plate_d_04_hum.m2", + text = "helm_plate_d_04_hum.m2", fileId = "140504", text = "helm_plate_d_04_hum.m2", }, { value = "helm_plate_d_04_nif.m2", + text = "helm_plate_d_04_nif.m2", fileId = "140505", text = "helm_plate_d_04_nif.m2", }, { value = "helm_plate_d_04_nim.m2", + text = "helm_plate_d_04_nim.m2", fileId = "140506", text = "helm_plate_d_04_nim.m2", }, { value = "helm_plate_d_04_orf.m2", + text = "helm_plate_d_04_orf.m2", fileId = "140507", text = "helm_plate_d_04_orf.m2", }, { value = "helm_plate_d_04_orm.m2", + text = "helm_plate_d_04_orm.m2", fileId = "140508", text = "helm_plate_d_04_orm.m2", }, { value = "helm_plate_d_04_scf.m2", + text = "helm_plate_d_04_scf.m2", fileId = "140509", text = "helm_plate_d_04_scf.m2", }, { value = "helm_plate_d_04_scm.m2", + text = "helm_plate_d_04_scm.m2", fileId = "140510", text = "helm_plate_d_04_scm.m2", }, { value = "helm_plate_d_04_taf.m2", + text = "helm_plate_d_04_taf.m2", fileId = "140511", text = "helm_plate_d_04_taf.m2", }, { value = "helm_plate_d_04_tam.m2", + text = "helm_plate_d_04_tam.m2", fileId = "140512", text = "helm_plate_d_04_tam.m2", }, { value = "helm_plate_d_04_trf.m2", + text = "helm_plate_d_04_trf.m2", fileId = "140513", text = "helm_plate_d_04_trf.m2", }, { value = "helm_plate_d_04_trm.m2", + text = "helm_plate_d_04_trm.m2", fileId = "140514", text = "helm_plate_d_04_trm.m2", }, { value = "helm_plate_dungeonpaladin_a_01_dwf.m2", + text = "helm_plate_dungeonpaladin_a_01_dwf.m2", fileId = "140539", text = "helm_plate_dungeonpaladin_a_01_dwf.m2", }, { value = "helm_plate_dungeonpaladin_a_01_dwm.m2", + text = "helm_plate_dungeonpaladin_a_01_dwm.m2", fileId = "140540", text = "helm_plate_dungeonpaladin_a_01_dwm.m2", }, { value = "helm_plate_dungeonpaladin_a_01_gnf.m2", + text = "helm_plate_dungeonpaladin_a_01_gnf.m2", fileId = "140541", text = "helm_plate_dungeonpaladin_a_01_gnf.m2", }, { value = "helm_plate_dungeonpaladin_a_01_gnm.m2", + text = "helm_plate_dungeonpaladin_a_01_gnm.m2", fileId = "140542", text = "helm_plate_dungeonpaladin_a_01_gnm.m2", }, { value = "helm_plate_dungeonpaladin_a_01_huf.m2", + text = "helm_plate_dungeonpaladin_a_01_huf.m2", fileId = "140545", text = "helm_plate_dungeonpaladin_a_01_huf.m2", }, { value = "helm_plate_dungeonpaladin_a_01_hum.m2", + text = "helm_plate_dungeonpaladin_a_01_hum.m2", fileId = "140546", text = "helm_plate_dungeonpaladin_a_01_hum.m2", }, { value = "helm_plate_dungeonpaladin_a_01_nif.m2", + text = "helm_plate_dungeonpaladin_a_01_nif.m2", fileId = "140547", text = "helm_plate_dungeonpaladin_a_01_nif.m2", }, { value = "helm_plate_dungeonpaladin_a_01_nim.m2", + text = "helm_plate_dungeonpaladin_a_01_nim.m2", fileId = "140548", text = "helm_plate_dungeonpaladin_a_01_nim.m2", }, { value = "helm_plate_dungeonpaladin_a_01_orf.m2", + text = "helm_plate_dungeonpaladin_a_01_orf.m2", fileId = "140549", text = "helm_plate_dungeonpaladin_a_01_orf.m2", }, { value = "helm_plate_dungeonpaladin_a_01_orm.m2", + text = "helm_plate_dungeonpaladin_a_01_orm.m2", fileId = "140550", text = "helm_plate_dungeonpaladin_a_01_orm.m2", }, { value = "helm_plate_dungeonpaladin_a_01_scf.m2", + text = "helm_plate_dungeonpaladin_a_01_scf.m2", fileId = "140551", text = "helm_plate_dungeonpaladin_a_01_scf.m2", }, { value = "helm_plate_dungeonpaladin_a_01_scm.m2", + text = "helm_plate_dungeonpaladin_a_01_scm.m2", fileId = "140552", text = "helm_plate_dungeonpaladin_a_01_scm.m2", }, { value = "helm_plate_dungeonpaladin_a_01_taf.m2", + text = "helm_plate_dungeonpaladin_a_01_taf.m2", fileId = "140553", text = "helm_plate_dungeonpaladin_a_01_taf.m2", }, { value = "helm_plate_dungeonpaladin_a_01_tam.m2", + text = "helm_plate_dungeonpaladin_a_01_tam.m2", fileId = "140554", text = "helm_plate_dungeonpaladin_a_01_tam.m2", }, { value = "helm_plate_dungeonpaladin_a_01_trf.m2", + text = "helm_plate_dungeonpaladin_a_01_trf.m2", fileId = "140555", text = "helm_plate_dungeonpaladin_a_01_trf.m2", }, { value = "helm_plate_dungeonpaladin_a_01_trm.m2", + text = "helm_plate_dungeonpaladin_a_01_trm.m2", fileId = "140556", text = "helm_plate_dungeonpaladin_a_01_trm.m2", }, { value = "helm_plate_dungeonwarrior_a_01_dwf.m2", + text = "helm_plate_dungeonwarrior_a_01_dwf.m2", fileId = "140616", text = "helm_plate_dungeonwarrior_a_01_dwf.m2", }, { value = "helm_plate_dungeonwarrior_a_01_dwm.m2", + text = "helm_plate_dungeonwarrior_a_01_dwm.m2", fileId = "140617", text = "helm_plate_dungeonwarrior_a_01_dwm.m2", }, { value = "helm_plate_dungeonwarrior_a_01_gnf.m2", + text = "helm_plate_dungeonwarrior_a_01_gnf.m2", fileId = "140618", text = "helm_plate_dungeonwarrior_a_01_gnf.m2", }, { value = "helm_plate_dungeonwarrior_a_01_gnm.m2", + text = "helm_plate_dungeonwarrior_a_01_gnm.m2", fileId = "140619", text = "helm_plate_dungeonwarrior_a_01_gnm.m2", }, { value = "helm_plate_dungeonwarrior_a_01_huf.m2", + text = "helm_plate_dungeonwarrior_a_01_huf.m2", fileId = "140622", text = "helm_plate_dungeonwarrior_a_01_huf.m2", }, { value = "helm_plate_dungeonwarrior_a_01_hum.m2", + text = "helm_plate_dungeonwarrior_a_01_hum.m2", fileId = "140623", text = "helm_plate_dungeonwarrior_a_01_hum.m2", }, { value = "helm_plate_dungeonwarrior_a_01_nif.m2", + text = "helm_plate_dungeonwarrior_a_01_nif.m2", fileId = "140624", text = "helm_plate_dungeonwarrior_a_01_nif.m2", }, { value = "helm_plate_dungeonwarrior_a_01_nim.m2", + text = "helm_plate_dungeonwarrior_a_01_nim.m2", fileId = "140625", text = "helm_plate_dungeonwarrior_a_01_nim.m2", }, { value = "helm_plate_dungeonwarrior_a_01_orf.m2", + text = "helm_plate_dungeonwarrior_a_01_orf.m2", fileId = "140626", text = "helm_plate_dungeonwarrior_a_01_orf.m2", }, { value = "helm_plate_dungeonwarrior_a_01_orm.m2", + text = "helm_plate_dungeonwarrior_a_01_orm.m2", fileId = "140627", text = "helm_plate_dungeonwarrior_a_01_orm.m2", }, { value = "helm_plate_dungeonwarrior_a_01_scf.m2", + text = "helm_plate_dungeonwarrior_a_01_scf.m2", fileId = "140628", text = "helm_plate_dungeonwarrior_a_01_scf.m2", }, { value = "helm_plate_dungeonwarrior_a_01_scm.m2", + text = "helm_plate_dungeonwarrior_a_01_scm.m2", fileId = "140629", text = "helm_plate_dungeonwarrior_a_01_scm.m2", }, { value = "helm_plate_dungeonwarrior_a_01_taf.m2", + text = "helm_plate_dungeonwarrior_a_01_taf.m2", fileId = "140630", text = "helm_plate_dungeonwarrior_a_01_taf.m2", }, { value = "helm_plate_dungeonwarrior_a_01_tam.m2", + text = "helm_plate_dungeonwarrior_a_01_tam.m2", fileId = "140631", text = "helm_plate_dungeonwarrior_a_01_tam.m2", }, { value = "helm_plate_dungeonwarrior_a_01_trf.m2", + text = "helm_plate_dungeonwarrior_a_01_trf.m2", fileId = "140632", text = "helm_plate_dungeonwarrior_a_01_trf.m2", }, { value = "helm_plate_dungeonwarrior_a_01_trm.m2", + text = "helm_plate_dungeonwarrior_a_01_trm.m2", fileId = "140633", text = "helm_plate_dungeonwarrior_a_01_trm.m2", }, { value = "helm_plate_pvpalliance_a_01_dwf.m2", + text = "helm_plate_pvpalliance_a_01_dwf.m2", fileId = "140818", text = "helm_plate_pvpalliance_a_01_dwf.m2", }, { value = "helm_plate_pvpalliance_a_01_dwm.m2", + text = "helm_plate_pvpalliance_a_01_dwm.m2", fileId = "140819", text = "helm_plate_pvpalliance_a_01_dwm.m2", }, { value = "helm_plate_pvpalliance_a_01_gnf.m2", + text = "helm_plate_pvpalliance_a_01_gnf.m2", fileId = "140820", text = "helm_plate_pvpalliance_a_01_gnf.m2", }, { value = "helm_plate_pvpalliance_a_01_gnm.m2", + text = "helm_plate_pvpalliance_a_01_gnm.m2", fileId = "140821", text = "helm_plate_pvpalliance_a_01_gnm.m2", }, { value = "helm_plate_pvpalliance_a_01_huf.m2", + text = "helm_plate_pvpalliance_a_01_huf.m2", fileId = "140824", text = "helm_plate_pvpalliance_a_01_huf.m2", }, { value = "helm_plate_pvpalliance_a_01_hum.m2", + text = "helm_plate_pvpalliance_a_01_hum.m2", fileId = "140825", text = "helm_plate_pvpalliance_a_01_hum.m2", }, { value = "helm_plate_pvpalliance_a_01_nif.m2", + text = "helm_plate_pvpalliance_a_01_nif.m2", fileId = "140826", text = "helm_plate_pvpalliance_a_01_nif.m2", }, { value = "helm_plate_pvpalliance_a_01_nim.m2", + text = "helm_plate_pvpalliance_a_01_nim.m2", fileId = "140827", text = "helm_plate_pvpalliance_a_01_nim.m2", }, { value = "helm_plate_pvpalliance_a_01_orf.m2", + text = "helm_plate_pvpalliance_a_01_orf.m2", fileId = "140828", text = "helm_plate_pvpalliance_a_01_orf.m2", }, { value = "helm_plate_pvpalliance_a_01_orm.m2", + text = "helm_plate_pvpalliance_a_01_orm.m2", fileId = "140829", text = "helm_plate_pvpalliance_a_01_orm.m2", }, { value = "helm_plate_pvpalliance_a_01_scf.m2", + text = "helm_plate_pvpalliance_a_01_scf.m2", fileId = "140830", text = "helm_plate_pvpalliance_a_01_scf.m2", }, { value = "helm_plate_pvpalliance_a_01_scm.m2", + text = "helm_plate_pvpalliance_a_01_scm.m2", fileId = "140831", text = "helm_plate_pvpalliance_a_01_scm.m2", }, { value = "helm_plate_pvpalliance_a_01_taf.m2", + text = "helm_plate_pvpalliance_a_01_taf.m2", fileId = "140832", text = "helm_plate_pvpalliance_a_01_taf.m2", }, { value = "helm_plate_pvpalliance_a_01_tam.m2", + text = "helm_plate_pvpalliance_a_01_tam.m2", fileId = "140833", text = "helm_plate_pvpalliance_a_01_tam.m2", }, { value = "helm_plate_pvpalliance_a_01_trf.m2", + text = "helm_plate_pvpalliance_a_01_trf.m2", fileId = "140834", text = "helm_plate_pvpalliance_a_01_trf.m2", }, { value = "helm_plate_pvpalliance_a_01_trm.m2", + text = "helm_plate_pvpalliance_a_01_trm.m2", fileId = "140835", text = "helm_plate_pvpalliance_a_01_trm.m2", }, { value = "helm_plate_pvphorde_a_01_dwf.m2", + text = "helm_plate_pvphorde_a_01_dwf.m2", fileId = "140844", text = "helm_plate_pvphorde_a_01_dwf.m2", }, { value = "helm_plate_pvphorde_a_01_dwm.m2", + text = "helm_plate_pvphorde_a_01_dwm.m2", fileId = "140845", text = "helm_plate_pvphorde_a_01_dwm.m2", }, { value = "helm_plate_pvphorde_a_01_gnf.m2", + text = "helm_plate_pvphorde_a_01_gnf.m2", fileId = "140846", text = "helm_plate_pvphorde_a_01_gnf.m2", }, { value = "helm_plate_pvphorde_a_01_gnm.m2", + text = "helm_plate_pvphorde_a_01_gnm.m2", fileId = "140847", text = "helm_plate_pvphorde_a_01_gnm.m2", }, { value = "helm_plate_pvphorde_a_01_huf.m2", + text = "helm_plate_pvphorde_a_01_huf.m2", fileId = "140849", text = "helm_plate_pvphorde_a_01_huf.m2", }, { value = "helm_plate_pvphorde_a_01_hum.m2", + text = "helm_plate_pvphorde_a_01_hum.m2", fileId = "140850", text = "helm_plate_pvphorde_a_01_hum.m2", }, { value = "helm_plate_pvphorde_a_01_nif.m2", + text = "helm_plate_pvphorde_a_01_nif.m2", fileId = "140851", text = "helm_plate_pvphorde_a_01_nif.m2", }, { value = "helm_plate_pvphorde_a_01_nim.m2", + text = "helm_plate_pvphorde_a_01_nim.m2", fileId = "140852", text = "helm_plate_pvphorde_a_01_nim.m2", }, { value = "helm_plate_pvphorde_a_01_orf.m2", + text = "helm_plate_pvphorde_a_01_orf.m2", fileId = "140853", text = "helm_plate_pvphorde_a_01_orf.m2", }, { value = "helm_plate_pvphorde_a_01_orm.m2", + text = "helm_plate_pvphorde_a_01_orm.m2", fileId = "140854", text = "helm_plate_pvphorde_a_01_orm.m2", }, { value = "helm_plate_pvphorde_a_01_scf.m2", + text = "helm_plate_pvphorde_a_01_scf.m2", fileId = "140855", text = "helm_plate_pvphorde_a_01_scf.m2", }, { value = "helm_plate_pvphorde_a_01_scm.m2", + text = "helm_plate_pvphorde_a_01_scm.m2", fileId = "140856", text = "helm_plate_pvphorde_a_01_scm.m2", }, { value = "helm_plate_pvphorde_a_01_taf.m2", + text = "helm_plate_pvphorde_a_01_taf.m2", fileId = "140857", text = "helm_plate_pvphorde_a_01_taf.m2", }, { value = "helm_plate_pvphorde_a_01_tam.m2", + text = "helm_plate_pvphorde_a_01_tam.m2", fileId = "140858", text = "helm_plate_pvphorde_a_01_tam.m2", }, { value = "helm_plate_pvphorde_a_01_trf.m2", + text = "helm_plate_pvphorde_a_01_trf.m2", fileId = "140859", text = "helm_plate_pvphorde_a_01_trf.m2", }, { value = "helm_plate_pvphorde_a_01_trm.m2", + text = "helm_plate_pvphorde_a_01_trm.m2", fileId = "140860", text = "helm_plate_pvphorde_a_01_trm.m2", }, { value = "helm_plate_raidpaladin_a_01_dwf.m2", + text = "helm_plate_raidpaladin_a_01_dwf.m2", fileId = "140897", text = "helm_plate_raidpaladin_a_01_dwf.m2", }, { value = "helm_plate_raidpaladin_a_01_dwm.m2", + text = "helm_plate_raidpaladin_a_01_dwm.m2", fileId = "140898", text = "helm_plate_raidpaladin_a_01_dwm.m2", }, { value = "helm_plate_raidpaladin_a_01_gnf.m2", + text = "helm_plate_raidpaladin_a_01_gnf.m2", fileId = "140899", text = "helm_plate_raidpaladin_a_01_gnf.m2", }, { value = "helm_plate_raidpaladin_a_01_gnm.m2", + text = "helm_plate_raidpaladin_a_01_gnm.m2", fileId = "140900", text = "helm_plate_raidpaladin_a_01_gnm.m2", }, { value = "helm_plate_raidpaladin_a_01_huf.m2", + text = "helm_plate_raidpaladin_a_01_huf.m2", fileId = "140902", text = "helm_plate_raidpaladin_a_01_huf.m2", }, { value = "helm_plate_raidpaladin_a_01_hum.m2", + text = "helm_plate_raidpaladin_a_01_hum.m2", fileId = "140903", text = "helm_plate_raidpaladin_a_01_hum.m2", }, { value = "helm_plate_raidpaladin_a_01_nif.m2", + text = "helm_plate_raidpaladin_a_01_nif.m2", fileId = "140904", text = "helm_plate_raidpaladin_a_01_nif.m2", }, { value = "helm_plate_raidpaladin_a_01_nim.m2", + text = "helm_plate_raidpaladin_a_01_nim.m2", fileId = "140905", text = "helm_plate_raidpaladin_a_01_nim.m2", }, { value = "helm_plate_raidpaladin_a_01_orf.m2", + text = "helm_plate_raidpaladin_a_01_orf.m2", fileId = "140906", text = "helm_plate_raidpaladin_a_01_orf.m2", }, { value = "helm_plate_raidpaladin_a_01_orm.m2", + text = "helm_plate_raidpaladin_a_01_orm.m2", fileId = "140907", text = "helm_plate_raidpaladin_a_01_orm.m2", }, { value = "helm_plate_raidpaladin_a_01_scf.m2", + text = "helm_plate_raidpaladin_a_01_scf.m2", fileId = "140908", text = "helm_plate_raidpaladin_a_01_scf.m2", }, { value = "helm_plate_raidpaladin_a_01_scm.m2", + text = "helm_plate_raidpaladin_a_01_scm.m2", fileId = "140909", text = "helm_plate_raidpaladin_a_01_scm.m2", }, { value = "helm_plate_raidpaladin_a_01_taf.m2", + text = "helm_plate_raidpaladin_a_01_taf.m2", fileId = "140910", text = "helm_plate_raidpaladin_a_01_taf.m2", }, { value = "helm_plate_raidpaladin_a_01_tam.m2", + text = "helm_plate_raidpaladin_a_01_tam.m2", fileId = "140911", text = "helm_plate_raidpaladin_a_01_tam.m2", }, { value = "helm_plate_raidpaladin_a_01_trf.m2", + text = "helm_plate_raidpaladin_a_01_trf.m2", fileId = "140912", text = "helm_plate_raidpaladin_a_01_trf.m2", }, { value = "helm_plate_raidpaladin_a_01_trm.m2", + text = "helm_plate_raidpaladin_a_01_trm.m2", fileId = "140913", text = "helm_plate_raidpaladin_a_01_trm.m2", }, { value = "helm_plate_raidpaladin_b_01_dwf.m2", + text = "helm_plate_raidpaladin_b_01_dwf.m2", fileId = "140923", text = "helm_plate_raidpaladin_b_01_dwf.m2", }, { value = "helm_plate_raidpaladin_b_01_dwm.m2", + text = "helm_plate_raidpaladin_b_01_dwm.m2", fileId = "140924", text = "helm_plate_raidpaladin_b_01_dwm.m2", }, { value = "helm_plate_raidpaladin_b_01_gnf.m2", + text = "helm_plate_raidpaladin_b_01_gnf.m2", fileId = "140925", text = "helm_plate_raidpaladin_b_01_gnf.m2", }, { value = "helm_plate_raidpaladin_b_01_gnm.m2", + text = "helm_plate_raidpaladin_b_01_gnm.m2", fileId = "140926", text = "helm_plate_raidpaladin_b_01_gnm.m2", }, { value = "helm_plate_raidpaladin_b_01_huf.m2", + text = "helm_plate_raidpaladin_b_01_huf.m2", fileId = "140929", text = "helm_plate_raidpaladin_b_01_huf.m2", }, { value = "helm_plate_raidpaladin_b_01_hum.m2", + text = "helm_plate_raidpaladin_b_01_hum.m2", fileId = "140930", text = "helm_plate_raidpaladin_b_01_hum.m2", }, { value = "helm_plate_raidpaladin_b_01_nif.m2", + text = "helm_plate_raidpaladin_b_01_nif.m2", fileId = "140931", text = "helm_plate_raidpaladin_b_01_nif.m2", }, { value = "helm_plate_raidpaladin_b_01_nim.m2", + text = "helm_plate_raidpaladin_b_01_nim.m2", fileId = "140932", text = "helm_plate_raidpaladin_b_01_nim.m2", }, { value = "helm_plate_raidpaladin_b_01_orf.m2", + text = "helm_plate_raidpaladin_b_01_orf.m2", fileId = "140933", text = "helm_plate_raidpaladin_b_01_orf.m2", }, { value = "helm_plate_raidpaladin_b_01_orm.m2", + text = "helm_plate_raidpaladin_b_01_orm.m2", fileId = "140934", text = "helm_plate_raidpaladin_b_01_orm.m2", }, { value = "helm_plate_raidpaladin_b_01_scf.m2", + text = "helm_plate_raidpaladin_b_01_scf.m2", fileId = "140935", text = "helm_plate_raidpaladin_b_01_scf.m2", }, { value = "helm_plate_raidpaladin_b_01_scm.m2", + text = "helm_plate_raidpaladin_b_01_scm.m2", fileId = "140936", text = "helm_plate_raidpaladin_b_01_scm.m2", }, { value = "helm_plate_raidpaladin_b_01_taf.m2", + text = "helm_plate_raidpaladin_b_01_taf.m2", fileId = "140937", text = "helm_plate_raidpaladin_b_01_taf.m2", }, { value = "helm_plate_raidpaladin_b_01_tam.m2", + text = "helm_plate_raidpaladin_b_01_tam.m2", fileId = "140938", text = "helm_plate_raidpaladin_b_01_tam.m2", }, { value = "helm_plate_raidpaladin_b_01_trf.m2", + text = "helm_plate_raidpaladin_b_01_trf.m2", fileId = "140939", text = "helm_plate_raidpaladin_b_01_trf.m2", }, { value = "helm_plate_raidpaladin_b_01_trm.m2", + text = "helm_plate_raidpaladin_b_01_trm.m2", fileId = "140940", text = "helm_plate_raidpaladin_b_01_trm.m2", }, { value = "helm_plate_raidpaladin_c_01_dwf.m2", + text = "helm_plate_raidpaladin_c_01_dwf.m2", fileId = "140948", text = "helm_plate_raidpaladin_c_01_dwf.m2", }, { value = "helm_plate_raidpaladin_c_01_dwm.m2", + text = "helm_plate_raidpaladin_c_01_dwm.m2", fileId = "140949", text = "helm_plate_raidpaladin_c_01_dwm.m2", }, { value = "helm_plate_raidpaladin_c_01_gnf.m2", + text = "helm_plate_raidpaladin_c_01_gnf.m2", fileId = "140950", text = "helm_plate_raidpaladin_c_01_gnf.m2", }, { value = "helm_plate_raidpaladin_c_01_gnm.m2", + text = "helm_plate_raidpaladin_c_01_gnm.m2", fileId = "140951", text = "helm_plate_raidpaladin_c_01_gnm.m2", }, { value = "helm_plate_raidpaladin_c_01_huf.m2", + text = "helm_plate_raidpaladin_c_01_huf.m2", fileId = "140954", text = "helm_plate_raidpaladin_c_01_huf.m2", }, { value = "helm_plate_raidpaladin_c_01_hum.m2", + text = "helm_plate_raidpaladin_c_01_hum.m2", fileId = "140955", text = "helm_plate_raidpaladin_c_01_hum.m2", }, { value = "helm_plate_raidpaladin_c_01_nif.m2", + text = "helm_plate_raidpaladin_c_01_nif.m2", fileId = "140956", text = "helm_plate_raidpaladin_c_01_nif.m2", }, { value = "helm_plate_raidpaladin_c_01_nim.m2", + text = "helm_plate_raidpaladin_c_01_nim.m2", fileId = "140957", text = "helm_plate_raidpaladin_c_01_nim.m2", }, { value = "helm_plate_raidpaladin_c_01_orf.m2", + text = "helm_plate_raidpaladin_c_01_orf.m2", fileId = "140958", text = "helm_plate_raidpaladin_c_01_orf.m2", }, { value = "helm_plate_raidpaladin_c_01_orm.m2", + text = "helm_plate_raidpaladin_c_01_orm.m2", fileId = "140959", text = "helm_plate_raidpaladin_c_01_orm.m2", }, { value = "helm_plate_raidpaladin_c_01_scf.m2", + text = "helm_plate_raidpaladin_c_01_scf.m2", fileId = "140960", text = "helm_plate_raidpaladin_c_01_scf.m2", }, { value = "helm_plate_raidpaladin_c_01_scm.m2", + text = "helm_plate_raidpaladin_c_01_scm.m2", fileId = "140961", text = "helm_plate_raidpaladin_c_01_scm.m2", }, { value = "helm_plate_raidpaladin_c_01_taf.m2", + text = "helm_plate_raidpaladin_c_01_taf.m2", fileId = "140962", text = "helm_plate_raidpaladin_c_01_taf.m2", }, { value = "helm_plate_raidpaladin_c_01_tam.m2", + text = "helm_plate_raidpaladin_c_01_tam.m2", fileId = "140963", text = "helm_plate_raidpaladin_c_01_tam.m2", }, { value = "helm_plate_raidpaladin_c_01_trf.m2", + text = "helm_plate_raidpaladin_c_01_trf.m2", fileId = "140964", text = "helm_plate_raidpaladin_c_01_trf.m2", }, { value = "helm_plate_raidpaladin_c_01_trm.m2", + text = "helm_plate_raidpaladin_c_01_trm.m2", fileId = "140965", text = "helm_plate_raidpaladin_c_01_trm.m2", }, { value = "helm_plate_raidwarrior_a_01_dwf.m2", + text = "helm_plate_raidwarrior_a_01_dwf.m2", fileId = "141043", text = "helm_plate_raidwarrior_a_01_dwf.m2", }, { value = "helm_plate_raidwarrior_a_01_dwm.m2", + text = "helm_plate_raidwarrior_a_01_dwm.m2", fileId = "141044", text = "helm_plate_raidwarrior_a_01_dwm.m2", }, { value = "helm_plate_raidwarrior_a_01_gnf.m2", + text = "helm_plate_raidwarrior_a_01_gnf.m2", fileId = "141045", text = "helm_plate_raidwarrior_a_01_gnf.m2", }, { value = "helm_plate_raidwarrior_a_01_gnm.m2", + text = "helm_plate_raidwarrior_a_01_gnm.m2", fileId = "141046", text = "helm_plate_raidwarrior_a_01_gnm.m2", }, { value = "helm_plate_raidwarrior_a_01_huf.m2", + text = "helm_plate_raidwarrior_a_01_huf.m2", fileId = "141049", text = "helm_plate_raidwarrior_a_01_huf.m2", }, { value = "helm_plate_raidwarrior_a_01_hum.m2", + text = "helm_plate_raidwarrior_a_01_hum.m2", fileId = "141050", text = "helm_plate_raidwarrior_a_01_hum.m2", }, { value = "helm_plate_raidwarrior_a_01_nif.m2", + text = "helm_plate_raidwarrior_a_01_nif.m2", fileId = "141051", text = "helm_plate_raidwarrior_a_01_nif.m2", }, { value = "helm_plate_raidwarrior_a_01_nim.m2", + text = "helm_plate_raidwarrior_a_01_nim.m2", fileId = "141052", text = "helm_plate_raidwarrior_a_01_nim.m2", }, { value = "helm_plate_raidwarrior_a_01_orf.m2", + text = "helm_plate_raidwarrior_a_01_orf.m2", fileId = "141053", text = "helm_plate_raidwarrior_a_01_orf.m2", }, { value = "helm_plate_raidwarrior_a_01_orm.m2", + text = "helm_plate_raidwarrior_a_01_orm.m2", fileId = "141054", text = "helm_plate_raidwarrior_a_01_orm.m2", }, { value = "helm_plate_raidwarrior_a_01_scf.m2", + text = "helm_plate_raidwarrior_a_01_scf.m2", fileId = "141055", text = "helm_plate_raidwarrior_a_01_scf.m2", }, { value = "helm_plate_raidwarrior_a_01_scm.m2", + text = "helm_plate_raidwarrior_a_01_scm.m2", fileId = "141056", text = "helm_plate_raidwarrior_a_01_scm.m2", }, { value = "helm_plate_raidwarrior_a_01_taf.m2", + text = "helm_plate_raidwarrior_a_01_taf.m2", fileId = "141057", text = "helm_plate_raidwarrior_a_01_taf.m2", }, { value = "helm_plate_raidwarrior_a_01_tam.m2", + text = "helm_plate_raidwarrior_a_01_tam.m2", fileId = "141058", text = "helm_plate_raidwarrior_a_01_tam.m2", }, { value = "helm_plate_raidwarrior_a_01_trf.m2", + text = "helm_plate_raidwarrior_a_01_trf.m2", fileId = "141059", text = "helm_plate_raidwarrior_a_01_trf.m2", }, { value = "helm_plate_raidwarrior_a_01_trm.m2", + text = "helm_plate_raidwarrior_a_01_trm.m2", fileId = "141060", text = "helm_plate_raidwarrior_a_01_trm.m2", }, { value = "helm_plate_raidwarrior_b_01_dwf.m2", + text = "helm_plate_raidwarrior_b_01_dwf.m2", fileId = "141070", text = "helm_plate_raidwarrior_b_01_dwf.m2", }, { value = "helm_plate_raidwarrior_b_01_dwm.m2", + text = "helm_plate_raidwarrior_b_01_dwm.m2", fileId = "141071", text = "helm_plate_raidwarrior_b_01_dwm.m2", }, { value = "helm_plate_raidwarrior_b_01_gnf.m2", + text = "helm_plate_raidwarrior_b_01_gnf.m2", fileId = "141072", text = "helm_plate_raidwarrior_b_01_gnf.m2", }, { value = "helm_plate_raidwarrior_b_01_gnm.m2", + text = "helm_plate_raidwarrior_b_01_gnm.m2", fileId = "141073", text = "helm_plate_raidwarrior_b_01_gnm.m2", }, { value = "helm_plate_raidwarrior_b_01_huf.m2", + text = "helm_plate_raidwarrior_b_01_huf.m2", fileId = "141076", text = "helm_plate_raidwarrior_b_01_huf.m2", }, { value = "helm_plate_raidwarrior_b_01_hum.m2", + text = "helm_plate_raidwarrior_b_01_hum.m2", fileId = "141077", text = "helm_plate_raidwarrior_b_01_hum.m2", }, { value = "helm_plate_raidwarrior_b_01_nif.m2", + text = "helm_plate_raidwarrior_b_01_nif.m2", fileId = "141078", text = "helm_plate_raidwarrior_b_01_nif.m2", }, { value = "helm_plate_raidwarrior_b_01_nim.m2", + text = "helm_plate_raidwarrior_b_01_nim.m2", fileId = "141079", text = "helm_plate_raidwarrior_b_01_nim.m2", }, { value = "helm_plate_raidwarrior_b_01_orf.m2", + text = "helm_plate_raidwarrior_b_01_orf.m2", fileId = "141080", text = "helm_plate_raidwarrior_b_01_orf.m2", }, { value = "helm_plate_raidwarrior_b_01_orm.m2", + text = "helm_plate_raidwarrior_b_01_orm.m2", fileId = "141081", text = "helm_plate_raidwarrior_b_01_orm.m2", }, { value = "helm_plate_raidwarrior_b_01_scf.m2", + text = "helm_plate_raidwarrior_b_01_scf.m2", fileId = "141082", text = "helm_plate_raidwarrior_b_01_scf.m2", }, { value = "helm_plate_raidwarrior_b_01_scm.m2", + text = "helm_plate_raidwarrior_b_01_scm.m2", fileId = "141083", text = "helm_plate_raidwarrior_b_01_scm.m2", }, { value = "helm_plate_raidwarrior_b_01_taf.m2", + text = "helm_plate_raidwarrior_b_01_taf.m2", fileId = "141084", text = "helm_plate_raidwarrior_b_01_taf.m2", }, { value = "helm_plate_raidwarrior_b_01_tam.m2", + text = "helm_plate_raidwarrior_b_01_tam.m2", fileId = "141085", text = "helm_plate_raidwarrior_b_01_tam.m2", }, { value = "helm_plate_raidwarrior_b_01_trf.m2", + text = "helm_plate_raidwarrior_b_01_trf.m2", fileId = "141086", text = "helm_plate_raidwarrior_b_01_trf.m2", }, { value = "helm_plate_raidwarrior_b_01_trm.m2", + text = "helm_plate_raidwarrior_b_01_trm.m2", fileId = "141087", text = "helm_plate_raidwarrior_b_01_trm.m2", }, { value = "helm_plate_raidwarrior_c_01_dwf.m2", + text = "helm_plate_raidwarrior_c_01_dwf.m2", fileId = "141097", text = "helm_plate_raidwarrior_c_01_dwf.m2", }, { value = "helm_plate_raidwarrior_c_01_dwm.m2", + text = "helm_plate_raidwarrior_c_01_dwm.m2", fileId = "141098", text = "helm_plate_raidwarrior_c_01_dwm.m2", }, { value = "helm_plate_raidwarrior_c_01_gnf.m2", + text = "helm_plate_raidwarrior_c_01_gnf.m2", fileId = "141099", text = "helm_plate_raidwarrior_c_01_gnf.m2", }, { value = "helm_plate_raidwarrior_c_01_gnm.m2", + text = "helm_plate_raidwarrior_c_01_gnm.m2", fileId = "141100", text = "helm_plate_raidwarrior_c_01_gnm.m2", }, { value = "helm_plate_raidwarrior_c_01_huf.m2", + text = "helm_plate_raidwarrior_c_01_huf.m2", fileId = "141103", text = "helm_plate_raidwarrior_c_01_huf.m2", }, { value = "helm_plate_raidwarrior_c_01_hum.m2", + text = "helm_plate_raidwarrior_c_01_hum.m2", fileId = "141104", text = "helm_plate_raidwarrior_c_01_hum.m2", }, { value = "helm_plate_raidwarrior_c_01_nif.m2", + text = "helm_plate_raidwarrior_c_01_nif.m2", fileId = "141105", text = "helm_plate_raidwarrior_c_01_nif.m2", }, { value = "helm_plate_raidwarrior_c_01_nim.m2", + text = "helm_plate_raidwarrior_c_01_nim.m2", fileId = "141106", text = "helm_plate_raidwarrior_c_01_nim.m2", }, { value = "helm_plate_raidwarrior_c_01_orf.m2", + text = "helm_plate_raidwarrior_c_01_orf.m2", fileId = "141107", text = "helm_plate_raidwarrior_c_01_orf.m2", }, { value = "helm_plate_raidwarrior_c_01_orm.m2", + text = "helm_plate_raidwarrior_c_01_orm.m2", fileId = "141108", text = "helm_plate_raidwarrior_c_01_orm.m2", }, { value = "helm_plate_raidwarrior_c_01_scf.m2", + text = "helm_plate_raidwarrior_c_01_scf.m2", fileId = "141109", text = "helm_plate_raidwarrior_c_01_scf.m2", }, { value = "helm_plate_raidwarrior_c_01_scm.m2", + text = "helm_plate_raidwarrior_c_01_scm.m2", fileId = "141110", text = "helm_plate_raidwarrior_c_01_scm.m2", }, { value = "helm_plate_raidwarrior_c_01_taf.m2", + text = "helm_plate_raidwarrior_c_01_taf.m2", fileId = "141111", text = "helm_plate_raidwarrior_c_01_taf.m2", }, { value = "helm_plate_raidwarrior_c_01_tam.m2", + text = "helm_plate_raidwarrior_c_01_tam.m2", fileId = "141112", text = "helm_plate_raidwarrior_c_01_tam.m2", }, { value = "helm_plate_raidwarrior_c_01_trf.m2", + text = "helm_plate_raidwarrior_c_01_trf.m2", fileId = "141113", text = "helm_plate_raidwarrior_c_01_trf.m2", }, { value = "helm_plate_raidwarrior_c_01_trm.m2", + text = "helm_plate_raidwarrior_c_01_trm.m2", fileId = "141114", text = "helm_plate_raidwarrior_c_01_trm.m2", }, { value = "helm_robe_ahnqiraj_a_01_dwf.m2", + text = "helm_robe_ahnqiraj_a_01_dwf.m2", fileId = "141328", text = "helm_robe_ahnqiraj_a_01_dwf.m2", }, { value = "helm_robe_ahnqiraj_a_01_dwm.m2", + text = "helm_robe_ahnqiraj_a_01_dwm.m2", fileId = "141329", text = "helm_robe_ahnqiraj_a_01_dwm.m2", }, { value = "helm_robe_ahnqiraj_a_01_gnf.m2", + text = "helm_robe_ahnqiraj_a_01_gnf.m2", fileId = "141330", text = "helm_robe_ahnqiraj_a_01_gnf.m2", }, { value = "helm_robe_ahnqiraj_a_01_gnm.m2", + text = "helm_robe_ahnqiraj_a_01_gnm.m2", fileId = "141331", text = "helm_robe_ahnqiraj_a_01_gnm.m2", }, { value = "helm_robe_ahnqiraj_a_01_huf.m2", + text = "helm_robe_ahnqiraj_a_01_huf.m2", fileId = "141333", text = "helm_robe_ahnqiraj_a_01_huf.m2", }, { value = "helm_robe_ahnqiraj_a_01_hum.m2", + text = "helm_robe_ahnqiraj_a_01_hum.m2", fileId = "141334", text = "helm_robe_ahnqiraj_a_01_hum.m2", }, { value = "helm_robe_ahnqiraj_a_01_nif.m2", + text = "helm_robe_ahnqiraj_a_01_nif.m2", fileId = "141335", text = "helm_robe_ahnqiraj_a_01_nif.m2", }, { value = "helm_robe_ahnqiraj_a_01_nim.m2", + text = "helm_robe_ahnqiraj_a_01_nim.m2", fileId = "141336", text = "helm_robe_ahnqiraj_a_01_nim.m2", }, { value = "helm_robe_ahnqiraj_a_01_orf.m2", + text = "helm_robe_ahnqiraj_a_01_orf.m2", fileId = "141337", text = "helm_robe_ahnqiraj_a_01_orf.m2", }, { value = "helm_robe_ahnqiraj_a_01_orm.m2", + text = "helm_robe_ahnqiraj_a_01_orm.m2", fileId = "141338", text = "helm_robe_ahnqiraj_a_01_orm.m2", }, { value = "helm_robe_ahnqiraj_a_01_scf.m2", + text = "helm_robe_ahnqiraj_a_01_scf.m2", fileId = "141339", text = "helm_robe_ahnqiraj_a_01_scf.m2", }, { value = "helm_robe_ahnqiraj_a_01_scm.m2", + text = "helm_robe_ahnqiraj_a_01_scm.m2", fileId = "141340", text = "helm_robe_ahnqiraj_a_01_scm.m2", }, { value = "helm_robe_ahnqiraj_a_01_taf.m2", + text = "helm_robe_ahnqiraj_a_01_taf.m2", fileId = "141341", text = "helm_robe_ahnqiraj_a_01_taf.m2", }, { value = "helm_robe_ahnqiraj_a_01_tam.m2", + text = "helm_robe_ahnqiraj_a_01_tam.m2", fileId = "141342", text = "helm_robe_ahnqiraj_a_01_tam.m2", }, { value = "helm_robe_ahnqiraj_a_01_trf.m2", + text = "helm_robe_ahnqiraj_a_01_trf.m2", fileId = "141343", text = "helm_robe_ahnqiraj_a_01_trf.m2", }, { value = "helm_robe_ahnqiraj_a_01_trm.m2", + text = "helm_robe_ahnqiraj_a_01_trm.m2", fileId = "141344", text = "helm_robe_ahnqiraj_a_01_trm.m2", }, { value = "helm_robe_c_01_dwf.m2", + text = "helm_robe_c_01_dwf.m2", fileId = "141378", text = "helm_robe_c_01_dwf.m2", }, { value = "helm_robe_c_01_dwm.m2", + text = "helm_robe_c_01_dwm.m2", fileId = "141379", text = "helm_robe_c_01_dwm.m2", }, { value = "helm_robe_c_01_gnf.m2", + text = "helm_robe_c_01_gnf.m2", fileId = "141380", text = "helm_robe_c_01_gnf.m2", }, { value = "helm_robe_c_01_gnm.m2", + text = "helm_robe_c_01_gnm.m2", fileId = "141381", text = "helm_robe_c_01_gnm.m2", }, { value = "helm_robe_c_01_huf.m2", + text = "helm_robe_c_01_huf.m2", fileId = "141384", text = "helm_robe_c_01_huf.m2", }, { value = "helm_robe_c_01_hum.m2", + text = "helm_robe_c_01_hum.m2", fileId = "141385", text = "helm_robe_c_01_hum.m2", }, { value = "helm_robe_c_01_nif.m2", + text = "helm_robe_c_01_nif.m2", fileId = "141386", text = "helm_robe_c_01_nif.m2", }, { value = "helm_robe_c_01_nim.m2", + text = "helm_robe_c_01_nim.m2", fileId = "141387", text = "helm_robe_c_01_nim.m2", }, { value = "helm_robe_c_01_orf.m2", + text = "helm_robe_c_01_orf.m2", fileId = "141388", text = "helm_robe_c_01_orf.m2", }, { value = "helm_robe_c_01_orm.m2", + text = "helm_robe_c_01_orm.m2", fileId = "141389", text = "helm_robe_c_01_orm.m2", }, { value = "helm_robe_c_01_scf.m2", + text = "helm_robe_c_01_scf.m2", fileId = "141390", text = "helm_robe_c_01_scf.m2", }, { value = "helm_robe_c_01_scm.m2", + text = "helm_robe_c_01_scm.m2", fileId = "141391", text = "helm_robe_c_01_scm.m2", }, { value = "helm_robe_c_01_taf.m2", + text = "helm_robe_c_01_taf.m2", fileId = "141392", text = "helm_robe_c_01_taf.m2", }, { value = "helm_robe_c_01_tam.m2", + text = "helm_robe_c_01_tam.m2", fileId = "141393", text = "helm_robe_c_01_tam.m2", }, { value = "helm_robe_c_01_trf.m2", + text = "helm_robe_c_01_trf.m2", fileId = "141394", text = "helm_robe_c_01_trf.m2", }, { value = "helm_robe_c_01_trm.m2", + text = "helm_robe_c_01_trm.m2", fileId = "141395", text = "helm_robe_c_01_trm.m2", }, { value = "helm_robe_c_02_dwf.m2", + text = "helm_robe_c_02_dwf.m2", fileId = "141409", text = "helm_robe_c_02_dwf.m2", }, { value = "helm_robe_c_02_dwm.m2", + text = "helm_robe_c_02_dwm.m2", fileId = "141410", text = "helm_robe_c_02_dwm.m2", }, { value = "helm_robe_c_02_gnf.m2", + text = "helm_robe_c_02_gnf.m2", fileId = "141411", text = "helm_robe_c_02_gnf.m2", }, { value = "helm_robe_c_02_gnm.m2", + text = "helm_robe_c_02_gnm.m2", fileId = "141412", text = "helm_robe_c_02_gnm.m2", }, { value = "helm_robe_c_02_huf.m2", + text = "helm_robe_c_02_huf.m2", fileId = "141415", text = "helm_robe_c_02_huf.m2", }, { value = "helm_robe_c_02_hum.m2", + text = "helm_robe_c_02_hum.m2", fileId = "141416", text = "helm_robe_c_02_hum.m2", }, { value = "helm_robe_c_02_nif.m2", + text = "helm_robe_c_02_nif.m2", fileId = "141417", text = "helm_robe_c_02_nif.m2", }, { value = "helm_robe_c_02_nim.m2", + text = "helm_robe_c_02_nim.m2", fileId = "141418", text = "helm_robe_c_02_nim.m2", }, { value = "helm_robe_c_02_orf.m2", + text = "helm_robe_c_02_orf.m2", fileId = "141419", text = "helm_robe_c_02_orf.m2", }, { value = "helm_robe_c_02_orm.m2", + text = "helm_robe_c_02_orm.m2", fileId = "141420", text = "helm_robe_c_02_orm.m2", }, { value = "helm_robe_c_02_scf.m2", + text = "helm_robe_c_02_scf.m2", fileId = "141421", text = "helm_robe_c_02_scf.m2", }, { value = "helm_robe_c_02_scm.m2", + text = "helm_robe_c_02_scm.m2", fileId = "141422", text = "helm_robe_c_02_scm.m2", }, { value = "helm_robe_c_02_taf.m2", + text = "helm_robe_c_02_taf.m2", fileId = "141423", text = "helm_robe_c_02_taf.m2", }, { value = "helm_robe_c_02_tam.m2", + text = "helm_robe_c_02_tam.m2", fileId = "141424", text = "helm_robe_c_02_tam.m2", }, { value = "helm_robe_c_02_trf.m2", + text = "helm_robe_c_02_trf.m2", fileId = "141425", text = "helm_robe_c_02_trf.m2", }, { value = "helm_robe_c_02_trm.m2", + text = "helm_robe_c_02_trm.m2", fileId = "141426", text = "helm_robe_c_02_trm.m2", }, { value = "helm_robe_c_03_dwf.m2", + text = "helm_robe_c_03_dwf.m2", fileId = "141438", text = "helm_robe_c_03_dwf.m2", }, { value = "helm_robe_c_03_dwm.m2", + text = "helm_robe_c_03_dwm.m2", fileId = "141439", text = "helm_robe_c_03_dwm.m2", }, { value = "helm_robe_c_03_gnf.m2", + text = "helm_robe_c_03_gnf.m2", fileId = "141440", text = "helm_robe_c_03_gnf.m2", }, { value = "helm_robe_c_03_gnm.m2", + text = "helm_robe_c_03_gnm.m2", fileId = "141441", text = "helm_robe_c_03_gnm.m2", }, { value = "helm_robe_c_03_huf.m2", + text = "helm_robe_c_03_huf.m2", fileId = "141444", text = "helm_robe_c_03_huf.m2", }, { value = "helm_robe_c_03_hum.m2", + text = "helm_robe_c_03_hum.m2", fileId = "141445", text = "helm_robe_c_03_hum.m2", }, { value = "helm_robe_c_03_nif.m2", + text = "helm_robe_c_03_nif.m2", fileId = "141446", text = "helm_robe_c_03_nif.m2", }, { value = "helm_robe_c_03_nim.m2", + text = "helm_robe_c_03_nim.m2", fileId = "141447", text = "helm_robe_c_03_nim.m2", }, { value = "helm_robe_c_03_orf.m2", + text = "helm_robe_c_03_orf.m2", fileId = "141448", text = "helm_robe_c_03_orf.m2", }, { value = "helm_robe_c_03_orm.m2", + text = "helm_robe_c_03_orm.m2", fileId = "141449", text = "helm_robe_c_03_orm.m2", }, { value = "helm_robe_c_03_scf.m2", + text = "helm_robe_c_03_scf.m2", fileId = "141450", text = "helm_robe_c_03_scf.m2", }, { value = "helm_robe_c_03_scm.m2", + text = "helm_robe_c_03_scm.m2", fileId = "141451", text = "helm_robe_c_03_scm.m2", }, { value = "helm_robe_c_03_taf.m2", + text = "helm_robe_c_03_taf.m2", fileId = "141452", text = "helm_robe_c_03_taf.m2", }, { value = "helm_robe_c_03_tam.m2", + text = "helm_robe_c_03_tam.m2", fileId = "141453", text = "helm_robe_c_03_tam.m2", }, { value = "helm_robe_c_03_trf.m2", + text = "helm_robe_c_03_trf.m2", fileId = "141454", text = "helm_robe_c_03_trf.m2", }, { value = "helm_robe_c_03_trm.m2", + text = "helm_robe_c_03_trm.m2", fileId = "141455", text = "helm_robe_c_03_trm.m2", }, { value = "helm_robe_c_04_hum.m2", + text = "helm_robe_c_04_hum.m2", fileId = "141469", text = "helm_robe_c_04_hum.m2", }, { value = "helm_robe_dungeonmage_a_01_dwf.m2", + text = "helm_robe_dungeonmage_a_01_dwf.m2", fileId = "141509", text = "helm_robe_dungeonmage_a_01_dwf.m2", }, { value = "helm_robe_dungeonmage_a_01_dwm.m2", + text = "helm_robe_dungeonmage_a_01_dwm.m2", fileId = "141510", text = "helm_robe_dungeonmage_a_01_dwm.m2", }, { value = "helm_robe_dungeonmage_a_01_gnf.m2", + text = "helm_robe_dungeonmage_a_01_gnf.m2", fileId = "141511", text = "helm_robe_dungeonmage_a_01_gnf.m2", }, { value = "helm_robe_dungeonmage_a_01_gnm.m2", + text = "helm_robe_dungeonmage_a_01_gnm.m2", fileId = "141512", text = "helm_robe_dungeonmage_a_01_gnm.m2", }, { value = "helm_robe_dungeonmage_a_01_huf.m2", + text = "helm_robe_dungeonmage_a_01_huf.m2", fileId = "141515", text = "helm_robe_dungeonmage_a_01_huf.m2", }, { value = "helm_robe_dungeonmage_a_01_hum.m2", + text = "helm_robe_dungeonmage_a_01_hum.m2", fileId = "141516", text = "helm_robe_dungeonmage_a_01_hum.m2", }, { value = "helm_robe_dungeonmage_a_01_nif.m2", + text = "helm_robe_dungeonmage_a_01_nif.m2", fileId = "141517", text = "helm_robe_dungeonmage_a_01_nif.m2", }, { value = "helm_robe_dungeonmage_a_01_nim.m2", + text = "helm_robe_dungeonmage_a_01_nim.m2", fileId = "141518", text = "helm_robe_dungeonmage_a_01_nim.m2", }, { value = "helm_robe_dungeonmage_a_01_orf.m2", + text = "helm_robe_dungeonmage_a_01_orf.m2", fileId = "141519", text = "helm_robe_dungeonmage_a_01_orf.m2", }, { value = "helm_robe_dungeonmage_a_01_orm.m2", + text = "helm_robe_dungeonmage_a_01_orm.m2", fileId = "141520", text = "helm_robe_dungeonmage_a_01_orm.m2", }, { value = "helm_robe_dungeonmage_a_01_scf.m2", + text = "helm_robe_dungeonmage_a_01_scf.m2", fileId = "141521", text = "helm_robe_dungeonmage_a_01_scf.m2", }, { value = "helm_robe_dungeonmage_a_01_scm.m2", + text = "helm_robe_dungeonmage_a_01_scm.m2", fileId = "141522", text = "helm_robe_dungeonmage_a_01_scm.m2", }, { value = "helm_robe_dungeonmage_a_01_taf.m2", + text = "helm_robe_dungeonmage_a_01_taf.m2", fileId = "141523", text = "helm_robe_dungeonmage_a_01_taf.m2", }, { value = "helm_robe_dungeonmage_a_01_tam.m2", + text = "helm_robe_dungeonmage_a_01_tam.m2", fileId = "141524", text = "helm_robe_dungeonmage_a_01_tam.m2", }, { value = "helm_robe_dungeonmage_a_01_trf.m2", + text = "helm_robe_dungeonmage_a_01_trf.m2", fileId = "141525", text = "helm_robe_dungeonmage_a_01_trf.m2", }, { value = "helm_robe_dungeonmage_a_01_trm.m2", + text = "helm_robe_dungeonmage_a_01_trm.m2", fileId = "141526", text = "helm_robe_dungeonmage_a_01_trm.m2", }, { value = "helm_robe_dungeonpriest_a_01_dwf.m2", + text = "helm_robe_dungeonpriest_a_01_dwf.m2", fileId = "141562", text = "helm_robe_dungeonpriest_a_01_dwf.m2", }, { value = "helm_robe_dungeonpriest_a_01_dwm.m2", + text = "helm_robe_dungeonpriest_a_01_dwm.m2", fileId = "141563", text = "helm_robe_dungeonpriest_a_01_dwm.m2", }, { value = "helm_robe_dungeonpriest_a_01_gnf.m2", + text = "helm_robe_dungeonpriest_a_01_gnf.m2", fileId = "141564", text = "helm_robe_dungeonpriest_a_01_gnf.m2", }, { value = "helm_robe_dungeonpriest_a_01_gnm.m2", + text = "helm_robe_dungeonpriest_a_01_gnm.m2", fileId = "141565", text = "helm_robe_dungeonpriest_a_01_gnm.m2", }, { value = "helm_robe_dungeonpriest_a_01_huf.m2", + text = "helm_robe_dungeonpriest_a_01_huf.m2", fileId = "141568", text = "helm_robe_dungeonpriest_a_01_huf.m2", }, { value = "helm_robe_dungeonpriest_a_01_hum.m2", + text = "helm_robe_dungeonpriest_a_01_hum.m2", fileId = "141569", text = "helm_robe_dungeonpriest_a_01_hum.m2", }, { value = "helm_robe_dungeonpriest_a_01_nif.m2", + text = "helm_robe_dungeonpriest_a_01_nif.m2", fileId = "141570", text = "helm_robe_dungeonpriest_a_01_nif.m2", }, { value = "helm_robe_dungeonpriest_a_01_nim.m2", + text = "helm_robe_dungeonpriest_a_01_nim.m2", fileId = "141571", text = "helm_robe_dungeonpriest_a_01_nim.m2", }, { value = "helm_robe_dungeonpriest_a_01_orf.m2", + text = "helm_robe_dungeonpriest_a_01_orf.m2", fileId = "141572", text = "helm_robe_dungeonpriest_a_01_orf.m2", }, { value = "helm_robe_dungeonpriest_a_01_orm.m2", + text = "helm_robe_dungeonpriest_a_01_orm.m2", fileId = "141573", text = "helm_robe_dungeonpriest_a_01_orm.m2", }, { value = "helm_robe_dungeonpriest_a_01_scf.m2", + text = "helm_robe_dungeonpriest_a_01_scf.m2", fileId = "141574", text = "helm_robe_dungeonpriest_a_01_scf.m2", }, { value = "helm_robe_dungeonpriest_a_01_scm.m2", + text = "helm_robe_dungeonpriest_a_01_scm.m2", fileId = "141575", text = "helm_robe_dungeonpriest_a_01_scm.m2", }, { value = "helm_robe_dungeonpriest_a_01_taf.m2", + text = "helm_robe_dungeonpriest_a_01_taf.m2", fileId = "141576", text = "helm_robe_dungeonpriest_a_01_taf.m2", }, { value = "helm_robe_dungeonpriest_a_01_tam.m2", + text = "helm_robe_dungeonpriest_a_01_tam.m2", fileId = "141577", text = "helm_robe_dungeonpriest_a_01_tam.m2", }, { value = "helm_robe_dungeonpriest_a_01_trf.m2", + text = "helm_robe_dungeonpriest_a_01_trf.m2", fileId = "141578", text = "helm_robe_dungeonpriest_a_01_trf.m2", }, { value = "helm_robe_dungeonpriest_a_01_trm.m2", + text = "helm_robe_dungeonpriest_a_01_trm.m2", fileId = "141579", text = "helm_robe_dungeonpriest_a_01_trm.m2", }, { value = "helm_robe_dungeonwarlock_a_01_bef.m2", + text = "helm_robe_dungeonwarlock_a_01_bef.m2", fileId = "141611", text = "helm_robe_dungeonwarlock_a_01_bef.m2", }, { value = "helm_robe_dungeonwarlock_a_01_bem.m2", + text = "helm_robe_dungeonwarlock_a_01_bem.m2", fileId = "141612", text = "helm_robe_dungeonwarlock_a_01_bem.m2", }, { value = "helm_robe_dungeonwarlock_a_01_dwf.m2", + text = "helm_robe_dungeonwarlock_a_01_dwf.m2", fileId = "141615", text = "helm_robe_dungeonwarlock_a_01_dwf.m2", }, { value = "helm_robe_dungeonwarlock_a_01_dwm.m2", + text = "helm_robe_dungeonwarlock_a_01_dwm.m2", fileId = "141616", text = "helm_robe_dungeonwarlock_a_01_dwm.m2", }, { value = "helm_robe_dungeonwarlock_a_01_gnf.m2", + text = "helm_robe_dungeonwarlock_a_01_gnf.m2", fileId = "141617", text = "helm_robe_dungeonwarlock_a_01_gnf.m2", }, { value = "helm_robe_dungeonwarlock_a_01_gnm.m2", + text = "helm_robe_dungeonwarlock_a_01_gnm.m2", fileId = "141618", text = "helm_robe_dungeonwarlock_a_01_gnm.m2", }, { value = "helm_robe_dungeonwarlock_a_01_huf.m2", + text = "helm_robe_dungeonwarlock_a_01_huf.m2", fileId = "141621", text = "helm_robe_dungeonwarlock_a_01_huf.m2", }, { value = "helm_robe_dungeonwarlock_a_01_hum.m2", + text = "helm_robe_dungeonwarlock_a_01_hum.m2", fileId = "141622", text = "helm_robe_dungeonwarlock_a_01_hum.m2", }, { value = "helm_robe_dungeonwarlock_a_01_nif.m2", + text = "helm_robe_dungeonwarlock_a_01_nif.m2", fileId = "141623", text = "helm_robe_dungeonwarlock_a_01_nif.m2", }, { value = "helm_robe_dungeonwarlock_a_01_nim.m2", + text = "helm_robe_dungeonwarlock_a_01_nim.m2", fileId = "141624", text = "helm_robe_dungeonwarlock_a_01_nim.m2", }, { value = "helm_robe_dungeonwarlock_a_01_orf.m2", + text = "helm_robe_dungeonwarlock_a_01_orf.m2", fileId = "141625", text = "helm_robe_dungeonwarlock_a_01_orf.m2", }, { value = "helm_robe_dungeonwarlock_a_01_orm.m2", + text = "helm_robe_dungeonwarlock_a_01_orm.m2", fileId = "141626", text = "helm_robe_dungeonwarlock_a_01_orm.m2", }, { value = "helm_robe_dungeonwarlock_a_01_scf.m2", + text = "helm_robe_dungeonwarlock_a_01_scf.m2", fileId = "141627", text = "helm_robe_dungeonwarlock_a_01_scf.m2", }, { value = "helm_robe_dungeonwarlock_a_01_scm.m2", + text = "helm_robe_dungeonwarlock_a_01_scm.m2", fileId = "141628", text = "helm_robe_dungeonwarlock_a_01_scm.m2", }, { value = "helm_robe_dungeonwarlock_a_01_taf.m2", + text = "helm_robe_dungeonwarlock_a_01_taf.m2", fileId = "141629", text = "helm_robe_dungeonwarlock_a_01_taf.m2", }, { value = "helm_robe_dungeonwarlock_a_01_tam.m2", + text = "helm_robe_dungeonwarlock_a_01_tam.m2", fileId = "141630", text = "helm_robe_dungeonwarlock_a_01_tam.m2", }, { value = "helm_robe_dungeonwarlock_a_01_trf.m2", + text = "helm_robe_dungeonwarlock_a_01_trf.m2", fileId = "141631", text = "helm_robe_dungeonwarlock_a_01_trf.m2", }, { value = "helm_robe_dungeonwarlock_a_01_trm.m2", + text = "helm_robe_dungeonwarlock_a_01_trm.m2", fileId = "141632", text = "helm_robe_dungeonwarlock_a_01_trm.m2", }, { value = "helm_robe_holiday_summerfest_a_01_bef.m2", + text = "helm_robe_holiday_summerfest_a_01_bef.m2", fileId = "141667", text = "helm_robe_holiday_summerfest_a_01_bef.m2", }, { value = "helm_robe_holiday_summerfest_a_01_bem.m2", + text = "helm_robe_holiday_summerfest_a_01_bem.m2", fileId = "141668", text = "helm_robe_holiday_summerfest_a_01_bem.m2", }, { value = "helm_robe_holiday_summerfest_a_01_dwf.m2", + text = "helm_robe_holiday_summerfest_a_01_dwf.m2", fileId = "141671", text = "helm_robe_holiday_summerfest_a_01_dwf.m2", }, { value = "helm_robe_holiday_summerfest_a_01_dwm.m2", + text = "helm_robe_holiday_summerfest_a_01_dwm.m2", fileId = "141672", text = "helm_robe_holiday_summerfest_a_01_dwm.m2", }, { value = "helm_robe_holiday_summerfest_a_01_gnf.m2", + text = "helm_robe_holiday_summerfest_a_01_gnf.m2", fileId = "141673", text = "helm_robe_holiday_summerfest_a_01_gnf.m2", }, { value = "helm_robe_holiday_summerfest_a_01_gnm.m2", + text = "helm_robe_holiday_summerfest_a_01_gnm.m2", fileId = "141674", text = "helm_robe_holiday_summerfest_a_01_gnm.m2", }, { value = "helm_robe_holiday_summerfest_a_01_huf.m2", + text = "helm_robe_holiday_summerfest_a_01_huf.m2", fileId = "141677", text = "helm_robe_holiday_summerfest_a_01_huf.m2", }, { value = "helm_robe_holiday_summerfest_a_01_hum.m2", + text = "helm_robe_holiday_summerfest_a_01_hum.m2", fileId = "141678", text = "helm_robe_holiday_summerfest_a_01_hum.m2", }, { value = "helm_robe_holiday_summerfest_a_01_nif.m2", + text = "helm_robe_holiday_summerfest_a_01_nif.m2", fileId = "141679", text = "helm_robe_holiday_summerfest_a_01_nif.m2", }, { value = "helm_robe_holiday_summerfest_a_01_nim.m2", + text = "helm_robe_holiday_summerfest_a_01_nim.m2", fileId = "141680", text = "helm_robe_holiday_summerfest_a_01_nim.m2", }, { value = "helm_robe_holiday_summerfest_a_01_orf.m2", + text = "helm_robe_holiday_summerfest_a_01_orf.m2", fileId = "141681", text = "helm_robe_holiday_summerfest_a_01_orf.m2", }, { value = "helm_robe_holiday_summerfest_a_01_orm.m2", + text = "helm_robe_holiday_summerfest_a_01_orm.m2", fileId = "141682", text = "helm_robe_holiday_summerfest_a_01_orm.m2", }, { value = "helm_robe_holiday_summerfest_a_01_scf.m2", + text = "helm_robe_holiday_summerfest_a_01_scf.m2", fileId = "141683", text = "helm_robe_holiday_summerfest_a_01_scf.m2", }, { value = "helm_robe_holiday_summerfest_a_01_scm.m2", + text = "helm_robe_holiday_summerfest_a_01_scm.m2", fileId = "141684", text = "helm_robe_holiday_summerfest_a_01_scm.m2", }, { value = "helm_robe_holiday_summerfest_a_01_taf.m2", + text = "helm_robe_holiday_summerfest_a_01_taf.m2", fileId = "141685", text = "helm_robe_holiday_summerfest_a_01_taf.m2", }, { value = "helm_robe_holiday_summerfest_a_01_tam.m2", + text = "helm_robe_holiday_summerfest_a_01_tam.m2", fileId = "141686", text = "helm_robe_holiday_summerfest_a_01_tam.m2", }, { value = "helm_robe_holiday_summerfest_a_01_trf.m2", + text = "helm_robe_holiday_summerfest_a_01_trf.m2", fileId = "141687", text = "helm_robe_holiday_summerfest_a_01_trf.m2", }, { value = "helm_robe_holiday_summerfest_a_01_trm.m2", + text = "helm_robe_holiday_summerfest_a_01_trm.m2", fileId = "141688", text = "helm_robe_holiday_summerfest_a_01_trm.m2", }, { value = "helm_robe_holiday_summerfest_a_02_dwf.m2", + text = "helm_robe_holiday_summerfest_a_02_dwf.m2", fileId = "141691", text = "helm_robe_holiday_summerfest_a_02_dwf.m2", }, { value = "helm_robe_holiday_summerfest_a_02_dwm.m2", + text = "helm_robe_holiday_summerfest_a_02_dwm.m2", fileId = "141692", text = "helm_robe_holiday_summerfest_a_02_dwm.m2", }, { value = "helm_robe_holiday_summerfest_a_02_gnf.m2", + text = "helm_robe_holiday_summerfest_a_02_gnf.m2", fileId = "141693", text = "helm_robe_holiday_summerfest_a_02_gnf.m2", }, { value = "helm_robe_holiday_summerfest_a_02_gnm.m2", + text = "helm_robe_holiday_summerfest_a_02_gnm.m2", fileId = "141694", text = "helm_robe_holiday_summerfest_a_02_gnm.m2", }, { value = "helm_robe_holiday_summerfest_a_02_huf.m2", + text = "helm_robe_holiday_summerfest_a_02_huf.m2", fileId = "141696", text = "helm_robe_holiday_summerfest_a_02_huf.m2", }, { value = "helm_robe_holiday_summerfest_a_02_hum.m2", + text = "helm_robe_holiday_summerfest_a_02_hum.m2", fileId = "141697", text = "helm_robe_holiday_summerfest_a_02_hum.m2", }, { value = "helm_robe_holiday_summerfest_a_02_nif.m2", + text = "helm_robe_holiday_summerfest_a_02_nif.m2", fileId = "141698", text = "helm_robe_holiday_summerfest_a_02_nif.m2", }, { value = "helm_robe_holiday_summerfest_a_02_nim.m2", + text = "helm_robe_holiday_summerfest_a_02_nim.m2", fileId = "141699", text = "helm_robe_holiday_summerfest_a_02_nim.m2", }, { value = "helm_robe_holiday_summerfest_a_02_orf.m2", + text = "helm_robe_holiday_summerfest_a_02_orf.m2", fileId = "141700", text = "helm_robe_holiday_summerfest_a_02_orf.m2", }, { value = "helm_robe_holiday_summerfest_a_02_orm.m2", + text = "helm_robe_holiday_summerfest_a_02_orm.m2", fileId = "141701", text = "helm_robe_holiday_summerfest_a_02_orm.m2", }, { value = "helm_robe_holiday_summerfest_a_02_scf.m2", + text = "helm_robe_holiday_summerfest_a_02_scf.m2", fileId = "141702", text = "helm_robe_holiday_summerfest_a_02_scf.m2", }, { value = "helm_robe_holiday_summerfest_a_02_scm.m2", + text = "helm_robe_holiday_summerfest_a_02_scm.m2", fileId = "141703", text = "helm_robe_holiday_summerfest_a_02_scm.m2", }, { value = "helm_robe_holiday_summerfest_a_02_taf.m2", + text = "helm_robe_holiday_summerfest_a_02_taf.m2", fileId = "141704", text = "helm_robe_holiday_summerfest_a_02_taf.m2", }, { value = "helm_robe_holiday_summerfest_a_02_tam.m2", + text = "helm_robe_holiday_summerfest_a_02_tam.m2", fileId = "141705", text = "helm_robe_holiday_summerfest_a_02_tam.m2", }, { value = "helm_robe_holiday_summerfest_a_02_trf.m2", + text = "helm_robe_holiday_summerfest_a_02_trf.m2", fileId = "141706", text = "helm_robe_holiday_summerfest_a_02_trf.m2", }, { value = "helm_robe_holiday_summerfest_a_02_trm.m2", + text = "helm_robe_holiday_summerfest_a_02_trm.m2", fileId = "141707", text = "helm_robe_holiday_summerfest_a_02_trm.m2", }, { value = "helm_robe_horde_b_03earthenring_dwf.m2", + text = "helm_robe_horde_b_03earthenring_dwf.m2", fileId = "141714", text = "helm_robe_horde_b_03earthenring_dwf.m2", }, { value = "helm_robe_horde_b_03earthenring_dwm.m2", + text = "helm_robe_horde_b_03earthenring_dwm.m2", fileId = "141715", text = "helm_robe_horde_b_03earthenring_dwm.m2", }, { value = "helm_robe_horde_b_03earthenring_gnf.m2", + text = "helm_robe_horde_b_03earthenring_gnf.m2", fileId = "141716", text = "helm_robe_horde_b_03earthenring_gnf.m2", }, { value = "helm_robe_horde_b_03earthenring_gnm.m2", + text = "helm_robe_horde_b_03earthenring_gnm.m2", fileId = "141717", text = "helm_robe_horde_b_03earthenring_gnm.m2", }, { value = "helm_robe_horde_b_03earthenring_huf.m2", + text = "helm_robe_horde_b_03earthenring_huf.m2", fileId = "141720", text = "helm_robe_horde_b_03earthenring_huf.m2", }, { value = "helm_robe_horde_b_03earthenring_hum.m2", + text = "helm_robe_horde_b_03earthenring_hum.m2", fileId = "141721", text = "helm_robe_horde_b_03earthenring_hum.m2", }, { value = "helm_robe_horde_b_03earthenring_nif.m2", + text = "helm_robe_horde_b_03earthenring_nif.m2", fileId = "141722", text = "helm_robe_horde_b_03earthenring_nif.m2", }, { value = "helm_robe_horde_b_03earthenring_nim.m2", + text = "helm_robe_horde_b_03earthenring_nim.m2", fileId = "141723", text = "helm_robe_horde_b_03earthenring_nim.m2", }, { value = "helm_robe_horde_b_03earthenring_orf.m2", + text = "helm_robe_horde_b_03earthenring_orf.m2", fileId = "141724", text = "helm_robe_horde_b_03earthenring_orf.m2", }, { value = "helm_robe_horde_b_03earthenring_orm.m2", + text = "helm_robe_horde_b_03earthenring_orm.m2", fileId = "141725", text = "helm_robe_horde_b_03earthenring_orm.m2", }, { value = "helm_robe_horde_b_03earthenring_scf.m2", + text = "helm_robe_horde_b_03earthenring_scf.m2", fileId = "141726", text = "helm_robe_horde_b_03earthenring_scf.m2", }, { value = "helm_robe_horde_b_03earthenring_scm.m2", + text = "helm_robe_horde_b_03earthenring_scm.m2", fileId = "141727", text = "helm_robe_horde_b_03earthenring_scm.m2", }, { value = "helm_robe_horde_b_03earthenring_taf.m2", + text = "helm_robe_horde_b_03earthenring_taf.m2", fileId = "141728", text = "helm_robe_horde_b_03earthenring_taf.m2", }, { value = "helm_robe_horde_b_03earthenring_tam.m2", + text = "helm_robe_horde_b_03earthenring_tam.m2", fileId = "141729", text = "helm_robe_horde_b_03earthenring_tam.m2", }, { value = "helm_robe_horde_b_03earthenring_trf.m2", + text = "helm_robe_horde_b_03earthenring_trf.m2", fileId = "141730", text = "helm_robe_horde_b_03earthenring_trf.m2", }, { value = "helm_robe_horde_b_03earthenring_trm.m2", + text = "helm_robe_horde_b_03earthenring_trm.m2", fileId = "141731", text = "helm_robe_horde_b_03earthenring_trm.m2", }, { value = "helm_robe_pvpalliance_a_01_dwf.m2", + text = "helm_robe_pvpalliance_a_01_dwf.m2", fileId = "141841", text = "helm_robe_pvpalliance_a_01_dwf.m2", }, { value = "helm_robe_pvpalliance_a_01_dwm.m2", + text = "helm_robe_pvpalliance_a_01_dwm.m2", fileId = "141842", text = "helm_robe_pvpalliance_a_01_dwm.m2", }, { value = "helm_robe_pvpalliance_a_01_gnf.m2", + text = "helm_robe_pvpalliance_a_01_gnf.m2", fileId = "141843", text = "helm_robe_pvpalliance_a_01_gnf.m2", }, { value = "helm_robe_pvpalliance_a_01_gnm.m2", + text = "helm_robe_pvpalliance_a_01_gnm.m2", fileId = "141844", text = "helm_robe_pvpalliance_a_01_gnm.m2", }, { value = "helm_robe_pvpalliance_a_01_huf.m2", + text = "helm_robe_pvpalliance_a_01_huf.m2", fileId = "141847", text = "helm_robe_pvpalliance_a_01_huf.m2", }, { value = "helm_robe_pvpalliance_a_01_hum.m2", + text = "helm_robe_pvpalliance_a_01_hum.m2", fileId = "141848", text = "helm_robe_pvpalliance_a_01_hum.m2", }, { value = "helm_robe_pvpalliance_a_01_nif.m2", + text = "helm_robe_pvpalliance_a_01_nif.m2", fileId = "141849", text = "helm_robe_pvpalliance_a_01_nif.m2", }, { value = "helm_robe_pvpalliance_a_01_nim.m2", + text = "helm_robe_pvpalliance_a_01_nim.m2", fileId = "141850", text = "helm_robe_pvpalliance_a_01_nim.m2", }, { value = "helm_robe_pvpalliance_a_01_orf.m2", + text = "helm_robe_pvpalliance_a_01_orf.m2", fileId = "141851", text = "helm_robe_pvpalliance_a_01_orf.m2", }, { value = "helm_robe_pvpalliance_a_01_orm.m2", + text = "helm_robe_pvpalliance_a_01_orm.m2", fileId = "141852", text = "helm_robe_pvpalliance_a_01_orm.m2", }, { value = "helm_robe_pvpalliance_a_01_scf.m2", + text = "helm_robe_pvpalliance_a_01_scf.m2", fileId = "141853", text = "helm_robe_pvpalliance_a_01_scf.m2", }, { value = "helm_robe_pvpalliance_a_01_scm.m2", + text = "helm_robe_pvpalliance_a_01_scm.m2", fileId = "141854", text = "helm_robe_pvpalliance_a_01_scm.m2", }, { value = "helm_robe_pvpalliance_a_01_taf.m2", + text = "helm_robe_pvpalliance_a_01_taf.m2", fileId = "141855", text = "helm_robe_pvpalliance_a_01_taf.m2", }, { value = "helm_robe_pvpalliance_a_01_tam.m2", + text = "helm_robe_pvpalliance_a_01_tam.m2", fileId = "141856", text = "helm_robe_pvpalliance_a_01_tam.m2", }, { value = "helm_robe_pvpalliance_a_01_trf.m2", + text = "helm_robe_pvpalliance_a_01_trf.m2", fileId = "141857", text = "helm_robe_pvpalliance_a_01_trf.m2", }, { value = "helm_robe_pvpalliance_a_01_trm.m2", + text = "helm_robe_pvpalliance_a_01_trm.m2", fileId = "141858", text = "helm_robe_pvpalliance_a_01_trm.m2", }, { value = "helm_robe_pvpalliance_c_01_dwf.m2", + text = "helm_robe_pvpalliance_c_01_dwf.m2", fileId = "141870", text = "helm_robe_pvpalliance_c_01_dwf.m2", }, { value = "helm_robe_pvpalliance_c_01_dwm.m2", + text = "helm_robe_pvpalliance_c_01_dwm.m2", fileId = "141871", text = "helm_robe_pvpalliance_c_01_dwm.m2", }, { value = "helm_robe_pvpalliance_c_01_gnf.m2", + text = "helm_robe_pvpalliance_c_01_gnf.m2", fileId = "141872", text = "helm_robe_pvpalliance_c_01_gnf.m2", }, { value = "helm_robe_pvpalliance_c_01_gnm.m2", + text = "helm_robe_pvpalliance_c_01_gnm.m2", fileId = "141873", text = "helm_robe_pvpalliance_c_01_gnm.m2", }, { value = "helm_robe_pvpalliance_c_01_huf.m2", + text = "helm_robe_pvpalliance_c_01_huf.m2", fileId = "141874", text = "helm_robe_pvpalliance_c_01_huf.m2", }, { value = "helm_robe_pvpalliance_c_01_hum.m2", + text = "helm_robe_pvpalliance_c_01_hum.m2", fileId = "141875", text = "helm_robe_pvpalliance_c_01_hum.m2", }, { value = "helm_robe_pvpalliance_c_01_nif.m2", + text = "helm_robe_pvpalliance_c_01_nif.m2", fileId = "141876", text = "helm_robe_pvpalliance_c_01_nif.m2", }, { value = "helm_robe_pvpalliance_c_01_nim.m2", + text = "helm_robe_pvpalliance_c_01_nim.m2", fileId = "141877", text = "helm_robe_pvpalliance_c_01_nim.m2", }, { value = "helm_robe_pvpalliance_c_01_orf.m2", + text = "helm_robe_pvpalliance_c_01_orf.m2", fileId = "141878", text = "helm_robe_pvpalliance_c_01_orf.m2", }, { value = "helm_robe_pvpalliance_c_01_orm.m2", + text = "helm_robe_pvpalliance_c_01_orm.m2", fileId = "141879", text = "helm_robe_pvpalliance_c_01_orm.m2", }, { value = "helm_robe_pvpalliance_c_01_scf.m2", + text = "helm_robe_pvpalliance_c_01_scf.m2", fileId = "141880", text = "helm_robe_pvpalliance_c_01_scf.m2", }, { value = "helm_robe_pvpalliance_c_01_scm.m2", + text = "helm_robe_pvpalliance_c_01_scm.m2", fileId = "141881", text = "helm_robe_pvpalliance_c_01_scm.m2", }, { value = "helm_robe_pvpalliance_c_01_taf.m2", + text = "helm_robe_pvpalliance_c_01_taf.m2", fileId = "141882", text = "helm_robe_pvpalliance_c_01_taf.m2", }, { value = "helm_robe_pvpalliance_c_01_tam.m2", + text = "helm_robe_pvpalliance_c_01_tam.m2", fileId = "141883", text = "helm_robe_pvpalliance_c_01_tam.m2", }, { value = "helm_robe_pvpalliance_c_01_trf.m2", + text = "helm_robe_pvpalliance_c_01_trf.m2", fileId = "141884", text = "helm_robe_pvpalliance_c_01_trf.m2", }, { value = "helm_robe_pvpalliance_c_01_trm.m2", + text = "helm_robe_pvpalliance_c_01_trm.m2", fileId = "141885", text = "helm_robe_pvpalliance_c_01_trm.m2", }, { value = "helm_robe_pvphorde_a_01_dwf.m2", + text = "helm_robe_pvphorde_a_01_dwf.m2", fileId = "141893", text = "helm_robe_pvphorde_a_01_dwf.m2", }, { value = "helm_robe_pvphorde_a_01_dwm.m2", + text = "helm_robe_pvphorde_a_01_dwm.m2", fileId = "141894", text = "helm_robe_pvphorde_a_01_dwm.m2", }, { value = "helm_robe_pvphorde_a_01_gnf.m2", + text = "helm_robe_pvphorde_a_01_gnf.m2", fileId = "141895", text = "helm_robe_pvphorde_a_01_gnf.m2", }, { value = "helm_robe_pvphorde_a_01_gnm.m2", + text = "helm_robe_pvphorde_a_01_gnm.m2", fileId = "141896", text = "helm_robe_pvphorde_a_01_gnm.m2", }, { value = "helm_robe_pvphorde_a_01_huf.m2", + text = "helm_robe_pvphorde_a_01_huf.m2", fileId = "141898", text = "helm_robe_pvphorde_a_01_huf.m2", }, { value = "helm_robe_pvphorde_a_01_hum.m2", + text = "helm_robe_pvphorde_a_01_hum.m2", fileId = "141899", text = "helm_robe_pvphorde_a_01_hum.m2", }, { value = "helm_robe_pvphorde_a_01_nif.m2", + text = "helm_robe_pvphorde_a_01_nif.m2", fileId = "141900", text = "helm_robe_pvphorde_a_01_nif.m2", }, { value = "helm_robe_pvphorde_a_01_nim.m2", + text = "helm_robe_pvphorde_a_01_nim.m2", fileId = "141901", text = "helm_robe_pvphorde_a_01_nim.m2", }, { value = "helm_robe_pvphorde_a_01_orf.m2", + text = "helm_robe_pvphorde_a_01_orf.m2", fileId = "141902", text = "helm_robe_pvphorde_a_01_orf.m2", }, { value = "helm_robe_pvphorde_a_01_orm.m2", + text = "helm_robe_pvphorde_a_01_orm.m2", fileId = "141903", text = "helm_robe_pvphorde_a_01_orm.m2", }, { value = "helm_robe_pvphorde_a_01_scf.m2", + text = "helm_robe_pvphorde_a_01_scf.m2", fileId = "141904", text = "helm_robe_pvphorde_a_01_scf.m2", }, { value = "helm_robe_pvphorde_a_01_scm.m2", + text = "helm_robe_pvphorde_a_01_scm.m2", fileId = "141905", text = "helm_robe_pvphorde_a_01_scm.m2", }, { value = "helm_robe_pvphorde_a_01_taf.m2", + text = "helm_robe_pvphorde_a_01_taf.m2", fileId = "141906", text = "helm_robe_pvphorde_a_01_taf.m2", }, { value = "helm_robe_pvphorde_a_01_tam.m2", + text = "helm_robe_pvphorde_a_01_tam.m2", fileId = "141907", text = "helm_robe_pvphorde_a_01_tam.m2", }, { value = "helm_robe_pvphorde_a_01_trf.m2", + text = "helm_robe_pvphorde_a_01_trf.m2", fileId = "141908", text = "helm_robe_pvphorde_a_01_trf.m2", }, { value = "helm_robe_pvphorde_a_01_trm.m2", + text = "helm_robe_pvphorde_a_01_trm.m2", fileId = "141909", text = "helm_robe_pvphorde_a_01_trm.m2", }, { value = "helm_robe_pvphorde_c_01_dwf.m2", + text = "helm_robe_pvphorde_c_01_dwf.m2", fileId = "141922", text = "helm_robe_pvphorde_c_01_dwf.m2", }, { value = "helm_robe_pvphorde_c_01_dwm.m2", + text = "helm_robe_pvphorde_c_01_dwm.m2", fileId = "141923", text = "helm_robe_pvphorde_c_01_dwm.m2", }, { value = "helm_robe_pvphorde_c_01_gnf.m2", + text = "helm_robe_pvphorde_c_01_gnf.m2", fileId = "141924", text = "helm_robe_pvphorde_c_01_gnf.m2", }, { value = "helm_robe_pvphorde_c_01_gnm.m2", + text = "helm_robe_pvphorde_c_01_gnm.m2", fileId = "141925", text = "helm_robe_pvphorde_c_01_gnm.m2", }, { value = "helm_robe_pvphorde_c_01_huf.m2", + text = "helm_robe_pvphorde_c_01_huf.m2", fileId = "141927", text = "helm_robe_pvphorde_c_01_huf.m2", }, { value = "helm_robe_pvphorde_c_01_hum.m2", + text = "helm_robe_pvphorde_c_01_hum.m2", fileId = "141928", text = "helm_robe_pvphorde_c_01_hum.m2", }, { value = "helm_robe_pvphorde_c_01_nif.m2", + text = "helm_robe_pvphorde_c_01_nif.m2", fileId = "141929", text = "helm_robe_pvphorde_c_01_nif.m2", }, { value = "helm_robe_pvphorde_c_01_nim.m2", + text = "helm_robe_pvphorde_c_01_nim.m2", fileId = "141930", text = "helm_robe_pvphorde_c_01_nim.m2", }, { value = "helm_robe_pvphorde_c_01_orf.m2", + text = "helm_robe_pvphorde_c_01_orf.m2", fileId = "141931", text = "helm_robe_pvphorde_c_01_orf.m2", }, { value = "helm_robe_pvphorde_c_01_orm.m2", + text = "helm_robe_pvphorde_c_01_orm.m2", fileId = "141932", text = "helm_robe_pvphorde_c_01_orm.m2", }, { value = "helm_robe_pvphorde_c_01_scf.m2", + text = "helm_robe_pvphorde_c_01_scf.m2", fileId = "141933", text = "helm_robe_pvphorde_c_01_scf.m2", }, { value = "helm_robe_pvphorde_c_01_scm.m2", + text = "helm_robe_pvphorde_c_01_scm.m2", fileId = "141934", text = "helm_robe_pvphorde_c_01_scm.m2", }, { value = "helm_robe_pvphorde_c_01_taf.m2", + text = "helm_robe_pvphorde_c_01_taf.m2", fileId = "141935", text = "helm_robe_pvphorde_c_01_taf.m2", }, { value = "helm_robe_pvphorde_c_01_tam.m2", + text = "helm_robe_pvphorde_c_01_tam.m2", fileId = "141936", text = "helm_robe_pvphorde_c_01_tam.m2", }, { value = "helm_robe_pvphorde_c_01_trf.m2", + text = "helm_robe_pvphorde_c_01_trf.m2", fileId = "141937", text = "helm_robe_pvphorde_c_01_trf.m2", }, { value = "helm_robe_pvphorde_c_01_trm.m2", + text = "helm_robe_pvphorde_c_01_trm.m2", fileId = "141938", text = "helm_robe_pvphorde_c_01_trm.m2", }, { value = "helm_robe_raidmage_a_01_dwf.m2", + text = "helm_robe_raidmage_a_01_dwf.m2", fileId = "141952", text = "helm_robe_raidmage_a_01_dwf.m2", }, { value = "helm_robe_raidmage_a_01_dwm.m2", + text = "helm_robe_raidmage_a_01_dwm.m2", fileId = "141953", text = "helm_robe_raidmage_a_01_dwm.m2", }, { value = "helm_robe_raidmage_a_01_gnf.m2", + text = "helm_robe_raidmage_a_01_gnf.m2", fileId = "141954", text = "helm_robe_raidmage_a_01_gnf.m2", }, { value = "helm_robe_raidmage_a_01_gnm.m2", + text = "helm_robe_raidmage_a_01_gnm.m2", fileId = "141955", text = "helm_robe_raidmage_a_01_gnm.m2", }, { value = "helm_robe_raidmage_a_01_huf.m2", + text = "helm_robe_raidmage_a_01_huf.m2", fileId = "141958", text = "helm_robe_raidmage_a_01_huf.m2", }, { value = "helm_robe_raidmage_a_01_hum.m2", + text = "helm_robe_raidmage_a_01_hum.m2", fileId = "141959", text = "helm_robe_raidmage_a_01_hum.m2", }, { value = "helm_robe_raidmage_a_01_nif.m2", + text = "helm_robe_raidmage_a_01_nif.m2", fileId = "141960", text = "helm_robe_raidmage_a_01_nif.m2", }, { value = "helm_robe_raidmage_a_01_nim.m2", + text = "helm_robe_raidmage_a_01_nim.m2", fileId = "141961", text = "helm_robe_raidmage_a_01_nim.m2", }, { value = "helm_robe_raidmage_a_01_orf.m2", + text = "helm_robe_raidmage_a_01_orf.m2", fileId = "141962", text = "helm_robe_raidmage_a_01_orf.m2", }, { value = "helm_robe_raidmage_a_01_orm.m2", + text = "helm_robe_raidmage_a_01_orm.m2", fileId = "141963", text = "helm_robe_raidmage_a_01_orm.m2", }, { value = "helm_robe_raidmage_a_01_scf.m2", + text = "helm_robe_raidmage_a_01_scf.m2", fileId = "141964", text = "helm_robe_raidmage_a_01_scf.m2", }, { value = "helm_robe_raidmage_a_01_scm.m2", + text = "helm_robe_raidmage_a_01_scm.m2", fileId = "141965", text = "helm_robe_raidmage_a_01_scm.m2", }, { value = "helm_robe_raidmage_a_01_taf.m2", + text = "helm_robe_raidmage_a_01_taf.m2", fileId = "141966", text = "helm_robe_raidmage_a_01_taf.m2", }, { value = "helm_robe_raidmage_a_01_tam.m2", + text = "helm_robe_raidmage_a_01_tam.m2", fileId = "141967", text = "helm_robe_raidmage_a_01_tam.m2", }, { value = "helm_robe_raidmage_a_01_trf.m2", + text = "helm_robe_raidmage_a_01_trf.m2", fileId = "141968", text = "helm_robe_raidmage_a_01_trf.m2", }, { value = "helm_robe_raidmage_a_01_trm.m2", + text = "helm_robe_raidmage_a_01_trm.m2", fileId = "141969", text = "helm_robe_raidmage_a_01_trm.m2", }, { value = "helm_robe_raidmage_b_01_dwf.m2", + text = "helm_robe_raidmage_b_01_dwf.m2", fileId = "141978", text = "helm_robe_raidmage_b_01_dwf.m2", }, { value = "helm_robe_raidmage_b_01_dwm.m2", + text = "helm_robe_raidmage_b_01_dwm.m2", fileId = "141979", text = "helm_robe_raidmage_b_01_dwm.m2", }, { value = "helm_robe_raidmage_b_01_gnf.m2", + text = "helm_robe_raidmage_b_01_gnf.m2", fileId = "141980", text = "helm_robe_raidmage_b_01_gnf.m2", }, { value = "helm_robe_raidmage_b_01_gnm.m2", + text = "helm_robe_raidmage_b_01_gnm.m2", fileId = "141981", text = "helm_robe_raidmage_b_01_gnm.m2", }, { value = "helm_robe_raidmage_b_01_huf.m2", + text = "helm_robe_raidmage_b_01_huf.m2", fileId = "141984", text = "helm_robe_raidmage_b_01_huf.m2", }, { value = "helm_robe_raidmage_b_01_hum.m2", + text = "helm_robe_raidmage_b_01_hum.m2", fileId = "141985", text = "helm_robe_raidmage_b_01_hum.m2", }, { value = "helm_robe_raidmage_b_01_nif.m2", + text = "helm_robe_raidmage_b_01_nif.m2", fileId = "141986", text = "helm_robe_raidmage_b_01_nif.m2", }, { value = "helm_robe_raidmage_b_01_nim.m2", + text = "helm_robe_raidmage_b_01_nim.m2", fileId = "141987", text = "helm_robe_raidmage_b_01_nim.m2", }, { value = "helm_robe_raidmage_b_01_orf.m2", + text = "helm_robe_raidmage_b_01_orf.m2", fileId = "141988", text = "helm_robe_raidmage_b_01_orf.m2", }, { value = "helm_robe_raidmage_b_01_orm.m2", + text = "helm_robe_raidmage_b_01_orm.m2", fileId = "141989", text = "helm_robe_raidmage_b_01_orm.m2", }, { value = "helm_robe_raidmage_b_01_scf.m2", + text = "helm_robe_raidmage_b_01_scf.m2", fileId = "141990", text = "helm_robe_raidmage_b_01_scf.m2", }, { value = "helm_robe_raidmage_b_01_scm.m2", + text = "helm_robe_raidmage_b_01_scm.m2", fileId = "141991", text = "helm_robe_raidmage_b_01_scm.m2", }, { value = "helm_robe_raidmage_b_01_taf.m2", + text = "helm_robe_raidmage_b_01_taf.m2", fileId = "141992", text = "helm_robe_raidmage_b_01_taf.m2", }, { value = "helm_robe_raidmage_b_01_tam.m2", + text = "helm_robe_raidmage_b_01_tam.m2", fileId = "141993", text = "helm_robe_raidmage_b_01_tam.m2", }, { value = "helm_robe_raidmage_b_01_trf.m2", + text = "helm_robe_raidmage_b_01_trf.m2", fileId = "141994", text = "helm_robe_raidmage_b_01_trf.m2", }, { value = "helm_robe_raidmage_b_01_trm.m2", + text = "helm_robe_raidmage_b_01_trm.m2", fileId = "141995", text = "helm_robe_raidmage_b_01_trm.m2", }, { value = "helm_robe_raidmage_c_01_dwf.m2", + text = "helm_robe_raidmage_c_01_dwf.m2", fileId = "142005", text = "helm_robe_raidmage_c_01_dwf.m2", }, { value = "helm_robe_raidmage_c_01_dwm.m2", + text = "helm_robe_raidmage_c_01_dwm.m2", fileId = "142006", text = "helm_robe_raidmage_c_01_dwm.m2", }, { value = "helm_robe_raidmage_c_01_gnf.m2", + text = "helm_robe_raidmage_c_01_gnf.m2", fileId = "142007", text = "helm_robe_raidmage_c_01_gnf.m2", }, { value = "helm_robe_raidmage_c_01_gnm.m2", + text = "helm_robe_raidmage_c_01_gnm.m2", fileId = "142008", text = "helm_robe_raidmage_c_01_gnm.m2", }, { value = "helm_robe_raidmage_c_01_huf.m2", + text = "helm_robe_raidmage_c_01_huf.m2", fileId = "142011", text = "helm_robe_raidmage_c_01_huf.m2", }, { value = "helm_robe_raidmage_c_01_hum.m2", + text = "helm_robe_raidmage_c_01_hum.m2", fileId = "142012", text = "helm_robe_raidmage_c_01_hum.m2", }, { value = "helm_robe_raidmage_c_01_nif.m2", + text = "helm_robe_raidmage_c_01_nif.m2", fileId = "142013", text = "helm_robe_raidmage_c_01_nif.m2", }, { value = "helm_robe_raidmage_c_01_nim.m2", + text = "helm_robe_raidmage_c_01_nim.m2", fileId = "142014", text = "helm_robe_raidmage_c_01_nim.m2", }, { value = "helm_robe_raidmage_c_01_orf.m2", + text = "helm_robe_raidmage_c_01_orf.m2", fileId = "142015", text = "helm_robe_raidmage_c_01_orf.m2", }, { value = "helm_robe_raidmage_c_01_orm.m2", + text = "helm_robe_raidmage_c_01_orm.m2", fileId = "142016", text = "helm_robe_raidmage_c_01_orm.m2", }, { value = "helm_robe_raidmage_c_01_scf.m2", + text = "helm_robe_raidmage_c_01_scf.m2", fileId = "142017", text = "helm_robe_raidmage_c_01_scf.m2", }, { value = "helm_robe_raidmage_c_01_scm.m2", + text = "helm_robe_raidmage_c_01_scm.m2", fileId = "142018", text = "helm_robe_raidmage_c_01_scm.m2", }, { value = "helm_robe_raidmage_c_01_taf.m2", + text = "helm_robe_raidmage_c_01_taf.m2", fileId = "142019", text = "helm_robe_raidmage_c_01_taf.m2", }, { value = "helm_robe_raidmage_c_01_tam.m2", + text = "helm_robe_raidmage_c_01_tam.m2", fileId = "142020", text = "helm_robe_raidmage_c_01_tam.m2", }, { value = "helm_robe_raidmage_c_01_trf.m2", + text = "helm_robe_raidmage_c_01_trf.m2", fileId = "142021", text = "helm_robe_raidmage_c_01_trf.m2", }, { value = "helm_robe_raidmage_c_01_trm.m2", + text = "helm_robe_raidmage_c_01_trm.m2", fileId = "142022", text = "helm_robe_raidmage_c_01_trm.m2", }, { value = "helm_robe_raidpriest_a_01_dwf.m2", + text = "helm_robe_raidpriest_a_01_dwf.m2", fileId = "142130", text = "helm_robe_raidpriest_a_01_dwf.m2", }, { value = "helm_robe_raidpriest_a_01_dwm.m2", + text = "helm_robe_raidpriest_a_01_dwm.m2", fileId = "142131", text = "helm_robe_raidpriest_a_01_dwm.m2", }, { value = "helm_robe_raidpriest_a_01_gnf.m2", + text = "helm_robe_raidpriest_a_01_gnf.m2", fileId = "142132", text = "helm_robe_raidpriest_a_01_gnf.m2", }, { value = "helm_robe_raidpriest_a_01_gnm.m2", + text = "helm_robe_raidpriest_a_01_gnm.m2", fileId = "142133", text = "helm_robe_raidpriest_a_01_gnm.m2", }, { value = "helm_robe_raidpriest_a_01_huf.m2", + text = "helm_robe_raidpriest_a_01_huf.m2", fileId = "142136", text = "helm_robe_raidpriest_a_01_huf.m2", }, { value = "helm_robe_raidpriest_a_01_hum.m2", + text = "helm_robe_raidpriest_a_01_hum.m2", fileId = "142137", text = "helm_robe_raidpriest_a_01_hum.m2", }, { value = "helm_robe_raidpriest_a_01_nif.m2", + text = "helm_robe_raidpriest_a_01_nif.m2", fileId = "142138", text = "helm_robe_raidpriest_a_01_nif.m2", }, { value = "helm_robe_raidpriest_a_01_nim.m2", + text = "helm_robe_raidpriest_a_01_nim.m2", fileId = "142139", text = "helm_robe_raidpriest_a_01_nim.m2", }, { value = "helm_robe_raidpriest_a_01_orf.m2", + text = "helm_robe_raidpriest_a_01_orf.m2", fileId = "142140", text = "helm_robe_raidpriest_a_01_orf.m2", }, { value = "helm_robe_raidpriest_a_01_orm.m2", + text = "helm_robe_raidpriest_a_01_orm.m2", fileId = "142141", text = "helm_robe_raidpriest_a_01_orm.m2", }, { value = "helm_robe_raidpriest_a_01_scf.m2", + text = "helm_robe_raidpriest_a_01_scf.m2", fileId = "142142", text = "helm_robe_raidpriest_a_01_scf.m2", }, { value = "helm_robe_raidpriest_a_01_scm.m2", + text = "helm_robe_raidpriest_a_01_scm.m2", fileId = "142143", text = "helm_robe_raidpriest_a_01_scm.m2", }, { value = "helm_robe_raidpriest_a_01_taf.m2", + text = "helm_robe_raidpriest_a_01_taf.m2", fileId = "142144", text = "helm_robe_raidpriest_a_01_taf.m2", }, { value = "helm_robe_raidpriest_a_01_tam.m2", + text = "helm_robe_raidpriest_a_01_tam.m2", fileId = "142145", text = "helm_robe_raidpriest_a_01_tam.m2", }, { value = "helm_robe_raidpriest_a_01_trf.m2", + text = "helm_robe_raidpriest_a_01_trf.m2", fileId = "142146", text = "helm_robe_raidpriest_a_01_trf.m2", }, { value = "helm_robe_raidpriest_a_01_trm.m2", + text = "helm_robe_raidpriest_a_01_trm.m2", fileId = "142147", text = "helm_robe_raidpriest_a_01_trm.m2", }, { value = "helm_robe_raidpriest_b_01_dwf.m2", + text = "helm_robe_raidpriest_b_01_dwf.m2", fileId = "142157", text = "helm_robe_raidpriest_b_01_dwf.m2", }, { value = "helm_robe_raidpriest_b_01_dwm.m2", + text = "helm_robe_raidpriest_b_01_dwm.m2", fileId = "142158", text = "helm_robe_raidpriest_b_01_dwm.m2", }, { value = "helm_robe_raidpriest_b_01_gnf.m2", + text = "helm_robe_raidpriest_b_01_gnf.m2", fileId = "142159", text = "helm_robe_raidpriest_b_01_gnf.m2", }, { value = "helm_robe_raidpriest_b_01_gnm.m2", + text = "helm_robe_raidpriest_b_01_gnm.m2", fileId = "142160", text = "helm_robe_raidpriest_b_01_gnm.m2", }, { value = "helm_robe_raidpriest_b_01_huf.m2", + text = "helm_robe_raidpriest_b_01_huf.m2", fileId = "142163", text = "helm_robe_raidpriest_b_01_huf.m2", }, { value = "helm_robe_raidpriest_b_01_hum.m2", + text = "helm_robe_raidpriest_b_01_hum.m2", fileId = "142164", text = "helm_robe_raidpriest_b_01_hum.m2", }, { value = "helm_robe_raidpriest_b_01_nif.m2", + text = "helm_robe_raidpriest_b_01_nif.m2", fileId = "142165", text = "helm_robe_raidpriest_b_01_nif.m2", }, { value = "helm_robe_raidpriest_b_01_nim.m2", + text = "helm_robe_raidpriest_b_01_nim.m2", fileId = "142166", text = "helm_robe_raidpriest_b_01_nim.m2", }, { value = "helm_robe_raidpriest_b_01_orf.m2", + text = "helm_robe_raidpriest_b_01_orf.m2", fileId = "142167", text = "helm_robe_raidpriest_b_01_orf.m2", }, { value = "helm_robe_raidpriest_b_01_orm.m2", + text = "helm_robe_raidpriest_b_01_orm.m2", fileId = "142168", text = "helm_robe_raidpriest_b_01_orm.m2", }, { value = "helm_robe_raidpriest_b_01_scf.m2", + text = "helm_robe_raidpriest_b_01_scf.m2", fileId = "142169", text = "helm_robe_raidpriest_b_01_scf.m2", }, { value = "helm_robe_raidpriest_b_01_scm.m2", + text = "helm_robe_raidpriest_b_01_scm.m2", fileId = "142170", text = "helm_robe_raidpriest_b_01_scm.m2", }, { value = "helm_robe_raidpriest_b_01_taf.m2", + text = "helm_robe_raidpriest_b_01_taf.m2", fileId = "142171", text = "helm_robe_raidpriest_b_01_taf.m2", }, { value = "helm_robe_raidpriest_b_01_tam.m2", + text = "helm_robe_raidpriest_b_01_tam.m2", fileId = "142172", text = "helm_robe_raidpriest_b_01_tam.m2", }, { value = "helm_robe_raidpriest_b_01_trf.m2", + text = "helm_robe_raidpriest_b_01_trf.m2", fileId = "142173", text = "helm_robe_raidpriest_b_01_trf.m2", }, { value = "helm_robe_raidpriest_b_01_trm.m2", + text = "helm_robe_raidpriest_b_01_trm.m2", fileId = "142174", text = "helm_robe_raidpriest_b_01_trm.m2", }, { value = "helm_robe_raidpriest_c_01_dwf.m2", + text = "helm_robe_raidpriest_c_01_dwf.m2", fileId = "142182", text = "helm_robe_raidpriest_c_01_dwf.m2", }, { value = "helm_robe_raidpriest_c_01_dwm.m2", + text = "helm_robe_raidpriest_c_01_dwm.m2", fileId = "142183", text = "helm_robe_raidpriest_c_01_dwm.m2", }, { value = "helm_robe_raidpriest_c_01_gnf.m2", + text = "helm_robe_raidpriest_c_01_gnf.m2", fileId = "142184", text = "helm_robe_raidpriest_c_01_gnf.m2", }, { value = "helm_robe_raidpriest_c_01_gnm.m2", + text = "helm_robe_raidpriest_c_01_gnm.m2", fileId = "142185", text = "helm_robe_raidpriest_c_01_gnm.m2", }, { value = "helm_robe_raidpriest_c_01_huf.m2", + text = "helm_robe_raidpriest_c_01_huf.m2", fileId = "142188", text = "helm_robe_raidpriest_c_01_huf.m2", }, { value = "helm_robe_raidpriest_c_01_hum.m2", + text = "helm_robe_raidpriest_c_01_hum.m2", fileId = "142189", text = "helm_robe_raidpriest_c_01_hum.m2", }, { value = "helm_robe_raidpriest_c_01_nif.m2", + text = "helm_robe_raidpriest_c_01_nif.m2", fileId = "142190", text = "helm_robe_raidpriest_c_01_nif.m2", }, { value = "helm_robe_raidpriest_c_01_nim.m2", + text = "helm_robe_raidpriest_c_01_nim.m2", fileId = "142191", text = "helm_robe_raidpriest_c_01_nim.m2", }, { value = "helm_robe_raidpriest_c_01_orf.m2", + text = "helm_robe_raidpriest_c_01_orf.m2", fileId = "142192", text = "helm_robe_raidpriest_c_01_orf.m2", }, { value = "helm_robe_raidpriest_c_01_orm.m2", + text = "helm_robe_raidpriest_c_01_orm.m2", fileId = "142193", text = "helm_robe_raidpriest_c_01_orm.m2", }, { value = "helm_robe_raidpriest_c_01_scf.m2", + text = "helm_robe_raidpriest_c_01_scf.m2", fileId = "142194", text = "helm_robe_raidpriest_c_01_scf.m2", }, { value = "helm_robe_raidpriest_c_01_scm.m2", + text = "helm_robe_raidpriest_c_01_scm.m2", fileId = "142195", text = "helm_robe_raidpriest_c_01_scm.m2", }, { value = "helm_robe_raidpriest_c_01_taf.m2", + text = "helm_robe_raidpriest_c_01_taf.m2", fileId = "142196", text = "helm_robe_raidpriest_c_01_taf.m2", }, { value = "helm_robe_raidpriest_c_01_tam.m2", + text = "helm_robe_raidpriest_c_01_tam.m2", fileId = "142197", text = "helm_robe_raidpriest_c_01_tam.m2", }, { value = "helm_robe_raidpriest_c_01_trf.m2", + text = "helm_robe_raidpriest_c_01_trf.m2", fileId = "142198", text = "helm_robe_raidpriest_c_01_trf.m2", }, { value = "helm_robe_raidpriest_c_01_trm.m2", + text = "helm_robe_raidpriest_c_01_trm.m2", fileId = "142199", text = "helm_robe_raidpriest_c_01_trm.m2", }, { value = "helm_robe_raidshaman_c_01_dwf.m2", + text = "helm_robe_raidshaman_c_01_dwf.m2", fileId = "142304", text = "helm_robe_raidshaman_c_01_dwf.m2", }, { value = "helm_robe_raidshaman_c_01_dwm.m2", + text = "helm_robe_raidshaman_c_01_dwm.m2", fileId = "142305", text = "helm_robe_raidshaman_c_01_dwm.m2", }, { value = "helm_robe_raidshaman_c_01_gnf.m2", + text = "helm_robe_raidshaman_c_01_gnf.m2", fileId = "142306", text = "helm_robe_raidshaman_c_01_gnf.m2", }, { value = "helm_robe_raidshaman_c_01_gnm.m2", + text = "helm_robe_raidshaman_c_01_gnm.m2", fileId = "142307", text = "helm_robe_raidshaman_c_01_gnm.m2", }, { value = "helm_robe_raidshaman_c_01_huf.m2", + text = "helm_robe_raidshaman_c_01_huf.m2", fileId = "142310", text = "helm_robe_raidshaman_c_01_huf.m2", }, { value = "helm_robe_raidshaman_c_01_hum.m2", + text = "helm_robe_raidshaman_c_01_hum.m2", fileId = "142311", text = "helm_robe_raidshaman_c_01_hum.m2", }, { value = "helm_robe_raidshaman_c_01_nif.m2", + text = "helm_robe_raidshaman_c_01_nif.m2", fileId = "142312", text = "helm_robe_raidshaman_c_01_nif.m2", }, { value = "helm_robe_raidshaman_c_01_nim.m2", + text = "helm_robe_raidshaman_c_01_nim.m2", fileId = "142313", text = "helm_robe_raidshaman_c_01_nim.m2", }, { value = "helm_robe_raidshaman_c_01_orf.m2", + text = "helm_robe_raidshaman_c_01_orf.m2", fileId = "142314", text = "helm_robe_raidshaman_c_01_orf.m2", }, { value = "helm_robe_raidshaman_c_01_orm.m2", + text = "helm_robe_raidshaman_c_01_orm.m2", fileId = "142315", text = "helm_robe_raidshaman_c_01_orm.m2", }, { value = "helm_robe_raidshaman_c_01_scf.m2", + text = "helm_robe_raidshaman_c_01_scf.m2", fileId = "142316", text = "helm_robe_raidshaman_c_01_scf.m2", }, { value = "helm_robe_raidshaman_c_01_scm.m2", + text = "helm_robe_raidshaman_c_01_scm.m2", fileId = "142317", text = "helm_robe_raidshaman_c_01_scm.m2", }, { value = "helm_robe_raidshaman_c_01_taf.m2", + text = "helm_robe_raidshaman_c_01_taf.m2", fileId = "142318", text = "helm_robe_raidshaman_c_01_taf.m2", }, { value = "helm_robe_raidshaman_c_01_tam.m2", + text = "helm_robe_raidshaman_c_01_tam.m2", fileId = "142319", text = "helm_robe_raidshaman_c_01_tam.m2", }, { value = "helm_robe_raidshaman_c_01_trf.m2", + text = "helm_robe_raidshaman_c_01_trf.m2", fileId = "142320", text = "helm_robe_raidshaman_c_01_trf.m2", }, { value = "helm_robe_raidshaman_c_01_trm.m2", + text = "helm_robe_raidshaman_c_01_trm.m2", fileId = "142321", text = "helm_robe_raidshaman_c_01_trm.m2", }, { value = "helm_robe_raidwarlock_a_01_dwf.m2", + text = "helm_robe_raidwarlock_a_01_dwf.m2", fileId = "142326", text = "helm_robe_raidwarlock_a_01_dwf.m2", }, { value = "helm_robe_raidwarlock_a_01_dwm.m2", + text = "helm_robe_raidwarlock_a_01_dwm.m2", fileId = "142327", text = "helm_robe_raidwarlock_a_01_dwm.m2", }, { value = "helm_robe_raidwarlock_a_01_gnf.m2", + text = "helm_robe_raidwarlock_a_01_gnf.m2", fileId = "142328", text = "helm_robe_raidwarlock_a_01_gnf.m2", }, { value = "helm_robe_raidwarlock_a_01_gnm.m2", + text = "helm_robe_raidwarlock_a_01_gnm.m2", fileId = "142329", text = "helm_robe_raidwarlock_a_01_gnm.m2", }, { value = "helm_robe_raidwarlock_a_01_huf.m2", + text = "helm_robe_raidwarlock_a_01_huf.m2", fileId = "142332", text = "helm_robe_raidwarlock_a_01_huf.m2", }, { value = "helm_robe_raidwarlock_a_01_hum.m2", + text = "helm_robe_raidwarlock_a_01_hum.m2", fileId = "142333", text = "helm_robe_raidwarlock_a_01_hum.m2", }, { value = "helm_robe_raidwarlock_a_01_nif.m2", + text = "helm_robe_raidwarlock_a_01_nif.m2", fileId = "142334", text = "helm_robe_raidwarlock_a_01_nif.m2", }, { value = "helm_robe_raidwarlock_a_01_nim.m2", + text = "helm_robe_raidwarlock_a_01_nim.m2", fileId = "142335", text = "helm_robe_raidwarlock_a_01_nim.m2", }, { value = "helm_robe_raidwarlock_a_01_orf.m2", + text = "helm_robe_raidwarlock_a_01_orf.m2", fileId = "142336", text = "helm_robe_raidwarlock_a_01_orf.m2", }, { value = "helm_robe_raidwarlock_a_01_orm.m2", + text = "helm_robe_raidwarlock_a_01_orm.m2", fileId = "142337", text = "helm_robe_raidwarlock_a_01_orm.m2", }, { value = "helm_robe_raidwarlock_a_01_scf.m2", + text = "helm_robe_raidwarlock_a_01_scf.m2", fileId = "142338", text = "helm_robe_raidwarlock_a_01_scf.m2", }, { value = "helm_robe_raidwarlock_a_01_scm.m2", + text = "helm_robe_raidwarlock_a_01_scm.m2", fileId = "142339", text = "helm_robe_raidwarlock_a_01_scm.m2", }, { value = "helm_robe_raidwarlock_a_01_taf.m2", + text = "helm_robe_raidwarlock_a_01_taf.m2", fileId = "142340", text = "helm_robe_raidwarlock_a_01_taf.m2", }, { value = "helm_robe_raidwarlock_a_01_tam.m2", + text = "helm_robe_raidwarlock_a_01_tam.m2", fileId = "142341", text = "helm_robe_raidwarlock_a_01_tam.m2", }, { value = "helm_robe_raidwarlock_a_01_trf.m2", + text = "helm_robe_raidwarlock_a_01_trf.m2", fileId = "142342", text = "helm_robe_raidwarlock_a_01_trf.m2", }, { value = "helm_robe_raidwarlock_a_01_trm.m2", + text = "helm_robe_raidwarlock_a_01_trm.m2", fileId = "142343", text = "helm_robe_raidwarlock_a_01_trm.m2", }, { value = "helm_robe_raidwarlock_b_01_dwf.m2", + text = "helm_robe_raidwarlock_b_01_dwf.m2", fileId = "142353", text = "helm_robe_raidwarlock_b_01_dwf.m2", }, { value = "helm_robe_raidwarlock_b_01_dwm.m2", + text = "helm_robe_raidwarlock_b_01_dwm.m2", fileId = "142354", text = "helm_robe_raidwarlock_b_01_dwm.m2", }, { value = "helm_robe_raidwarlock_b_01_gnf.m2", + text = "helm_robe_raidwarlock_b_01_gnf.m2", fileId = "142355", text = "helm_robe_raidwarlock_b_01_gnf.m2", }, { value = "helm_robe_raidwarlock_b_01_gnm.m2", + text = "helm_robe_raidwarlock_b_01_gnm.m2", fileId = "142356", text = "helm_robe_raidwarlock_b_01_gnm.m2", }, { value = "helm_robe_raidwarlock_b_01_huf.m2", + text = "helm_robe_raidwarlock_b_01_huf.m2", fileId = "142359", text = "helm_robe_raidwarlock_b_01_huf.m2", }, { value = "helm_robe_raidwarlock_b_01_hum.m2", + text = "helm_robe_raidwarlock_b_01_hum.m2", fileId = "142360", text = "helm_robe_raidwarlock_b_01_hum.m2", }, { value = "helm_robe_raidwarlock_b_01_nif.m2", + text = "helm_robe_raidwarlock_b_01_nif.m2", fileId = "142361", text = "helm_robe_raidwarlock_b_01_nif.m2", }, { value = "helm_robe_raidwarlock_b_01_nim.m2", + text = "helm_robe_raidwarlock_b_01_nim.m2", fileId = "142362", text = "helm_robe_raidwarlock_b_01_nim.m2", }, { value = "helm_robe_raidwarlock_b_01_orf.m2", + text = "helm_robe_raidwarlock_b_01_orf.m2", fileId = "142363", text = "helm_robe_raidwarlock_b_01_orf.m2", }, { value = "helm_robe_raidwarlock_b_01_orm.m2", + text = "helm_robe_raidwarlock_b_01_orm.m2", fileId = "142364", text = "helm_robe_raidwarlock_b_01_orm.m2", }, { value = "helm_robe_raidwarlock_b_01_scf.m2", + text = "helm_robe_raidwarlock_b_01_scf.m2", fileId = "142365", text = "helm_robe_raidwarlock_b_01_scf.m2", }, { value = "helm_robe_raidwarlock_b_01_scm.m2", + text = "helm_robe_raidwarlock_b_01_scm.m2", fileId = "142366", text = "helm_robe_raidwarlock_b_01_scm.m2", }, { value = "helm_robe_raidwarlock_b_01_taf.m2", + text = "helm_robe_raidwarlock_b_01_taf.m2", fileId = "142367", text = "helm_robe_raidwarlock_b_01_taf.m2", }, { value = "helm_robe_raidwarlock_b_01_tam.m2", + text = "helm_robe_raidwarlock_b_01_tam.m2", fileId = "142368", text = "helm_robe_raidwarlock_b_01_tam.m2", }, { value = "helm_robe_raidwarlock_b_01_trf.m2", + text = "helm_robe_raidwarlock_b_01_trf.m2", fileId = "142369", text = "helm_robe_raidwarlock_b_01_trf.m2", }, { value = "helm_robe_raidwarlock_b_01_trm.m2", + text = "helm_robe_raidwarlock_b_01_trm.m2", fileId = "142370", text = "helm_robe_raidwarlock_b_01_trm.m2", }, { value = "helm_robe_raidwarlock_c_01_dwf.m2", + text = "helm_robe_raidwarlock_c_01_dwf.m2", fileId = "142379", text = "helm_robe_raidwarlock_c_01_dwf.m2", }, { value = "helm_robe_raidwarlock_c_01_dwm.m2", + text = "helm_robe_raidwarlock_c_01_dwm.m2", fileId = "142380", text = "helm_robe_raidwarlock_c_01_dwm.m2", }, { value = "helm_robe_raidwarlock_c_01_gnf.m2", + text = "helm_robe_raidwarlock_c_01_gnf.m2", fileId = "142381", text = "helm_robe_raidwarlock_c_01_gnf.m2", }, { value = "helm_robe_raidwarlock_c_01_gnm.m2", + text = "helm_robe_raidwarlock_c_01_gnm.m2", fileId = "142382", text = "helm_robe_raidwarlock_c_01_gnm.m2", }, { value = "helm_robe_raidwarlock_c_01_huf.m2", + text = "helm_robe_raidwarlock_c_01_huf.m2", fileId = "142385", text = "helm_robe_raidwarlock_c_01_huf.m2", }, { value = "helm_robe_raidwarlock_c_01_hum.m2", + text = "helm_robe_raidwarlock_c_01_hum.m2", fileId = "142386", text = "helm_robe_raidwarlock_c_01_hum.m2", }, { value = "helm_robe_raidwarlock_c_01_nif.m2", + text = "helm_robe_raidwarlock_c_01_nif.m2", fileId = "142387", text = "helm_robe_raidwarlock_c_01_nif.m2", }, { value = "helm_robe_raidwarlock_c_01_nim.m2", + text = "helm_robe_raidwarlock_c_01_nim.m2", fileId = "142388", text = "helm_robe_raidwarlock_c_01_nim.m2", }, { value = "helm_robe_raidwarlock_c_01_orf.m2", + text = "helm_robe_raidwarlock_c_01_orf.m2", fileId = "142389", text = "helm_robe_raidwarlock_c_01_orf.m2", }, { value = "helm_robe_raidwarlock_c_01_orm.m2", + text = "helm_robe_raidwarlock_c_01_orm.m2", fileId = "142390", text = "helm_robe_raidwarlock_c_01_orm.m2", }, { value = "helm_robe_raidwarlock_c_01_scf.m2", + text = "helm_robe_raidwarlock_c_01_scf.m2", fileId = "142391", text = "helm_robe_raidwarlock_c_01_scf.m2", }, { value = "helm_robe_raidwarlock_c_01_scm.m2", + text = "helm_robe_raidwarlock_c_01_scm.m2", fileId = "142392", text = "helm_robe_raidwarlock_c_01_scm.m2", }, { value = "helm_robe_raidwarlock_c_01_taf.m2", + text = "helm_robe_raidwarlock_c_01_taf.m2", fileId = "142393", text = "helm_robe_raidwarlock_c_01_taf.m2", }, { value = "helm_robe_raidwarlock_c_01_tam.m2", + text = "helm_robe_raidwarlock_c_01_tam.m2", fileId = "142394", text = "helm_robe_raidwarlock_c_01_tam.m2", }, { value = "helm_robe_raidwarlock_c_01_trf.m2", + text = "helm_robe_raidwarlock_c_01_trf.m2", fileId = "142395", text = "helm_robe_raidwarlock_c_01_trf.m2", }, { value = "helm_robe_raidwarlock_c_01_trm.m2", + text = "helm_robe_raidwarlock_c_01_trm.m2", fileId = "142396", text = "helm_robe_raidwarlock_c_01_trm.m2", }, { value = "helmet_robe_d_04_dwf.m2", + text = "helmet_robe_d_04_dwf.m2", fileId = "142552", text = "helmet_robe_d_04_dwf.m2", }, { value = "helmet_robe_d_04_dwm.m2", + text = "helmet_robe_d_04_dwm.m2", fileId = "142553", text = "helmet_robe_d_04_dwm.m2", }, { value = "helmet_robe_d_04_gnf.m2", + text = "helmet_robe_d_04_gnf.m2", fileId = "142554", text = "helmet_robe_d_04_gnf.m2", }, { value = "helmet_robe_d_04_gnm.m2", + text = "helmet_robe_d_04_gnm.m2", fileId = "142555", text = "helmet_robe_d_04_gnm.m2", }, { value = "helmet_robe_d_04_huf.m2", + text = "helmet_robe_d_04_huf.m2", fileId = "142556", text = "helmet_robe_d_04_huf.m2", }, { value = "helmet_robe_d_04_hum.m2", + text = "helmet_robe_d_04_hum.m2", fileId = "142557", text = "helmet_robe_d_04_hum.m2", }, { value = "helmet_robe_d_04_nif.m2", + text = "helmet_robe_d_04_nif.m2", fileId = "142558", text = "helmet_robe_d_04_nif.m2", }, { value = "helmet_robe_d_04_nim.m2", + text = "helmet_robe_d_04_nim.m2", fileId = "142559", text = "helmet_robe_d_04_nim.m2", }, { value = "helmet_robe_d_04_orf.m2", + text = "helmet_robe_d_04_orf.m2", fileId = "142560", text = "helmet_robe_d_04_orf.m2", }, { value = "helmet_robe_d_04_orm.m2", + text = "helmet_robe_d_04_orm.m2", fileId = "142561", text = "helmet_robe_d_04_orm.m2", }, { value = "helmet_robe_d_04_scf.m2", + text = "helmet_robe_d_04_scf.m2", fileId = "142562", text = "helmet_robe_d_04_scf.m2", }, { value = "helmet_robe_d_04_scm.m2", + text = "helmet_robe_d_04_scm.m2", fileId = "142563", text = "helmet_robe_d_04_scm.m2", }, { value = "helmet_robe_d_04_taf.m2", + text = "helmet_robe_d_04_taf.m2", fileId = "142564", text = "helmet_robe_d_04_taf.m2", }, { value = "helmet_robe_d_04_tam.m2", + text = "helmet_robe_d_04_tam.m2", fileId = "142565", text = "helmet_robe_d_04_tam.m2", }, { value = "helmet_robe_d_04_trf.m2", + text = "helmet_robe_d_04_trf.m2", fileId = "142566", text = "helmet_robe_d_04_trf.m2", }, { value = "helmet_robe_d_04_trm.m2", + text = "helmet_robe_d_04_trm.m2", fileId = "142567", text = "helmet_robe_d_04_trm.m2", }, @@ -14087,24 +16828,29 @@ WeakAuras.ModelPaths = { }, { value = "pouch", + text = "pouch", children = { { value = "pouch_alliance_a_01.m2", + text = "pouch_alliance_a_01.m2", fileId = "2351788", text = "pouch_alliance_a_01.m2", }, { value = "pouch_alliance_a_02.m2", + text = "pouch_alliance_a_02.m2", fileId = "2351697", text = "pouch_alliance_a_02.m2", }, { value = "pouch_horde_a_01.m2", + text = "pouch_horde_a_01.m2", fileId = "2351743", text = "pouch_horde_a_01.m2", }, { value = "pouch_horde_a_02.m2", + text = "pouch_horde_a_02.m2", fileId = "2351703", text = "pouch_horde_a_02.m2", }, @@ -14113,19 +16859,23 @@ WeakAuras.ModelPaths = { }, { value = "quiver", + text = "quiver", children = { { value = "quiver_a.m2", + text = "quiver_a.m2", fileId = "142631", text = "quiver_a.m2", }, { value = "quiver_bolt_a_01.m2", + text = "quiver_bolt_a_01.m2", fileId = "142667", text = "quiver_bolt_a_01.m2", }, { value = "quiver_horde_a_01.m2", + text = "quiver_horde_a_01.m2", fileId = "142693", text = "quiver_horde_a_01.m2", }, @@ -14134,234 +16884,281 @@ WeakAuras.ModelPaths = { }, { value = "shield", + text = "shield", children = { { value = "buckler_damaged_a_01.m2", + text = "buckler_damaged_a_01.m2", fileId = "142733", text = "buckler_damaged_a_01.m2", }, { value = "buckler_damaged_a_02.m2", + text = "buckler_damaged_a_02.m2", fileId = "142737", text = "buckler_damaged_a_02.m2", }, { value = "buckler_oval_a_01.m2", + text = "buckler_oval_a_01.m2", fileId = "142741", text = "buckler_oval_a_01.m2", }, { value = "buckler_round_a_01.m2", + text = "buckler_round_a_01.m2", fileId = "142745", text = "buckler_round_a_01.m2", }, { value = "shield_ahnqiraj_d_01.m2", + text = "shield_ahnqiraj_d_01.m2", fileId = "142779", text = "shield_ahnqiraj_d_01.m2", }, { value = "shield_ahnqiraj_d_02.m2", + text = "shield_ahnqiraj_d_02.m2", fileId = "142781", text = "shield_ahnqiraj_d_02.m2", }, { value = "shield_ahnqiraj_d_03.m2", + text = "shield_ahnqiraj_d_03.m2", fileId = "142783", text = "shield_ahnqiraj_d_03.m2", }, { value = "shield_blackwing_drakeadon.m2", + text = "shield_blackwing_drakeadon.m2", fileId = "142785", text = "shield_blackwing_drakeadon.m2", }, { value = "shield_blackwing_reddragon.m2", + text = "shield_blackwing_reddragon.m2", fileId = "142787", text = "shield_blackwing_reddragon.m2", }, { value = "shield_crest_a_01.m2", + text = "shield_crest_a_01.m2", fileId = "142804", text = "shield_crest_a_01.m2", }, { value = "shield_crest_a_02.m2", + text = "shield_crest_a_02.m2", fileId = "142809", text = "shield_crest_a_02.m2", }, { value = "shield_crest_b_01.m2", + text = "shield_crest_b_01.m2", fileId = "142813", text = "shield_crest_b_01.m2", }, { value = "shield_crest_b_02.m2", + text = "shield_crest_b_02.m2", fileId = "142816", text = "shield_crest_b_02.m2", }, { value = "shield_crest_b_03.m2", + text = "shield_crest_b_03.m2", fileId = "142826", text = "shield_crest_b_03.m2", }, { value = "shield_engineer_a_01.m2", + text = "shield_engineer_a_01.m2", fileId = "142867", text = "shield_engineer_a_01.m2", }, { value = "shield_engineer_b_01.m2", + text = "shield_engineer_b_01.m2", fileId = "142869", text = "shield_engineer_b_01.m2", }, { value = "shield_engineer_c_01.m2", + text = "shield_engineer_c_01.m2", fileId = "142871", text = "shield_engineer_c_01.m2", }, { value = "shield_epic_a_01.m2", + text = "shield_epic_a_01.m2", fileId = "142873", text = "shield_epic_a_01.m2", }, { value = "shield_epic_b_01.m2", + text = "shield_epic_b_01.m2", fileId = "142876", text = "shield_epic_b_01.m2", }, { value = "shield_horde_a_01.m2", + text = "shield_horde_a_01.m2", fileId = "142878", text = "shield_horde_a_01.m2", }, { value = "shield_horde_a_02.m2", + text = "shield_horde_a_02.m2", fileId = "142885", text = "shield_horde_a_02.m2", }, { value = "shield_horde_a_03.m2", + text = "shield_horde_a_03.m2", fileId = "142893", text = "shield_horde_a_03.m2", }, { value = "shield_horde_a_04.m2", + text = "shield_horde_a_04.m2", fileId = "142900", text = "shield_horde_a_04.m2", }, { value = "shield_horde_b_01.m2", + text = "shield_horde_b_01.m2", fileId = "142907", text = "shield_horde_b_01.m2", }, { value = "shield_horde_b_02.m2", + text = "shield_horde_b_02.m2", fileId = "142909", text = "shield_horde_b_02.m2", }, { value = "shield_horde_b_03.m2", + text = "shield_horde_b_03.m2", fileId = "142911", text = "shield_horde_b_03.m2", }, { value = "shield_horde_b_04.m2", + text = "shield_horde_b_04.m2", fileId = "142914", text = "shield_horde_b_04.m2", }, { value = "shield_horde_c_02.m2", + text = "shield_horde_c_02.m2", fileId = "142916", text = "shield_horde_c_02.m2", }, { value = "shield_horde_c_03.m2", + text = "shield_horde_c_03.m2", fileId = "142918", text = "shield_horde_c_03.m2", }, { value = "shield_lion_a_01.m2", + text = "shield_lion_a_01.m2", fileId = "142939", text = "shield_lion_a_01.m2", }, { value = "shield_militia_a_01.m2", + text = "shield_militia_a_01.m2", fileId = "142940", text = "shield_militia_a_01.m2", }, { value = "shield_naxxramas_d_01.m2", + text = "shield_naxxramas_d_01.m2", fileId = "142946", text = "shield_naxxramas_d_01.m2", }, { value = "shield_naxxramas_d_02.m2", + text = "shield_naxxramas_d_02.m2", fileId = "142948", text = "shield_naxxramas_d_02.m2", }, { value = "shield_naxxramas_d_03.m2", + text = "shield_naxxramas_d_03.m2", fileId = "142950", text = "shield_naxxramas_d_03.m2", }, { value = "shield_oval_a_01.m2", + text = "shield_oval_a_01.m2", fileId = "142984", text = "shield_oval_a_01.m2", }, { value = "shield_pvpalliance_a_01.m2", + text = "shield_pvpalliance_a_01.m2", fileId = "142989", text = "shield_pvpalliance_a_01.m2", }, { value = "shield_pvphorde_a_01.m2", + text = "shield_pvphorde_a_01.m2", fileId = "142991", text = "shield_pvphorde_a_01.m2", }, { value = "shield_rectangle_a_01.m2", + text = "shield_rectangle_a_01.m2", fileId = "142992", text = "shield_rectangle_a_01.m2", }, { value = "shield_rectangle_b_01.m2", + text = "shield_rectangle_b_01.m2", fileId = "142997", text = "shield_rectangle_b_01.m2", }, { value = "shield_round_a_01.m2", + text = "shield_round_a_01.m2", fileId = "143001", text = "shield_round_a_01.m2", }, { value = "shield_round_b_01.m2", + text = "shield_round_b_01.m2", fileId = "143005", text = "shield_round_b_01.m2", }, { value = "shield_stratholme_d_01.m2", + text = "shield_stratholme_d_01.m2", fileId = "143029", text = "shield_stratholme_d_01.m2", }, { value = "shield_stratholme_d_02.m2", + text = "shield_stratholme_d_02.m2", fileId = "143031", text = "shield_stratholme_d_02.m2", }, { value = "shield_wheel_b_01.m2", + text = "shield_wheel_b_01.m2", fileId = "143063", text = "shield_wheel_b_01.m2", }, { value = "shield_zulgurub_d_01.m2", + text = "shield_zulgurub_d_01.m2", fileId = "143075", text = "shield_zulgurub_d_01.m2", }, { value = "shield_zulgurub_d_02.m2", + text = "shield_zulgurub_d_02.m2", fileId = "143077", text = "shield_zulgurub_d_02.m2", }, @@ -14370,1234 +17167,1481 @@ WeakAuras.ModelPaths = { }, { value = "shoulder", + text = "shoulder", children = { { value = "lshoulder_leather_a_01.m2", + text = "lshoulder_leather_a_01.m2", fileId = "143132", text = "lshoulder_leather_a_01.m2", }, { value = "lshoulder_leather_a_02.m2", + text = "lshoulder_leather_a_02.m2", fileId = "143133", text = "lshoulder_leather_a_02.m2", }, { value = "lshoulder_leather_a_03.m2", + text = "lshoulder_leather_a_03.m2", fileId = "143134", text = "lshoulder_leather_a_03.m2", }, { value = "lshoulder_leather_a_03defias.m2", + text = "lshoulder_leather_a_03defias.m2", fileId = "143135", text = "lshoulder_leather_a_03defias.m2", }, { value = "lshoulder_leather_a_04.m2", + text = "lshoulder_leather_a_04.m2", fileId = "143136", text = "lshoulder_leather_a_04.m2", }, { value = "lshoulder_leather_a_05.m2", + text = "lshoulder_leather_a_05.m2", fileId = "143137", text = "lshoulder_leather_a_05.m2", }, { value = "lshoulder_leather_ahnqiraj_a_01.m2", + text = "lshoulder_leather_ahnqiraj_a_01.m2", fileId = "143138", text = "lshoulder_leather_ahnqiraj_a_01.m2", }, { value = "lshoulder_leather_b_01.m2", + text = "lshoulder_leather_b_01.m2", fileId = "143139", text = "lshoulder_leather_b_01.m2", }, { value = "lshoulder_leather_b_02.m2", + text = "lshoulder_leather_b_02.m2", fileId = "143140", text = "lshoulder_leather_b_02.m2", }, { value = "lshoulder_leather_b_03.m2", + text = "lshoulder_leather_b_03.m2", fileId = "143141", text = "lshoulder_leather_b_03.m2", }, { value = "lshoulder_leather_b_04.m2", + text = "lshoulder_leather_b_04.m2", fileId = "143142", text = "lshoulder_leather_b_04.m2", }, { value = "lshoulder_leather_c_01.m2", + text = "lshoulder_leather_c_01.m2", fileId = "143144", text = "lshoulder_leather_c_01.m2", }, { value = "lshoulder_leather_c_02.m2", + text = "lshoulder_leather_c_02.m2", fileId = "143145", text = "lshoulder_leather_c_02.m2", }, { value = "lshoulder_leather_c_03.m2", + text = "lshoulder_leather_c_03.m2", fileId = "143146", text = "lshoulder_leather_c_03.m2", }, { value = "lshoulder_leather_d_01.m2", + text = "lshoulder_leather_d_01.m2", fileId = "143147", text = "lshoulder_leather_d_01.m2", }, { value = "lshoulder_leather_d_02.m2", + text = "lshoulder_leather_d_02.m2", fileId = "143148", text = "lshoulder_leather_d_02.m2", }, { value = "lshoulder_leather_d_03.m2", + text = "lshoulder_leather_d_03.m2", fileId = "143149", text = "lshoulder_leather_d_03.m2", }, { value = "lshoulder_leather_dungeondruid_a_01.m2", + text = "lshoulder_leather_dungeondruid_a_01.m2", fileId = "143152", text = "lshoulder_leather_dungeondruid_a_01.m2", }, { value = "lshoulder_leather_dungeonhunter_a_01.m2", + text = "lshoulder_leather_dungeonhunter_a_01.m2", fileId = "2199316", text = "lshoulder_leather_dungeonhunter_a_01.m2", }, { value = "lshoulder_leather_horde_a_05.m2", + text = "lshoulder_leather_horde_a_05.m2", fileId = "143156", text = "lshoulder_leather_horde_a_05.m2", }, { value = "lshoulder_leather_horde_b_03.m2", + text = "lshoulder_leather_horde_b_03.m2", fileId = "143157", text = "lshoulder_leather_horde_b_03.m2", }, { value = "lshoulder_leather_pvpalliance_a_01.m2", + text = "lshoulder_leather_pvpalliance_a_01.m2", fileId = "143164", text = "lshoulder_leather_pvpalliance_a_01.m2", }, { value = "lshoulder_leather_pvphorde_a_01.m2", + text = "lshoulder_leather_pvphorde_a_01.m2", fileId = "143165", text = "lshoulder_leather_pvphorde_a_01.m2", }, { value = "lshoulder_leather_pvphorde_c_01.m2", + text = "lshoulder_leather_pvphorde_c_01.m2", fileId = "143166", text = "lshoulder_leather_pvphorde_c_01.m2", }, { value = "lshoulder_leather_raiddruid_a_01.m2", + text = "lshoulder_leather_raiddruid_a_01.m2", fileId = "143167", text = "lshoulder_leather_raiddruid_a_01.m2", }, { value = "lshoulder_leather_raiddruid_b_01.m2", + text = "lshoulder_leather_raiddruid_b_01.m2", fileId = "143168", text = "lshoulder_leather_raiddruid_b_01.m2", }, { value = "lshoulder_leather_raiddruid_c_01.m2", + text = "lshoulder_leather_raiddruid_c_01.m2", fileId = "143169", text = "lshoulder_leather_raiddruid_c_01.m2", }, { value = "lshoulder_leather_raidrogue_a_01.m2", + text = "lshoulder_leather_raidrogue_a_01.m2", fileId = "143173", text = "lshoulder_leather_raidrogue_a_01.m2", }, { value = "lshoulder_leather_raidrogue_b_01.m2", + text = "lshoulder_leather_raidrogue_b_01.m2", fileId = "143174", text = "lshoulder_leather_raidrogue_b_01.m2", }, { value = "lshoulder_leather_raidrogue_c_01.m2", + text = "lshoulder_leather_raidrogue_c_01.m2", fileId = "143175", text = "lshoulder_leather_raidrogue_c_01.m2", }, { value = "lshoulder_mail_a_01.m2", + text = "lshoulder_mail_a_01.m2", fileId = "143183", text = "lshoulder_mail_a_01.m2", }, { value = "lshoulder_mail_a_02.m2", + text = "lshoulder_mail_a_02.m2", fileId = "143184", text = "lshoulder_mail_a_02.m2", }, { value = "lshoulder_mail_a_03.m2", + text = "lshoulder_mail_a_03.m2", fileId = "143185", text = "lshoulder_mail_a_03.m2", }, { value = "lshoulder_mail_ahnqiraj_a_01.m2", + text = "lshoulder_mail_ahnqiraj_a_01.m2", fileId = "143186", text = "lshoulder_mail_ahnqiraj_a_01.m2", }, { value = "lshoulder_mail_b_01.m2", + text = "lshoulder_mail_b_01.m2", fileId = "143187", text = "lshoulder_mail_b_01.m2", }, { value = "lshoulder_mail_b_02.m2", + text = "lshoulder_mail_b_02.m2", fileId = "143188", text = "lshoulder_mail_b_02.m2", }, { value = "lshoulder_mail_b_03.m2", + text = "lshoulder_mail_b_03.m2", fileId = "143189", text = "lshoulder_mail_b_03.m2", }, { value = "lshoulder_mail_b_05.m2", + text = "lshoulder_mail_b_05.m2", fileId = "143190", text = "lshoulder_mail_b_05.m2", }, { value = "lshoulder_mail_c_01.m2", + text = "lshoulder_mail_c_01.m2", fileId = "143192", text = "lshoulder_mail_c_01.m2", }, { value = "lshoulder_mail_c_02.m2", + text = "lshoulder_mail_c_02.m2", fileId = "143193", text = "lshoulder_mail_c_02.m2", }, { value = "lshoulder_mail_c_03.m2", + text = "lshoulder_mail_c_03.m2", fileId = "143194", text = "lshoulder_mail_c_03.m2", }, { value = "lshoulder_mail_c_04.m2", + text = "lshoulder_mail_c_04.m2", fileId = "143195", text = "lshoulder_mail_c_04.m2", }, { value = "lshoulder_mail_d_01.m2", + text = "lshoulder_mail_d_01.m2", fileId = "143196", text = "lshoulder_mail_d_01.m2", }, { value = "lshoulder_mail_d_02.m2", + text = "lshoulder_mail_d_02.m2", fileId = "143197", text = "lshoulder_mail_d_02.m2", }, { value = "lshoulder_mail_dungeonhunter_a_01.m2", + text = "lshoulder_mail_dungeonhunter_a_01.m2", fileId = "143200", text = "lshoulder_mail_dungeonhunter_a_01.m2", }, { value = "lshoulder_mail_dungeonshaman_a_01.m2", + text = "lshoulder_mail_dungeonshaman_a_01.m2", fileId = "143202", text = "lshoulder_mail_dungeonshaman_a_01.m2", }, { value = "lshoulder_mail_pvpalliance_a_01.m2", + text = "lshoulder_mail_pvpalliance_a_01.m2", fileId = "143209", text = "lshoulder_mail_pvpalliance_a_01.m2", }, { value = "lshoulder_mail_pvpalliance_c_01.m2", + text = "lshoulder_mail_pvpalliance_c_01.m2", fileId = "143210", text = "lshoulder_mail_pvpalliance_c_01.m2", }, { value = "lshoulder_mail_pvphorde_a_01.m2", + text = "lshoulder_mail_pvphorde_a_01.m2", fileId = "143211", text = "lshoulder_mail_pvphorde_a_01.m2", }, { value = "lshoulder_mail_pvphorde_c_01.m2", + text = "lshoulder_mail_pvphorde_c_01.m2", fileId = "143212", text = "lshoulder_mail_pvphorde_c_01.m2", }, { value = "lshoulder_mail_raidhunter_a_01.m2", + text = "lshoulder_mail_raidhunter_a_01.m2", fileId = "143213", text = "lshoulder_mail_raidhunter_a_01.m2", }, { value = "lshoulder_mail_raidhunter_b_01.m2", + text = "lshoulder_mail_raidhunter_b_01.m2", fileId = "143214", text = "lshoulder_mail_raidhunter_b_01.m2", }, { value = "lshoulder_mail_raidhunter_c_01.m2", + text = "lshoulder_mail_raidhunter_c_01.m2", fileId = "143215", text = "lshoulder_mail_raidhunter_c_01.m2", }, { value = "lshoulder_mail_raidshaman_a_01.m2", + text = "lshoulder_mail_raidshaman_a_01.m2", fileId = "143220", text = "lshoulder_mail_raidshaman_a_01.m2", }, { value = "lshoulder_mail_raidshaman_b_01.m2", + text = "lshoulder_mail_raidshaman_b_01.m2", fileId = "143221", text = "lshoulder_mail_raidshaman_b_01.m2", }, { value = "lshoulder_plate_a_01.m2", + text = "lshoulder_plate_a_01.m2", fileId = "143228", text = "lshoulder_plate_a_01.m2", }, { value = "lshoulder_plate_a_02.m2", + text = "lshoulder_plate_a_02.m2", fileId = "143229", text = "lshoulder_plate_a_02.m2", }, { value = "lshoulder_plate_a_02ironforgeguard.m2", + text = "lshoulder_plate_a_02ironforgeguard.m2", fileId = "143230", text = "lshoulder_plate_a_02ironforgeguard.m2", }, { value = "lshoulder_plate_a_03.m2", + text = "lshoulder_plate_a_03.m2", fileId = "143231", text = "lshoulder_plate_a_03.m2", }, { value = "lshoulder_plate_a_04.m2", + text = "lshoulder_plate_a_04.m2", fileId = "143232", text = "lshoulder_plate_a_04.m2", }, { value = "lshoulder_plate_a_05.m2", + text = "lshoulder_plate_a_05.m2", fileId = "143233", text = "lshoulder_plate_a_05.m2", }, { value = "lshoulder_plate_ahnqiraj_a_01.m2", + text = "lshoulder_plate_ahnqiraj_a_01.m2", fileId = "143234", text = "lshoulder_plate_ahnqiraj_a_01.m2", }, { value = "lshoulder_plate_b_01.m2", + text = "lshoulder_plate_b_01.m2", fileId = "143235", text = "lshoulder_plate_b_01.m2", }, { value = "lshoulder_plate_b_02.m2", + text = "lshoulder_plate_b_02.m2", fileId = "143236", text = "lshoulder_plate_b_02.m2", }, { value = "lshoulder_plate_b_03.m2", + text = "lshoulder_plate_b_03.m2", fileId = "143237", text = "lshoulder_plate_b_03.m2", }, { value = "lshoulder_plate_b_04.m2", + text = "lshoulder_plate_b_04.m2", fileId = "143238", text = "lshoulder_plate_b_04.m2", }, { value = "lshoulder_plate_b_05.m2", + text = "lshoulder_plate_b_05.m2", fileId = "143239", text = "lshoulder_plate_b_05.m2", }, { value = "lshoulder_plate_c_01.m2", + text = "lshoulder_plate_c_01.m2", fileId = "143241", text = "lshoulder_plate_c_01.m2", }, { value = "lshoulder_plate_c_03.m2", + text = "lshoulder_plate_c_03.m2", fileId = "143242", text = "lshoulder_plate_c_03.m2", }, { value = "lshoulder_plate_c_04.m2", + text = "lshoulder_plate_c_04.m2", fileId = "143243", text = "lshoulder_plate_c_04.m2", }, { value = "lshoulder_plate_c_05.m2", + text = "lshoulder_plate_c_05.m2", fileId = "143244", text = "lshoulder_plate_c_05.m2", }, { value = "lshoulder_plate_d_01.m2", + text = "lshoulder_plate_d_01.m2", fileId = "143245", text = "lshoulder_plate_d_01.m2", }, { value = "lshoulder_plate_d_02.m2", + text = "lshoulder_plate_d_02.m2", fileId = "143246", text = "lshoulder_plate_d_02.m2", }, { value = "lshoulder_plate_d_03.m2", + text = "lshoulder_plate_d_03.m2", fileId = "143247", text = "lshoulder_plate_d_03.m2", }, { value = "lshoulder_plate_d_04.m2", + text = "lshoulder_plate_d_04.m2", fileId = "143248", text = "lshoulder_plate_d_04.m2", }, { value = "lshoulder_plate_d_05.m2", + text = "lshoulder_plate_d_05.m2", fileId = "143249", text = "lshoulder_plate_d_05.m2", }, { value = "lshoulder_plate_d_06.m2", + text = "lshoulder_plate_d_06.m2", fileId = "143250", text = "lshoulder_plate_d_06.m2", }, { value = "lshoulder_plate_dungeonpaladin_a_01.m2", + text = "lshoulder_plate_dungeonpaladin_a_01.m2", fileId = "143253", text = "lshoulder_plate_dungeonpaladin_a_01.m2", }, { value = "lshoulder_plate_dungeonwarrior_a_01.m2", + text = "lshoulder_plate_dungeonwarrior_a_01.m2", fileId = "143256", text = "lshoulder_plate_dungeonwarrior_a_01.m2", }, { value = "lshoulder_plate_horde_c_05.m2", + text = "lshoulder_plate_horde_c_05.m2", fileId = "143259", text = "lshoulder_plate_horde_c_05.m2", }, { value = "lshoulder_plate_horde_d_02.m2", + text = "lshoulder_plate_horde_d_02.m2", fileId = "143260", text = "lshoulder_plate_horde_d_02.m2", }, { value = "lshoulder_plate_pvpalliance_a_01.m2", + text = "lshoulder_plate_pvpalliance_a_01.m2", fileId = "143271", text = "lshoulder_plate_pvpalliance_a_01.m2", }, { value = "lshoulder_plate_pvphorde_a_01.m2", + text = "lshoulder_plate_pvphorde_a_01.m2", fileId = "143272", text = "lshoulder_plate_pvphorde_a_01.m2", }, { value = "lshoulder_plate_raidpaladin_a_01.m2", + text = "lshoulder_plate_raidpaladin_a_01.m2", fileId = "143274", text = "lshoulder_plate_raidpaladin_a_01.m2", }, { value = "lshoulder_plate_raidpaladin_b_01.m2", + text = "lshoulder_plate_raidpaladin_b_01.m2", fileId = "143275", text = "lshoulder_plate_raidpaladin_b_01.m2", }, { value = "lshoulder_plate_raidpaladin_c_01.m2", + text = "lshoulder_plate_raidpaladin_c_01.m2", fileId = "143276", text = "lshoulder_plate_raidpaladin_c_01.m2", }, { value = "lshoulder_plate_raidwarrior_a_01.m2", + text = "lshoulder_plate_raidwarrior_a_01.m2", fileId = "143284", text = "lshoulder_plate_raidwarrior_a_01.m2", }, { value = "lshoulder_plate_raidwarrior_b_01.m2", + text = "lshoulder_plate_raidwarrior_b_01.m2", fileId = "143285", text = "lshoulder_plate_raidwarrior_b_01.m2", }, { value = "lshoulder_plate_raidwarrior_c_01.m2", + text = "lshoulder_plate_raidwarrior_c_01.m2", fileId = "143286", text = "lshoulder_plate_raidwarrior_c_01.m2", }, { value = "lshoulder_raiddruid_b_01.m2", + text = "lshoulder_raiddruid_b_01.m2", fileId = "143294", text = "lshoulder_raiddruid_b_01.m2", }, { value = "lshoulder_robe_a_01.m2", + text = "lshoulder_robe_a_01.m2", fileId = "143295", text = "lshoulder_robe_a_01.m2", }, { value = "lshoulder_robe_a_02.m2", + text = "lshoulder_robe_a_02.m2", fileId = "143296", text = "lshoulder_robe_a_02.m2", }, { value = "lshoulder_robe_a_03.m2", + text = "lshoulder_robe_a_03.m2", fileId = "143297", text = "lshoulder_robe_a_03.m2", }, { value = "lshoulder_robe_ahnqiraj_a_01.m2", + text = "lshoulder_robe_ahnqiraj_a_01.m2", fileId = "143298", text = "lshoulder_robe_ahnqiraj_a_01.m2", }, { value = "lshoulder_robe_b_01.m2", + text = "lshoulder_robe_b_01.m2", fileId = "143299", text = "lshoulder_robe_b_01.m2", }, { value = "lshoulder_robe_b_02.m2", + text = "lshoulder_robe_b_02.m2", fileId = "143300", text = "lshoulder_robe_b_02.m2", }, { value = "lshoulder_robe_b_03.m2", + text = "lshoulder_robe_b_03.m2", fileId = "143301", text = "lshoulder_robe_b_03.m2", }, { value = "lshoulder_robe_b_04.m2", + text = "lshoulder_robe_b_04.m2", fileId = "143302", text = "lshoulder_robe_b_04.m2", }, { value = "lshoulder_robe_c_01.m2", + text = "lshoulder_robe_c_01.m2", fileId = "143303", text = "lshoulder_robe_c_01.m2", }, { value = "lshoulder_robe_c_02.m2", + text = "lshoulder_robe_c_02.m2", fileId = "143304", text = "lshoulder_robe_c_02.m2", }, { value = "lshoulder_robe_c_03.m2", + text = "lshoulder_robe_c_03.m2", fileId = "143305", text = "lshoulder_robe_c_03.m2", }, { value = "lshoulder_robe_d_01.m2", + text = "lshoulder_robe_d_01.m2", fileId = "143306", text = "lshoulder_robe_d_01.m2", }, { value = "lshoulder_robe_d_04.m2", + text = "lshoulder_robe_d_04.m2", fileId = "143307", text = "lshoulder_robe_d_04.m2", }, { value = "lshoulder_robe_dungeonmage_a_01.m2", + text = "lshoulder_robe_dungeonmage_a_01.m2", fileId = "143308", text = "lshoulder_robe_dungeonmage_a_01.m2", }, { value = "lshoulder_robe_dungeonpriest_a_01.m2", + text = "lshoulder_robe_dungeonpriest_a_01.m2", fileId = "143310", text = "lshoulder_robe_dungeonpriest_a_01.m2", }, { value = "lshoulder_robe_dungeonwarlock_a_01.m2", + text = "lshoulder_robe_dungeonwarlock_a_01.m2", fileId = "143312", text = "lshoulder_robe_dungeonwarlock_a_01.m2", }, { value = "lshoulder_robe_holiday_summerfest_a_01.m2", + text = "lshoulder_robe_holiday_summerfest_a_01.m2", fileId = "143314", text = "lshoulder_robe_holiday_summerfest_a_01.m2", }, { value = "lshoulder_robe_horde_a_03.m2", + text = "lshoulder_robe_horde_a_03.m2", fileId = "143315", text = "lshoulder_robe_horde_a_03.m2", }, { value = "lshoulder_robe_horde_d_01.m2", + text = "lshoulder_robe_horde_d_01.m2", fileId = "143316", text = "lshoulder_robe_horde_d_01.m2", }, { value = "lshoulder_robe_pvpalliance_a_01.m2", + text = "lshoulder_robe_pvpalliance_a_01.m2", fileId = "143321", text = "lshoulder_robe_pvpalliance_a_01.m2", }, { value = "lshoulder_robe_pvpalliance_c_01.m2", + text = "lshoulder_robe_pvpalliance_c_01.m2", fileId = "143322", text = "lshoulder_robe_pvpalliance_c_01.m2", }, { value = "lshoulder_robe_pvphorde_a_01.m2", + text = "lshoulder_robe_pvphorde_a_01.m2", fileId = "143323", text = "lshoulder_robe_pvphorde_a_01.m2", }, { value = "lshoulder_robe_pvphorde_c_01.m2", + text = "lshoulder_robe_pvphorde_c_01.m2", fileId = "143324", text = "lshoulder_robe_pvphorde_c_01.m2", }, { value = "lshoulder_robe_raid_a_01.m2", + text = "lshoulder_robe_raid_a_01.m2", fileId = "143325", text = "lshoulder_robe_raid_a_01.m2", }, { value = "lshoulder_robe_raidmage_a_01.m2", + text = "lshoulder_robe_raidmage_a_01.m2", fileId = "143326", text = "lshoulder_robe_raidmage_a_01.m2", }, { value = "lshoulder_robe_raidmage_b_01.m2", + text = "lshoulder_robe_raidmage_b_01.m2", fileId = "143327", text = "lshoulder_robe_raidmage_b_01.m2", }, { value = "lshoulder_robe_raidmage_c_01.m2", + text = "lshoulder_robe_raidmage_c_01.m2", fileId = "143328", text = "lshoulder_robe_raidmage_c_01.m2", }, { value = "lshoulder_robe_raidpriest_a_01.m2", + text = "lshoulder_robe_raidpriest_a_01.m2", fileId = "143333", text = "lshoulder_robe_raidpriest_a_01.m2", }, { value = "lshoulder_robe_raidpriest_b_01.m2", + text = "lshoulder_robe_raidpriest_b_01.m2", fileId = "143334", text = "lshoulder_robe_raidpriest_b_01.m2", }, { value = "lshoulder_robe_raidpriest_c_01.m2", + text = "lshoulder_robe_raidpriest_c_01.m2", fileId = "143335", text = "lshoulder_robe_raidpriest_c_01.m2", }, { value = "lshoulder_robe_raidshaman_c_01.m2", + text = "lshoulder_robe_raidshaman_c_01.m2", fileId = "143340", text = "lshoulder_robe_raidshaman_c_01.m2", }, { value = "lshoulder_robe_raidwarlock_a_01.m2", + text = "lshoulder_robe_raidwarlock_a_01.m2", fileId = "143341", text = "lshoulder_robe_raidwarlock_a_01.m2", }, { value = "lshoulder_robe_raidwarlock_b_01.m2", + text = "lshoulder_robe_raidwarlock_b_01.m2", fileId = "143342", text = "lshoulder_robe_raidwarlock_b_01.m2", }, { value = "lshoulder_robe_raidwarlock_c_01.m2", + text = "lshoulder_robe_raidwarlock_c_01.m2", fileId = "143343", text = "lshoulder_robe_raidwarlock_c_01.m2", }, { value = "rshoulder_leather_a_01.m2", + text = "rshoulder_leather_a_01.m2", fileId = "143436", text = "rshoulder_leather_a_01.m2", }, { value = "rshoulder_leather_a_02.m2", + text = "rshoulder_leather_a_02.m2", fileId = "143437", text = "rshoulder_leather_a_02.m2", }, { value = "rshoulder_leather_a_03.m2", + text = "rshoulder_leather_a_03.m2", fileId = "143438", text = "rshoulder_leather_a_03.m2", }, { value = "rshoulder_leather_a_03defias.m2", + text = "rshoulder_leather_a_03defias.m2", fileId = "143439", text = "rshoulder_leather_a_03defias.m2", }, { value = "rshoulder_leather_a_04.m2", + text = "rshoulder_leather_a_04.m2", fileId = "143440", text = "rshoulder_leather_a_04.m2", }, { value = "rshoulder_leather_a_05.m2", + text = "rshoulder_leather_a_05.m2", fileId = "143441", text = "rshoulder_leather_a_05.m2", }, { value = "rshoulder_leather_ahnqiraj_a_01.m2", + text = "rshoulder_leather_ahnqiraj_a_01.m2", fileId = "143442", text = "rshoulder_leather_ahnqiraj_a_01.m2", }, { value = "rshoulder_leather_b_01.m2", + text = "rshoulder_leather_b_01.m2", fileId = "143443", text = "rshoulder_leather_b_01.m2", }, { value = "rshoulder_leather_b_02.m2", + text = "rshoulder_leather_b_02.m2", fileId = "143444", text = "rshoulder_leather_b_02.m2", }, { value = "rshoulder_leather_b_03.m2", + text = "rshoulder_leather_b_03.m2", fileId = "143445", text = "rshoulder_leather_b_03.m2", }, { value = "rshoulder_leather_b_04.m2", + text = "rshoulder_leather_b_04.m2", fileId = "143446", text = "rshoulder_leather_b_04.m2", }, { value = "rshoulder_leather_c_01.m2", + text = "rshoulder_leather_c_01.m2", fileId = "143448", text = "rshoulder_leather_c_01.m2", }, { value = "rshoulder_leather_c_02.m2", + text = "rshoulder_leather_c_02.m2", fileId = "143449", text = "rshoulder_leather_c_02.m2", }, { value = "rshoulder_leather_c_03.m2", + text = "rshoulder_leather_c_03.m2", fileId = "143450", text = "rshoulder_leather_c_03.m2", }, { value = "rshoulder_leather_d_01.m2", + text = "rshoulder_leather_d_01.m2", fileId = "143451", text = "rshoulder_leather_d_01.m2", }, { value = "rshoulder_leather_d_02.m2", + text = "rshoulder_leather_d_02.m2", fileId = "143452", text = "rshoulder_leather_d_02.m2", }, { value = "rshoulder_leather_d_03.m2", + text = "rshoulder_leather_d_03.m2", fileId = "143453", text = "rshoulder_leather_d_03.m2", }, { value = "rshoulder_leather_dungeondruid_a_01.m2", + text = "rshoulder_leather_dungeondruid_a_01.m2", fileId = "143456", text = "rshoulder_leather_dungeondruid_a_01.m2", }, { value = "rshoulder_leather_horde_a_05.m2", + text = "rshoulder_leather_horde_a_05.m2", fileId = "143459", text = "rshoulder_leather_horde_a_05.m2", }, { value = "rshoulder_leather_horde_b_03.m2", + text = "rshoulder_leather_horde_b_03.m2", fileId = "143460", text = "rshoulder_leather_horde_b_03.m2", }, { value = "rshoulder_leather_pvpalliance_a_01.m2", + text = "rshoulder_leather_pvpalliance_a_01.m2", fileId = "143467", text = "rshoulder_leather_pvpalliance_a_01.m2", }, { value = "rshoulder_leather_pvphorde_a_01.m2", + text = "rshoulder_leather_pvphorde_a_01.m2", fileId = "143468", text = "rshoulder_leather_pvphorde_a_01.m2", }, { value = "rshoulder_leather_pvphorde_c_01.m2", + text = "rshoulder_leather_pvphorde_c_01.m2", fileId = "143469", text = "rshoulder_leather_pvphorde_c_01.m2", }, { value = "rshoulder_leather_raiddruid_a_01.m2", + text = "rshoulder_leather_raiddruid_a_01.m2", fileId = "143470", text = "rshoulder_leather_raiddruid_a_01.m2", }, { value = "rshoulder_leather_raiddruid_b_01.m2", + text = "rshoulder_leather_raiddruid_b_01.m2", fileId = "143471", text = "rshoulder_leather_raiddruid_b_01.m2", }, { value = "rshoulder_leather_raiddruid_c_01.m2", + text = "rshoulder_leather_raiddruid_c_01.m2", fileId = "143472", text = "rshoulder_leather_raiddruid_c_01.m2", }, { value = "rshoulder_leather_raidrogue_a_01.m2", + text = "rshoulder_leather_raidrogue_a_01.m2", fileId = "143476", text = "rshoulder_leather_raidrogue_a_01.m2", }, { value = "rshoulder_leather_raidrogue_b_01.m2", + text = "rshoulder_leather_raidrogue_b_01.m2", fileId = "143477", text = "rshoulder_leather_raidrogue_b_01.m2", }, { value = "rshoulder_leather_raidrogue_c_01.m2", + text = "rshoulder_leather_raidrogue_c_01.m2", fileId = "143478", text = "rshoulder_leather_raidrogue_c_01.m2", }, { value = "rshoulder_mail_a_01.m2", + text = "rshoulder_mail_a_01.m2", fileId = "143486", text = "rshoulder_mail_a_01.m2", }, { value = "rshoulder_mail_a_02.m2", + text = "rshoulder_mail_a_02.m2", fileId = "143487", text = "rshoulder_mail_a_02.m2", }, { value = "rshoulder_mail_a_03.m2", + text = "rshoulder_mail_a_03.m2", fileId = "143488", text = "rshoulder_mail_a_03.m2", }, { value = "rshoulder_mail_ahnqiraj_a_01.m2", + text = "rshoulder_mail_ahnqiraj_a_01.m2", fileId = "143489", text = "rshoulder_mail_ahnqiraj_a_01.m2", }, { value = "rshoulder_mail_b_01.m2", + text = "rshoulder_mail_b_01.m2", fileId = "143490", text = "rshoulder_mail_b_01.m2", }, { value = "rshoulder_mail_b_02.m2", + text = "rshoulder_mail_b_02.m2", fileId = "143491", text = "rshoulder_mail_b_02.m2", }, { value = "rshoulder_mail_b_03.m2", + text = "rshoulder_mail_b_03.m2", fileId = "143492", text = "rshoulder_mail_b_03.m2", }, { value = "rshoulder_mail_b_05.m2", + text = "rshoulder_mail_b_05.m2", fileId = "143493", text = "rshoulder_mail_b_05.m2", }, { value = "rshoulder_mail_c_01.m2", + text = "rshoulder_mail_c_01.m2", fileId = "143495", text = "rshoulder_mail_c_01.m2", }, { value = "rshoulder_mail_c_02.m2", + text = "rshoulder_mail_c_02.m2", fileId = "143496", text = "rshoulder_mail_c_02.m2", }, { value = "rshoulder_mail_c_03.m2", + text = "rshoulder_mail_c_03.m2", fileId = "143497", text = "rshoulder_mail_c_03.m2", }, { value = "rshoulder_mail_c_04.m2", + text = "rshoulder_mail_c_04.m2", fileId = "143498", text = "rshoulder_mail_c_04.m2", }, { value = "rshoulder_mail_d_01.m2", + text = "rshoulder_mail_d_01.m2", fileId = "143499", text = "rshoulder_mail_d_01.m2", }, { value = "rshoulder_mail_d_02.m2", + text = "rshoulder_mail_d_02.m2", fileId = "143500", text = "rshoulder_mail_d_02.m2", }, { value = "rshoulder_mail_dungeonhunter_a_01.m2", + text = "rshoulder_mail_dungeonhunter_a_01.m2", fileId = "143503", text = "rshoulder_mail_dungeonhunter_a_01.m2", }, { value = "rshoulder_mail_dungeonshaman_a_01.m2", + text = "rshoulder_mail_dungeonshaman_a_01.m2", fileId = "143505", text = "rshoulder_mail_dungeonshaman_a_01.m2", }, { value = "rshoulder_mail_pvpalliance_a_01.m2", + text = "rshoulder_mail_pvpalliance_a_01.m2", fileId = "143512", text = "rshoulder_mail_pvpalliance_a_01.m2", }, { value = "rshoulder_mail_pvpalliance_c_01.m2", + text = "rshoulder_mail_pvpalliance_c_01.m2", fileId = "143513", text = "rshoulder_mail_pvpalliance_c_01.m2", }, { value = "rshoulder_mail_pvphorde_a_01.m2", + text = "rshoulder_mail_pvphorde_a_01.m2", fileId = "143514", text = "rshoulder_mail_pvphorde_a_01.m2", }, { value = "rshoulder_mail_pvphorde_c_01.m2", + text = "rshoulder_mail_pvphorde_c_01.m2", fileId = "143515", text = "rshoulder_mail_pvphorde_c_01.m2", }, { value = "rshoulder_mail_raidhunter_a_01.m2", + text = "rshoulder_mail_raidhunter_a_01.m2", fileId = "143516", text = "rshoulder_mail_raidhunter_a_01.m2", }, { value = "rshoulder_mail_raidhunter_b_01.m2", + text = "rshoulder_mail_raidhunter_b_01.m2", fileId = "143517", text = "rshoulder_mail_raidhunter_b_01.m2", }, { value = "rshoulder_mail_raidhunter_c_01.m2", + text = "rshoulder_mail_raidhunter_c_01.m2", fileId = "143518", text = "rshoulder_mail_raidhunter_c_01.m2", }, { value = "rshoulder_mail_raidshaman_a_01.m2", + text = "rshoulder_mail_raidshaman_a_01.m2", fileId = "143523", text = "rshoulder_mail_raidshaman_a_01.m2", }, { value = "rshoulder_mail_raidshaman_b_01.m2", + text = "rshoulder_mail_raidshaman_b_01.m2", fileId = "143524", text = "rshoulder_mail_raidshaman_b_01.m2", }, { value = "rshoulder_plate_a_01.m2", + text = "rshoulder_plate_a_01.m2", fileId = "143531", text = "rshoulder_plate_a_01.m2", }, { value = "rshoulder_plate_a_02.m2", + text = "rshoulder_plate_a_02.m2", fileId = "143532", text = "rshoulder_plate_a_02.m2", }, { value = "rshoulder_plate_a_02ironforgeguard.m2", + text = "rshoulder_plate_a_02ironforgeguard.m2", fileId = "143533", text = "rshoulder_plate_a_02ironforgeguard.m2", }, { value = "rshoulder_plate_a_03.m2", + text = "rshoulder_plate_a_03.m2", fileId = "143534", text = "rshoulder_plate_a_03.m2", }, { value = "rshoulder_plate_a_04.m2", + text = "rshoulder_plate_a_04.m2", fileId = "143535", text = "rshoulder_plate_a_04.m2", }, { value = "rshoulder_plate_ahnqiraj_a_01.m2", + text = "rshoulder_plate_ahnqiraj_a_01.m2", fileId = "143536", text = "rshoulder_plate_ahnqiraj_a_01.m2", }, { value = "rshoulder_plate_b_01.m2", + text = "rshoulder_plate_b_01.m2", fileId = "143537", text = "rshoulder_plate_b_01.m2", }, { value = "rshoulder_plate_b_02.m2", + text = "rshoulder_plate_b_02.m2", fileId = "143538", text = "rshoulder_plate_b_02.m2", }, { value = "rshoulder_plate_b_03.m2", + text = "rshoulder_plate_b_03.m2", fileId = "143539", text = "rshoulder_plate_b_03.m2", }, { value = "rshoulder_plate_b_04.m2", + text = "rshoulder_plate_b_04.m2", fileId = "143540", text = "rshoulder_plate_b_04.m2", }, { value = "rshoulder_plate_b_05.m2", + text = "rshoulder_plate_b_05.m2", fileId = "143541", text = "rshoulder_plate_b_05.m2", }, { value = "rshoulder_plate_c_01.m2", + text = "rshoulder_plate_c_01.m2", fileId = "143543", text = "rshoulder_plate_c_01.m2", }, { value = "rshoulder_plate_c_03.m2", + text = "rshoulder_plate_c_03.m2", fileId = "143544", text = "rshoulder_plate_c_03.m2", }, { value = "rshoulder_plate_c_04.m2", + text = "rshoulder_plate_c_04.m2", fileId = "143545", text = "rshoulder_plate_c_04.m2", }, { value = "rshoulder_plate_c_05.m2", + text = "rshoulder_plate_c_05.m2", fileId = "143546", text = "rshoulder_plate_c_05.m2", }, { value = "rshoulder_plate_d_01.m2", + text = "rshoulder_plate_d_01.m2", fileId = "143547", text = "rshoulder_plate_d_01.m2", }, { value = "rshoulder_plate_d_02.m2", + text = "rshoulder_plate_d_02.m2", fileId = "143548", text = "rshoulder_plate_d_02.m2", }, { value = "rshoulder_plate_d_03.m2", + text = "rshoulder_plate_d_03.m2", fileId = "143549", text = "rshoulder_plate_d_03.m2", }, { value = "rshoulder_plate_d_04.m2", + text = "rshoulder_plate_d_04.m2", fileId = "143550", text = "rshoulder_plate_d_04.m2", }, { value = "rshoulder_plate_d_05.m2", + text = "rshoulder_plate_d_05.m2", fileId = "143551", text = "rshoulder_plate_d_05.m2", }, { value = "rshoulder_plate_d_06.m2", + text = "rshoulder_plate_d_06.m2", fileId = "143552", text = "rshoulder_plate_d_06.m2", }, { value = "rshoulder_plate_dungeonpaladin_a_01.m2", + text = "rshoulder_plate_dungeonpaladin_a_01.m2", fileId = "143555", text = "rshoulder_plate_dungeonpaladin_a_01.m2", }, { value = "rshoulder_plate_dungeonwarrior_a_01.m2", + text = "rshoulder_plate_dungeonwarrior_a_01.m2", fileId = "143558", text = "rshoulder_plate_dungeonwarrior_a_01.m2", }, { value = "rshoulder_plate_horde_c_05.m2", + text = "rshoulder_plate_horde_c_05.m2", fileId = "143561", text = "rshoulder_plate_horde_c_05.m2", }, { value = "rshoulder_plate_horde_d_02.m2", + text = "rshoulder_plate_horde_d_02.m2", fileId = "143562", text = "rshoulder_plate_horde_d_02.m2", }, { value = "rshoulder_plate_pvpalliance_a_01.m2", + text = "rshoulder_plate_pvpalliance_a_01.m2", fileId = "143570", text = "rshoulder_plate_pvpalliance_a_01.m2", }, { value = "rshoulder_plate_pvphorde_a_01.m2", + text = "rshoulder_plate_pvphorde_a_01.m2", fileId = "143571", text = "rshoulder_plate_pvphorde_a_01.m2", }, { value = "rshoulder_plate_raidpaladin_a_01.m2", + text = "rshoulder_plate_raidpaladin_a_01.m2", fileId = "143573", text = "rshoulder_plate_raidpaladin_a_01.m2", }, { value = "rshoulder_plate_raidpaladin_b_01.m2", + text = "rshoulder_plate_raidpaladin_b_01.m2", fileId = "143574", text = "rshoulder_plate_raidpaladin_b_01.m2", }, { value = "rshoulder_plate_raidpaladin_c_01.m2", + text = "rshoulder_plate_raidpaladin_c_01.m2", fileId = "143575", text = "rshoulder_plate_raidpaladin_c_01.m2", }, { value = "rshoulder_plate_raidwarrior_a_01.m2", + text = "rshoulder_plate_raidwarrior_a_01.m2", fileId = "143583", text = "rshoulder_plate_raidwarrior_a_01.m2", }, { value = "rshoulder_plate_raidwarrior_b_01.m2", + text = "rshoulder_plate_raidwarrior_b_01.m2", fileId = "143584", text = "rshoulder_plate_raidwarrior_b_01.m2", }, { value = "rshoulder_plate_raidwarrior_c_01.m2", + text = "rshoulder_plate_raidwarrior_c_01.m2", fileId = "143585", text = "rshoulder_plate_raidwarrior_c_01.m2", }, { value = "rshoulder_raiddruid_b_01.m2", + text = "rshoulder_raiddruid_b_01.m2", fileId = "143593", text = "rshoulder_raiddruid_b_01.m2", }, { value = "rshoulder_robe_a_01.m2", + text = "rshoulder_robe_a_01.m2", fileId = "143594", text = "rshoulder_robe_a_01.m2", }, { value = "rshoulder_robe_a_02.m2", + text = "rshoulder_robe_a_02.m2", fileId = "143595", text = "rshoulder_robe_a_02.m2", }, { value = "rshoulder_robe_a_03.m2", + text = "rshoulder_robe_a_03.m2", fileId = "143596", text = "rshoulder_robe_a_03.m2", }, { value = "rshoulder_robe_ahnqiraj_a_01.m2", + text = "rshoulder_robe_ahnqiraj_a_01.m2", fileId = "143597", text = "rshoulder_robe_ahnqiraj_a_01.m2", }, { value = "rshoulder_robe_b_01.m2", + text = "rshoulder_robe_b_01.m2", fileId = "143598", text = "rshoulder_robe_b_01.m2", }, { value = "rshoulder_robe_b_02.m2", + text = "rshoulder_robe_b_02.m2", fileId = "143599", text = "rshoulder_robe_b_02.m2", }, { value = "rshoulder_robe_b_03.m2", + text = "rshoulder_robe_b_03.m2", fileId = "143600", text = "rshoulder_robe_b_03.m2", }, { value = "rshoulder_robe_b_04.m2", + text = "rshoulder_robe_b_04.m2", fileId = "143601", text = "rshoulder_robe_b_04.m2", }, { value = "rshoulder_robe_c_01.m2", + text = "rshoulder_robe_c_01.m2", fileId = "143602", text = "rshoulder_robe_c_01.m2", }, { value = "rshoulder_robe_c_02.m2", + text = "rshoulder_robe_c_02.m2", fileId = "143603", text = "rshoulder_robe_c_02.m2", }, { value = "rshoulder_robe_c_03.m2", + text = "rshoulder_robe_c_03.m2", fileId = "143604", text = "rshoulder_robe_c_03.m2", }, { value = "rshoulder_robe_d_01.m2", + text = "rshoulder_robe_d_01.m2", fileId = "143605", text = "rshoulder_robe_d_01.m2", }, { value = "rshoulder_robe_d_04.m2", + text = "rshoulder_robe_d_04.m2", fileId = "143606", text = "rshoulder_robe_d_04.m2", }, { value = "rshoulder_robe_dungeonmage_a_01.m2", + text = "rshoulder_robe_dungeonmage_a_01.m2", fileId = "143607", text = "rshoulder_robe_dungeonmage_a_01.m2", }, { value = "rshoulder_robe_dungeonpriest_a_01.m2", + text = "rshoulder_robe_dungeonpriest_a_01.m2", fileId = "143609", text = "rshoulder_robe_dungeonpriest_a_01.m2", }, { value = "rshoulder_robe_dungeonwarlock_a_01.m2", + text = "rshoulder_robe_dungeonwarlock_a_01.m2", fileId = "143611", text = "rshoulder_robe_dungeonwarlock_a_01.m2", }, { value = "rshoulder_robe_holiday_summerfest_a_01.m2", + text = "rshoulder_robe_holiday_summerfest_a_01.m2", fileId = "143613", text = "rshoulder_robe_holiday_summerfest_a_01.m2", }, { value = "rshoulder_robe_horde_a_03.m2", + text = "rshoulder_robe_horde_a_03.m2", fileId = "143614", text = "rshoulder_robe_horde_a_03.m2", }, { value = "rshoulder_robe_horde_d_01.m2", + text = "rshoulder_robe_horde_d_01.m2", fileId = "143615", text = "rshoulder_robe_horde_d_01.m2", }, { value = "rshoulder_robe_pvpalliance_a_01.m2", + text = "rshoulder_robe_pvpalliance_a_01.m2", fileId = "143620", text = "rshoulder_robe_pvpalliance_a_01.m2", }, { value = "rshoulder_robe_pvpalliance_c_01.m2", + text = "rshoulder_robe_pvpalliance_c_01.m2", fileId = "143621", text = "rshoulder_robe_pvpalliance_c_01.m2", }, { value = "rshoulder_robe_pvphorde_a_01.m2", + text = "rshoulder_robe_pvphorde_a_01.m2", fileId = "143622", text = "rshoulder_robe_pvphorde_a_01.m2", }, { value = "rshoulder_robe_pvphorde_c_01.m2", + text = "rshoulder_robe_pvphorde_c_01.m2", fileId = "143623", text = "rshoulder_robe_pvphorde_c_01.m2", }, { value = "rshoulder_robe_raid_a_01.m2", + text = "rshoulder_robe_raid_a_01.m2", fileId = "143624", text = "rshoulder_robe_raid_a_01.m2", }, { value = "rshoulder_robe_raidmage_a_01.m2", + text = "rshoulder_robe_raidmage_a_01.m2", fileId = "143625", text = "rshoulder_robe_raidmage_a_01.m2", }, { value = "rshoulder_robe_raidmage_b_01.m2", + text = "rshoulder_robe_raidmage_b_01.m2", fileId = "143626", text = "rshoulder_robe_raidmage_b_01.m2", }, { value = "rshoulder_robe_raidmage_c_01.m2", + text = "rshoulder_robe_raidmage_c_01.m2", fileId = "143627", text = "rshoulder_robe_raidmage_c_01.m2", }, { value = "rshoulder_robe_raidpriest_a_01.m2", + text = "rshoulder_robe_raidpriest_a_01.m2", fileId = "143632", text = "rshoulder_robe_raidpriest_a_01.m2", }, { value = "rshoulder_robe_raidpriest_b_01.m2", + text = "rshoulder_robe_raidpriest_b_01.m2", fileId = "143633", text = "rshoulder_robe_raidpriest_b_01.m2", }, { value = "rshoulder_robe_raidpriest_c_01.m2", + text = "rshoulder_robe_raidpriest_c_01.m2", fileId = "143634", text = "rshoulder_robe_raidpriest_c_01.m2", }, { value = "rshoulder_robe_raidshaman_c_01.m2", + text = "rshoulder_robe_raidshaman_c_01.m2", fileId = "143639", text = "rshoulder_robe_raidshaman_c_01.m2", }, { value = "rshoulder_robe_raidwarlock_a_01.m2", + text = "rshoulder_robe_raidwarlock_a_01.m2", fileId = "143640", text = "rshoulder_robe_raidwarlock_a_01.m2", }, { value = "rshoulder_robe_raidwarlock_b_01.m2", + text = "rshoulder_robe_raidwarlock_b_01.m2", fileId = "143641", text = "rshoulder_robe_raidwarlock_b_01.m2", }, { value = "rshoulder_robe_raidwarlock_c_01.m2", + text = "rshoulder_robe_raidwarlock_c_01.m2", fileId = "143642", text = "rshoulder_robe_raidwarlock_c_01.m2", }, @@ -15606,2859 +18650,3431 @@ WeakAuras.ModelPaths = { }, { value = "weapon", + text = "weapon", children = { { value = "1htrollspear01.m2", + text = "1htrollspear01.m2", fileId = "144326", text = "1htrollspear01.m2", }, { value = "ashbringer02.m2", + text = "ashbringer02.m2", fileId = "144340", text = "ashbringer02.m2", }, { value = "axe_1h_ahnqiraj_d_01.m2", + text = "axe_1h_ahnqiraj_d_01.m2", fileId = "144344", text = "axe_1h_ahnqiraj_d_01.m2", }, { value = "axe_1h_ahnqiraj_d_02.m2", + text = "axe_1h_ahnqiraj_d_02.m2", fileId = "144345", text = "axe_1h_ahnqiraj_d_02.m2", }, { value = "axe_1h_blackwing_a_01.m2", + text = "axe_1h_blackwing_a_01.m2", fileId = "144353", text = "axe_1h_blackwing_a_01.m2", }, { value = "axe_1h_blackwing_a_02.m2", + text = "axe_1h_blackwing_a_02.m2", fileId = "144355", text = "axe_1h_blackwing_a_02.m2", }, { value = "axe_1h_flint_a_01.m2", + text = "axe_1h_flint_a_01.m2", fileId = "144412", text = "axe_1h_flint_a_01.m2", }, { value = "axe_1h_hatchet_a_01.m2", + text = "axe_1h_hatchet_a_01.m2", fileId = "144416", text = "axe_1h_hatchet_a_01.m2", }, { value = "axe_1h_hatchet_a_02.m2", + text = "axe_1h_hatchet_a_02.m2", fileId = "144420", text = "axe_1h_hatchet_a_02.m2", }, { value = "axe_1h_hatchet_a_03.m2", + text = "axe_1h_hatchet_a_03.m2", fileId = "144424", text = "axe_1h_hatchet_a_03.m2", }, { value = "axe_1h_hatchet_b_01.m2", + text = "axe_1h_hatchet_b_01.m2", fileId = "144428", text = "axe_1h_hatchet_b_01.m2", }, { value = "axe_1h_hatchet_b_02.m2", + text = "axe_1h_hatchet_b_02.m2", fileId = "144432", text = "axe_1h_hatchet_b_02.m2", }, { value = "axe_1h_hatchet_b_03.m2", + text = "axe_1h_hatchet_b_03.m2", fileId = "144436", text = "axe_1h_hatchet_b_03.m2", }, { value = "axe_1h_hatchet_b_04holy.m2", + text = "axe_1h_hatchet_b_04holy.m2", fileId = "144441", text = "axe_1h_hatchet_b_04holy.m2", }, { value = "axe_1h_hatchet_c_01.m2", + text = "axe_1h_hatchet_c_01.m2", fileId = "144442", text = "axe_1h_hatchet_c_01.m2", }, { value = "axe_1h_hatchet_c_02.m2", + text = "axe_1h_hatchet_c_02.m2", fileId = "144446", text = "axe_1h_hatchet_c_02.m2", }, { value = "axe_1h_hatchet_c_03.m2", + text = "axe_1h_hatchet_c_03.m2", fileId = "144450", text = "axe_1h_hatchet_c_03.m2", }, { value = "axe_1h_hatchet_d_01.m2", + text = "axe_1h_hatchet_d_01.m2", fileId = "144455", text = "axe_1h_hatchet_d_01.m2", }, { value = "axe_1h_horde_a_01.m2", + text = "axe_1h_horde_a_01.m2", fileId = "144456", text = "axe_1h_horde_a_01.m2", }, { value = "axe_1h_horde_a_02.m2", + text = "axe_1h_horde_a_02.m2", fileId = "144462", text = "axe_1h_horde_a_02.m2", }, { value = "axe_1h_horde_a_03.m2", + text = "axe_1h_horde_a_03.m2", fileId = "144464", text = "axe_1h_horde_a_03.m2", }, { value = "axe_1h_horde_a_04.m2", + text = "axe_1h_horde_a_04.m2", fileId = "144470", text = "axe_1h_horde_a_04.m2", }, { value = "axe_1h_horde_b_01.m2", + text = "axe_1h_horde_b_01.m2", fileId = "144475", text = "axe_1h_horde_b_01.m2", }, { value = "axe_1h_horde_b_02.m2", + text = "axe_1h_horde_b_02.m2", fileId = "144478", text = "axe_1h_horde_b_02.m2", }, { value = "axe_1h_horde_b_03.m2", + text = "axe_1h_horde_b_03.m2", fileId = "144483", text = "axe_1h_horde_b_03.m2", }, { value = "axe_1h_horde_c_01.m2", + text = "axe_1h_horde_c_01.m2", fileId = "144488", text = "axe_1h_horde_c_01.m2", }, { value = "axe_1h_horde_c_02.m2", + text = "axe_1h_horde_c_02.m2", fileId = "144494", text = "axe_1h_horde_c_02.m2", }, { value = "axe_1h_horde_c_03.m2", + text = "axe_1h_horde_c_03.m2", fileId = "144500", text = "axe_1h_horde_c_03.m2", }, { value = "axe_1h_horde_c_04.m2", + text = "axe_1h_horde_c_04.m2", fileId = "144505", text = "axe_1h_horde_c_04.m2", }, { value = "axe_1h_horde_d_01.m2", + text = "axe_1h_horde_d_01.m2", fileId = "144513", text = "axe_1h_horde_d_01.m2", }, { value = "axe_1h_horde_d_02.m2", + text = "axe_1h_horde_d_02.m2", fileId = "144523", text = "axe_1h_horde_d_02.m2", }, { value = "axe_1h_horde_d_03.m2", + text = "axe_1h_horde_d_03.m2", fileId = "144536", text = "axe_1h_horde_d_03.m2", }, { value = "axe_1h_pick_a_01.m2", + text = "axe_1h_pick_a_01.m2", fileId = "144607", text = "axe_1h_pick_a_01.m2", }, { value = "axe_1h_pvpalliance_a_01.m2", + text = "axe_1h_pvpalliance_a_01.m2", fileId = "144612", text = "axe_1h_pvpalliance_a_01.m2", }, { value = "axe_1h_pvphorde_a_01.m2", + text = "axe_1h_pvphorde_a_01.m2", fileId = "144615", text = "axe_1h_pvphorde_a_01.m2", }, { value = "axe_1h_stratholme_d_01.m2", + text = "axe_1h_stratholme_d_01.m2", fileId = "144629", text = "axe_1h_stratholme_d_01.m2", }, { value = "axe_1h_troll_b_01.m2", + text = "axe_1h_troll_b_01.m2", fileId = "144631", text = "axe_1h_troll_b_01.m2", }, { value = "axe_1h_zulgurub_d_01.m2", + text = "axe_1h_zulgurub_d_01.m2", fileId = "144645", text = "axe_1h_zulgurub_d_01.m2", }, { value = "axe_2h_ahnqiraj_d_01.m2", + text = "axe_2h_ahnqiraj_d_01.m2", fileId = "144647", text = "axe_2h_ahnqiraj_d_01.m2", }, { value = "axe_2h_alliance_c_01.m2", + text = "axe_2h_alliance_c_01.m2", fileId = "144648", text = "axe_2h_alliance_c_01.m2", }, { value = "axe_2h_alliance_c_02.m2", + text = "axe_2h_alliance_c_02.m2", fileId = "144654", text = "axe_2h_alliance_c_02.m2", }, { value = "axe_2h_alliance_c_03.m2", + text = "axe_2h_alliance_c_03.m2", fileId = "144660", text = "axe_2h_alliance_c_03.m2", }, { value = "axe_2h_alliance_d_01.m2", + text = "axe_2h_alliance_d_01.m2", fileId = "144666", text = "axe_2h_alliance_d_01.m2", }, { value = "axe_2h_alliance_d_02.m2", + text = "axe_2h_alliance_d_02.m2", fileId = "144672", text = "axe_2h_alliance_d_02.m2", }, { value = "axe_2h_battle_a_01.m2", + text = "axe_2h_battle_a_01.m2", fileId = "144678", text = "axe_2h_battle_a_01.m2", }, { value = "axe_2h_battle_a_02.m2", + text = "axe_2h_battle_a_02.m2", fileId = "144682", text = "axe_2h_battle_a_02.m2", }, { value = "axe_2h_battle_a_03.m2", + text = "axe_2h_battle_a_03.m2", fileId = "144686", text = "axe_2h_battle_a_03.m2", }, { value = "axe_2h_battle_b_01.m2", + text = "axe_2h_battle_b_01.m2", fileId = "144692", text = "axe_2h_battle_b_01.m2", }, { value = "axe_2h_battle_b_02holy.m2", + text = "axe_2h_battle_b_02holy.m2", fileId = "144693", text = "axe_2h_battle_b_02holy.m2", }, { value = "axe_2h_blackwing_a_01.m2", + text = "axe_2h_blackwing_a_01.m2", fileId = "144704", text = "axe_2h_blackwing_a_01.m2", }, { value = "axe_2h_blackwing_a_02.m2", + text = "axe_2h_blackwing_a_02.m2", fileId = "144706", text = "axe_2h_blackwing_a_02.m2", }, { value = "axe_2h_horde_a_01.m2", + text = "axe_2h_horde_a_01.m2", fileId = "144763", text = "axe_2h_horde_a_01.m2", }, { value = "axe_2h_horde_a_02.m2", + text = "axe_2h_horde_a_02.m2", fileId = "144770", text = "axe_2h_horde_a_02.m2", }, { value = "axe_2h_horde_a_03.m2", + text = "axe_2h_horde_a_03.m2", fileId = "144776", text = "axe_2h_horde_a_03.m2", }, { value = "axe_2h_horde_a_04.m2", + text = "axe_2h_horde_a_04.m2", fileId = "144782", text = "axe_2h_horde_a_04.m2", }, { value = "axe_2h_horde_b_01.m2", + text = "axe_2h_horde_b_01.m2", fileId = "144788", text = "axe_2h_horde_b_01.m2", }, { value = "axe_2h_horde_c_01.m2", + text = "axe_2h_horde_c_01.m2", fileId = "144791", text = "axe_2h_horde_c_01.m2", }, { value = "axe_2h_horde_c_02.m2", + text = "axe_2h_horde_c_02.m2", fileId = "144798", text = "axe_2h_horde_c_02.m2", }, { value = "axe_2h_horde_d_01.m2", + text = "axe_2h_horde_d_01.m2", fileId = "144804", text = "axe_2h_horde_d_01.m2", }, { value = "axe_2h_horde_d_02.m2", + text = "axe_2h_horde_d_02.m2", fileId = "144810", text = "axe_2h_horde_d_02.m2", }, { value = "axe_2h_horde_d_03.m2", + text = "axe_2h_horde_d_03.m2", fileId = "144813", text = "axe_2h_horde_d_03.m2", }, { value = "axe_2h_horde_d_04.m2", + text = "axe_2h_horde_d_04.m2", fileId = "144817", text = "axe_2h_horde_d_04.m2", }, { value = "axe_2h_pvpalliance_a_01.m2", + text = "axe_2h_pvpalliance_a_01.m2", fileId = "144880", text = "axe_2h_pvpalliance_a_01.m2", }, { value = "axe_2h_pvphorde_a_01.m2", + text = "axe_2h_pvphorde_a_01.m2", fileId = "144883", text = "axe_2h_pvphorde_a_01.m2", }, { value = "axe_2h_stratholme_d_01.m2", + text = "axe_2h_stratholme_d_01.m2", fileId = "144886", text = "axe_2h_stratholme_d_01.m2", }, { value = "axe_2h_war_a_01.m2", + text = "axe_2h_war_a_01.m2", fileId = "144906", text = "axe_2h_war_a_01.m2", }, { value = "axe_2h_war_a_02.m2", + text = "axe_2h_war_a_02.m2", fileId = "144910", text = "axe_2h_war_a_02.m2", }, { value = "axe_2h_war_a_03.m2", + text = "axe_2h_war_a_03.m2", fileId = "144914", text = "axe_2h_war_a_03.m2", }, { value = "axe_2h_war_b_01.m2", + text = "axe_2h_war_b_01.m2", fileId = "144918", text = "axe_2h_war_b_01.m2", }, { value = "axe_2h_war_b_02.m2", + text = "axe_2h_war_b_02.m2", fileId = "144922", text = "axe_2h_war_b_02.m2", }, { value = "axe_2h_war_b_03.m2", + text = "axe_2h_war_b_03.m2", fileId = "144926", text = "axe_2h_war_b_03.m2", }, { value = "axe_2h_war_c_01.m2", + text = "axe_2h_war_c_01.m2", fileId = "144930", text = "axe_2h_war_c_01.m2", }, { value = "axe_2h_war_d_01.m2", + text = "axe_2h_war_d_01.m2", fileId = "144934", text = "axe_2h_war_d_01.m2", }, { value = "axe_2h_zulgurub_d_01.m2", + text = "axe_2h_zulgurub_d_01.m2", fileId = "144941", text = "axe_2h_zulgurub_d_01.m2", }, { value = "bow_1h_ahnqiraj_d_01.m2", + text = "bow_1h_ahnqiraj_d_01.m2", fileId = "144961", text = "bow_1h_ahnqiraj_d_01.m2", }, { value = "bow_1h_ahnqiraj_d_02.m2", + text = "bow_1h_ahnqiraj_d_02.m2", fileId = "144962", text = "bow_1h_ahnqiraj_d_02.m2", }, { value = "bow_1h_blackwing_a_01.m2", + text = "bow_1h_blackwing_a_01.m2", fileId = "144971", text = "bow_1h_blackwing_a_01.m2", }, { value = "bow_1h_crossbow_a_01.m2", + text = "bow_1h_crossbow_a_01.m2", fileId = "144998", text = "bow_1h_crossbow_a_01.m2", }, { value = "bow_1h_horde_a_01.m2", + text = "bow_1h_horde_a_01.m2", fileId = "145011", text = "bow_1h_horde_a_01.m2", }, { value = "bow_1h_horde_b_01.m2", + text = "bow_1h_horde_b_01.m2", fileId = "145013", text = "bow_1h_horde_b_01.m2", }, { value = "bow_1h_horde_c_01.m2", + text = "bow_1h_horde_c_01.m2", fileId = "145015", text = "bow_1h_horde_c_01.m2", }, { value = "bow_1h_hunterepic.m2", + text = "bow_1h_hunterepic.m2", fileId = "145019", text = "bow_1h_hunterepic.m2", }, { value = "bow_1h_pvpalliance_a_01.m2", + text = "bow_1h_pvpalliance_a_01.m2", fileId = "145092", text = "bow_1h_pvpalliance_a_01.m2", }, { value = "bow_1h_pvphorde_a_01.m2", + text = "bow_1h_pvphorde_a_01.m2", fileId = "145094", text = "bow_1h_pvphorde_a_01.m2", }, { value = "bow_1h_short_a_01.m2", + text = "bow_1h_short_a_01.m2", fileId = "145095", text = "bow_1h_short_a_01.m2", }, { value = "bow_1h_standard_a_01.m2", + text = "bow_1h_standard_a_01.m2", fileId = "145097", text = "bow_1h_standard_a_01.m2", }, { value = "bow_1h_standard_a_02.m2", + text = "bow_1h_standard_a_02.m2", fileId = "145101", text = "bow_1h_standard_a_02.m2", }, { value = "bow_1h_standard_b_01.m2", + text = "bow_1h_standard_b_01.m2", fileId = "145105", text = "bow_1h_standard_b_01.m2", }, { value = "bow_1h_standard_b_02.m2", + text = "bow_1h_standard_b_02.m2", fileId = "145109", text = "bow_1h_standard_b_02.m2", }, { value = "bow_1h_standard_c_01.m2", + text = "bow_1h_standard_c_01.m2", fileId = "145113", text = "bow_1h_standard_c_01.m2", }, { value = "bow_1h_standard_c_02.m2", + text = "bow_1h_standard_c_02.m2", fileId = "145117", text = "bow_1h_standard_c_02.m2", }, { value = "bow_1h_stratholme_d_01.m2", + text = "bow_1h_stratholme_d_01.m2", fileId = "145122", text = "bow_1h_stratholme_d_01.m2", }, { value = "bow_1h_zulgurub_d_01.m2", + text = "bow_1h_zulgurub_d_01.m2", fileId = "145167", text = "bow_1h_zulgurub_d_01.m2", }, { value = "bow_1h_zulgurub_d_02.m2", + text = "bow_1h_zulgurub_d_02.m2", fileId = "145169", text = "bow_1h_zulgurub_d_02.m2", }, { value = "bow_2h_crossbow_a_01.m2", + text = "bow_2h_crossbow_a_01.m2", fileId = "145170", text = "bow_2h_crossbow_a_01.m2", }, { value = "bow_2h_crossbow_b_01.m2", + text = "bow_2h_crossbow_b_01.m2", fileId = "145173", text = "bow_2h_crossbow_b_01.m2", }, { value = "bow_2h_crossbow_blackwing_a_01.m2", + text = "bow_2h_crossbow_blackwing_a_01.m2", fileId = "145183", text = "bow_2h_crossbow_blackwing_a_01.m2", }, { value = "bow_2h_crossbow_c_01.m2", + text = "bow_2h_crossbow_c_01.m2", fileId = "145184", text = "bow_2h_crossbow_c_01.m2", }, { value = "bow_2h_crossbow_pvpalliance_a_01.m2", + text = "bow_2h_crossbow_pvpalliance_a_01.m2", fileId = "145258", text = "bow_2h_crossbow_pvpalliance_a_01.m2", }, { value = "bow_2h_crossbow_pvphorde_a_01.m2", + text = "bow_2h_crossbow_pvphorde_a_01.m2", fileId = "145261", text = "bow_2h_crossbow_pvphorde_a_01.m2", }, { value = "bow_2h_crossbow_stratholme_d_01.m2", + text = "bow_2h_crossbow_stratholme_d_01.m2", fileId = "145264", text = "bow_2h_crossbow_stratholme_d_01.m2", }, { value = "bow_2h_crossbow_zulgurub_d_01.m2", + text = "bow_2h_crossbow_zulgurub_d_01.m2", fileId = "145283", text = "bow_2h_crossbow_zulgurub_d_01.m2", }, { value = "club_1h_cane_a_01.m2", + text = "club_1h_cane_a_01.m2", fileId = "145298", text = "club_1h_cane_a_01.m2", }, { value = "club_1h_exotic_a_01.m2", + text = "club_1h_exotic_a_01.m2", fileId = "145300", text = "club_1h_exotic_a_01.m2", }, { value = "club_1h_spiked_a_01.m2", + text = "club_1h_spiked_a_01.m2", fileId = "145301", text = "club_1h_spiked_a_01.m2", }, { value = "club_1h_torch_a_01.m2", + text = "club_1h_torch_a_01.m2", fileId = "145304", text = "club_1h_torch_a_01.m2", }, { value = "club_1h_torch_a_02.m2", + text = "club_1h_torch_a_02.m2", fileId = "145306", text = "club_1h_torch_a_02.m2", }, { value = "firearm_2h_rifle_a_01.m2", + text = "firearm_2h_rifle_a_01.m2", fileId = "145319", text = "firearm_2h_rifle_a_01.m2", }, { value = "firearm_2h_rifle_a_02.m2", + text = "firearm_2h_rifle_a_02.m2", fileId = "145323", text = "firearm_2h_rifle_a_02.m2", }, { value = "firearm_2h_rifle_a_03.m2", + text = "firearm_2h_rifle_a_03.m2", fileId = "145328", text = "firearm_2h_rifle_a_03.m2", }, { value = "firearm_2h_rifle_a_03scope.m2", + text = "firearm_2h_rifle_a_03scope.m2", fileId = "145329", text = "firearm_2h_rifle_a_03scope.m2", }, { value = "firearm_2h_rifle_a_04.m2", + text = "firearm_2h_rifle_a_04.m2", fileId = "145333", text = "firearm_2h_rifle_a_04.m2", }, { value = "firearm_2h_rifle_a_04scopesniper.m2", + text = "firearm_2h_rifle_a_04scopesniper.m2", fileId = "145334", text = "firearm_2h_rifle_a_04scopesniper.m2", }, { value = "firearm_2h_rifle_a_05.m2", + text = "firearm_2h_rifle_a_05.m2", fileId = "145335", text = "firearm_2h_rifle_a_05.m2", }, { value = "firearm_2h_rifle_ahnqiraj_d_01.m2", + text = "firearm_2h_rifle_ahnqiraj_d_01.m2", fileId = "145348", text = "firearm_2h_rifle_ahnqiraj_d_01.m2", }, { value = "firearm_2h_rifle_ahnqiraj_d_02.m2", + text = "firearm_2h_rifle_ahnqiraj_d_02.m2", fileId = "145350", text = "firearm_2h_rifle_ahnqiraj_d_02.m2", }, { value = "firearm_2h_rifle_b_01.m2", + text = "firearm_2h_rifle_b_01.m2", fileId = "145356", text = "firearm_2h_rifle_b_01.m2", }, { value = "firearm_2h_rifle_b_02.m2", + text = "firearm_2h_rifle_b_02.m2", fileId = "145360", text = "firearm_2h_rifle_b_02.m2", }, { value = "firearm_2h_rifle_b_03.m2", + text = "firearm_2h_rifle_b_03.m2", fileId = "145366", text = "firearm_2h_rifle_b_03.m2", }, { value = "firearm_2h_rifle_hunteralliancelvl20.m2", + text = "firearm_2h_rifle_hunteralliancelvl20.m2", fileId = "145415", text = "firearm_2h_rifle_hunteralliancelvl20.m2", }, { value = "firearm_2h_rifle_hunteralliancelvl50.m2", + text = "firearm_2h_rifle_hunteralliancelvl50.m2", fileId = "145416", text = "firearm_2h_rifle_hunteralliancelvl50.m2", }, { value = "firearm_2h_rifle_hunterhordelvl20.m2", + text = "firearm_2h_rifle_hunterhordelvl20.m2", fileId = "145417", text = "firearm_2h_rifle_hunterhordelvl20.m2", }, { value = "firearm_2h_rifle_hunterhordelvl50.m2", + text = "firearm_2h_rifle_hunterhordelvl50.m2", fileId = "145419", text = "firearm_2h_rifle_hunterhordelvl50.m2", }, { value = "firearm_2h_rifle_pvpalliance_a_01.m2", + text = "firearm_2h_rifle_pvpalliance_a_01.m2", fileId = "145475", text = "firearm_2h_rifle_pvpalliance_a_01.m2", }, { value = "firearm_2h_rifle_pvphorde_a_01.m2", + text = "firearm_2h_rifle_pvphorde_a_01.m2", fileId = "145477", text = "firearm_2h_rifle_pvphorde_a_01.m2", }, { value = "firearm_2h_rifle_raid_moltencore.m2", + text = "firearm_2h_rifle_raid_moltencore.m2", fileId = "145479", text = "firearm_2h_rifle_raid_moltencore.m2", }, { value = "firearm_2h_rifle_stratholme_d_01.m2", + text = "firearm_2h_rifle_stratholme_d_01.m2", fileId = "145482", text = "firearm_2h_rifle_stratholme_d_01.m2", }, { value = "firearm_2h_rifle_zulgurub_d_01.m2", + text = "firearm_2h_rifle_zulgurub_d_01.m2", fileId = "145507", text = "firearm_2h_rifle_zulgurub_d_01.m2", }, { value = "firearm_2h_shotgun_b_01.m2", + text = "firearm_2h_shotgun_b_01.m2", fileId = "145508", text = "firearm_2h_shotgun_b_01.m2", }, { value = "glave_1h_dualblade_a_01.m2", + text = "glave_1h_dualblade_a_01.m2", fileId = "145523", text = "glave_1h_dualblade_a_01.m2", }, { value = "glave_1h_dualblade_a_02.m2", + text = "glave_1h_dualblade_a_02.m2", fileId = "145527", text = "glave_1h_dualblade_a_02.m2", }, { value = "glave_1h_dualblade_a_03.m2", + text = "glave_1h_dualblade_a_03.m2", fileId = "145531", text = "glave_1h_dualblade_a_03.m2", }, { value = "glave_1h_dualblade_b_01.m2", + text = "glave_1h_dualblade_b_01.m2", fileId = "145535", text = "glave_1h_dualblade_b_01.m2", }, { value = "glave_1h_dualblade_b_02.m2", + text = "glave_1h_dualblade_b_02.m2", fileId = "145539", text = "glave_1h_dualblade_b_02.m2", }, { value = "glave_1h_dualblade_b_03.m2", + text = "glave_1h_dualblade_b_03.m2", fileId = "145545", text = "glave_1h_dualblade_b_03.m2", }, { value = "glave_1h_dualblade_c_01.m2", + text = "glave_1h_dualblade_c_01.m2", fileId = "145550", text = "glave_1h_dualblade_c_01.m2", }, { value = "glave_1h_dualblade_d_01.m2", + text = "glave_1h_dualblade_d_01.m2", fileId = "145554", text = "glave_1h_dualblade_d_01.m2", }, { value = "glave_1h_dualblade_d_01left.m2", + text = "glave_1h_dualblade_d_01left.m2", fileId = "145558", text = "glave_1h_dualblade_d_01left.m2", }, { value = "glave_1h_short_a_01.m2", + text = "glave_1h_short_a_01.m2", fileId = "145568", text = "glave_1h_short_a_01.m2", }, { value = "glave_1h_short_a_02.m2", + text = "glave_1h_short_a_02.m2", fileId = "145573", text = "glave_1h_short_a_02.m2", }, { value = "glave_1h_short_a_03.m2", + text = "glave_1h_short_a_03.m2", fileId = "145578", text = "glave_1h_short_a_03.m2", }, { value = "glave_1h_short_b_01.m2", + text = "glave_1h_short_b_01.m2", fileId = "145583", text = "glave_1h_short_b_01.m2", }, { value = "glave_1h_short_c_01.m2", + text = "glave_1h_short_c_01.m2", fileId = "145588", text = "glave_1h_short_c_01.m2", }, { value = "glave_1h_short_c_02.m2", + text = "glave_1h_short_c_02.m2", fileId = "145592", text = "glave_1h_short_c_02.m2", }, { value = "hammer_1h_epic_d_01.m2", + text = "hammer_1h_epic_d_01.m2", fileId = "145602", text = "hammer_1h_epic_d_01.m2", }, { value = "hammer_1h_horde_a_01.m2", + text = "hammer_1h_horde_a_01.m2", fileId = "145603", text = "hammer_1h_horde_a_01.m2", }, { value = "hammer_1h_horde_a_02.m2", + text = "hammer_1h_horde_a_02.m2", fileId = "145607", text = "hammer_1h_horde_a_02.m2", }, { value = "hammer_1h_horde_a_03.m2", + text = "hammer_1h_horde_a_03.m2", fileId = "145612", text = "hammer_1h_horde_a_03.m2", }, { value = "hammer_1h_horde_a_04.m2", + text = "hammer_1h_horde_a_04.m2", fileId = "145615", text = "hammer_1h_horde_a_04.m2", }, { value = "hammer_1h_horde_b_01.m2", + text = "hammer_1h_horde_b_01.m2", fileId = "145621", text = "hammer_1h_horde_b_01.m2", }, { value = "hammer_1h_horde_b_02.m2", + text = "hammer_1h_horde_b_02.m2", fileId = "145626", text = "hammer_1h_horde_b_02.m2", }, { value = "hammer_1h_maul_a_01.m2", + text = "hammer_1h_maul_a_01.m2", fileId = "145634", text = "hammer_1h_maul_a_01.m2", }, { value = "hammer_1h_maul_a_02.m2", + text = "hammer_1h_maul_a_02.m2", fileId = "145638", text = "hammer_1h_maul_a_02.m2", }, { value = "hammer_1h_maul_a_03.m2", + text = "hammer_1h_maul_a_03.m2", fileId = "145642", text = "hammer_1h_maul_a_03.m2", }, { value = "hammer_1h_maul_b_01.m2", + text = "hammer_1h_maul_b_01.m2", fileId = "145646", text = "hammer_1h_maul_b_01.m2", }, { value = "hammer_1h_maul_b_02.m2", + text = "hammer_1h_maul_b_02.m2", fileId = "145650", text = "hammer_1h_maul_b_02.m2", }, { value = "hammer_1h_maul_b_03.m2", + text = "hammer_1h_maul_b_03.m2", fileId = "145654", text = "hammer_1h_maul_b_03.m2", }, { value = "hammer_1h_pvpalliance_a_01.m2", + text = "hammer_1h_pvpalliance_a_01.m2", fileId = "145659", text = "hammer_1h_pvpalliance_a_01.m2", }, { value = "hammer_1h_pvphorde_a_01.m2", + text = "hammer_1h_pvphorde_a_01.m2", fileId = "145663", text = "hammer_1h_pvphorde_a_01.m2", }, { value = "hammer_1h_standard_a_01.m2", + text = "hammer_1h_standard_a_01.m2", fileId = "145666", text = "hammer_1h_standard_a_01.m2", }, { value = "hammer_1h_standard_a_02.m2", + text = "hammer_1h_standard_a_02.m2", fileId = "145670", text = "hammer_1h_standard_a_02.m2", }, { value = "hammer_1h_standard_a_03.m2", + text = "hammer_1h_standard_a_03.m2", fileId = "145674", text = "hammer_1h_standard_a_03.m2", }, { value = "hammer_1h_standard_b_01.m2", + text = "hammer_1h_standard_b_01.m2", fileId = "145678", text = "hammer_1h_standard_b_01.m2", }, { value = "hammer_1h_standard_b_02.m2", + text = "hammer_1h_standard_b_02.m2", fileId = "145682", text = "hammer_1h_standard_b_02.m2", }, { value = "hammer_1h_standard_b_03.m2", + text = "hammer_1h_standard_b_03.m2", fileId = "145686", text = "hammer_1h_standard_b_03.m2", }, { value = "hammer_1h_standard_c_01.m2", + text = "hammer_1h_standard_c_01.m2", fileId = "145690", text = "hammer_1h_standard_c_01.m2", }, { value = "hammer_1h_standard_c_03thaurissan.m2", + text = "hammer_1h_standard_c_03thaurissan.m2", fileId = "145695", text = "hammer_1h_standard_c_03thaurissan.m2", }, { value = "hammer_1h_standard_e_01.m2", + text = "hammer_1h_standard_e_01.m2", fileId = "145697", text = "hammer_1h_standard_e_01.m2", }, { value = "hammer_1h_war_b_01holy.m2", + text = "hammer_1h_war_b_01holy.m2", fileId = "145699", text = "hammer_1h_war_b_01holy.m2", }, { value = "hammer_1h_war_d_01.m2", + text = "hammer_1h_war_d_01.m2", fileId = "145700", text = "hammer_1h_war_d_01.m2", }, { value = "hammer_2h_horde_a_01.m2", + text = "hammer_2h_horde_a_01.m2", fileId = "145718", text = "hammer_2h_horde_a_01.m2", }, { value = "hammer_2h_horde_a_02.m2", + text = "hammer_2h_horde_a_02.m2", fileId = "145723", text = "hammer_2h_horde_a_02.m2", }, { value = "hammer_2h_horde_a_03.m2", + text = "hammer_2h_horde_a_03.m2", fileId = "145725", text = "hammer_2h_horde_a_03.m2", }, { value = "hammer_2h_horde_a_04.m2", + text = "hammer_2h_horde_a_04.m2", fileId = "145730", text = "hammer_2h_horde_a_04.m2", }, { value = "hammer_2h_horde_b_01.m2", + text = "hammer_2h_horde_b_01.m2", fileId = "145732", text = "hammer_2h_horde_b_01.m2", }, { value = "hammer_2h_horde_b_02.m2", + text = "hammer_2h_horde_b_02.m2", fileId = "145737", text = "hammer_2h_horde_b_02.m2", }, { value = "hammer_2h_horde_b_03.m2", + text = "hammer_2h_horde_b_03.m2", fileId = "145742", text = "hammer_2h_horde_b_03.m2", }, { value = "hammer_2h_horde_b_04.m2", + text = "hammer_2h_horde_b_04.m2", fileId = "145743", text = "hammer_2h_horde_b_04.m2", }, { value = "hammer_2h_horde_c_01.m2", + text = "hammer_2h_horde_c_01.m2", fileId = "145745", text = "hammer_2h_horde_c_01.m2", }, { value = "hammer_2h_horde_c_02.m2", + text = "hammer_2h_horde_c_02.m2", fileId = "145752", text = "hammer_2h_horde_c_02.m2", }, { value = "hammer_2h_horde_c_03.m2", + text = "hammer_2h_horde_c_03.m2", fileId = "145758", text = "hammer_2h_horde_c_03.m2", }, { value = "hammer_2h_horde_c_04.m2", + text = "hammer_2h_horde_c_04.m2", fileId = "145760", text = "hammer_2h_horde_c_04.m2", }, { value = "hammer_2h_maul_a_01.m2", + text = "hammer_2h_maul_a_01.m2", fileId = "145764", text = "hammer_2h_maul_a_01.m2", }, { value = "hammer_2h_maul_a_02.m2", + text = "hammer_2h_maul_a_02.m2", fileId = "145768", text = "hammer_2h_maul_a_02.m2", }, { value = "hammer_2h_maul_a_03.m2", + text = "hammer_2h_maul_a_03.m2", fileId = "145772", text = "hammer_2h_maul_a_03.m2", }, { value = "hammer_2h_maul_b_01.m2", + text = "hammer_2h_maul_b_01.m2", fileId = "145776", text = "hammer_2h_maul_b_01.m2", }, { value = "hammer_2h_maul_b_02.m2", + text = "hammer_2h_maul_b_02.m2", fileId = "145780", text = "hammer_2h_maul_b_02.m2", }, { value = "hammer_2h_maul_b_03.m2", + text = "hammer_2h_maul_b_03.m2", fileId = "145785", text = "hammer_2h_maul_b_03.m2", }, { value = "hammer_2h_pvpalliance_a_01.m2", + text = "hammer_2h_pvpalliance_a_01.m2", fileId = "145790", text = "hammer_2h_pvpalliance_a_01.m2", }, { value = "hammer_2h_pvphorde_a_01.m2", + text = "hammer_2h_pvphorde_a_01.m2", fileId = "145794", text = "hammer_2h_pvphorde_a_01.m2", }, { value = "hammer_2h_standard_d_01.m2", + text = "hammer_2h_standard_d_01.m2", fileId = "145797", text = "hammer_2h_standard_d_01.m2", }, { value = "hammer_2h_standard_d_02.m2", + text = "hammer_2h_standard_d_02.m2", fileId = "145801", text = "hammer_2h_standard_d_02.m2", }, { value = "hammer_2h_standard_d_03.m2", + text = "hammer_2h_standard_d_03.m2", fileId = "145802", text = "hammer_2h_standard_d_03.m2", }, { value = "hammer_2h_standard_e_01.m2", + text = "hammer_2h_standard_e_01.m2", fileId = "145809", text = "hammer_2h_standard_e_01.m2", }, { value = "hammer_2h_war_a_01.m2", + text = "hammer_2h_war_a_01.m2", fileId = "145810", text = "hammer_2h_war_a_01.m2", }, { value = "hammer_2h_war_b_01holy.m2", + text = "hammer_2h_war_b_01holy.m2", fileId = "145815", text = "hammer_2h_war_b_01holy.m2", }, { value = "hand_1h_ahnqiraj_d_01.m2", + text = "hand_1h_ahnqiraj_d_01.m2", fileId = "145817", text = "hand_1h_ahnqiraj_d_01.m2", }, { value = "hand_1h_ahnqiraj_d_02.m2", + text = "hand_1h_ahnqiraj_d_02.m2", fileId = "145819", text = "hand_1h_ahnqiraj_d_02.m2", }, { value = "hand_1h_ahnqiraj_d_03.m2", + text = "hand_1h_ahnqiraj_d_03.m2", fileId = "145821", text = "hand_1h_ahnqiraj_d_03.m2", }, { value = "hand_1h_blackwing_a_01.m2", + text = "hand_1h_blackwing_a_01.m2", fileId = "145827", text = "hand_1h_blackwing_a_01.m2", }, { value = "hand_1h_blackwing_a_01left.m2", + text = "hand_1h_blackwing_a_01left.m2", fileId = "145828", text = "hand_1h_blackwing_a_01left.m2", }, { value = "hand_1h_blackwing_a_02.m2", + text = "hand_1h_blackwing_a_02.m2", fileId = "145830", text = "hand_1h_blackwing_a_02.m2", }, { value = "hand_1h_blackwing_a_02left.m2", + text = "hand_1h_blackwing_a_02left.m2", fileId = "145831", text = "hand_1h_blackwing_a_02left.m2", }, { value = "hand_1h_claw_a_01.m2", + text = "hand_1h_claw_a_01.m2", fileId = "145832", text = "hand_1h_claw_a_01.m2", }, { value = "hand_1h_claw_a_01left.m2", + text = "hand_1h_claw_a_01left.m2", fileId = "145834", text = "hand_1h_claw_a_01left.m2", }, { value = "hand_1h_claw_a_02.m2", + text = "hand_1h_claw_a_02.m2", fileId = "145837", text = "hand_1h_claw_a_02.m2", }, { value = "hand_1h_claw_a_02left.m2", + text = "hand_1h_claw_a_02left.m2", fileId = "145840", text = "hand_1h_claw_a_02left.m2", }, { value = "hand_1h_claw_b_01.m2", + text = "hand_1h_claw_b_01.m2", fileId = "145842", text = "hand_1h_claw_b_01.m2", }, { value = "hand_1h_claw_b_01left.m2", + text = "hand_1h_claw_b_01left.m2", fileId = "145844", text = "hand_1h_claw_b_01left.m2", }, { value = "hand_1h_knuckle_a_01.m2", + text = "hand_1h_knuckle_a_01.m2", fileId = "145855", text = "hand_1h_knuckle_a_01.m2", }, { value = "hand_1h_knuckle_b_01.m2", + text = "hand_1h_knuckle_b_01.m2", fileId = "145859", text = "hand_1h_knuckle_b_01.m2", }, { value = "hand_1h_naxxramas_d_01.m2", + text = "hand_1h_naxxramas_d_01.m2", fileId = "145864", text = "hand_1h_naxxramas_d_01.m2", }, { value = "hand_1h_pvpalliance_a_01.m2", + text = "hand_1h_pvpalliance_a_01.m2", fileId = "145907", text = "hand_1h_pvpalliance_a_01.m2", }, { value = "hand_1h_pvpalliance_a_01left.m2", + text = "hand_1h_pvpalliance_a_01left.m2", fileId = "145908", text = "hand_1h_pvpalliance_a_01left.m2", }, { value = "hand_1h_zulgurub_d_01.m2", + text = "hand_1h_zulgurub_d_01.m2", fileId = "145976", text = "hand_1h_zulgurub_d_01.m2", }, { value = "hand_1h_zulgurub_d_01left.m2", + text = "hand_1h_zulgurub_d_01left.m2", fileId = "145977", text = "hand_1h_zulgurub_d_01left.m2", }, { value = "hand_1h_zulgurub_d_02.m2", + text = "hand_1h_zulgurub_d_02.m2", fileId = "145978", text = "hand_1h_zulgurub_d_02.m2", }, { value = "hand_1h_zulgurub_d_02left.m2", + text = "hand_1h_zulgurub_d_02left.m2", fileId = "145980", text = "hand_1h_zulgurub_d_02left.m2", }, { value = "hand_lh_pvphorde_a_01.m2", + text = "hand_lh_pvphorde_a_01.m2", fileId = "145982", text = "hand_lh_pvphorde_a_01.m2", }, { value = "hand_rh_pvphorde_a_01.m2", + text = "hand_rh_pvphorde_a_01.m2", fileId = "145983", text = "hand_rh_pvphorde_a_01.m2", }, { value = "knife_1h_ahnqiraj_d_01.m2", + text = "knife_1h_ahnqiraj_d_01.m2", fileId = "145994", text = "knife_1h_ahnqiraj_d_01.m2", }, { value = "knife_1h_ahnqiraj_d_02.m2", + text = "knife_1h_ahnqiraj_d_02.m2", fileId = "145995", text = "knife_1h_ahnqiraj_d_02.m2", }, { value = "knife_1h_ahnqiraj_d_03.m2", + text = "knife_1h_ahnqiraj_d_03.m2", fileId = "145996", text = "knife_1h_ahnqiraj_d_03.m2", }, { value = "knife_1h_ahnqiraj_d_04.m2", + text = "knife_1h_ahnqiraj_d_04.m2", fileId = "145997", text = "knife_1h_ahnqiraj_d_04.m2", }, { value = "knife_1h_blackwing_a_01.m2", + text = "knife_1h_blackwing_a_01.m2", fileId = "146009", text = "knife_1h_blackwing_a_01.m2", }, { value = "knife_1h_blackwing_a_02.m2", + text = "knife_1h_blackwing_a_02.m2", fileId = "146011", text = "knife_1h_blackwing_a_02.m2", }, { value = "knife_1h_cleaver_a_01.m2", + text = "knife_1h_cleaver_a_01.m2", fileId = "146043", text = "knife_1h_cleaver_a_01.m2", }, { value = "knife_1h_dagger_a_01.m2", + text = "knife_1h_dagger_a_01.m2", fileId = "146068", text = "knife_1h_dagger_a_01.m2", }, { value = "knife_1h_dagger_a_02.m2", + text = "knife_1h_dagger_a_02.m2", fileId = "146072", text = "knife_1h_dagger_a_02.m2", }, { value = "knife_1h_dagger_a_03.m2", + text = "knife_1h_dagger_a_03.m2", fileId = "146076", text = "knife_1h_dagger_a_03.m2", }, { value = "knife_1h_dagger_a_04.m2", + text = "knife_1h_dagger_a_04.m2", fileId = "146081", text = "knife_1h_dagger_a_04.m2", }, { value = "knife_1h_dagger_b_01.m2", + text = "knife_1h_dagger_b_01.m2", fileId = "146086", text = "knife_1h_dagger_b_01.m2", }, { value = "knife_1h_dagger_b_02.m2", + text = "knife_1h_dagger_b_02.m2", fileId = "146090", text = "knife_1h_dagger_b_02.m2", }, { value = "knife_1h_dagger_b_03.m2", + text = "knife_1h_dagger_b_03.m2", fileId = "146094", text = "knife_1h_dagger_b_03.m2", }, { value = "knife_1h_dagger_b_04.m2", + text = "knife_1h_dagger_b_04.m2", fileId = "146101", text = "knife_1h_dagger_b_04.m2", }, { value = "knife_1h_dagger_b_05.m2", + text = "knife_1h_dagger_b_05.m2", fileId = "146107", text = "knife_1h_dagger_b_05.m2", }, { value = "knife_1h_dagger_b_06.m2", + text = "knife_1h_dagger_b_06.m2", fileId = "146112", text = "knife_1h_dagger_b_06.m2", }, { value = "knife_1h_epic_a_03.m2", + text = "knife_1h_epic_a_03.m2", fileId = "146143", text = "knife_1h_epic_a_03.m2", }, { value = "knife_1h_epic_a_04.m2", + text = "knife_1h_epic_a_04.m2", fileId = "146144", text = "knife_1h_epic_a_04.m2", }, { value = "knife_1h_epic_a_05.m2", + text = "knife_1h_epic_a_05.m2", fileId = "146146", text = "knife_1h_epic_a_05.m2", }, { value = "knife_1h_exotic_a_01.m2", + text = "knife_1h_exotic_a_01.m2", fileId = "146148", text = "knife_1h_exotic_a_01.m2", }, { value = "knife_1h_exotic_a_02.m2", + text = "knife_1h_exotic_a_02.m2", fileId = "146152", text = "knife_1h_exotic_a_02.m2", }, { value = "knife_1h_exotic_b_01.m2", + text = "knife_1h_exotic_b_01.m2", fileId = "146156", text = "knife_1h_exotic_b_01.m2", }, { value = "knife_1h_exotic_b_02.m2", + text = "knife_1h_exotic_b_02.m2", fileId = "146160", text = "knife_1h_exotic_b_02.m2", }, { value = "knife_1h_horde_a_01.m2", + text = "knife_1h_horde_a_01.m2", fileId = "146170", text = "knife_1h_horde_a_01.m2", }, { value = "knife_1h_hotpoker_a_01.m2", + text = "knife_1h_hotpoker_a_01.m2", fileId = "146174", text = "knife_1h_hotpoker_a_01.m2", }, { value = "knife_1h_hunting_a_01.m2", + text = "knife_1h_hunting_a_01.m2", fileId = "146176", text = "knife_1h_hunting_a_01.m2", }, { value = "knife_1h_hunting_a_02.m2", + text = "knife_1h_hunting_a_02.m2", fileId = "146180", text = "knife_1h_hunting_a_02.m2", }, { value = "knife_1h_hunting_b_01.m2", + text = "knife_1h_hunting_b_01.m2", fileId = "146184", text = "knife_1h_hunting_b_01.m2", }, { value = "knife_1h_hunting_b_02.m2", + text = "knife_1h_hunting_b_02.m2", fileId = "146188", text = "knife_1h_hunting_b_02.m2", }, { value = "knife_1h_katana_a_01.m2", + text = "knife_1h_katana_a_01.m2", fileId = "146203", text = "knife_1h_katana_a_01.m2", }, { value = "knife_1h_katana_b_01.m2", + text = "knife_1h_katana_b_01.m2", fileId = "146207", text = "knife_1h_katana_b_01.m2", }, { value = "knife_1h_korean_a_01.m2", + text = "knife_1h_korean_a_01.m2", fileId = "146211", text = "knife_1h_korean_a_01.m2", }, { value = "knife_1h_naxxramas_d_01.m2", + text = "knife_1h_naxxramas_d_01.m2", fileId = "146221", text = "knife_1h_naxxramas_d_01.m2", }, { value = "knife_1h_pvpalliance_a_01.m2", + text = "knife_1h_pvpalliance_a_01.m2", fileId = "146279", text = "knife_1h_pvpalliance_a_01.m2", }, { value = "knife_1h_pvphorde_a_01.m2", + text = "knife_1h_pvphorde_a_01.m2", fileId = "146284", text = "knife_1h_pvphorde_a_01.m2", }, { value = "knife_1h_standard_a_01.m2", + text = "knife_1h_standard_a_01.m2", fileId = "146306", text = "knife_1h_standard_a_01.m2", }, { value = "knife_1h_stratholme_d_01.m2", + text = "knife_1h_stratholme_d_01.m2", fileId = "146309", text = "knife_1h_stratholme_d_01.m2", }, { value = "knife_1h_stratholme_d_02.m2", + text = "knife_1h_stratholme_d_02.m2", fileId = "146311", text = "knife_1h_stratholme_d_02.m2", }, { value = "knife_1h_stratholme_d_03.m2", + text = "knife_1h_stratholme_d_03.m2", fileId = "146313", text = "knife_1h_stratholme_d_03.m2", }, { value = "knife_1h_tarantula_b_01.m2", + text = "knife_1h_tarantula_b_01.m2", fileId = "146345", text = "knife_1h_tarantula_b_01.m2", }, { value = "knife_1h_vulture_a_01.m2", + text = "knife_1h_vulture_a_01.m2", fileId = "146369", text = "knife_1h_vulture_a_01.m2", }, { value = "knife_1h_zulgurub_d_01.m2", + text = "knife_1h_zulgurub_d_01.m2", fileId = "146398", text = "knife_1h_zulgurub_d_01.m2", }, { value = "knife_1h_zulgurub_d_02.m2", + text = "knife_1h_zulgurub_d_02.m2", fileId = "146404", text = "knife_1h_zulgurub_d_02.m2", }, { value = "mace_1h_ahnqiraj_d_01.m2", + text = "mace_1h_ahnqiraj_d_01.m2", fileId = "146464", text = "mace_1h_ahnqiraj_d_01.m2", }, { value = "mace_1h_ahnqiraj_d_02.m2", + text = "mace_1h_ahnqiraj_d_02.m2", fileId = "146466", text = "mace_1h_ahnqiraj_d_02.m2", }, { value = "mace_1h_ahnqiraj_d_03.m2", + text = "mace_1h_ahnqiraj_d_03.m2", fileId = "146468", text = "mace_1h_ahnqiraj_d_03.m2", }, { value = "mace_1h_blackwing_a_01.m2", + text = "mace_1h_blackwing_a_01.m2", fileId = "146494", text = "mace_1h_blackwing_a_01.m2", }, { value = "mace_1h_blackwing_a_02.m2", + text = "mace_1h_blackwing_a_02.m2", fileId = "146497", text = "mace_1h_blackwing_a_02.m2", }, { value = "mace_1h_flanged_a_01.m2", + text = "mace_1h_flanged_a_01.m2", fileId = "146531", text = "mace_1h_flanged_a_01.m2", }, { value = "mace_1h_flanged_a_02.m2", + text = "mace_1h_flanged_a_02.m2", fileId = "146533", text = "mace_1h_flanged_a_02.m2", }, { value = "mace_1h_flanged_a_03.m2", + text = "mace_1h_flanged_a_03.m2", fileId = "146537", text = "mace_1h_flanged_a_03.m2", }, { value = "mace_1h_flanged_b_01.m2", + text = "mace_1h_flanged_b_01.m2", fileId = "146541", text = "mace_1h_flanged_b_01.m2", }, { value = "mace_1h_flanged_b_02.m2", + text = "mace_1h_flanged_b_02.m2", fileId = "146543", text = "mace_1h_flanged_b_02.m2", }, { value = "mace_1h_flanged_d_01.m2", + text = "mace_1h_flanged_d_01.m2", fileId = "146546", text = "mace_1h_flanged_d_01.m2", }, { value = "mace_1h_naxxramas_d_01.m2", + text = "mace_1h_naxxramas_d_01.m2", fileId = "146557", text = "mace_1h_naxxramas_d_01.m2", }, { value = "mace_1h_naxxramas_d_02.m2", + text = "mace_1h_naxxramas_d_02.m2", fileId = "146559", text = "mace_1h_naxxramas_d_02.m2", }, { value = "mace_1h_naxxramas_d_03.m2", + text = "mace_1h_naxxramas_d_03.m2", fileId = "146561", text = "mace_1h_naxxramas_d_03.m2", }, { value = "mace_1h_spiked_a_01.m2", + text = "mace_1h_spiked_a_01.m2", fileId = "146643", text = "mace_1h_spiked_a_01.m2", }, { value = "mace_1h_spiked_a_02.m2", + text = "mace_1h_spiked_a_02.m2", fileId = "146645", text = "mace_1h_spiked_a_02.m2", }, { value = "mace_1h_spiked_a_03.m2", + text = "mace_1h_spiked_a_03.m2", fileId = "146649", text = "mace_1h_spiked_a_03.m2", }, { value = "mace_1h_spiked_b_01.m2", + text = "mace_1h_spiked_b_01.m2", fileId = "146654", text = "mace_1h_spiked_b_01.m2", }, { value = "mace_1h_spiked_b_02.m2", + text = "mace_1h_spiked_b_02.m2", fileId = "146657", text = "mace_1h_spiked_b_02.m2", }, { value = "mace_1h_standard_a_01.m2", + text = "mace_1h_standard_a_01.m2", fileId = "146659", text = "mace_1h_standard_a_01.m2", }, { value = "mace_1h_standard_a_02.m2", + text = "mace_1h_standard_a_02.m2", fileId = "146661", text = "mace_1h_standard_a_02.m2", }, { value = "mace_1h_standard_b_01.m2", + text = "mace_1h_standard_b_01.m2", fileId = "146662", text = "mace_1h_standard_b_01.m2", }, { value = "mace_1h_stratholme_d_01.m2", + text = "mace_1h_stratholme_d_01.m2", fileId = "146665", text = "mace_1h_stratholme_d_01.m2", }, { value = "mace_1h_stratholme_d_02.m2", + text = "mace_1h_stratholme_d_02.m2", fileId = "146667", text = "mace_1h_stratholme_d_02.m2", }, { value = "mace_1h_tauren_b_01.m2", + text = "mace_1h_tauren_b_01.m2", fileId = "146694", text = "mace_1h_tauren_b_01.m2", }, { value = "mace_1h_tauren_b_02.m2", + text = "mace_1h_tauren_b_02.m2", fileId = "146696", text = "mace_1h_tauren_b_02.m2", }, { value = "mace_1h_zulgurub_d_01.m2", + text = "mace_1h_zulgurub_d_01.m2", fileId = "146725", text = "mace_1h_zulgurub_d_01.m2", }, { value = "mace_1h_zulgurub_d_02.m2", + text = "mace_1h_zulgurub_d_02.m2", fileId = "146727", text = "mace_1h_zulgurub_d_02.m2", }, { value = "mace_2h_ahnqiraj_d_01.m2", + text = "mace_2h_ahnqiraj_d_01.m2", fileId = "146729", text = "mace_2h_ahnqiraj_d_01.m2", }, { value = "mace_2h_blackwing_a_01.m2", + text = "mace_2h_blackwing_a_01.m2", fileId = "146752", text = "mace_2h_blackwing_a_01.m2", }, { value = "mace_2h_blackwing_a_02.m2", + text = "mace_2h_blackwing_a_02.m2", fileId = "146754", text = "mace_2h_blackwing_a_02.m2", }, { value = "mace_2h_flanged_a_01.m2", + text = "mace_2h_flanged_a_01.m2", fileId = "146790", text = "mace_2h_flanged_a_01.m2", }, { value = "mace_2h_flanged_a_02.m2", + text = "mace_2h_flanged_a_02.m2", fileId = "146794", text = "mace_2h_flanged_a_02.m2", }, { value = "mace_2h_flanged_c_01.m2", + text = "mace_2h_flanged_c_01.m2", fileId = "146798", text = "mace_2h_flanged_c_01.m2", }, { value = "mace_2h_flanged_c_02.m2", + text = "mace_2h_flanged_c_02.m2", fileId = "146800", text = "mace_2h_flanged_c_02.m2", }, { value = "mace_2h_horde_a_01.m2", + text = "mace_2h_horde_a_01.m2", fileId = "146809", text = "mace_2h_horde_a_01.m2", }, { value = "mace_2h_horde_b_01.m2", + text = "mace_2h_horde_b_01.m2", fileId = "146810", text = "mace_2h_horde_b_01.m2", }, { value = "mace_2h_horde_c_02.m2", + text = "mace_2h_horde_c_02.m2", fileId = "146811", text = "mace_2h_horde_c_02.m2", }, { value = "mace_2h_spiked_a_01.m2", + text = "mace_2h_spiked_a_01.m2", fileId = "146881", text = "mace_2h_spiked_a_01.m2", }, { value = "mace_2h_spiked_a_02.m2", + text = "mace_2h_spiked_a_02.m2", fileId = "146883", text = "mace_2h_spiked_a_02.m2", }, { value = "mace_2h_spiked_a_03.m2", + text = "mace_2h_spiked_a_03.m2", fileId = "146887", text = "mace_2h_spiked_a_03.m2", }, { value = "mace_2h_spiked_b_01.m2", + text = "mace_2h_spiked_b_01.m2", fileId = "146891", text = "mace_2h_spiked_b_01.m2", }, { value = "mace_2h_spiked_b_02.m2", + text = "mace_2h_spiked_b_02.m2", fileId = "146893", text = "mace_2h_spiked_b_02.m2", }, { value = "mace_2h_standard_a_01.m2", + text = "mace_2h_standard_a_01.m2", fileId = "146897", text = "mace_2h_standard_a_01.m2", }, { value = "mace_2h_standard_a_02.m2", + text = "mace_2h_standard_a_02.m2", fileId = "146899", text = "mace_2h_standard_a_02.m2", }, { value = "mace_2h_standard_a_03.m2", + text = "mace_2h_standard_a_03.m2", fileId = "146903", text = "mace_2h_standard_a_03.m2", }, { value = "mace_2h_stratholme_d_01.m2", + text = "mace_2h_stratholme_d_01.m2", fileId = "146907", text = "mace_2h_stratholme_d_01.m2", }, { value = "mace_2h_stratholme_d_02.m2", + text = "mace_2h_stratholme_d_02.m2", fileId = "146909", text = "mace_2h_stratholme_d_02.m2", }, { value = "mace_2h_zulgurub_d_01.m2", + text = "mace_2h_zulgurub_d_01.m2", fileId = "146916", text = "mace_2h_zulgurub_d_01.m2", }, { value = "misc_1h_bag_a_01.m2", + text = "misc_1h_bag_a_01.m2", fileId = "146919", text = "misc_1h_bag_a_01.m2", }, { value = "misc_1h_bone_a_01.m2", + text = "misc_1h_bone_a_01.m2", fileId = "146926", text = "misc_1h_bone_a_01.m2", }, { value = "misc_1h_book_a_01.m2", + text = "misc_1h_book_a_01.m2", fileId = "146930", text = "misc_1h_book_a_01.m2", }, { value = "misc_1h_book_b_01.m2", + text = "misc_1h_book_b_01.m2", fileId = "146934", text = "misc_1h_book_b_01.m2", }, { value = "misc_1h_book_b_02.m2", + text = "misc_1h_book_b_02.m2", fileId = "146940", text = "misc_1h_book_b_02.m2", }, { value = "misc_1h_book_c_01.m2", + text = "misc_1h_book_c_01.m2", fileId = "146943", text = "misc_1h_book_c_01.m2", }, { value = "misc_1h_book_c_02.m2", + text = "misc_1h_book_c_02.m2", fileId = "146947", text = "misc_1h_book_c_02.m2", }, { value = "misc_1h_bottle_a_01.m2", + text = "misc_1h_bottle_a_01.m2", fileId = "146950", text = "misc_1h_bottle_a_01.m2", }, { value = "misc_1h_bottle_a_02.m2", + text = "misc_1h_bottle_a_02.m2", fileId = "146955", text = "misc_1h_bottle_a_02.m2", }, { value = "misc_1h_bread_a_01.m2", + text = "misc_1h_bread_a_01.m2", fileId = "146956", text = "misc_1h_bread_a_01.m2", }, { value = "misc_1h_bread_a_02.m2", + text = "misc_1h_bread_a_02.m2", fileId = "146960", text = "misc_1h_bread_a_02.m2", }, { value = "misc_1h_bucket_a_01.m2", + text = "misc_1h_bucket_a_01.m2", fileId = "146961", text = "misc_1h_bucket_a_01.m2", }, { value = "misc_1h_fish_a_01.m2", + text = "misc_1h_fish_a_01.m2", fileId = "146965", text = "misc_1h_fish_a_01.m2", }, { value = "misc_1h_flower_a_01.m2", + text = "misc_1h_flower_a_01.m2", fileId = "146970", text = "misc_1h_flower_a_01.m2", }, { value = "misc_1h_flower_a_02.m2", + text = "misc_1h_flower_a_02.m2", fileId = "146974", text = "misc_1h_flower_a_02.m2", }, { value = "misc_1h_flower_a_03.m2", + text = "misc_1h_flower_a_03.m2", fileId = "146978", text = "misc_1h_flower_a_03.m2", }, { value = "misc_1h_flower_a_04.m2", + text = "misc_1h_flower_a_04.m2", fileId = "146982", text = "misc_1h_flower_a_04.m2", }, { value = "misc_1h_flower_b_01.m2", + text = "misc_1h_flower_b_01.m2", fileId = "146986", text = "misc_1h_flower_b_01.m2", }, { value = "misc_1h_flower_b_02.m2", + text = "misc_1h_flower_b_02.m2", fileId = "146990", text = "misc_1h_flower_b_02.m2", }, { value = "misc_1h_gizmo_a_01.m2", + text = "misc_1h_gizmo_a_01.m2", fileId = "146991", text = "misc_1h_gizmo_a_01.m2", }, { value = "misc_1h_glass_a_01.m2", + text = "misc_1h_glass_a_01.m2", fileId = "146995", text = "misc_1h_glass_a_01.m2", }, { value = "misc_1h_glass_a_02.m2", + text = "misc_1h_glass_a_02.m2", fileId = "146998", text = "misc_1h_glass_a_02.m2", }, { value = "misc_1h_holysymbol_a_01.m2", + text = "misc_1h_holysymbol_a_01.m2", fileId = "147000", text = "misc_1h_holysymbol_a_01.m2", }, { value = "misc_1h_lantern_a_01.m2", + text = "misc_1h_lantern_a_01.m2", fileId = "147001", text = "misc_1h_lantern_a_01.m2", }, { value = "misc_1h_lantern_b_01.m2", + text = "misc_1h_lantern_b_01.m2", fileId = "147003", text = "misc_1h_lantern_b_01.m2", }, { value = "misc_1h_mutton_a_01.m2", + text = "misc_1h_mutton_a_01.m2", fileId = "147005", text = "misc_1h_mutton_a_01.m2", }, { value = "misc_1h_mutton_a_02.m2", + text = "misc_1h_mutton_a_02.m2", fileId = "147008", text = "misc_1h_mutton_a_02.m2", }, { value = "misc_1h_mutton_b_01.m2", + text = "misc_1h_mutton_b_01.m2", fileId = "147009", text = "misc_1h_mutton_b_01.m2", }, { value = "misc_1h_mutton_b_02.m2", + text = "misc_1h_mutton_b_02.m2", fileId = "147011", text = "misc_1h_mutton_b_02.m2", }, { value = "misc_1h_orb_a_01.m2", + text = "misc_1h_orb_a_01.m2", fileId = "147013", text = "misc_1h_orb_a_01.m2", }, { value = "misc_1h_orb_a_02.m2", + text = "misc_1h_orb_a_02.m2", fileId = "147020", text = "misc_1h_orb_a_02.m2", }, { value = "misc_1h_orb_c_01.m2", + text = "misc_1h_orb_c_01.m2", fileId = "147027", text = "misc_1h_orb_c_01.m2", }, { value = "misc_1h_potion_a_01.m2", + text = "misc_1h_potion_a_01.m2", fileId = "147029", text = "misc_1h_potion_a_01.m2", }, { value = "misc_1h_potion_b_01.m2", + text = "misc_1h_potion_b_01.m2", fileId = "147035", text = "misc_1h_potion_b_01.m2", }, { value = "misc_1h_rollingpin_a_01.m2", + text = "misc_1h_rollingpin_a_01.m2", fileId = "147039", text = "misc_1h_rollingpin_a_01.m2", }, { value = "misc_1h_seal_a_01.m2", + text = "misc_1h_seal_a_01.m2", fileId = "147042", text = "misc_1h_seal_a_01.m2", }, { value = "misc_1h_seal_b_01.m2", + text = "misc_1h_seal_b_01.m2", fileId = "147043", text = "misc_1h_seal_b_01.m2", }, { value = "misc_1h_seal_c_01.m2", + text = "misc_1h_seal_c_01.m2", fileId = "147046", text = "misc_1h_seal_c_01.m2", }, { value = "misc_1h_skull_b_01.m2", + text = "misc_1h_skull_b_01.m2", fileId = "147051", text = "misc_1h_skull_b_01.m2", }, { value = "misc_1h_sparkler_a_01blue.m2", + text = "misc_1h_sparkler_a_01blue.m2", fileId = "147057", text = "misc_1h_sparkler_a_01blue.m2", }, { value = "misc_1h_sparkler_a_01red.m2", + text = "misc_1h_sparkler_a_01red.m2", fileId = "147058", text = "misc_1h_sparkler_a_01red.m2", }, { value = "misc_1h_sparkler_a_01white.m2", + text = "misc_1h_sparkler_a_01white.m2", fileId = "147059", text = "misc_1h_sparkler_a_01white.m2", }, { value = "misc_1h_tankard_a_01.m2", + text = "misc_1h_tankard_a_01.m2", fileId = "147060", text = "misc_1h_tankard_a_01.m2", }, { value = "misc_1h_waterwand_a_01.m2", + text = "misc_1h_waterwand_a_01.m2", fileId = "147066", text = "misc_1h_waterwand_a_01.m2", }, { value = "misc_1h_wrench_a_01.m2", + text = "misc_1h_wrench_a_01.m2", fileId = "147068", text = "misc_1h_wrench_a_01.m2", }, { value = "misc_1h_zulgurub_d_01.m2", + text = "misc_1h_zulgurub_d_01.m2", fileId = "147069", text = "misc_1h_zulgurub_d_01.m2", }, { value = "misc_1h_zulgurub_d_02.m2", + text = "misc_1h_zulgurub_d_02.m2", fileId = "147073", text = "misc_1h_zulgurub_d_02.m2", }, { value = "misc_2h_broom_a_01.m2", + text = "misc_2h_broom_a_01.m2", fileId = "147080", text = "misc_2h_broom_a_01.m2", }, { value = "misc_2h_fishingpole_a_01.m2", + text = "misc_2h_fishingpole_a_01.m2", fileId = "147084", text = "misc_2h_fishingpole_a_01.m2", }, { value = "misc_2h_harpoon_b_01.m2", + text = "misc_2h_harpoon_b_01.m2", fileId = "147087", text = "misc_2h_harpoon_b_01.m2", }, { value = "misc_2h_pitchfork_a_01.m2", + text = "misc_2h_pitchfork_a_01.m2", fileId = "147089", text = "misc_2h_pitchfork_a_01.m2", }, { value = "misc_2h_shovel_a_01.m2", + text = "misc_2h_shovel_a_01.m2", fileId = "147091", text = "misc_2h_shovel_a_01.m2", }, { value = "offhand_blackwing_a_01.m2", + text = "offhand_blackwing_a_01.m2", fileId = "147104", text = "offhand_blackwing_a_01.m2", }, { value = "offhand_naxxramas_d_01.m2", + text = "offhand_naxxramas_d_01.m2", fileId = "147133", text = "offhand_naxxramas_d_01.m2", }, { value = "offhand_naxxramas_d_02.m2", + text = "offhand_naxxramas_d_02.m2", fileId = "147135", text = "offhand_naxxramas_d_02.m2", }, { value = "offhand_naxxramas_d_03.m2", + text = "offhand_naxxramas_d_03.m2", fileId = "147137", text = "offhand_naxxramas_d_03.m2", }, { value = "offhand_naxxramas_d_04.m2", + text = "offhand_naxxramas_d_04.m2", fileId = "147139", text = "offhand_naxxramas_d_04.m2", }, { value = "offhand_rose_a_01.m2", + text = "offhand_rose_a_01.m2", fileId = "147150", text = "offhand_rose_a_01.m2", }, { value = "offhand_rosebouquet_a_01.m2", + text = "offhand_rosebouquet_a_01.m2", fileId = "147151", text = "offhand_rosebouquet_a_01.m2", }, { value = "offhand_stratholme_a_01.m2", + text = "offhand_stratholme_a_01.m2", fileId = "147153", text = "offhand_stratholme_a_01.m2", }, { value = "offhand_stratholme_a_02.m2", + text = "offhand_stratholme_a_02.m2", fileId = "147155", text = "offhand_stratholme_a_02.m2", }, { value = "polearm_2h_ahnqiraj_d_01.m2", + text = "polearm_2h_ahnqiraj_d_01.m2", fileId = "147186", text = "polearm_2h_ahnqiraj_d_01.m2", }, { value = "polearm_2h_bladed_a_01.m2", + text = "polearm_2h_bladed_a_01.m2", fileId = "147208", text = "polearm_2h_bladed_a_01.m2", }, { value = "polearm_2h_bladed_a_02.m2", + text = "polearm_2h_bladed_a_02.m2", fileId = "147211", text = "polearm_2h_bladed_a_02.m2", }, { value = "polearm_2h_bladed_b_01.m2", + text = "polearm_2h_bladed_b_01.m2", fileId = "147216", text = "polearm_2h_bladed_b_01.m2", }, { value = "polearm_2h_bladed_b_02.m2", + text = "polearm_2h_bladed_b_02.m2", fileId = "147219", text = "polearm_2h_bladed_b_02.m2", }, { value = "polearm_2h_bladed_c_01.m2", + text = "polearm_2h_bladed_c_01.m2", fileId = "147224", text = "polearm_2h_bladed_c_01.m2", }, { value = "polearm_2h_bladed_d_01.m2", + text = "polearm_2h_bladed_d_01.m2", fileId = "147227", text = "polearm_2h_bladed_d_01.m2", }, { value = "polearm_2h_bladed_d_03.m2", + text = "polearm_2h_bladed_d_03.m2", fileId = "147228", text = "polearm_2h_bladed_d_03.m2", }, { value = "polearm_2h_pvpalliance_a_01.m2", + text = "polearm_2h_pvpalliance_a_01.m2", fileId = "147317", text = "polearm_2h_pvpalliance_a_01.m2", }, { value = "polearm_2h_pvphorde_a_01.m2", + text = "polearm_2h_pvphorde_a_01.m2", fileId = "147320", text = "polearm_2h_pvphorde_a_01.m2", }, { value = "polearm_2h_stratholme_d_01.m2", + text = "polearm_2h_stratholme_d_01.m2", fileId = "147323", text = "polearm_2h_stratholme_d_01.m2", }, { value = "polearm_2h_trident_a_01.m2", + text = "polearm_2h_trident_a_01.m2", fileId = "147330", text = "polearm_2h_trident_a_01.m2", }, { value = "polearm_2h_trident_a_02.m2", + text = "polearm_2h_trident_a_02.m2", fileId = "147334", text = "polearm_2h_trident_a_02.m2", }, { value = "polearm_2h_trident_b_01.m2", + text = "polearm_2h_trident_b_01.m2", fileId = "147339", text = "polearm_2h_trident_b_01.m2", }, { value = "polearm_2h_trident_c_01.m2", + text = "polearm_2h_trident_c_01.m2", fileId = "147345", text = "polearm_2h_trident_c_01.m2", }, { value = "polearm_2h_zulgurub_d_01.m2", + text = "polearm_2h_zulgurub_d_01.m2", fileId = "147363", text = "polearm_2h_zulgurub_d_01.m2", }, { value = "stave_2h_ahnqiraj_d_01.m2", + text = "stave_2h_ahnqiraj_d_01.m2", fileId = "147382", text = "stave_2h_ahnqiraj_d_01.m2", }, { value = "stave_2h_ahnqiraj_d_02.m2", + text = "stave_2h_ahnqiraj_d_02.m2", fileId = "147384", text = "stave_2h_ahnqiraj_d_02.m2", }, { value = "stave_2h_ahnqiraj_d_03.m2", + text = "stave_2h_ahnqiraj_d_03.m2", fileId = "147386", text = "stave_2h_ahnqiraj_d_03.m2", }, { value = "stave_2h_ahnqiraj_d_04.m2", + text = "stave_2h_ahnqiraj_d_04.m2", fileId = "147387", text = "stave_2h_ahnqiraj_d_04.m2", }, { value = "stave_2h_blackwing_a_01.m2", + text = "stave_2h_blackwing_a_01.m2", fileId = "147399", text = "stave_2h_blackwing_a_01.m2", }, { value = "stave_2h_blackwing_a_02.m2", + text = "stave_2h_blackwing_a_02.m2", fileId = "147402", text = "stave_2h_blackwing_a_02.m2", }, { value = "stave_2h_epic_a_01.m2", + text = "stave_2h_epic_a_01.m2", fileId = "147464", text = "stave_2h_epic_a_01.m2", }, { value = "stave_2h_flaming_d_01.m2", + text = "stave_2h_flaming_d_01.m2", fileId = "147491", text = "stave_2h_flaming_d_01.m2", }, { value = "stave_2h_jeweled_a_01.m2", + text = "stave_2h_jeweled_a_01.m2", fileId = "147505", text = "stave_2h_jeweled_a_01.m2", }, { value = "stave_2h_jeweled_a_02.m2", + text = "stave_2h_jeweled_a_02.m2", fileId = "147509", text = "stave_2h_jeweled_a_02.m2", }, { value = "stave_2h_jeweled_a_03.m2", + text = "stave_2h_jeweled_a_03.m2", fileId = "147513", text = "stave_2h_jeweled_a_03.m2", }, { value = "stave_2h_jeweled_b_01.m2", + text = "stave_2h_jeweled_b_01.m2", fileId = "147517", text = "stave_2h_jeweled_b_01.m2", }, { value = "stave_2h_jeweled_b_02.m2", + text = "stave_2h_jeweled_b_02.m2", fileId = "147521", text = "stave_2h_jeweled_b_02.m2", }, { value = "stave_2h_jeweled_c_01.m2", + text = "stave_2h_jeweled_c_01.m2", fileId = "147525", text = "stave_2h_jeweled_c_01.m2", }, { value = "stave_2h_jeweled_d_01.m2", + text = "stave_2h_jeweled_d_01.m2", fileId = "147527", text = "stave_2h_jeweled_d_01.m2", }, { value = "stave_2h_long_a_01.m2", + text = "stave_2h_long_a_01.m2", fileId = "147530", text = "stave_2h_long_a_01.m2", }, { value = "stave_2h_long_a_02.m2", + text = "stave_2h_long_a_02.m2", fileId = "147534", text = "stave_2h_long_a_02.m2", }, { value = "stave_2h_long_a_03.m2", + text = "stave_2h_long_a_03.m2", fileId = "147538", text = "stave_2h_long_a_03.m2", }, { value = "stave_2h_long_a_04.m2", + text = "stave_2h_long_a_04.m2", fileId = "147542", text = "stave_2h_long_a_04.m2", }, { value = "stave_2h_long_b_01.m2", + text = "stave_2h_long_b_01.m2", fileId = "147547", text = "stave_2h_long_b_01.m2", }, { value = "stave_2h_long_b_02holy.m2", + text = "stave_2h_long_b_02holy.m2", fileId = "147552", text = "stave_2h_long_b_02holy.m2", }, { value = "stave_2h_long_b_03.m2", + text = "stave_2h_long_b_03.m2", fileId = "147553", text = "stave_2h_long_b_03.m2", }, { value = "stave_2h_long_b_04.m2", + text = "stave_2h_long_b_04.m2", fileId = "147557", text = "stave_2h_long_b_04.m2", }, { value = "stave_2h_long_c_01.m2", + text = "stave_2h_long_c_01.m2", fileId = "147563", text = "stave_2h_long_c_01.m2", }, { value = "stave_2h_long_c_02.m2", + text = "stave_2h_long_c_02.m2", fileId = "147565", text = "stave_2h_long_c_02.m2", }, { value = "stave_2h_long_d_01.m2", + text = "stave_2h_long_d_01.m2", fileId = "147567", text = "stave_2h_long_d_01.m2", }, { value = "stave_2h_long_d_05.m2", + text = "stave_2h_long_d_05.m2", fileId = "147576", text = "stave_2h_long_d_05.m2", }, { value = "stave_2h_long_epicpriest01.m2", + text = "stave_2h_long_epicpriest01.m2", fileId = "147578", text = "stave_2h_long_epicpriest01.m2", }, { value = "stave_2h_long_epicpriest02.m2", + text = "stave_2h_long_epicpriest02.m2", fileId = "147579", text = "stave_2h_long_epicpriest02.m2", }, { value = "stave_2h_medivh_d_01.m2", + text = "stave_2h_medivh_d_01.m2", fileId = "147581", text = "stave_2h_medivh_d_01.m2", }, { value = "stave_2h_other_a_01.m2", + text = "stave_2h_other_a_01.m2", fileId = "147637", text = "stave_2h_other_a_01.m2", }, { value = "stave_2h_other_b_01.m2", + text = "stave_2h_other_b_01.m2", fileId = "147641", text = "stave_2h_other_b_01.m2", }, { value = "stave_2h_other_c_01.m2", + text = "stave_2h_other_c_01.m2", fileId = "147645", text = "stave_2h_other_c_01.m2", }, { value = "stave_2h_other_c_02.m2", + text = "stave_2h_other_c_02.m2", fileId = "147652", text = "stave_2h_other_c_02.m2", }, { value = "stave_2h_other_d_01.m2", + text = "stave_2h_other_d_01.m2", fileId = "147656", text = "stave_2h_other_d_01.m2", }, { value = "stave_2h_pvpalliance_a_01.m2", + text = "stave_2h_pvpalliance_a_01.m2", fileId = "147688", text = "stave_2h_pvpalliance_a_01.m2", }, { value = "stave_2h_pvphorde_a_01.m2", + text = "stave_2h_pvphorde_a_01.m2", fileId = "147692", text = "stave_2h_pvphorde_a_01.m2", }, { value = "stave_2h_scythe_c_03.m2", + text = "stave_2h_scythe_c_03.m2", fileId = "147697", text = "stave_2h_scythe_c_03.m2", }, { value = "stave_2h_stratholme_d_01.m2", + text = "stave_2h_stratholme_d_01.m2", fileId = "147699", text = "stave_2h_stratholme_d_01.m2", }, { value = "stave_2h_stratholme_d_02.m2", + text = "stave_2h_stratholme_d_02.m2", fileId = "147701", text = "stave_2h_stratholme_d_02.m2", }, { value = "stave_2h_stratholme_d_03.m2", + text = "stave_2h_stratholme_d_03.m2", fileId = "147703", text = "stave_2h_stratholme_d_03.m2", }, { value = "stave_2h_zulgurub_d_01.m2", + text = "stave_2h_zulgurub_d_01.m2", fileId = "147757", text = "stave_2h_zulgurub_d_01.m2", }, { value = "stave_2h_zulgurub_d_02.m2", + text = "stave_2h_zulgurub_d_02.m2", fileId = "147759", text = "stave_2h_zulgurub_d_02.m2", }, { value = "stave_2h_zulgurub_d_03.m2", + text = "stave_2h_zulgurub_d_03.m2", fileId = "147761", text = "stave_2h_zulgurub_d_03.m2", }, { value = "sword_1h_ahnqiraj_d_01.m2", + text = "sword_1h_ahnqiraj_d_01.m2", fileId = "147764", text = "sword_1h_ahnqiraj_d_01.m2", }, { value = "sword_1h_ahnqiraj_d_02.m2", + text = "sword_1h_ahnqiraj_d_02.m2", fileId = "147767", text = "sword_1h_ahnqiraj_d_02.m2", }, { value = "sword_1h_ahnqiraj_d_03.m2", + text = "sword_1h_ahnqiraj_d_03.m2", fileId = "147770", text = "sword_1h_ahnqiraj_d_03.m2", }, { value = "sword_1h_blackwing_a_01.m2", + text = "sword_1h_blackwing_a_01.m2", fileId = "147783", text = "sword_1h_blackwing_a_01.m2", }, { value = "sword_1h_blackwing_a_02.m2", + text = "sword_1h_blackwing_a_02.m2", fileId = "147785", text = "sword_1h_blackwing_a_02.m2", }, { value = "sword_1h_fire_a_01.m2", + text = "sword_1h_fire_a_01.m2", fileId = "147860", text = "sword_1h_fire_a_01.m2", }, { value = "sword_1h_horde_a_01.m2", + text = "sword_1h_horde_a_01.m2", fileId = "147867", text = "sword_1h_horde_a_01.m2", }, { value = "sword_1h_horde_a_02.m2", + text = "sword_1h_horde_a_02.m2", fileId = "147872", text = "sword_1h_horde_a_02.m2", }, { value = "sword_1h_horde_a_03.m2", + text = "sword_1h_horde_a_03.m2", fileId = "147877", text = "sword_1h_horde_a_03.m2", }, { value = "sword_1h_horde_a_04.m2", + text = "sword_1h_horde_a_04.m2", fileId = "147878", text = "sword_1h_horde_a_04.m2", }, { value = "sword_1h_horde_b_01.m2", + text = "sword_1h_horde_b_01.m2", fileId = "147879", text = "sword_1h_horde_b_01.m2", }, { value = "sword_1h_horde_b_02.m2", + text = "sword_1h_horde_b_02.m2", fileId = "147885", text = "sword_1h_horde_b_02.m2", }, { value = "sword_1h_horde_b_03.m2", + text = "sword_1h_horde_b_03.m2", fileId = "147891", text = "sword_1h_horde_b_03.m2", }, { value = "sword_1h_horde_b_04.m2", + text = "sword_1h_horde_b_04.m2", fileId = "147897", text = "sword_1h_horde_b_04.m2", }, { value = "sword_1h_horde_b_05.m2", + text = "sword_1h_horde_b_05.m2", fileId = "147903", text = "sword_1h_horde_b_05.m2", }, { value = "sword_1h_horde_c_01.m2", + text = "sword_1h_horde_c_01.m2", fileId = "147909", text = "sword_1h_horde_c_01.m2", }, { value = "sword_1h_horde_c_02.m2", + text = "sword_1h_horde_c_02.m2", fileId = "147915", text = "sword_1h_horde_c_02.m2", }, { value = "sword_1h_katana_a_01.m2", + text = "sword_1h_katana_a_01.m2", fileId = "147937", text = "sword_1h_katana_a_01.m2", }, { value = "sword_1h_katana_a_02.m2", + text = "sword_1h_katana_a_02.m2", fileId = "147941", text = "sword_1h_katana_a_02.m2", }, { value = "sword_1h_katana_b_01.m2", + text = "sword_1h_katana_b_01.m2", fileId = "147945", text = "sword_1h_katana_b_01.m2", }, { value = "sword_1h_katana_b_02.m2", + text = "sword_1h_katana_b_02.m2", fileId = "147949", text = "sword_1h_katana_b_02.m2", }, { value = "sword_1h_long_a_01.m2", + text = "sword_1h_long_a_01.m2", fileId = "147953", text = "sword_1h_long_a_01.m2", }, { value = "sword_1h_long_a_02.m2", + text = "sword_1h_long_a_02.m2", fileId = "147955", text = "sword_1h_long_a_02.m2", }, { value = "sword_1h_long_a_03.m2", + text = "sword_1h_long_a_03.m2", fileId = "147959", text = "sword_1h_long_a_03.m2", }, { value = "sword_1h_long_b_01.m2", + text = "sword_1h_long_b_01.m2", fileId = "147963", text = "sword_1h_long_b_01.m2", }, { value = "sword_1h_long_b_02.m2", + text = "sword_1h_long_b_02.m2", fileId = "147965", text = "sword_1h_long_b_02.m2", }, { value = "sword_1h_long_b_03.m2", + text = "sword_1h_long_b_03.m2", fileId = "147969", text = "sword_1h_long_b_03.m2", }, { value = "sword_1h_long_c_01.m2", + text = "sword_1h_long_c_01.m2", fileId = "147973", text = "sword_1h_long_c_01.m2", }, { value = "sword_1h_long_d_01.m2", + text = "sword_1h_long_d_01.m2", fileId = "147975", text = "sword_1h_long_d_01.m2", }, { value = "sword_1h_long_d_02.m2", + text = "sword_1h_long_d_02.m2", fileId = "147977", text = "sword_1h_long_d_02.m2", }, { value = "sword_1h_long_d_03.m2", + text = "sword_1h_long_d_03.m2", fileId = "147984", text = "sword_1h_long_d_03.m2", }, { value = "sword_1h_machete_a_01.m2", + text = "sword_1h_machete_a_01.m2", fileId = "147986", text = "sword_1h_machete_a_01.m2", }, { value = "sword_1h_machete_b_01.m2", + text = "sword_1h_machete_b_01.m2", fileId = "147988", text = "sword_1h_machete_b_01.m2", }, { value = "sword_1h_machete_c_01.m2", + text = "sword_1h_machete_c_01.m2", fileId = "147990", text = "sword_1h_machete_c_01.m2", }, { value = "sword_1h_machete_d_01.m2", + text = "sword_1h_machete_d_01.m2", fileId = "147992", text = "sword_1h_machete_d_01.m2", }, { value = "sword_1h_mage_d_01.m2", + text = "sword_1h_mage_d_01.m2", fileId = "147994", text = "sword_1h_mage_d_01.m2", }, { value = "sword_1h_naxxramas_d_01.m2", + text = "sword_1h_naxxramas_d_01.m2", fileId = "147998", text = "sword_1h_naxxramas_d_01.m2", }, { value = "sword_1h_pvpalliance_a_01.m2", + text = "sword_1h_pvpalliance_a_01.m2", fileId = "148070", text = "sword_1h_pvpalliance_a_01.m2", }, { value = "sword_1h_pvphorde_a_01.m2", + text = "sword_1h_pvphorde_a_01.m2", fileId = "148075", text = "sword_1h_pvphorde_a_01.m2", }, { value = "sword_1h_rapier_a_01.m2", + text = "sword_1h_rapier_a_01.m2", fileId = "148090", text = "sword_1h_rapier_a_01.m2", }, { value = "sword_1h_sabre_a_01.m2", + text = "sword_1h_sabre_a_01.m2", fileId = "148095", text = "sword_1h_sabre_a_01.m2", }, { value = "sword_1h_sabre_a_02.m2", + text = "sword_1h_sabre_a_02.m2", fileId = "148099", text = "sword_1h_sabre_a_02.m2", }, { value = "sword_1h_sabre_a_03.m2", + text = "sword_1h_sabre_a_03.m2", fileId = "148103", text = "sword_1h_sabre_a_03.m2", }, { value = "sword_1h_sabre_b_01.m2", + text = "sword_1h_sabre_b_01.m2", fileId = "148107", text = "sword_1h_sabre_b_01.m2", }, { value = "sword_1h_sabre_b_02.m2", + text = "sword_1h_sabre_b_02.m2", fileId = "148111", text = "sword_1h_sabre_b_02.m2", }, { value = "sword_1h_sabre_b_03.m2", + text = "sword_1h_sabre_b_03.m2", fileId = "148115", text = "sword_1h_sabre_b_03.m2", }, { value = "sword_1h_sabre_c_01.m2", + text = "sword_1h_sabre_c_01.m2", fileId = "148119", text = "sword_1h_sabre_c_01.m2", }, { value = "sword_1h_scimitar_a_02.m2", + text = "sword_1h_scimitar_a_02.m2", fileId = "148120", text = "sword_1h_scimitar_a_02.m2", }, { value = "sword_1h_short_a_01.m2", + text = "sword_1h_short_a_01.m2", fileId = "148128", text = "sword_1h_short_a_01.m2", }, { value = "sword_1h_short_a_02.m2", + text = "sword_1h_short_a_02.m2", fileId = "148132", text = "sword_1h_short_a_02.m2", }, { value = "sword_1h_short_a_03.m2", + text = "sword_1h_short_a_03.m2", fileId = "148136", text = "sword_1h_short_a_03.m2", }, { value = "sword_1h_short_b_01.m2", + text = "sword_1h_short_b_01.m2", fileId = "148140", text = "sword_1h_short_b_01.m2", }, { value = "sword_1h_short_b_02.m2", + text = "sword_1h_short_b_02.m2", fileId = "148144", text = "sword_1h_short_b_02.m2", }, { value = "sword_1h_short_b_03.m2", + text = "sword_1h_short_b_03.m2", fileId = "148148", text = "sword_1h_short_b_03.m2", }, { value = "sword_1h_short_c_01.m2", + text = "sword_1h_short_c_01.m2", fileId = "148152", text = "sword_1h_short_c_01.m2", }, { value = "sword_1h_short_c_02.m2", + text = "sword_1h_short_c_02.m2", fileId = "148154", text = "sword_1h_short_c_02.m2", }, { value = "sword_1h_stratholme_d_01.m2", + text = "sword_1h_stratholme_d_01.m2", fileId = "148156", text = "sword_1h_stratholme_d_01.m2", }, { value = "sword_1h_stratholme_d_02.m2", + text = "sword_1h_stratholme_d_02.m2", fileId = "148157", text = "sword_1h_stratholme_d_02.m2", }, { value = "sword_1h_stratholme_d_03.m2", + text = "sword_1h_stratholme_d_03.m2", fileId = "148158", text = "sword_1h_stratholme_d_03.m2", }, { value = "sword_1h_thunderblade_a_01.m2", + text = "sword_1h_thunderblade_a_01.m2", fileId = "148169", text = "sword_1h_thunderblade_a_01.m2", }, { value = "sword_1h_troll_b_01.m2", + text = "sword_1h_troll_b_01.m2", fileId = "148171", text = "sword_1h_troll_b_01.m2", }, { value = "sword_1h_zulgurub_d_01.m2", + text = "sword_1h_zulgurub_d_01.m2", fileId = "148224", text = "sword_1h_zulgurub_d_01.m2", }, { value = "sword_1h_zulgurub_d_02.m2", + text = "sword_1h_zulgurub_d_02.m2", fileId = "148226", text = "sword_1h_zulgurub_d_02.m2", }, { value = "sword_2h_ahnqiraj_d_01.m2", + text = "sword_2h_ahnqiraj_d_01.m2", fileId = "148228", text = "sword_2h_ahnqiraj_d_01.m2", }, { value = "sword_2h_ahnqiraj_d_02.m2", + text = "sword_2h_ahnqiraj_d_02.m2", fileId = "148231", text = "sword_2h_ahnqiraj_d_02.m2", }, { value = "sword_2h_ashbringer.m2", + text = "sword_2h_ashbringer.m2", fileId = "148233", text = "sword_2h_ashbringer.m2", }, { value = "sword_2h_ashbringer02.m2", + text = "sword_2h_ashbringer02.m2", fileId = "148234", text = "sword_2h_ashbringer02.m2", }, { value = "sword_2h_ashbringer_a_01.m2", + text = "sword_2h_ashbringer_a_01.m2", fileId = "148235", text = "sword_2h_ashbringer_a_01.m2", }, { value = "sword_2h_ashbringercorrupt.m2", + text = "sword_2h_ashbringercorrupt.m2", fileId = "148238", text = "sword_2h_ashbringercorrupt.m2", }, { value = "sword_2h_bastard_d_01.m2", + text = "sword_2h_bastard_d_01.m2", fileId = "148241", text = "sword_2h_bastard_d_01.m2", }, { value = "sword_2h_blackwing_a_01.m2", + text = "sword_2h_blackwing_a_01.m2", fileId = "148250", text = "sword_2h_blackwing_a_01.m2", }, { value = "sword_2h_blackwing_a_02.m2", + text = "sword_2h_blackwing_a_02.m2", fileId = "148252", text = "sword_2h_blackwing_a_02.m2", }, { value = "sword_2h_broadsword_a_01.m2", + text = "sword_2h_broadsword_a_01.m2", fileId = "148286", text = "sword_2h_broadsword_a_01.m2", }, { value = "sword_2h_broadsword_a_02.m2", + text = "sword_2h_broadsword_a_02.m2", fileId = "148287", text = "sword_2h_broadsword_a_02.m2", }, { value = "sword_2h_broadsword_a_03.m2", + text = "sword_2h_broadsword_a_03.m2", fileId = "148291", text = "sword_2h_broadsword_a_03.m2", }, { value = "sword_2h_broadsword_b_01.m2", + text = "sword_2h_broadsword_b_01.m2", fileId = "148295", text = "sword_2h_broadsword_b_01.m2", }, { value = "sword_2h_claymore_a_01.m2", + text = "sword_2h_claymore_a_01.m2", fileId = "148296", text = "sword_2h_claymore_a_01.m2", }, { value = "sword_2h_claymore_a_02.m2", + text = "sword_2h_claymore_a_02.m2", fileId = "148302", text = "sword_2h_claymore_a_02.m2", }, { value = "sword_2h_claymore_b_01.m2", + text = "sword_2h_claymore_b_01.m2", fileId = "148307", text = "sword_2h_claymore_b_01.m2", }, { value = "sword_2h_claymore_b_02.m2", + text = "sword_2h_claymore_b_02.m2", fileId = "148311", text = "sword_2h_claymore_b_02.m2", }, { value = "sword_2h_claymore_c_01.m2", + text = "sword_2h_claymore_c_01.m2", fileId = "148315", text = "sword_2h_claymore_c_01.m2", }, { value = "sword_2h_demonblade_d_01.m2", + text = "sword_2h_demonblade_d_01.m2", fileId = "148345", text = "sword_2h_demonblade_d_01.m2", }, { value = "sword_2h_epic_a_03.m2", + text = "sword_2h_epic_a_03.m2", fileId = "148360", text = "sword_2h_epic_a_03.m2", }, { value = "sword_2h_horde_a_01.m2", + text = "sword_2h_horde_a_01.m2", fileId = "148364", text = "sword_2h_horde_a_01.m2", }, { value = "sword_2h_horde_a_02.m2", + text = "sword_2h_horde_a_02.m2", fileId = "148365", text = "sword_2h_horde_a_02.m2", }, { value = "sword_2h_horde_b_03.m2", + text = "sword_2h_horde_b_03.m2", fileId = "148367", text = "sword_2h_horde_b_03.m2", }, { value = "sword_2h_horde_c_01.m2", + text = "sword_2h_horde_c_01.m2", fileId = "148373", text = "sword_2h_horde_c_01.m2", }, { value = "sword_2h_horde_c_02.m2", + text = "sword_2h_horde_c_02.m2", fileId = "148379", text = "sword_2h_horde_c_02.m2", }, { value = "sword_2h_horde_c_03.m2", + text = "sword_2h_horde_c_03.m2", fileId = "148385", text = "sword_2h_horde_c_03.m2", }, { value = "sword_2h_horde_d_01.m2", + text = "sword_2h_horde_d_01.m2", fileId = "148393", text = "sword_2h_horde_d_01.m2", }, { value = "sword_2h_horde_d_02.m2", + text = "sword_2h_horde_d_02.m2", fileId = "148397", text = "sword_2h_horde_d_02.m2", }, { value = "sword_2h_katana_a_01.m2", + text = "sword_2h_katana_a_01.m2", fileId = "148406", text = "sword_2h_katana_a_01.m2", }, { value = "sword_2h_katana_b_01.m2", + text = "sword_2h_katana_b_01.m2", fileId = "148410", text = "sword_2h_katana_b_01.m2", }, { value = "sword_2h_katana_b_02.m2", + text = "sword_2h_katana_b_02.m2", fileId = "148414", text = "sword_2h_katana_b_02.m2", }, { value = "sword_2h_korean_a_01.m2", + text = "sword_2h_korean_a_01.m2", fileId = "148418", text = "sword_2h_korean_a_01.m2", }, { value = "sword_2h_korean_c_01.m2", + text = "sword_2h_korean_c_01.m2", fileId = "148420", text = "sword_2h_korean_c_01.m2", }, { value = "sword_2h_pvpalliance_a_01.m2", + text = "sword_2h_pvpalliance_a_01.m2", fileId = "148485", text = "sword_2h_pvpalliance_a_01.m2", }, { value = "sword_2h_pvphorde_a_01.m2", + text = "sword_2h_pvphorde_a_01.m2", fileId = "148487", text = "sword_2h_pvphorde_a_01.m2", }, { value = "sword_2h_stratholme_d_01.m2", + text = "sword_2h_stratholme_d_01.m2", fileId = "148502", text = "sword_2h_stratholme_d_01.m2", }, { value = "sword_2h_stratholme_d_02.m2", + text = "sword_2h_stratholme_d_02.m2", fileId = "148504", text = "sword_2h_stratholme_d_02.m2", }, { value = "sword_2h_tauren_b_01.m2", + text = "sword_2h_tauren_b_01.m2", fileId = "148513", text = "sword_2h_tauren_b_01.m2", }, { value = "sword_2h_zulgurub_d_01.m2", + text = "sword_2h_zulgurub_d_01.m2", fileId = "148530", text = "sword_2h_zulgurub_d_01.m2", }, { value = "thrown_1h_axe_a_01.m2", + text = "thrown_1h_axe_a_01.m2", fileId = "148534", text = "thrown_1h_axe_a_01.m2", }, { value = "thrown_1h_axe_a_02.m2", + text = "thrown_1h_axe_a_02.m2", fileId = "148538", text = "thrown_1h_axe_a_02.m2", }, { value = "thrown_1h_axe_b_01.m2", + text = "thrown_1h_axe_b_01.m2", fileId = "148542", text = "thrown_1h_axe_b_01.m2", }, { value = "thrown_1h_boomerang_a_01.m2", + text = "thrown_1h_boomerang_a_01.m2", fileId = "148546", text = "thrown_1h_boomerang_a_01.m2", }, { value = "thrown_1h_dagger_a_01.m2", + text = "thrown_1h_dagger_a_01.m2", fileId = "148554", text = "thrown_1h_dagger_a_01.m2", }, { value = "thrown_1h_dagger_a_02.m2", + text = "thrown_1h_dagger_a_02.m2", fileId = "148558", text = "thrown_1h_dagger_a_02.m2", }, { value = "thrown_1h_dagger_b_01.m2", + text = "thrown_1h_dagger_b_01.m2", fileId = "148562", text = "thrown_1h_dagger_b_01.m2", }, { value = "thrown_1h_dynamite_a_01.m2", + text = "thrown_1h_dynamite_a_01.m2", fileId = "148566", text = "thrown_1h_dynamite_a_01.m2", }, { value = "thrown_1h_dynamite_a_02.m2", + text = "thrown_1h_dynamite_a_02.m2", fileId = "148568", text = "thrown_1h_dynamite_a_02.m2", }, { value = "thrown_1h_fan_a_01.m2", + text = "thrown_1h_fan_a_01.m2", fileId = "148569", text = "thrown_1h_fan_a_01.m2", }, { value = "thrown_1h_hammer_c_01.m2", + text = "thrown_1h_hammer_c_01.m2", fileId = "148570", text = "thrown_1h_hammer_c_01.m2", }, { value = "thrown_1h_molotov_a_01.m2", + text = "thrown_1h_molotov_a_01.m2", fileId = "148574", text = "thrown_1h_molotov_a_01.m2", }, { value = "thrown_1h_shuriken_a_01.m2", + text = "thrown_1h_shuriken_a_01.m2", fileId = "148575", text = "thrown_1h_shuriken_a_01.m2", }, { value = "thrown_1h_shuriken_a_02.m2", + text = "thrown_1h_shuriken_a_02.m2", fileId = "148579", text = "thrown_1h_shuriken_a_02.m2", }, { value = "thrown_1h_shuriken_b_01.m2", + text = "thrown_1h_shuriken_b_01.m2", fileId = "148583", text = "thrown_1h_shuriken_b_01.m2", }, { value = "totem_2h_carved_b_01.m2", + text = "totem_2h_carved_b_01.m2", fileId = "148593", text = "totem_2h_carved_b_01.m2", }, { value = "totem_2h_carved_d_01.m2", + text = "totem_2h_carved_d_01.m2", fileId = "148595", text = "totem_2h_carved_d_01.m2", }, { value = "wand_1h_ahnqiraj_d_01.m2", + text = "wand_1h_ahnqiraj_d_01.m2", fileId = "148598", text = "wand_1h_ahnqiraj_d_01.m2", }, { value = "wand_1h_ahnqiraj_d_02.m2", + text = "wand_1h_ahnqiraj_d_02.m2", fileId = "148603", text = "wand_1h_ahnqiraj_d_02.m2", }, { value = "wand_1h_blackwing_a_01.m2", + text = "wand_1h_blackwing_a_01.m2", fileId = "148610", text = "wand_1h_blackwing_a_01.m2", }, { value = "wand_1h_horde_a_01.m2", + text = "wand_1h_horde_a_01.m2", fileId = "148623", text = "wand_1h_horde_a_01.m2", }, { value = "wand_1h_horde_a_02.m2", + text = "wand_1h_horde_a_02.m2", fileId = "148628", text = "wand_1h_horde_a_02.m2", }, { value = "wand_1h_horde_a_03.m2", + text = "wand_1h_horde_a_03.m2", fileId = "148634", text = "wand_1h_horde_a_03.m2", }, { value = "wand_1h_horde_b_01.m2", + text = "wand_1h_horde_b_01.m2", fileId = "148640", text = "wand_1h_horde_b_01.m2", }, { value = "wand_1h_horde_b_02.m2", + text = "wand_1h_horde_b_02.m2", fileId = "148646", text = "wand_1h_horde_b_02.m2", }, { value = "wand_1h_jeweled_b_01.m2", + text = "wand_1h_jeweled_b_01.m2", fileId = "148652", text = "wand_1h_jeweled_b_01.m2", }, { value = "wand_1h_jeweled_b_02.m2", + text = "wand_1h_jeweled_b_02.m2", fileId = "148657", text = "wand_1h_jeweled_b_02.m2", }, { value = "wand_1h_romancandle_a_01.m2", + text = "wand_1h_romancandle_a_01.m2", fileId = "148694", text = "wand_1h_romancandle_a_01.m2", }, { value = "wand_1h_standard_a_01.m2", + text = "wand_1h_standard_a_01.m2", fileId = "148695", text = "wand_1h_standard_a_01.m2", }, { value = "wand_1h_standard_a_02.m2", + text = "wand_1h_standard_a_02.m2", fileId = "148699", text = "wand_1h_standard_a_02.m2", }, { value = "wand_1h_stratholme_d_01.m2", + text = "wand_1h_stratholme_d_01.m2", fileId = "148706", text = "wand_1h_stratholme_d_01.m2", }, { value = "wand_1h_stratholme_d_02.m2", + text = "wand_1h_stratholme_d_02.m2", fileId = "148708", text = "wand_1h_stratholme_d_02.m2", }, { value = "wand_1h_zulgurub_d_01.m2", + text = "wand_1h_zulgurub_d_01.m2", fileId = "148734", text = "wand_1h_zulgurub_d_01.m2", }, { value = "wand_1h_zulgurub_d_02.m2", + text = "wand_1h_zulgurub_d_02.m2", fileId = "148735", text = "wand_1h_zulgurub_d_02.m2", }, { value = "wand_1h_zulgurub_d_03.m2", + text = "wand_1h_zulgurub_d_03.m2", fileId = "148736", text = "wand_1h_zulgurub_d_03.m2", }, @@ -18473,37 +22089,45 @@ WeakAuras.ModelPaths = { }, { value = "particles", + text = "particles", children = { { value = "bloodspurts", + text = "bloodspurts", children = { { value = "bloodspurt.m2", + text = "bloodspurt.m2", fileId = "165398", text = "bloodspurt.m2", }, { value = "bloodspurtblack.m2", + text = "bloodspurtblack.m2", fileId = "165399", text = "bloodspurtblack.m2", }, { value = "bloodspurtblacklarge.m2", + text = "bloodspurtblacklarge.m2", fileId = "165400", text = "bloodspurtblacklarge.m2", }, { value = "bloodspurtgreen.m2", + text = "bloodspurtgreen.m2", fileId = "165404", text = "bloodspurtgreen.m2", }, { value = "bloodspurtgreenlarge.m2", + text = "bloodspurtgreenlarge.m2", fileId = "165405", text = "bloodspurtgreenlarge.m2", }, { value = "bloodspurtlarge.m2", + text = "bloodspurtlarge.m2", fileId = "165407", text = "bloodspurtlarge.m2", }, @@ -18512,76 +22136,91 @@ WeakAuras.ModelPaths = { }, { value = "bubbles.m2", + text = "bubbles.m2", fileId = "165411", text = "bubbles.m2", }, { value = "coldbreath.m2", + text = "coldbreath.m2", fileId = "165412", text = "coldbreath.m2", }, { value = "ember_trail.m2", + text = "ember_trail.m2", fileId = "165415", text = "ember_trail.m2", }, { value = "footstepspraydirt.m2", + text = "footstepspraydirt.m2", fileId = "165417", text = "footstepspraydirt.m2", }, { value = "footstepspraydirtwalk.m2", + text = "footstepspraydirtwalk.m2", fileId = "165418", text = "footstepspraydirtwalk.m2", }, { value = "footstepspraysnow.m2", + text = "footstepspraysnow.m2", fileId = "165419", text = "footstepspraysnow.m2", }, { value = "footstepspraysnowwalk.m2", + text = "footstepspraysnowwalk.m2", fileId = "165420", text = "footstepspraysnowwalk.m2", }, { value = "footstepspraywater.m2", + text = "footstepspraywater.m2", fileId = "165421", text = "footstepspraywater.m2", }, { value = "footstepspraywaterwalk.m2", + text = "footstepspraywaterwalk.m2", fileId = "165422", text = "footstepspraywaterwalk.m2", }, { value = "greenleaves.m2", + text = "greenleaves.m2", fileId = "165427", text = "greenleaves.m2", }, { value = "loginfx.m2", + text = "loginfx.m2", fileId = "165433", text = "loginfx.m2", }, { value = "lootfx.m2", + text = "lootfx.m2", fileId = "165434", text = "lootfx.m2", }, { value = "morphfx.m2", + text = "morphfx.m2", fileId = "165436", text = "morphfx.m2", }, { value = "pick_spellobject.m2", + text = "pick_spellobject.m2", fileId = "165437", text = "pick_spellobject.m2", }, { value = "stunswirl_state_head.m2", + text = "stunswirl_state_head.m2", fileId = "2198578", text = "stunswirl_state_head.m2", }, @@ -18590,1092 +22229,1311 @@ WeakAuras.ModelPaths = { }, { value = "spells", + text = "spells", children = { { value = "abolishmagic_base.m2", + text = "abolishmagic_base.m2", fileId = "165529", text = "abolishmagic_base.m2", }, { value = "acidbreath.m2", + text = "acidbreath.m2", fileId = "165532", text = "acidbreath.m2", }, { value = "acidburn.m2", + text = "acidburn.m2", fileId = "165533", text = "acidburn.m2", }, { value = "acidcloudbreath.m2", + text = "acidcloudbreath.m2", fileId = "165549", text = "acidcloudbreath.m2", }, { value = "acidliquidbreath.m2", + text = "acidliquidbreath.m2", fileId = "165552", text = "acidliquidbreath.m2", }, { value = "adrenalinerush_cast_base.m2", + text = "adrenalinerush_cast_base.m2", fileId = "165554", text = "adrenalinerush_cast_base.m2", }, { value = "aegis.m2", + text = "aegis.m2", fileId = "165556", text = "aegis.m2", }, { value = "alliancectfflag_spell.m2", + text = "alliancectfflag_spell.m2", fileId = "165560", text = "alliancectfflag_spell.m2", }, { value = "amplifymagic_impact_base.m2", + text = "amplifymagic_impact_base.m2", fileId = "165562", text = "amplifymagic_impact_base.m2", }, { value = "antimagic_precast_hand.m2", + text = "antimagic_precast_hand.m2", fileId = "165563", text = "antimagic_precast_hand.m2", }, { value = "antimagic_state_base.m2", + text = "antimagic_state_base.m2", fileId = "165564", text = "antimagic_state_base.m2", }, { value = "arcane_missile.m2", + text = "arcane_missile.m2", fileId = "165569", text = "arcane_missile.m2", }, { value = "arcane_missile_lvl1.m2", + text = "arcane_missile_lvl1.m2", fileId = "165570", text = "arcane_missile_lvl1.m2", }, { value = "arcane_missile_lvl2.m2", + text = "arcane_missile_lvl2.m2", fileId = "165571", text = "arcane_missile_lvl2.m2", }, { value = "arcane_missile_lvl3.m2", + text = "arcane_missile_lvl3.m2", fileId = "165572", text = "arcane_missile_lvl3.m2", }, { value = "arcane_missile_lvl4.m2", + text = "arcane_missile_lvl4.m2", fileId = "165573", text = "arcane_missile_lvl4.m2", }, { value = "arcaneexplosion_base.m2", + text = "arcaneexplosion_base.m2", fileId = "165576", text = "arcaneexplosion_base.m2", }, { value = "arcaneexplosion_impact_chest.m2", + text = "arcaneexplosion_impact_chest.m2", fileId = "165578", text = "arcaneexplosion_impact_chest.m2", }, { value = "arcaneintellect_impact_base.m2", + text = "arcaneintellect_impact_base.m2", fileId = "165585", text = "arcaneintellect_impact_base.m2", }, { value = "arcanepower_state_chest.m2", + text = "arcanepower_state_chest.m2", fileId = "165589", text = "arcanepower_state_chest.m2", }, { value = "arcaneshot_area.m2", + text = "arcaneshot_area.m2", fileId = "165591", text = "arcaneshot_area.m2", }, { value = "arcaneshot_missile.m2", + text = "arcaneshot_missile.m2", fileId = "165592", text = "arcaneshot_missile.m2", }, { value = "arcanespirit_impact_base.m2", + text = "arcanespirit_impact_base.m2", fileId = "165594", text = "arcanespirit_impact_base.m2", }, { value = "arcanevolley_missile.m2", + text = "arcanevolley_missile.m2", fileId = "165596", text = "arcanevolley_missile.m2", }, { value = "aspectbeast_impact_head.m2", + text = "aspectbeast_impact_head.m2", fileId = "165613", text = "aspectbeast_impact_head.m2", }, { value = "aspectcheetah_impact_head.m2", + text = "aspectcheetah_impact_head.m2", fileId = "165614", text = "aspectcheetah_impact_head.m2", }, { value = "aspecthawk_impact_head.m2", + text = "aspecthawk_impact_head.m2", fileId = "165615", text = "aspecthawk_impact_head.m2", }, { value = "aspectmonkey_impact_head.m2", + text = "aspectmonkey_impact_head.m2", fileId = "165616", text = "aspectmonkey_impact_head.m2", }, { value = "aspectsnake_impact_head.m2", + text = "aspectsnake_impact_head.m2", fileId = "165617", text = "aspectsnake_impact_head.m2", }, { value = "aspectwolf_impact_head.m2", + text = "aspectwolf_impact_head.m2", fileId = "165619", text = "aspectwolf_impact_head.m2", }, { value = "astral_recall_impact_base.m2", + text = "astral_recall_impact_base.m2", fileId = "165622", text = "astral_recall_impact_base.m2", }, { value = "backstab_cast_base.m2", + text = "backstab_cast_base.m2", fileId = "165645", text = "backstab_cast_base.m2", }, { value = "backstab_impact_chest.m2", + text = "backstab_impact_chest.m2", fileId = "165646", text = "backstab_impact_chest.m2", }, { value = "balanceofnature_impact_base.m2", + text = "balanceofnature_impact_base.m2", fileId = "165647", text = "balanceofnature_impact_base.m2", }, { value = "banish_chest.m2", + text = "banish_chest.m2", fileId = "165648", text = "banish_chest.m2", }, { value = "banish_chest_purple.m2", + text = "banish_chest_purple.m2", fileId = "165651", text = "banish_chest_purple.m2", }, { value = "barkshield_state_base.m2", + text = "barkshield_state_base.m2", fileId = "165654", text = "barkshield_state_base.m2", }, { value = "barkskin_state_base.m2", + text = "barkskin_state_base.m2", fileId = "165655", text = "barkskin_state_base.m2", }, { value = "baseflagcapred_impact_base.m2", + text = "baseflagcapred_impact_base.m2", fileId = "165656", text = "baseflagcapred_impact_base.m2", }, { value = "basicstrike.m2", + text = "basicstrike.m2", fileId = "165657", text = "basicstrike.m2", }, { value = "battleshout_cast_base.m2", + text = "battleshout_cast_base.m2", fileId = "165658", text = "battleshout_cast_base.m2", }, { value = "battlestance_impact_head.m2", + text = "battlestance_impact_head.m2", fileId = "165659", text = "battlestance_impact_head.m2", }, { value = "bearfrenzy.m2", + text = "bearfrenzy.m2", fileId = "165664", text = "bearfrenzy.m2", }, { value = "bearfrenzyimpact.m2", + text = "bearfrenzyimpact.m2", fileId = "165665", text = "bearfrenzyimpact.m2", }, { value = "beastcall_impact_head.m2", + text = "beastcall_impact_head.m2", fileId = "165668", text = "beastcall_impact_head.m2", }, { value = "beastlore_impact_base.m2", + text = "beastlore_impact_base.m2", fileId = "165669", text = "beastlore_impact_base.m2", }, { value = "beastlore_impact_head.m2", + text = "beastlore_impact_head.m2", fileId = "165670", text = "beastlore_impact_head.m2", }, { value = "beastragecaster.m2", + text = "beastragecaster.m2", fileId = "165672", text = "beastragecaster.m2", }, { value = "beastragestate.m2", + text = "beastragestate.m2", fileId = "165673", text = "beastragestate.m2", }, { value = "beastsoothe_impact_head.m2", + text = "beastsoothe_impact_head.m2", fileId = "165674", text = "beastsoothe_impact_head.m2", }, { value = "beastsoothe_state_head.m2", + text = "beastsoothe_state_head.m2", fileId = "165675", text = "beastsoothe_state_head.m2", }, { value = "berzerkerstance_impact_head.m2", + text = "berzerkerstance_impact_head.m2", fileId = "165678", text = "berzerkerstance_impact_head.m2", }, { value = "bestowdisease_impact_chest.m2", + text = "bestowdisease_impact_chest.m2", fileId = "165679", text = "bestowdisease_impact_chest.m2", }, { value = "bind2_impact_base.m2", + text = "bind2_impact_base.m2", fileId = "165680", text = "bind2_impact_base.m2", }, { value = "bind_impact_base.m2", + text = "bind_impact_base.m2", fileId = "165681", text = "bind_impact_base.m2", }, { value = "blackshot_missile.m2", + text = "blackshot_missile.m2", fileId = "165687", text = "blackshot_missile.m2", }, { value = "blessingofagility_base.m2", + text = "blessingofagility_base.m2", fileId = "165690", text = "blessingofagility_base.m2", }, { value = "blessingofprotection_base.m2", + text = "blessingofprotection_base.m2", fileId = "165700", text = "blessingofprotection_base.m2", }, { value = "blessingofstamina_base.m2", + text = "blessingofstamina_base.m2", fileId = "165710", text = "blessingofstamina_base.m2", }, { value = "blessingofstrength_base.m2", + text = "blessingofstrength_base.m2", fileId = "165711", text = "blessingofstrength_base.m2", }, { value = "blindingshot_impact.m2", + text = "blindingshot_impact.m2", fileId = "165713", text = "blindingshot_impact.m2", }, { value = "blindingshot_missile.m2", + text = "blindingshot_missile.m2", fileId = "165714", text = "blindingshot_missile.m2", }, { value = "blink_impact_chest.m2", + text = "blink_impact_chest.m2", fileId = "165715", text = "blink_impact_chest.m2", }, { value = "blizzard_impact_base.m2", + text = "blizzard_impact_base.m2", fileId = "165716", text = "blizzard_impact_base.m2", }, { value = "bloodboil_impact_chest.m2", + text = "bloodboil_impact_chest.m2", fileId = "165722", text = "bloodboil_impact_chest.m2", }, { value = "bloodbolt_chest.m2", + text = "bloodbolt_chest.m2", fileId = "165723", text = "bloodbolt_chest.m2", }, { value = "bloodbolt_missile_low.m2", + text = "bloodbolt_missile_low.m2", fileId = "165724", text = "bloodbolt_missile_low.m2", }, { value = "bloodlust_cast_hand.m2", + text = "bloodlust_cast_hand.m2", fileId = "165725", text = "bloodlust_cast_hand.m2", }, { value = "bloodlust_state_hand.m2", + text = "bloodlust_state_hand.m2", fileId = "165728", text = "bloodlust_state_hand.m2", }, { value = "bloodyexplosion.m2", + text = "bloodyexplosion.m2", fileId = "165737", text = "bloodyexplosion.m2", }, { value = "bloodyexplosiongreen.m2", + text = "bloodyexplosiongreen.m2", fileId = "165738", text = "bloodyexplosiongreen.m2", }, { value = "bomb_explosiona.m2", + text = "bomb_explosiona.m2", fileId = "165744", text = "bomb_explosiona.m2", }, { value = "bonearmor_head.m2", + text = "bonearmor_head.m2", fileId = "165749", text = "bonearmor_head.m2", }, { value = "bonearmor_recursive.m2", + text = "bonearmor_recursive.m2", fileId = "165750", text = "bonearmor_recursive.m2", }, { value = "bonearmor_state_chest.m2", + text = "bonearmor_state_chest.m2", fileId = "165751", text = "bonearmor_state_chest.m2", }, { value = "boulder_missile.m2", + text = "boulder_missile.m2", fileId = "165756", text = "boulder_missile.m2", }, { value = "bouldergiant_missile.m2", + text = "bouldergiant_missile.m2", fileId = "165757", text = "bouldergiant_missile.m2", }, { value = "brillianceaura.m2", + text = "brillianceaura.m2", fileId = "165759", text = "brillianceaura.m2", }, { value = "bubble_drunk.m2", + text = "bubble_drunk.m2", fileId = "165760", text = "bubble_drunk.m2", }, { value = "burningintellect_impact_base.m2", + text = "burningintellect_impact_base.m2", fileId = "165761", text = "burningintellect_impact_base.m2", }, { value = "burningspirit_impact_base.m2", + text = "burningspirit_impact_base.m2", fileId = "165762", text = "burningspirit_impact_base.m2", }, { value = "burningspirit_impact_head.m2", + text = "burningspirit_impact_head.m2", fileId = "165763", text = "burningspirit_impact_head.m2", }, { value = "burrowearth_brown_missile.m2", + text = "burrowearth_brown_missile.m2", fileId = "165765", text = "burrowearth_brown_missile.m2", }, { value = "calllightning_impact.m2", + text = "calllightning_impact.m2", fileId = "165768", text = "calllightning_impact.m2", }, { value = "catmark.m2", + text = "catmark.m2", fileId = "165778", text = "catmark.m2", }, { value = "chainlightning_impact_chest.m2", + text = "chainlightning_impact_chest.m2", fileId = "165780", text = "chainlightning_impact_chest.m2", }, { value = "chainsofice_low_base.m2", + text = "chainsofice_low_base.m2", fileId = "165782", text = "chainsofice_low_base.m2", }, { value = "challengingshout_cast_base.m2", + text = "challengingshout_cast_base.m2", fileId = "165783", text = "challengingshout_cast_base.m2", }, { value = "chargetrail.m2", + text = "chargetrail.m2", fileId = "165784", text = "chargetrail.m2", }, { value = "cheapshot_cast_base.m2", + text = "cheapshot_cast_base.m2", fileId = "165785", text = "cheapshot_cast_base.m2", }, { value = "cheapshot_impact_chest.m2", + text = "cheapshot_impact_chest.m2", fileId = "165786", text = "cheapshot_impact_chest.m2", }, { value = "cheapshot_state_head.m2", + text = "cheapshot_state_head.m2", fileId = "165787", text = "cheapshot_state_head.m2", }, { value = "cinematic_omni_light.m2", + text = "cinematic_omni_light.m2", fileId = "1083712", text = "cinematic_omni_light.m2", }, { value = "clearcasting_impact_chest.m2", + text = "clearcasting_impact_chest.m2", fileId = "165795", text = "clearcasting_impact_chest.m2", }, { value = "cleave_cast_base.m2", + text = "cleave_cast_base.m2", fileId = "165796", text = "cleave_cast_base.m2", }, { value = "cleave_impact_chest.m2", + text = "cleave_impact_chest.m2", fileId = "165798", text = "cleave_impact_chest.m2", }, { value = "clense_base.m2", + text = "clense_base.m2", fileId = "165799", text = "clense_base.m2", }, { value = "coneofcold_geo.m2", + text = "coneofcold_geo.m2", fileId = "165810", text = "coneofcold_geo.m2", }, { value = "coneofcold_hand.m2", + text = "coneofcold_hand.m2", fileId = "165811", text = "coneofcold_hand.m2", }, { value = "coneoffire_hand.m2", + text = "coneoffire_hand.m2", fileId = "165812", text = "coneoffire_hand.m2", }, { value = "conflagrate_impact_chest.m2", + text = "conflagrate_impact_chest.m2", fileId = "165813", text = "conflagrate_impact_chest.m2", }, { value = "confused_state_head.m2", + text = "confused_state_head.m2", fileId = "165815", text = "confused_state_head.m2", }, { value = "conjureitem.m2", + text = "conjureitem.m2", fileId = "165816", text = "conjureitem.m2", }, { value = "conjureitemcast.m2", + text = "conjureitemcast.m2", fileId = "165817", text = "conjureitemcast.m2", }, { value = "consecration_impact_base.m2", + text = "consecration_impact_base.m2", fileId = "165818", text = "consecration_impact_base.m2", }, { value = "corrosivesandbreath.m2", + text = "corrosivesandbreath.m2", fileId = "165820", text = "corrosivesandbreath.m2", }, { value = "corruption_impactdot_med_base.m2", + text = "corruption_impactdot_med_base.m2", fileId = "165821", text = "corruption_impactdot_med_base.m2", }, { value = "counterspell_impact_chest.m2", + text = "counterspell_impact_chest.m2", fileId = "165822", text = "counterspell_impact_chest.m2", }, { value = "createsoulstone_cast.m2", + text = "createsoulstone_cast.m2", fileId = "165824", text = "createsoulstone_cast.m2", }, { value = "creature_spellportal_blue.m2", + text = "creature_spellportal_blue.m2", fileId = "165826", text = "creature_spellportal_blue.m2", }, { value = "creature_spellportal_purple.m2", + text = "creature_spellportal_purple.m2", fileId = "165829", text = "creature_spellportal_purple.m2", }, { value = "cripple_impact_base.m2", + text = "cripple_impact_base.m2", fileId = "165837", text = "cripple_impact_base.m2", }, { value = "cripple_state_base.m2", + text = "cripple_state_base.m2", fileId = "165838", text = "cripple_state_base.m2", }, { value = "cripple_state_chest.m2", + text = "cripple_state_chest.m2", fileId = "165839", text = "cripple_state_chest.m2", }, { value = "crow_baked.m2", + text = "crow_baked.m2", fileId = "165840", text = "crow_baked.m2", }, { value = "cthuneeyeattack.m2", + text = "cthuneeyeattack.m2", fileId = "165850", text = "cthuneeyeattack.m2", }, { value = "curseelements_impact_head.m2", + text = "curseelements_impact_head.m2", fileId = "165851", text = "curseelements_impact_head.m2", }, { value = "curseofagony_head.m2", + text = "curseofagony_head.m2", fileId = "165852", text = "curseofagony_head.m2", }, { value = "curseoffrailty_head.m2", + text = "curseoffrailty_head.m2", fileId = "165853", text = "curseoffrailty_head.m2", }, { value = "curseofmannoroth_head.m2", + text = "curseofmannoroth_head.m2", fileId = "165854", text = "curseofmannoroth_head.m2", }, { value = "curseofrecklessness_impact_chest.m2", + text = "curseofrecklessness_impact_chest.m2", fileId = "165855", text = "curseofrecklessness_impact_chest.m2", }, { value = "curseoftongues_impact.m2", + text = "curseoftongues_impact.m2", fileId = "165856", text = "curseoftongues_impact.m2", }, { value = "curseoftongues_state_chest.m2", + text = "curseoftongues_state_chest.m2", fileId = "165857", text = "curseoftongues_state_chest.m2", }, { value = "curseofweakness_head.m2", + text = "curseofweakness_head.m2", fileId = "165858", text = "curseofweakness_head.m2", }, { value = "cyclone_state.m2", + text = "cyclone_state.m2", fileId = "165862", text = "cyclone_state.m2", }, { value = "cycloneearth_state.m2", + text = "cycloneearth_state.m2", fileId = "165863", text = "cycloneearth_state.m2", }, { value = "cyclonefire_state.m2", + text = "cyclonefire_state.m2", fileId = "165864", text = "cyclonefire_state.m2", }, { value = "cyclonegeo.m2", + text = "cyclonegeo.m2", fileId = "165865", text = "cyclonegeo.m2", }, { value = "cyclonegeo2.m2", + text = "cyclonegeo2.m2", fileId = "165866", text = "cyclonegeo2.m2", }, { value = "cyclonegeo2_additive.m2", + text = "cyclonegeo2_additive.m2", fileId = "165867", text = "cyclonegeo2_additive.m2", }, { value = "cyclonegeo3.m2", + text = "cyclonegeo3.m2", fileId = "165868", text = "cyclonegeo3.m2", }, { value = "cyclonegeo3_additive.m2", + text = "cyclonegeo3_additive.m2", fileId = "165869", text = "cyclonegeo3_additive.m2", }, { value = "cyclonegeo_additive.m2", + text = "cyclonegeo_additive.m2", fileId = "165870", text = "cyclonegeo_additive.m2", }, { value = "cyclonerock1.m2", + text = "cyclonerock1.m2", fileId = "165871", text = "cyclonerock1.m2", }, { value = "cyclonerock2.m2", + text = "cyclonerock2.m2", fileId = "165872", text = "cyclonerock2.m2", }, { value = "cyclonewater_state.m2", + text = "cyclonewater_state.m2", fileId = "165873", text = "cyclonewater_state.m2", }, { value = "dampenmagic_impact_base.m2", + text = "dampenmagic_impact_base.m2", fileId = "165874", text = "dampenmagic_impact_base.m2", }, { value = "darkritual_precast_base.m2", + text = "darkritual_precast_base.m2", fileId = "165879", text = "darkritual_precast_base.m2", }, { value = "deathanddecay_area_base.m2", + text = "deathanddecay_area_base.m2", fileId = "165887", text = "deathanddecay_area_base.m2", }, { value = "deathbolt_missile_low.m2", + text = "deathbolt_missile_low.m2", fileId = "165889", text = "deathbolt_missile_low.m2", }, { value = "deathcoil_impact_chest.m2", + text = "deathcoil_impact_chest.m2", fileId = "165890", text = "deathcoil_impact_chest.m2", }, { value = "deathcoil_missile.m2", + text = "deathcoil_missile.m2", fileId = "165891", text = "deathcoil_missile.m2", }, { value = "deathwish_state_hand.m2", + text = "deathwish_state_hand.m2", fileId = "165908", text = "deathwish_state_hand.m2", }, { value = "decisivestrike_impact_chest.m2", + text = "decisivestrike_impact_chest.m2", fileId = "165913", text = "decisivestrike_impact_chest.m2", }, { value = "defensivestance_impact_chest.m2", + text = "defensivestance_impact_chest.m2", fileId = "165914", text = "defensivestance_impact_chest.m2", }, { value = "defensivestance_impact_head.m2", + text = "defensivestance_impact_head.m2", fileId = "165915", text = "defensivestance_impact_head.m2", }, { value = "demonarmor_impact_head.m2", + text = "demonarmor_impact_head.m2", fileId = "165918", text = "demonarmor_impact_head.m2", }, { value = "demonbreath_impact_head.m2", + text = "demonbreath_impact_head.m2", fileId = "165919", text = "demonbreath_impact_head.m2", }, { value = "demonicsacrifice_felhunter_chest.m2", + text = "demonicsacrifice_felhunter_chest.m2", fileId = "165923", text = "demonicsacrifice_felhunter_chest.m2", }, { value = "demonicsacrifice_imp_chest.m2", + text = "demonicsacrifice_imp_chest.m2", fileId = "165924", text = "demonicsacrifice_imp_chest.m2", }, { value = "demonicsacrifice_succubus_chest.m2", + text = "demonicsacrifice_succubus_chest.m2", fileId = "165925", text = "demonicsacrifice_succubus_chest.m2", }, { value = "demonicsacrifice_voidwalker_chest.m2", + text = "demonicsacrifice_voidwalker_chest.m2", fileId = "165926", text = "demonicsacrifice_voidwalker_chest.m2", }, { value = "demoralizingshout_cast_base.m2", + text = "demoralizingshout_cast_base.m2", fileId = "165930", text = "demoralizingshout_cast_base.m2", }, { value = "demoralizingshout_impact_head.m2", + text = "demoralizingshout_impact_head.m2", fileId = "165931", text = "demoralizingshout_impact_head.m2", }, { value = "detectinvis_impact_base.m2", + text = "detectinvis_impact_base.m2", fileId = "165940", text = "detectinvis_impact_base.m2", }, { value = "detectinvis_impact_head.m2", + text = "detectinvis_impact_head.m2", fileId = "165941", text = "detectinvis_impact_head.m2", }, { value = "detectmagic_base.m2", + text = "detectmagic_base.m2", fileId = "165942", text = "detectmagic_base.m2", }, { value = "detectmagic_recursive.m2", + text = "detectmagic_recursive.m2", fileId = "165943", text = "detectmagic_recursive.m2", }, { value = "deterrence_state_base.m2", + text = "deterrence_state_base.m2", fileId = "165947", text = "deterrence_state_base.m2", }, { value = "devotionaura_base.m2", + text = "devotionaura_base.m2", fileId = "165948", text = "devotionaura_base.m2", }, { value = "disarm_impact_chest.m2", + text = "disarm_impact_chest.m2", fileId = "165949", text = "disarm_impact_chest.m2", }, { value = "disenchant_cast_hand.m2", + text = "disenchant_cast_hand.m2", fileId = "165953", text = "disenchant_cast_hand.m2", }, { value = "disenchant_precast_hand.m2", + text = "disenchant_precast_hand.m2", fileId = "165954", text = "disenchant_precast_hand.m2", }, { value = "dispel_low_base.m2", + text = "dispel_low_base.m2", fileId = "165955", text = "dispel_low_base.m2", }, { value = "dispel_low_recursive.m2", + text = "dispel_low_recursive.m2", fileId = "165956", text = "dispel_low_recursive.m2", }, { value = "distract_impact_base.m2", + text = "distract_impact_base.m2", fileId = "165957", text = "distract_impact_base.m2", }, { value = "distract_impact_chest.m2", + text = "distract_impact_chest.m2", fileId = "165958", text = "distract_impact_chest.m2", }, { value = "divinebubble_low_base.m2", + text = "divinebubble_low_base.m2", fileId = "165959", text = "divinebubble_low_base.m2", }, { value = "divineshield_low_base.m2", + text = "divineshield_low_base.m2", fileId = "165961", text = "divineshield_low_base.m2", }, { value = "divineshield_low_chest.m2", + text = "divineshield_low_chest.m2", fileId = "165962", text = "divineshield_low_chest.m2", }, { value = "dragonflamebreath.m2", + text = "dragonflamebreath.m2", fileId = "165964", text = "dragonflamebreath.m2", }, { value = "dragonflamebreath180.m2", + text = "dragonflamebreath180.m2", fileId = "165965", text = "dragonflamebreath180.m2", }, { value = "druidmorph_aqua_impact_base.m2", + text = "druidmorph_aqua_impact_base.m2", fileId = "165969", text = "druidmorph_aqua_impact_base.m2", }, { value = "druidmorph_impact_base.m2", + text = "druidmorph_impact_base.m2", fileId = "165970", text = "druidmorph_impact_base.m2", }, { value = "dustcloud_land.m2", + text = "dustcloud_land.m2", fileId = "165976", text = "dustcloud_land.m2", }, { value = "dustnova_cast_base.m2", + text = "dustnova_cast_base.m2", fileId = "165977", text = "dustnova_cast_base.m2", }, { value = "dynamitea_missile.m2", + text = "dynamitea_missile.m2", fileId = "165980", text = "dynamitea_missile.m2", }, { value = "dynamitea_spellobject.m2", + text = "dynamitea_spellobject.m2", fileId = "165981", text = "dynamitea_spellobject.m2", }, { value = "eagleeye_impact_head.m2", + text = "eagleeye_impact_head.m2", fileId = "165983", text = "eagleeye_impact_head.m2", }, { value = "earthshock_impact_chest.m2", + text = "earthshock_impact_chest.m2", fileId = "165987", text = "earthshock_impact_chest.m2", }, { value = "enchant_cast_hand.m2", + text = "enchant_cast_hand.m2", fileId = "165988", text = "enchant_cast_hand.m2", }, { value = "enchant_precast_hand.m2", + text = "enchant_precast_hand.m2", fileId = "165989", text = "enchant_precast_hand.m2", }, { value = "enchantments", + text = "enchantments", children = { { value = "blackflame_low.m2", + text = "blackflame_low.m2", fileId = "165991", text = "blackflame_low.m2", }, { value = "blackglow_high.m2", + text = "blackglow_high.m2", fileId = "165992", text = "blackglow_high.m2", }, { value = "blackglow_low.m2", + text = "blackglow_low.m2", fileId = "165993", text = "blackglow_low.m2", }, { value = "blueflame_high.m2", + text = "blueflame_high.m2", fileId = "165994", text = "blueflame_high.m2", }, { value = "blueflame_low.m2", + text = "blueflame_low.m2", fileId = "165995", text = "blueflame_low.m2", }, { value = "blueglow_high.m2", + text = "blueglow_high.m2", fileId = "165996", text = "blueglow_high.m2", }, { value = "blueglow_low.m2", + text = "blueglow_low.m2", fileId = "165997", text = "blueglow_low.m2", }, { value = "blueglow_med.m2", + text = "blueglow_med.m2", fileId = "165998", text = "blueglow_med.m2", }, { value = "greenflame_low.m2", + text = "greenflame_low.m2", fileId = "166003", text = "greenflame_low.m2", }, { value = "greenglow_high.m2", + text = "greenglow_high.m2", fileId = "166004", text = "greenglow_high.m2", }, { value = "greenglow_low.m2", + text = "greenglow_low.m2", fileId = "166005", text = "greenglow_low.m2", }, { value = "poisondrip.m2", + text = "poisondrip.m2", fileId = "166007", text = "poisondrip.m2", }, { value = "purpleflame_low.m2", + text = "purpleflame_low.m2", fileId = "166008", text = "purpleflame_low.m2", }, { value = "purpleglow_high.m2", + text = "purpleglow_high.m2", fileId = "166009", text = "purpleglow_high.m2", }, { value = "purpleglow_low.m2", + text = "purpleglow_low.m2", fileId = "166010", text = "purpleglow_low.m2", }, { value = "redflame_low.m2", + text = "redflame_low.m2", fileId = "166011", text = "redflame_low.m2", }, { value = "redglow_high.m2", + text = "redglow_high.m2", fileId = "166012", text = "redglow_high.m2", }, { value = "redglow_low.m2", + text = "redglow_low.m2", fileId = "166013", text = "redglow_low.m2", }, { value = "rune_intellect.m2", + text = "rune_intellect.m2", fileId = "166014", text = "rune_intellect.m2", }, { value = "shaman_fire.m2", + text = "shaman_fire.m2", fileId = "166016", text = "shaman_fire.m2", }, { value = "shaman_frost.m2", + text = "shaman_frost.m2", fileId = "166017", text = "shaman_frost.m2", }, { value = "shaman_green.m2", + text = "shaman_green.m2", fileId = "166018", text = "shaman_green.m2", }, { value = "shaman_purple.m2", + text = "shaman_purple.m2", fileId = "166019", text = "shaman_purple.m2", }, { value = "shaman_red.m2", + text = "shaman_red.m2", fileId = "166020", text = "shaman_red.m2", }, { value = "shaman_rock.m2", + text = "shaman_rock.m2", fileId = "166021", text = "shaman_rock.m2", }, { value = "shaman_wind.m2", + text = "shaman_wind.m2", fileId = "166022", text = "shaman_wind.m2", }, { value = "shaman_yellow.m2", + text = "shaman_yellow.m2", fileId = "166023", text = "shaman_yellow.m2", }, { value = "skullballs.m2", + text = "skullballs.m2", fileId = "166024", text = "skullballs.m2", }, { value = "sparkle_a.m2", + text = "sparkle_a.m2", fileId = "166027", text = "sparkle_a.m2", }, { value = "whiteflame_low.m2", + text = "whiteflame_low.m2", fileId = "166030", text = "whiteflame_low.m2", }, { value = "whiteglow_high.m2", + text = "whiteglow_high.m2", fileId = "166031", text = "whiteglow_high.m2", }, { value = "whiteglow_low.m2", + text = "whiteglow_low.m2", fileId = "166032", text = "whiteglow_low.m2", }, { value = "yellowflame_low.m2", + text = "yellowflame_low.m2", fileId = "166033", text = "yellowflame_low.m2", }, { value = "yellowglow_high.m2", + text = "yellowglow_high.m2", fileId = "166034", text = "yellowglow_high.m2", }, { value = "yellowglow_low.m2", + text = "yellowglow_low.m2", fileId = "166035", text = "yellowglow_low.m2", }, @@ -19684,569 +23542,683 @@ WeakAuras.ModelPaths = { }, { value = "enslavedemon_impact_base.m2", + text = "enslavedemon_impact_base.m2", fileId = "166039", text = "enslavedemon_impact_base.m2", }, { value = "enslavedemon_impact_chest.m2", + text = "enslavedemon_impact_chest.m2", fileId = "166040", text = "enslavedemon_impact_chest.m2", }, { value = "enslavedemon_impact_head.m2", + text = "enslavedemon_impact_head.m2", fileId = "166041", text = "enslavedemon_impact_head.m2", }, { value = "entanglingroots_state.m2", + text = "entanglingroots_state.m2", fileId = "166042", text = "entanglingroots_state.m2", }, { value = "errorcube.m2", + text = "errorcube.m2", fileId = "166046", text = "errorcube.m2", }, { value = "eviscerate_cast_hands.m2", + text = "eviscerate_cast_hands.m2", fileId = "166047", text = "eviscerate_cast_hands.m2", }, { value = "eviscerate_impact_chest.m2", + text = "eviscerate_impact_chest.m2", fileId = "166048", text = "eviscerate_impact_chest.m2", }, { value = "exorcism_impact_chest.m2", + text = "exorcism_impact_chest.m2", fileId = "166049", text = "exorcism_impact_chest.m2", }, { value = "explodertrail.m2", + text = "explodertrail.m2", fileId = "166051", text = "explodertrail.m2", }, { value = "explosivetrap_recursive.m2", + text = "explosivetrap_recursive.m2", fileId = "166054", text = "explosivetrap_recursive.m2", }, { value = "exposearmor_head.m2", + text = "exposearmor_head.m2", fileId = "166055", text = "exposearmor_head.m2", }, { value = "eyesofbeast_impact_head.m2", + text = "eyesofbeast_impact_head.m2", fileId = "166059", text = "eyesofbeast_impact_head.m2", }, { value = "faeriefire.m2", + text = "faeriefire.m2", fileId = "166060", text = "faeriefire.m2", }, { value = "faeriefire_impact.m2", + text = "faeriefire_impact.m2", fileId = "166061", text = "faeriefire_impact.m2", }, { value = "farsight_impact_base.m2", + text = "farsight_impact_base.m2", fileId = "166064", text = "farsight_impact_base.m2", }, { value = "fear_impact_chest.m2", + text = "fear_impact_chest.m2", fileId = "166065", text = "fear_impact_chest.m2", }, { value = "fear_state_base.m2", + text = "fear_state_base.m2", fileId = "166066", text = "fear_state_base.m2", }, { value = "fear_state_head.m2", + text = "fear_state_head.m2", fileId = "166067", text = "fear_state_head.m2", }, { value = "feint_impact_chest.m2", + text = "feint_impact_chest.m2", fileId = "166068", text = "feint_impact_chest.m2", }, { value = "fire_cast_hand.m2", + text = "fire_cast_hand.m2", fileId = "166110", text = "fire_cast_hand.m2", }, { value = "fire_dot_state_chest.m2", + text = "fire_dot_state_chest.m2", fileId = "166111", text = "fire_dot_state_chest.m2", }, { value = "fire_impactdd_chest.m2", + text = "fire_impactdd_chest.m2", fileId = "166113", text = "fire_impactdd_chest.m2", }, { value = "fire_impactdd_high_base.m2", + text = "fire_impactdd_high_base.m2", fileId = "166114", text = "fire_impactdd_high_base.m2", }, { value = "fire_impactdd_high_chest.m2", + text = "fire_impactdd_high_chest.m2", fileId = "166115", text = "fire_impactdd_high_chest.m2", }, { value = "fire_impactdd_low_chest.m2", + text = "fire_impactdd_low_chest.m2", fileId = "166116", text = "fire_impactdd_low_chest.m2", }, { value = "fire_impactdd_med_chest.m2", + text = "fire_impactdd_med_chest.m2", fileId = "166117", text = "fire_impactdd_med_chest.m2", }, { value = "fire_impactdd_uber_base.m2", + text = "fire_impactdd_uber_base.m2", fileId = "166118", text = "fire_impactdd_uber_base.m2", }, { value = "fire_impactdd_uber_chest.m2", + text = "fire_impactdd_uber_chest.m2", fileId = "166119", text = "fire_impactdd_uber_chest.m2", }, { value = "fire_precast_hand.m2", + text = "fire_precast_hand.m2", fileId = "166120", text = "fire_precast_hand.m2", }, { value = "fire_precast_high_hand.m2", + text = "fire_precast_high_hand.m2", fileId = "166121", text = "fire_precast_high_hand.m2", }, { value = "fire_precast_low_hand.m2", + text = "fire_precast_low_hand.m2", fileId = "166122", text = "fire_precast_low_hand.m2", }, { value = "fire_precast_med_hand.m2", + text = "fire_precast_med_hand.m2", fileId = "166123", text = "fire_precast_med_hand.m2", }, { value = "fire_precast_uber_hand.m2", + text = "fire_precast_uber_hand.m2", fileId = "166124", text = "fire_precast_uber_hand.m2", }, { value = "fire_smoketrail.m2", + text = "fire_smoketrail.m2", fileId = "166126", text = "fire_smoketrail.m2", }, { value = "fireball_missile_high.m2", + text = "fireball_missile_high.m2", fileId = "166128", text = "fireball_missile_high.m2", }, { value = "fireball_missile_low.m2", + text = "fireball_missile_low.m2", fileId = "166129", text = "fireball_missile_low.m2", }, { value = "fireblast_impact_chest.m2", + text = "fireblast_impact_chest.m2", fileId = "166131", text = "fireblast_impact_chest.m2", }, { value = "firebolt_impactdd_med_chest.m2", + text = "firebolt_impactdd_med_chest.m2", fileId = "166134", text = "firebolt_impactdd_med_chest.m2", }, { value = "firebolt_missile_low.m2", + text = "firebolt_missile_low.m2", fileId = "166135", text = "firebolt_missile_low.m2", }, { value = "firecrackers_thrown.m2", + text = "firecrackers_thrown.m2", fileId = "166137", text = "firecrackers_thrown.m2", }, { value = "firenova_area.m2", + text = "firenova_area.m2", fileId = "166144", text = "firenova_area.m2", }, { value = "firenova_state.m2", + text = "firenova_state.m2", fileId = "166147", text = "firenova_state.m2", }, { value = "firereflect_state_chest.m2", + text = "firereflect_state_chest.m2", fileId = "166149", text = "firereflect_state_chest.m2", }, { value = "fireresistance_impact_base.m2", + text = "fireresistance_impact_base.m2", fileId = "166150", text = "fireresistance_impact_base.m2", }, { value = "fireshield_impact_head.m2", + text = "fireshield_impact_head.m2", fileId = "166156", text = "fireshield_impact_head.m2", }, { value = "fireshieldfinal_impact_head.m2", + text = "fireshieldfinal_impact_head.m2", fileId = "166157", text = "fireshieldfinal_impact_head.m2", }, { value = "fireshot_missile.m2", + text = "fireshot_missile.m2", fileId = "166158", text = "fireshot_missile.m2", }, { value = "firestrike_missile_low.m2", + text = "firestrike_missile_low.m2", fileId = "166159", text = "firestrike_missile_low.m2", }, { value = "fireward_impact_chest.m2", + text = "fireward_impact_chest.m2", fileId = "166162", text = "fireward_impact_chest.m2", }, { value = "firework_romancandle_impact_chest_01.m2", + text = "firework_romancandle_impact_chest_01.m2", fileId = "166163", text = "firework_romancandle_impact_chest_01.m2", }, { value = "firework_romancandle_missle_01.m2", + text = "firework_romancandle_missle_01.m2", fileId = "166164", text = "firework_romancandle_missle_01.m2", }, { value = "fireworks_blue_01.m2", + text = "fireworks_blue_01.m2", fileId = "166165", text = "fireworks_blue_01.m2", }, { value = "fireworks_green_01.m2", + text = "fireworks_green_01.m2", fileId = "166166", text = "fireworks_green_01.m2", }, { value = "fireworks_red_01.m2", + text = "fireworks_red_01.m2", fileId = "166167", text = "fireworks_red_01.m2", }, { value = "fireworks_redstreaks_01.m2", + text = "fireworks_redstreaks_01.m2", fileId = "166168", text = "fireworks_redstreaks_01.m2", }, { value = "fireworks_rwb_01.m2", + text = "fireworks_rwb_01.m2", fileId = "166169", text = "fireworks_rwb_01.m2", }, { value = "fireworks_yellowrose.m2", + text = "fireworks_yellowrose.m2", fileId = "166170", text = "fireworks_yellowrose.m2", }, { value = "firstaid__impact_base.m2", + text = "firstaid__impact_base.m2", fileId = "166172", text = "firstaid__impact_base.m2", }, { value = "firstaid_hand.m2", + text = "firstaid_hand.m2", fileId = "166173", text = "firstaid_hand.m2", }, { value = "fistofjustice_cast_base.m2", + text = "fistofjustice_cast_base.m2", fileId = "166174", text = "fistofjustice_cast_base.m2", }, { value = "fistofjustice_impact_chest.m2", + text = "fistofjustice_impact_chest.m2", fileId = "166175", text = "fistofjustice_impact_chest.m2", }, { value = "flamebreath.m2", + text = "flamebreath.m2", fileId = "166176", text = "flamebreath.m2", }, { value = "flamebreath180.m2", + text = "flamebreath180.m2", fileId = "166177", text = "flamebreath180.m2", }, { value = "flameshock_impact_chest.m2", + text = "flameshock_impact_chest.m2", fileId = "166186", text = "flameshock_impact_chest.m2", }, { value = "flamestrike_area.m2", + text = "flamestrike_area.m2", fileId = "166187", text = "flamestrike_area.m2", }, { value = "flamestrike_impact.m2", + text = "flamestrike_impact.m2", fileId = "166189", text = "flamestrike_impact.m2", }, { value = "flamestrike_impact_base.m2", + text = "flamestrike_impact_base.m2", fileId = "166190", text = "flamestrike_impact_base.m2", }, { value = "flamestrike_impactdd_med_base.m2", + text = "flamestrike_impactdd_med_base.m2", fileId = "166191", text = "flamestrike_impactdd_med_base.m2", }, { value = "flamestrikesmall_impact_base.m2", + text = "flamestrikesmall_impact_base.m2", fileId = "166193", text = "flamestrikesmall_impact_base.m2", }, { value = "flare_cast_base.m2", + text = "flare_cast_base.m2", fileId = "166195", text = "flare_cast_base.m2", }, { value = "flare_state_base.m2", + text = "flare_state_base.m2", fileId = "166196", text = "flare_state_base.m2", }, { value = "flashheal_base.m2", + text = "flashheal_base.m2", fileId = "166197", text = "flashheal_base.m2", }, { value = "focusedcasting_state_chest.m2", + text = "focusedcasting_state_chest.m2", fileId = "166203", text = "focusedcasting_state_chest.m2", }, { value = "food_healeffect_base.m2", + text = "food_healeffect_base.m2", fileId = "166204", text = "food_healeffect_base.m2", }, { value = "frost_nova_area.m2", + text = "frost_nova_area.m2", fileId = "166210", text = "frost_nova_area.m2", }, { value = "frost_nova_state.m2", + text = "frost_nova_state.m2", fileId = "166211", text = "frost_nova_state.m2", }, { value = "frostarmor_low_head.m2", + text = "frostarmor_low_head.m2", fileId = "166212", text = "frostarmor_low_head.m2", }, { value = "frostarmoreffect_impact_chest.m2", + text = "frostarmoreffect_impact_chest.m2", fileId = "166213", text = "frostarmoreffect_impact_chest.m2", }, { value = "frostbolt.m2", + text = "frostbolt.m2", fileId = "166214", text = "frostbolt.m2", }, { value = "frostbreath.m2", + text = "frostbreath.m2", fileId = "166215", text = "frostbreath.m2", }, { value = "frostreflect_state_chest.m2", + text = "frostreflect_state_chest.m2", fileId = "166216", text = "frostreflect_state_chest.m2", }, { value = "frostshot_missile.m2", + text = "frostshot_missile.m2", fileId = "166217", text = "frostshot_missile.m2", }, { value = "frosttrap_aura.m2", + text = "frosttrap_aura.m2", fileId = "166219", text = "frosttrap_aura.m2", }, { value = "frostward_impact_chest.m2", + text = "frostward_impact_chest.m2", fileId = "166221", text = "frostward_impact_chest.m2", }, { value = "ghost_state.m2", + text = "ghost_state.m2", fileId = "166237", text = "ghost_state.m2", }, { value = "ghostlystrike_impact_chest.m2", + text = "ghostlystrike_impact_chest.m2", fileId = "166239", text = "ghostlystrike_impact_chest.m2", }, { value = "giantinsectswarm_state_chest.m2", + text = "giantinsectswarm_state_chest.m2", fileId = "166240", text = "giantinsectswarm_state_chest.m2", }, { value = "giantinsectswarm_state_ground.m2", + text = "giantinsectswarm_state_ground.m2", fileId = "166241", text = "giantinsectswarm_state_ground.m2", }, { value = "goobolt_missile_low.m2", + text = "goobolt_missile_low.m2", fileId = "166254", text = "goobolt_missile_low.m2", }, { value = "gouge_precast_state_hand.m2", + text = "gouge_precast_state_hand.m2", fileId = "166255", text = "gouge_precast_state_hand.m2", }, { value = "greaterheal_low_base.m2", + text = "greaterheal_low_base.m2", fileId = "166273", text = "greaterheal_low_base.m2", }, { value = "greenghost_state.m2", + text = "greenghost_state.m2", fileId = "166278", text = "greenghost_state.m2", }, { value = "greenradiationfog.m2", + text = "greenradiationfog.m2", fileId = "166280", text = "greenradiationfog.m2", }, { value = "grounddust.m2", + text = "grounddust.m2", fileId = "166285", text = "grounddust.m2", }, { value = "groundingtotem_impact.m2", + text = "groundingtotem_impact.m2", fileId = "166286", text = "groundingtotem_impact.m2", }, { value = "harmundeadaura_base.m2", + text = "harmundeadaura_base.m2", fileId = "166288", text = "harmundeadaura_base.m2", }, { value = "headsplitter_impact_chest.m2", + text = "headsplitter_impact_chest.m2", fileId = "166291", text = "headsplitter_impact_chest.m2", }, { value = "heal_low_base.m2", + text = "heal_low_base.m2", fileId = "166292", text = "heal_low_base.m2", }, { value = "healingaura_base.m2", + text = "healingaura_base.m2", fileId = "166293", text = "healingaura_base.m2", }, { value = "healrag_state_chest.m2", + text = "healrag_state_chest.m2", fileId = "166294", text = "healrag_state_chest.m2", }, { value = "hellfire_area_base.m2", + text = "hellfire_area_base.m2", fileId = "166297", text = "hellfire_area_base.m2", }, { value = "hellfire_channel_base.m2", + text = "hellfire_channel_base.m2", fileId = "166301", text = "hellfire_channel_base.m2", }, { value = "hellfire_firepuff_caster_base.m2", + text = "hellfire_firepuff_caster_base.m2", fileId = "166302", text = "hellfire_firepuff_caster_base.m2", }, { value = "hellfire_impact_base.m2", + text = "hellfire_impact_base.m2", fileId = "166303", text = "hellfire_impact_base.m2", }, { value = "hellfire_impact_caster_base.m2", + text = "hellfire_impact_caster_base.m2", fileId = "166304", text = "hellfire_impact_caster_base.m2", }, { value = "hellfire_impact_head.m2", + text = "hellfire_impact_head.m2", fileId = "166305", text = "hellfire_impact_head.m2", }, { value = "hitsplatfire.m2", + text = "hitsplatfire.m2", fileId = "166309", text = "hitsplatfire.m2", }, { value = "holidays", + text = "holidays", children = { { value = "valentines_brokenheart.m2", + text = "valentines_brokenheart.m2", fileId = "166313", text = "valentines_brokenheart.m2", }, { value = "valentines_cupidsarrow_impact_chest.m2", + text = "valentines_cupidsarrow_impact_chest.m2", fileId = "166314", text = "valentines_cupidsarrow_impact_chest.m2", }, { value = "valentines_cupidsarrow_missle.m2", + text = "valentines_cupidsarrow_missle.m2", fileId = "166315", text = "valentines_cupidsarrow_missle.m2", }, { value = "valentines_lookingforloveheart.m2", + text = "valentines_lookingforloveheart.m2", fileId = "166316", text = "valentines_lookingforloveheart.m2", }, { value = "valentines_roseshower_impact_base.m2", + text = "valentines_roseshower_impact_base.m2", fileId = "166317", text = "valentines_roseshower_impact_base.m2", }, { value = "valentines_spellobject_cupidsbow.m2", + text = "valentines_spellobject_cupidsbow.m2", fileId = "166318", text = "valentines_spellobject_cupidsbow.m2", }, @@ -20255,419 +24227,503 @@ WeakAuras.ModelPaths = { }, { value = "holy_hammer_missile.m2", + text = "holy_hammer_missile.m2", fileId = "166323", text = "holy_hammer_missile.m2", }, { value = "holy_impactdd_high_base.m2", + text = "holy_impactdd_high_base.m2", fileId = "166324", text = "holy_impactdd_high_base.m2", }, { value = "holy_impactdd_high_chest.m2", + text = "holy_impactdd_high_chest.m2", fileId = "166325", text = "holy_impactdd_high_chest.m2", }, { value = "holy_impactdd_low_chest.m2", + text = "holy_impactdd_low_chest.m2", fileId = "166326", text = "holy_impactdd_low_chest.m2", }, { value = "holy_impactdd_med_chest.m2", + text = "holy_impactdd_med_chest.m2", fileId = "166327", text = "holy_impactdd_med_chest.m2", }, { value = "holy_impactdd_uber_base.m2", + text = "holy_impactdd_uber_base.m2", fileId = "166328", text = "holy_impactdd_uber_base.m2", }, { value = "holy_impactdd_uber_chest.m2", + text = "holy_impactdd_uber_chest.m2", fileId = "166329", text = "holy_impactdd_uber_chest.m2", }, { value = "holy_missile_high.m2", + text = "holy_missile_high.m2", fileId = "166330", text = "holy_missile_high.m2", }, { value = "holy_missile_low.m2", + text = "holy_missile_low.m2", fileId = "166331", text = "holy_missile_low.m2", }, { value = "holy_missile_med.m2", + text = "holy_missile_med.m2", fileId = "166332", text = "holy_missile_med.m2", }, { value = "holy_missile_uber.m2", + text = "holy_missile_uber.m2", fileId = "166333", text = "holy_missile_uber.m2", }, { value = "holy_precast_high_base.m2", + text = "holy_precast_high_base.m2", fileId = "166334", text = "holy_precast_high_base.m2", }, { value = "holy_precast_high_hand.m2", + text = "holy_precast_high_hand.m2", fileId = "166335", text = "holy_precast_high_hand.m2", }, { value = "holy_precast_low_hand.m2", + text = "holy_precast_low_hand.m2", fileId = "166336", text = "holy_precast_low_hand.m2", }, { value = "holy_precast_med_hand.m2", + text = "holy_precast_med_hand.m2", fileId = "166337", text = "holy_precast_med_hand.m2", }, { value = "holy_precast_uber_base.m2", + text = "holy_precast_uber_base.m2", fileId = "166338", text = "holy_precast_uber_base.m2", }, { value = "holy_precast_uber_hand.m2", + text = "holy_precast_uber_hand.m2", fileId = "166339", text = "holy_precast_uber_hand.m2", }, { value = "holydivineshield_state_base.m2", + text = "holydivineshield_state_base.m2", fileId = "166342", text = "holydivineshield_state_base.m2", }, { value = "holylight_impact_head.m2", + text = "holylight_impact_head.m2", fileId = "166348", text = "holylight_impact_head.m2", }, { value = "holylight_low_head.m2", + text = "holylight_low_head.m2", fileId = "166349", text = "holylight_low_head.m2", }, { value = "holynova_impact_base.m2", + text = "holynova_impact_base.m2", fileId = "166350", text = "holynova_impact_base.m2", }, { value = "holyprotection_chest.m2", + text = "holyprotection_chest.m2", fileId = "166351", text = "holyprotection_chest.m2", }, { value = "holysmite_low_chest.m2", + text = "holysmite_low_chest.m2", fileId = "166354", text = "holysmite_low_chest.m2", }, { value = "holyward_impact_chest.m2", + text = "holyward_impact_chest.m2", fileId = "166355", text = "holyward_impact_chest.m2", }, { value = "holyword_fortitude_impact_base.m2", + text = "holyword_fortitude_impact_base.m2", fileId = "166356", text = "holyword_fortitude_impact_base.m2", }, { value = "holywordheal_base.m2", + text = "holywordheal_base.m2", fileId = "166357", text = "holywordheal_base.m2", }, { value = "holywordshield_base.m2", + text = "holywordshield_base.m2", fileId = "166358", text = "holywordshield_base.m2", }, { value = "holywordshield_state_base.m2", + text = "holywordshield_state_base.m2", fileId = "166359", text = "holywordshield_state_base.m2", }, { value = "holywordshield_state_chest.m2", + text = "holywordshield_state_chest.m2", fileId = "166360", text = "holywordshield_state_chest.m2", }, { value = "hordectfflag_spell.m2", + text = "hordectfflag_spell.m2", fileId = "166361", text = "hordectfflag_spell.m2", }, { value = "huntersmark_impact_chest.m2", + text = "huntersmark_impact_chest.m2", fileId = "166362", text = "huntersmark_impact_chest.m2", }, { value = "huntersmark_impact_head.m2", + text = "huntersmark_impact_head.m2", fileId = "166363", text = "huntersmark_impact_head.m2", }, { value = "ice_cast_low_hand.m2", + text = "ice_cast_low_hand.m2", fileId = "166367", text = "ice_cast_low_hand.m2", }, { value = "ice_impactdd_high_chest.m2", + text = "ice_impactdd_high_chest.m2", fileId = "166368", text = "ice_impactdd_high_chest.m2", }, { value = "ice_impactdd_low_chest.m2", + text = "ice_impactdd_low_chest.m2", fileId = "166369", text = "ice_impactdd_low_chest.m2", }, { value = "ice_impactdd_med_chest.m2", + text = "ice_impactdd_med_chest.m2", fileId = "166370", text = "ice_impactdd_med_chest.m2", }, { value = "ice_impactdd_uber_chest.m2", + text = "ice_impactdd_uber_chest.m2", fileId = "166371", text = "ice_impactdd_uber_chest.m2", }, { value = "ice_missile_high.m2", + text = "ice_missile_high.m2", fileId = "166374", text = "ice_missile_high.m2", }, { value = "ice_missile_low.m2", + text = "ice_missile_low.m2", fileId = "166375", text = "ice_missile_low.m2", }, { value = "ice_missile_med.m2", + text = "ice_missile_med.m2", fileId = "166376", text = "ice_missile_med.m2", }, { value = "ice_missile_uber.m2", + text = "ice_missile_uber.m2", fileId = "166377", text = "ice_missile_uber.m2", }, { value = "ice_precast_high_base.m2", + text = "ice_precast_high_base.m2", fileId = "166378", text = "ice_precast_high_base.m2", }, { value = "ice_precast_high_hand.m2", + text = "ice_precast_high_hand.m2", fileId = "166379", text = "ice_precast_high_hand.m2", }, { value = "ice_precast_high_head.m2", + text = "ice_precast_high_head.m2", fileId = "166380", text = "ice_precast_high_head.m2", }, { value = "ice_precast_low_hand.m2", + text = "ice_precast_low_hand.m2", fileId = "166381", text = "ice_precast_low_hand.m2", }, { value = "ice_precast_med_hand.m2", + text = "ice_precast_med_hand.m2", fileId = "166382", text = "ice_precast_med_hand.m2", }, { value = "ice_precast_uber_base.m2", + text = "ice_precast_uber_base.m2", fileId = "166383", text = "ice_precast_uber_base.m2", }, { value = "ice_precast_uber_hand.m2", + text = "ice_precast_uber_hand.m2", fileId = "166384", text = "ice_precast_uber_hand.m2", }, { value = "ice_precast_uber_head.m2", + text = "ice_precast_uber_head.m2", fileId = "166385", text = "ice_precast_uber_head.m2", }, { value = "icearmor_low_head.m2", + text = "icearmor_low_head.m2", fileId = "166387", text = "icearmor_low_head.m2", }, { value = "icebarrier_state.m2", + text = "icebarrier_state.m2", fileId = "166388", text = "icebarrier_state.m2", }, { value = "icenuke_base_impact.m2", + text = "icenuke_base_impact.m2", fileId = "166389", text = "icenuke_base_impact.m2", }, { value = "icenuke_missile.m2", + text = "icenuke_missile.m2", fileId = "166390", text = "icenuke_missile.m2", }, { value = "iceprison_base.m2", + text = "iceprison_base.m2", fileId = "166391", text = "iceprison_base.m2", }, { value = "iceshield_state.m2", + text = "iceshield_state.m2", fileId = "166392", text = "iceshield_state.m2", }, { value = "immolate_impact_chest.m2", + text = "immolate_impact_chest.m2", fileId = "166401", text = "immolate_impact_chest.m2", }, { value = "immolate_state.m2", + text = "immolate_state.m2", fileId = "166402", text = "immolate_state.m2", }, { value = "immolate_state_base.m2", + text = "immolate_state_base.m2", fileId = "166403", text = "immolate_state_base.m2", }, { value = "immolationtrap_recursive.m2", + text = "immolationtrap_recursive.m2", fileId = "166404", text = "immolationtrap_recursive.m2", }, { value = "infernal_flare_rec.m2", + text = "infernal_flare_rec.m2", fileId = "166411", text = "infernal_flare_rec.m2", }, { value = "infernal_geo.m2", + text = "infernal_geo.m2", fileId = "166412", text = "infernal_geo.m2", }, { value = "infernal_impact_base.m2", + text = "infernal_impact_base.m2", fileId = "166414", text = "infernal_impact_base.m2", }, { value = "infernal_smoke_rec.m2", + text = "infernal_smoke_rec.m2", fileId = "166415", text = "infernal_smoke_rec.m2", }, { value = "innerfire_base.m2", + text = "innerfire_base.m2", fileId = "166417", text = "innerfire_base.m2", }, { value = "innerfocus_impact_chest.m2", + text = "innerfocus_impact_chest.m2", fileId = "166419", text = "innerfocus_impact_chest.m2", }, { value = "innerrage_impact_chest.m2", + text = "innerrage_impact_chest.m2", fileId = "166420", text = "innerrage_impact_chest.m2", }, { value = "insectswarm_state_chest.m2", + text = "insectswarm_state_chest.m2", fileId = "166421", text = "insectswarm_state_chest.m2", }, { value = "intimidatingshout_cast_base.m2", + text = "intimidatingshout_cast_base.m2", fileId = "166427", text = "intimidatingshout_cast_base.m2", }, { value = "intimidatingshout_impact_head.m2", + text = "intimidatingshout_impact_head.m2", fileId = "166428", text = "intimidatingshout_impact_head.m2", }, { value = "invisibility_impact_base.m2", + text = "invisibility_impact_base.m2", fileId = "166430", text = "invisibility_impact_base.m2", }, { value = "invisibility_impact_chest.m2", + text = "invisibility_impact_chest.m2", fileId = "166431", text = "invisibility_impact_chest.m2", }, { value = "invisible.m2", + text = "invisible.m2", fileId = "166432", text = "invisible.m2", }, { value = "item_bread.m2", + text = "item_bread.m2", fileId = "166434", text = "item_bread.m2", }, { value = "kick_chest_impact.m2", + text = "kick_chest_impact.m2", fileId = "166437", text = "kick_chest_impact.m2", }, { value = "kidneyshot_base_cast.m2", + text = "kidneyshot_base_cast.m2", fileId = "166438", text = "kidneyshot_base_cast.m2", }, { value = "largebluegreenradiationfog.m2", + text = "largebluegreenradiationfog.m2", fileId = "166441", text = "largebluegreenradiationfog.m2", }, { value = "largegreenradiationfog.m2", + text = "largegreenradiationfog.m2", fileId = "166442", text = "largegreenradiationfog.m2", }, { value = "lash_cast_base.m2", + text = "lash_cast_base.m2", fileId = "166443", text = "lash_cast_base.m2", }, { value = "layonhands_low_chest.m2", + text = "layonhands_low_chest.m2", fileId = "166452", text = "layonhands_low_chest.m2", }, { value = "layonhands_low_head.m2", + text = "layonhands_low_head.m2", fileId = "166453", text = "layonhands_low_head.m2", }, { value = "learn_impact_base.m2", + text = "learn_impact_base.m2", fileId = "166457", text = "learn_impact_base.m2", }, { value = "lesserheal_base.m2", + text = "lesserheal_base.m2", fileId = "166463", text = "lesserheal_base.m2", }, { value = "levelup", + text = "levelup", children = { { value = "levelup.m2", + text = "levelup.m2", fileId = "166464", text = "levelup.m2", }, @@ -20676,9 +24732,11 @@ WeakAuras.ModelPaths = { }, { value = "levelupspell", + text = "levelupspell", children = { { value = "levelupspell.m2", + text = "levelupspell.m2", fileId = "166465", text = "levelupspell.m2", }, @@ -20687,1396 +24745,1675 @@ WeakAuras.ModelPaths = { }, { value = "levitate_impact_base.m2", + text = "levitate_impact_base.m2", fileId = "166466", text = "levitate_impact_base.m2", }, { value = "lifedrain_missile.m2", + text = "lifedrain_missile.m2", fileId = "166469", text = "lifedrain_missile.m2", }, { value = "lifetap.m2", + text = "lifetap.m2", fileId = "166470", text = "lifetap.m2", }, { value = "lifetap_state_chest.m2", + text = "lifetap_state_chest.m2", fileId = "166471", text = "lifetap_state_chest.m2", }, { value = "lightning_cast_hand.m2", + text = "lightning_cast_hand.m2", fileId = "166488", text = "lightning_cast_hand.m2", }, { value = "lightning_precast_low_hand.m2", + text = "lightning_precast_low_hand.m2", fileId = "166492", text = "lightning_precast_low_hand.m2", }, { value = "lightningbolt_impact_chest.m2", + text = "lightningbolt_impact_chest.m2", fileId = "166496", text = "lightningbolt_impact_chest.m2", }, { value = "lightningbolt_missile.m2", + text = "lightningbolt_missile.m2", fileId = "166497", text = "lightningbolt_missile.m2", }, { value = "lightningboltivus_missile.m2", + text = "lightningboltivus_missile.m2", fileId = "166498", text = "lightningboltivus_missile.m2", }, { value = "lightningshield_impact_base.m2", + text = "lightningshield_impact_base.m2", fileId = "166499", text = "lightningshield_impact_base.m2", }, { value = "lightningshield_state_base.m2", + text = "lightningshield_state_base.m2", fileId = "166500", text = "lightningshield_state_base.m2", }, { value = "lightningstorm_cloud_state.m2", + text = "lightningstorm_cloud_state.m2", fileId = "166502", text = "lightningstorm_cloud_state.m2", }, { value = "lightningstreak_missile.m2", + text = "lightningstreak_missile.m2", fileId = "166504", text = "lightningstreak_missile.m2", }, { value = "lighttest.m2", + text = "lighttest.m2", fileId = "166505", text = "lighttest.m2", }, { value = "loyaltydown_impact_base.m2", + text = "loyaltydown_impact_base.m2", fileId = "166508", text = "loyaltydown_impact_base.m2", }, { value = "loyaltydown_impact_head.m2", + text = "loyaltydown_impact_head.m2", fileId = "166509", text = "loyaltydown_impact_head.m2", }, { value = "loyaltyup_impact_base.m2", + text = "loyaltyup_impact_base.m2", fileId = "166510", text = "loyaltyup_impact_base.m2", }, { value = "loyaltyup_impact_head.m2", + text = "loyaltyup_impact_head.m2", fileId = "166511", text = "loyaltyup_impact_head.m2", }, { value = "magearmor_impact_head.m2", + text = "magearmor_impact_head.m2", fileId = "166522", text = "magearmor_impact_head.m2", }, { value = "mageportal_blank.m2", + text = "mageportal_blank.m2", fileId = "166523", text = "mageportal_blank.m2", }, { value = "magic_cast_hand.m2", + text = "magic_cast_hand.m2", fileId = "166524", text = "magic_cast_hand.m2", }, { value = "magic_impact_chest.m2", + text = "magic_impact_chest.m2", fileId = "166525", text = "magic_impact_chest.m2", }, { value = "magic_precast_hand.m2", + text = "magic_precast_hand.m2", fileId = "166526", text = "magic_precast_hand.m2", }, { value = "magicnet_missile.m2", + text = "magicnet_missile.m2", fileId = "166527", text = "magicnet_missile.m2", }, { value = "magicnet_state.m2", + text = "magicnet_state.m2", fileId = "166528", text = "magicnet_state.m2", }, { value = "magicstonehelmet_green.m2", + text = "magicstonehelmet_green.m2", fileId = "166529", text = "magicstonehelmet_green.m2", }, { value = "magicstonehelmet_red.m2", + text = "magicstonehelmet_red.m2", fileId = "166530", text = "magicstonehelmet_red.m2", }, { value = "magicunlock.m2", + text = "magicunlock.m2", fileId = "166531", text = "magicunlock.m2", }, { value = "maim_impact_chest.m2", + text = "maim_impact_chest.m2", fileId = "166534", text = "maim_impact_chest.m2", }, { value = "mana_impactdot_chest.m2", + text = "mana_impactdot_chest.m2", fileId = "166536", text = "mana_impactdot_chest.m2", }, { value = "manaburn_chest.m2", + text = "manaburn_chest.m2", fileId = "166537", text = "manaburn_chest.m2", }, { value = "manafunnel_impact_chest.m2", + text = "manafunnel_impact_chest.m2", fileId = "166538", text = "manafunnel_impact_chest.m2", }, { value = "manainfuse_base.m2", + text = "manainfuse_base.m2", fileId = "166539", text = "manainfuse_base.m2", }, { value = "manashield_state_base.m2", + text = "manashield_state_base.m2", fileId = "166540", text = "manashield_state_base.m2", }, { value = "manashield_state_chest.m2", + text = "manashield_state_chest.m2", fileId = "166541", text = "manashield_state_chest.m2", }, { value = "manashot_missile.m2", + text = "manashot_missile.m2", fileId = "166542", text = "manashot_missile.m2", }, { value = "manatideinfuse_base.m2", + text = "manatideinfuse_base.m2", fileId = "166543", text = "manatideinfuse_base.m2", }, { value = "markofbeast_impact_head.m2", + text = "markofbeast_impact_head.m2", fileId = "166545", text = "markofbeast_impact_head.m2", }, { value = "markofwild_impact_head.m2", + text = "markofwild_impact_head.m2", fileId = "166546", text = "markofwild_impact_head.m2", }, { value = "maul.m2", + text = "maul.m2", fileId = "166549", text = "maul.m2", }, { value = "maulcasterbase.m2", + text = "maulcasterbase.m2", fileId = "166550", text = "maulcasterbase.m2", }, { value = "maulimpact.m2", + text = "maulimpact.m2", fileId = "166551", text = "maulimpact.m2", }, { value = "meteor_impact_base.m2", + text = "meteor_impact_base.m2", fileId = "166554", text = "meteor_impact_base.m2", }, { value = "mightaura_impact_base.m2", + text = "mightaura_impact_base.m2", fileId = "166557", text = "mightaura_impact_base.m2", }, { value = "mindblast_head.m2", + text = "mindblast_head.m2", fileId = "166558", text = "mindblast_head.m2", }, { value = "mindrot_head.m2", + text = "mindrot_head.m2", fileId = "166559", text = "mindrot_head.m2", }, { value = "miningpick_spellobject.m2", + text = "miningpick_spellobject.m2", fileId = "166560", text = "miningpick_spellobject.m2", }, { value = "missile_axe_copper.m2", + text = "missile_axe_copper.m2", fileId = "166563", text = "missile_axe_copper.m2", }, { value = "missile_bomb.m2", + text = "missile_bomb.m2", fileId = "166564", text = "missile_bomb.m2", }, { value = "missile_boomerang.m2", + text = "missile_boomerang.m2", fileId = "166565", text = "missile_boomerang.m2", }, { value = "missile_flare.m2", + text = "missile_flare.m2", fileId = "166566", text = "missile_flare.m2", }, { value = "missile_hammer.m2", + text = "missile_hammer.m2", fileId = "166567", text = "missile_hammer.m2", }, { value = "missile_leatherball.m2", + text = "missile_leatherball.m2", fileId = "166568", text = "missile_leatherball.m2", }, { value = "missile_snowball.m2", + text = "missile_snowball.m2", fileId = "166570", text = "missile_snowball.m2", }, { value = "missile_thorns.m2", + text = "missile_thorns.m2", fileId = "166571", text = "missile_thorns.m2", }, { value = "missile_wrench.m2", + text = "missile_wrench.m2", fileId = "166579", text = "missile_wrench.m2", }, { value = "moltenblast_impact_chest.m2", + text = "moltenblast_impact_chest.m2", fileId = "166583", text = "moltenblast_impact_chest.m2", }, { value = "moltenblast_missile.m2", + text = "moltenblast_missile.m2", fileId = "166584", text = "moltenblast_missile.m2", }, { value = "moltenblast_missile_lvl2.m2", + text = "moltenblast_missile_lvl2.m2", fileId = "166585", text = "moltenblast_missile_lvl2.m2", }, { value = "moltenblast_missile_lvl3.m2", + text = "moltenblast_missile_lvl3.m2", fileId = "166586", text = "moltenblast_missile_lvl3.m2", }, { value = "moonbeam_impact_base.m2", + text = "moonbeam_impact_base.m2", fileId = "166590", text = "moonbeam_impact_base.m2", }, { value = "moonfire_impact_base.m2", + text = "moonfire_impact_base.m2", fileId = "166593", text = "moonfire_impact_base.m2", }, { value = "movementimmunity_base.m2", + text = "movementimmunity_base.m2", fileId = "166594", text = "movementimmunity_base.m2", }, { value = "mug_missile.m2", + text = "mug_missile.m2", fileId = "166595", text = "mug_missile.m2", }, { value = "multishot_impact.m2", + text = "multishot_impact.m2", fileId = "166597", text = "multishot_impact.m2", }, { value = "multishot_missile.m2", + text = "multishot_missile.m2", fileId = "166598", text = "multishot_missile.m2", }, { value = "nature_cast_hand.m2", + text = "nature_cast_hand.m2", fileId = "166602", text = "nature_cast_hand.m2", }, { value = "nature_precast_chest.m2", + text = "nature_precast_chest.m2", fileId = "166604", text = "nature_precast_chest.m2", }, { value = "nature_precast_low_hand.m2", + text = "nature_precast_low_hand.m2", fileId = "166605", text = "nature_precast_low_hand.m2", }, { value = "natureresistance_impact_base.m2", + text = "natureresistance_impact_base.m2", fileId = "166608", text = "natureresistance_impact_base.m2", }, { value = "naxxramasstrike_impactdd_med_base.m2", + text = "naxxramasstrike_impactdd_med_base.m2", fileId = "166610", text = "naxxramasstrike_impactdd_med_base.m2", }, { value = "nefarian_impact_base.m2", + text = "nefarian_impact_base.m2", fileId = "166611", text = "nefarian_impact_base.m2", }, { value = "nefarian_state_base.m2", + text = "nefarian_state_base.m2", fileId = "166612", text = "nefarian_state_base.m2", }, { value = "nefarianflamebreath.m2", + text = "nefarianflamebreath.m2", fileId = "166613", text = "nefarianflamebreath.m2", }, { value = "nefarianflamebreath_impact.m2", + text = "nefarianflamebreath_impact.m2", fileId = "166614", text = "nefarianflamebreath_impact.m2", }, { value = "net_missile.m2", + text = "net_missile.m2", fileId = "166615", text = "net_missile.m2", }, { value = "net_state.m2", + text = "net_state.m2", fileId = "166616", text = "net_state.m2", }, { value = "nightmare_impact_base.m2", + text = "nightmare_impact_base.m2", fileId = "166623", text = "nightmare_impact_base.m2", }, { value = "noname_area.m2", + text = "noname_area.m2", fileId = "166624", text = "noname_area.m2", }, { value = "nullifydisease_base.m2", + text = "nullifydisease_base.m2", fileId = "166625", text = "nullifydisease_base.m2", }, { value = "nullifypoison_base.m2", + text = "nullifypoison_base.m2", fileId = "166626", text = "nullifypoison_base.m2", }, { value = "onyxia_impact_base.m2", + text = "onyxia_impact_base.m2", fileId = "166629", text = "onyxia_impact_base.m2", }, { value = "parachute_wings_head.m2", + text = "parachute_wings_head.m2", fileId = "166634", text = "parachute_wings_head.m2", }, { value = "pathfind_cast_head.m2", + text = "pathfind_cast_head.m2", fileId = "166636", text = "pathfind_cast_head.m2", }, { value = "pestilence_impact_chest.m2", + text = "pestilence_impact_chest.m2", fileId = "166637", text = "pestilence_impact_chest.m2", }, { value = "piercinghowl_impact_head.m2", + text = "piercinghowl_impact_head.m2", fileId = "166638", text = "piercinghowl_impact_head.m2", }, { value = "piercingstrike.m2", + text = "piercingstrike.m2", fileId = "166639", text = "piercingstrike.m2", }, { value = "piercingstrike_cast_hand.m2", + text = "piercingstrike_cast_hand.m2", fileId = "166640", text = "piercingstrike_cast_hand.m2", }, { value = "poison_cloud_grobbulus.m2", + text = "poison_cloud_grobbulus.m2", fileId = "166642", text = "poison_cloud_grobbulus.m2", }, { value = "poison_impact_chest.m2", + text = "poison_impact_chest.m2", fileId = "166643", text = "poison_impact_chest.m2", }, { value = "poison_impactdot_med_base.m2", + text = "poison_impactdot_med_base.m2", fileId = "166644", text = "poison_impactdot_med_base.m2", }, { value = "poison_impactdot_med_chest.m2", + text = "poison_impactdot_med_chest.m2", fileId = "166645", text = "poison_impactdot_med_chest.m2", }, { value = "poisonshield_state_base.m2", + text = "poisonshield_state_base.m2", fileId = "166647", text = "poisonshield_state_base.m2", }, { value = "poisonshot_missile.m2", + text = "poisonshot_missile.m2", fileId = "166648", text = "poisonshot_missile.m2", }, { value = "polymorph_impact.m2", + text = "polymorph_impact.m2", fileId = "166649", text = "polymorph_impact.m2", }, { value = "polymorph_impact_base.m2", + text = "polymorph_impact_base.m2", fileId = "166650", text = "polymorph_impact_base.m2", }, { value = "potiona_spellobject.m2", + text = "potiona_spellobject.m2", fileId = "166654", text = "potiona_spellobject.m2", }, { value = "potionb_spellobject.m2", + text = "potionb_spellobject.m2", fileId = "166655", text = "potionb_spellobject.m2", }, { value = "prayerofhealing_chest.m2", + text = "prayerofhealing_chest.m2", fileId = "166656", text = "prayerofhealing_chest.m2", }, { value = "presenceofmind_cast_base.m2", + text = "presenceofmind_cast_base.m2", fileId = "166658", text = "presenceofmind_cast_base.m2", }, { value = "protectionfromfire_chest.m2", + text = "protectionfromfire_chest.m2", fileId = "166663", text = "protectionfromfire_chest.m2", }, { value = "protectionfromnature_chest.m2", + text = "protectionfromnature_chest.m2", fileId = "166664", text = "protectionfromnature_chest.m2", }, { value = "purge_impact_chest.m2", + text = "purge_impact_chest.m2", fileId = "166665", text = "purge_impact_chest.m2", }, { value = "purge_new_impact_chest.m2", + text = "purge_new_impact_chest.m2", fileId = "166666", text = "purge_new_impact_chest.m2", }, { value = "purify_base.m2", + text = "purify_base.m2", fileId = "166667", text = "purify_base.m2", }, { value = "purpleghost_state.m2", + text = "purpleghost_state.m2", fileId = "166672", text = "purpleghost_state.m2", }, { value = "pyroblast_missile.m2", + text = "pyroblast_missile.m2", fileId = "166674", text = "pyroblast_missile.m2", }, { value = "rag_firenova_area.m2", + text = "rag_firenova_area.m2", fileId = "166675", text = "rag_firenova_area.m2", }, { value = "rainoffire_impact_base.m2", + text = "rainoffire_impact_base.m2", fileId = "166677", text = "rainoffire_impact_base.m2", }, { value = "rainoffire_missile.m2", + text = "rainoffire_missile.m2", fileId = "166678", text = "rainoffire_missile.m2", }, { value = "rake.m2", + text = "rake.m2", fileId = "166679", text = "rake.m2", }, { value = "rapidfire_base.m2", + text = "rapidfire_base.m2", fileId = "166682", text = "rapidfire_base.m2", }, { value = "recklessness_impact_chest.m2", + text = "recklessness_impact_chest.m2", fileId = "166685", text = "recklessness_impact_chest.m2", }, { value = "reddustcloud.m2", + text = "reddustcloud.m2", fileId = "166690", text = "reddustcloud.m2", }, { value = "redemption_base.m2", + text = "redemption_base.m2", fileId = "166691", text = "redemption_base.m2", }, { value = "redghost_state.m2", + text = "redghost_state.m2", fileId = "166692", text = "redghost_state.m2", }, { value = "rejuvenation_impact_base.m2", + text = "rejuvenation_impact_base.m2", fileId = "166694", text = "rejuvenation_impact_base.m2", }, { value = "removecurse_base.m2", + text = "removecurse_base.m2", fileId = "166695", text = "removecurse_base.m2", }, { value = "renew_base.m2", + text = "renew_base.m2", fileId = "166696", text = "renew_base.m2", }, { value = "renew_chest.m2", + text = "renew_chest.m2", fileId = "166697", text = "renew_chest.m2", }, { value = "reputationlevelup.m2", + text = "reputationlevelup.m2", fileId = "166698", text = "reputationlevelup.m2", }, { value = "resfx.m2", + text = "resfx.m2", fileId = "166699", text = "resfx.m2", }, { value = "resist_immune_effect.m2", + text = "resist_immune_effect.m2", fileId = "166700", text = "resist_immune_effect.m2", }, { value = "resistanceaura_base.m2", + text = "resistanceaura_base.m2", fileId = "166701", text = "resistanceaura_base.m2", }, { value = "resistfrost_chest.m2", + text = "resistfrost_chest.m2", fileId = "166702", text = "resistfrost_chest.m2", }, { value = "restoration_impact_base.m2", + text = "restoration_impact_base.m2", fileId = "166703", text = "restoration_impact_base.m2", }, { value = "resurrection_low_base.m2", + text = "resurrection_low_base.m2", fileId = "166704", text = "resurrection_low_base.m2", }, { value = "retaliation_state_chest.m2", + text = "retaliation_state_chest.m2", fileId = "166705", text = "retaliation_state_chest.m2", }, { value = "retributionaura_base.m2", + text = "retributionaura_base.m2", fileId = "166707", text = "retributionaura_base.m2", }, { value = "retributionaurared_base.m2", + text = "retributionaurared_base.m2", fileId = "166708", text = "retributionaurared_base.m2", }, { value = "revivepet_impact_base.m2", + text = "revivepet_impact_base.m2", fileId = "166709", text = "revivepet_impact_base.m2", }, { value = "ribbontrail.m2", + text = "ribbontrail.m2", fileId = "166731", text = "ribbontrail.m2", }, { value = "righteousfury_chest.m2", + text = "righteousfury_chest.m2", fileId = "166732", text = "righteousfury_chest.m2", }, { value = "righteousnessaura_base.m2", + text = "righteousnessaura_base.m2", fileId = "166733", text = "righteousnessaura_base.m2", }, { value = "ritualsummoning_precast_base.m2", + text = "ritualsummoning_precast_base.m2", fileId = "166737", text = "ritualsummoning_precast_base.m2", }, { value = "rockyfrost_nova_state.m2", + text = "rockyfrost_nova_state.m2", fileId = "166743", text = "rockyfrost_nova_state.m2", }, { value = "romancandle_a_01.m2", + text = "romancandle_a_01.m2", fileId = "166744", text = "romancandle_a_01.m2", }, { value = "sandvortex_state_base.m2", + text = "sandvortex_state_base.m2", fileId = "166759", text = "sandvortex_state_base.m2", }, { value = "sandworm_attackeffects.m2", + text = "sandworm_attackeffects.m2", fileId = "166760", text = "sandworm_attackeffects.m2", }, { value = "sap_cast_base.m2", + text = "sap_cast_base.m2", fileId = "166761", text = "sap_cast_base.m2", }, { value = "sap_impact_chest.m2", + text = "sap_impact_chest.m2", fileId = "166762", text = "sap_impact_chest.m2", }, { value = "sap_state_head.m2", + text = "sap_state_head.m2", fileId = "166763", text = "sap_state_head.m2", }, { value = "savageblow_impact_chest.m2", + text = "savageblow_impact_chest.m2", fileId = "166764", text = "savageblow_impact_chest.m2", }, { value = "scorch_low_chest.m2", + text = "scorch_low_chest.m2", fileId = "166766", text = "scorch_low_chest.m2", }, { value = "scorpidshot_missile.m2", + text = "scorpidshot_missile.m2", fileId = "166767", text = "scorpidshot_missile.m2", }, { value = "sealoffury_impact_base.m2", + text = "sealoffury_impact_base.m2", fileId = "166772", text = "sealoffury_impact_base.m2", }, { value = "sealofmight_impact_base.m2", + text = "sealofmight_impact_base.m2", fileId = "166774", text = "sealofmight_impact_base.m2", }, { value = "sealofmight_low_base.m2", + text = "sealofmight_low_base.m2", fileId = "166775", text = "sealofmight_low_base.m2", }, { value = "sealofprotection_impact_base.m2", + text = "sealofprotection_impact_base.m2", fileId = "166776", text = "sealofprotection_impact_base.m2", }, { value = "sealofsacrifice_impact_base.m2", + text = "sealofsacrifice_impact_base.m2", fileId = "166778", text = "sealofsacrifice_impact_base.m2", }, { value = "sealofsalvation_impact_base.m2", + text = "sealofsalvation_impact_base.m2", fileId = "166779", text = "sealofsalvation_impact_base.m2", }, { value = "sealofwisdom_impact_base.m2", + text = "sealofwisdom_impact_base.m2", fileId = "166781", text = "sealofwisdom_impact_base.m2", }, { value = "sealofwrath_impact_base.m2", + text = "sealofwrath_impact_base.m2", fileId = "166782", text = "sealofwrath_impact_base.m2", }, { value = "seduction_state_head.m2", + text = "seduction_state_head.m2", fileId = "166783", text = "seduction_state_head.m2", }, { value = "sensedemons_impact_head.m2", + text = "sensedemons_impact_head.m2", fileId = "166788", text = "sensedemons_impact_head.m2", }, { value = "shadow_dotparticle.m2", + text = "shadow_dotparticle.m2", fileId = "166790", text = "shadow_dotparticle.m2", }, { value = "shadow_fissure_base.m2", + text = "shadow_fissure_base.m2", fileId = "166791", text = "shadow_fissure_base.m2", }, { value = "shadow_impactbuff_base.m2", + text = "shadow_impactbuff_base.m2", fileId = "166794", text = "shadow_impactbuff_base.m2", }, { value = "shadow_impactdd_high_chest.m2", + text = "shadow_impactdd_high_chest.m2", fileId = "166795", text = "shadow_impactdd_high_chest.m2", }, { value = "shadow_impactdd_low_chest.m2", + text = "shadow_impactdd_low_chest.m2", fileId = "166796", text = "shadow_impactdd_low_chest.m2", }, { value = "shadow_impactdd_med_base.m2", + text = "shadow_impactdd_med_base.m2", fileId = "166797", text = "shadow_impactdd_med_base.m2", }, { value = "shadow_impactdd_med_chest.m2", + text = "shadow_impactdd_med_chest.m2", fileId = "166798", text = "shadow_impactdd_med_chest.m2", }, { value = "shadow_impactdd_uber_chest.m2", + text = "shadow_impactdd_uber_chest.m2", fileId = "166799", text = "shadow_impactdd_uber_chest.m2", }, { value = "shadow_impactdot_med_chest.m2", + text = "shadow_impactdot_med_chest.m2", fileId = "166800", text = "shadow_impactdot_med_chest.m2", }, { value = "shadow_impactdot_med_head.m2", + text = "shadow_impactdot_med_head.m2", fileId = "166801", text = "shadow_impactdot_med_head.m2", }, { value = "shadow_precast_high_base.m2", + text = "shadow_precast_high_base.m2", fileId = "166805", text = "shadow_precast_high_base.m2", }, { value = "shadow_precast_high_hand.m2", + text = "shadow_precast_high_hand.m2", fileId = "166806", text = "shadow_precast_high_hand.m2", }, { value = "shadow_precast_low_hand.m2", + text = "shadow_precast_low_hand.m2", fileId = "166807", text = "shadow_precast_low_hand.m2", }, { value = "shadow_precast_med_base.m2", + text = "shadow_precast_med_base.m2", fileId = "166808", text = "shadow_precast_med_base.m2", }, { value = "shadow_precast_med_hand.m2", + text = "shadow_precast_med_hand.m2", fileId = "166809", text = "shadow_precast_med_hand.m2", }, { value = "shadow_precast_uber_base.m2", + text = "shadow_precast_uber_base.m2", fileId = "166810", text = "shadow_precast_uber_base.m2", }, { value = "shadow_precast_uber_hand.m2", + text = "shadow_precast_uber_hand.m2", fileId = "166811", text = "shadow_precast_uber_hand.m2", }, { value = "shadow_snare_high_base.m2", + text = "shadow_snare_high_base.m2", fileId = "166812", text = "shadow_snare_high_base.m2", }, { value = "shadowprotection_chest.m2", + text = "shadowprotection_chest.m2", fileId = "166823", text = "shadowprotection_chest.m2", }, { value = "shadowreflect_state_chest.m2", + text = "shadowreflect_state_chest.m2", fileId = "166824", text = "shadowreflect_state_chest.m2", }, { value = "shadowshield_state_base.m2", + text = "shadowshield_state_base.m2", fileId = "166827", text = "shadowshield_state_base.m2", }, { value = "shadowstrike_impact_chest.m2", + text = "shadowstrike_impact_chest.m2", fileId = "166829", text = "shadowstrike_impact_chest.m2", }, { value = "shadowward_impact_chest.m2", + text = "shadowward_impact_chest.m2", fileId = "166830", text = "shadowward_impact_chest.m2", }, { value = "shadowwordbefuddle_head.m2", + text = "shadowwordbefuddle_head.m2", fileId = "166832", text = "shadowwordbefuddle_head.m2", }, { value = "shadowworddominate_chest.m2", + text = "shadowworddominate_chest.m2", fileId = "166833", text = "shadowworddominate_chest.m2", }, { value = "shadowwordfumble_head.m2", + text = "shadowwordfumble_head.m2", fileId = "166834", text = "shadowwordfumble_head.m2", }, { value = "shadowwordpain_chest.m2", + text = "shadowwordpain_chest.m2", fileId = "166835", text = "shadowwordpain_chest.m2", }, { value = "shadowwordsilence_breath.m2", + text = "shadowwordsilence_breath.m2", fileId = "166836", text = "shadowwordsilence_breath.m2", }, { value = "shieldbash_impact_chest.m2", + text = "shieldbash_impact_chest.m2", fileId = "166841", text = "shieldbash_impact_chest.m2", }, { value = "shieldwall_impact_base.m2", + text = "shieldwall_impact_base.m2", fileId = "166842", text = "shieldwall_impact_base.m2", }, { value = "shieldwallwar_impact_base.m2", + text = "shieldwallwar_impact_base.m2", fileId = "166843", text = "shieldwallwar_impact_base.m2", }, { value = "shock_impact_chest.m2", + text = "shock_impact_chest.m2", fileId = "166844", text = "shock_impact_chest.m2", }, { value = "shock_missile.m2", + text = "shock_missile.m2", fileId = "166845", text = "shock_missile.m2", }, { value = "shout_cast.m2", + text = "shout_cast.m2", fileId = "166875", text = "shout_cast.m2", }, { value = "sinisterstrike_base_cast.m2", + text = "sinisterstrike_base_cast.m2", fileId = "166877", text = "sinisterstrike_base_cast.m2", }, { value = "sinisterstrike_impact_chest.m2", + text = "sinisterstrike_impact_chest.m2", fileId = "166878", text = "sinisterstrike_impact_chest.m2", }, { value = "skull.m2", + text = "skull.m2", fileId = "166881", text = "skull.m2", }, { value = "skull180.m2", + text = "skull180.m2", fileId = "166882", text = "skull180.m2", }, { value = "slam_impact_chest.m2", + text = "slam_impact_chest.m2", fileId = "166890", text = "slam_impact_chest.m2", }, { value = "sleep_state_head.m2", + text = "sleep_state_head.m2", fileId = "166891", text = "sleep_state_head.m2", }, { value = "slicedice_chest.m2", + text = "slicedice_chest.m2", fileId = "166892", text = "slicedice_chest.m2", }, { value = "slicedice_impact_chest.m2", + text = "slicedice_impact_chest.m2", fileId = "166893", text = "slicedice_impact_chest.m2", }, { value = "slimelesser_missile.m2", + text = "slimelesser_missile.m2", fileId = "166896", text = "slimelesser_missile.m2", }, { value = "slimelesserexplode_missile.m2", + text = "slimelesserexplode_missile.m2", fileId = "166897", text = "slimelesserexplode_missile.m2", }, { value = "slow_impact_base.m2", + text = "slow_impact_base.m2", fileId = "166898", text = "slow_impact_base.m2", }, { value = "slowingstrike_cast_hand.m2", + text = "slowingstrike_cast_hand.m2", fileId = "166899", text = "slowingstrike_cast_hand.m2", }, { value = "slowingstrike_impact_base.m2", + text = "slowingstrike_impact_base.m2", fileId = "166900", text = "slowingstrike_impact_base.m2", }, { value = "slowingstrike_impact_chest.m2", + text = "slowingstrike_impact_chest.m2", fileId = "166901", text = "slowingstrike_impact_chest.m2", }, { value = "smash_impact_chest.m2", + text = "smash_impact_chest.m2", fileId = "166902", text = "smash_impact_chest.m2", }, { value = "snowball_impact_chest.m2", + text = "snowball_impact_chest.m2", fileId = "166912", text = "snowball_impact_chest.m2", }, { value = "snowballpowdery_impact_base.m2", + text = "snowballpowdery_impact_base.m2", fileId = "166913", text = "snowballpowdery_impact_base.m2", }, { value = "soothingkiss_impact_head.m2", + text = "soothingkiss_impact_head.m2", fileId = "166922", text = "soothingkiss_impact_head.m2", }, { value = "soulfunnel_impact_chest.m2", + text = "soulfunnel_impact_chest.m2", fileId = "166923", text = "soulfunnel_impact_chest.m2", }, { value = "soulstoneresurrection_base.m2", + text = "soulstoneresurrection_base.m2", fileId = "166927", text = "soulstoneresurrection_base.m2", }, { value = "sparktrail.m2", + text = "sparktrail.m2", fileId = "166930", text = "sparktrail.m2", }, { value = "spawn_impact_base.m2", + text = "spawn_impact_base.m2", fileId = "166931", text = "spawn_impact_base.m2", }, { value = "spellbreak_cast_base.m2", + text = "spellbreak_cast_base.m2", fileId = "166932", text = "spellbreak_cast_base.m2", }, { value = "spelllevelup.m2", + text = "spelllevelup.m2", fileId = "166934", text = "spelllevelup.m2", }, { value = "spellobject_bomb.m2", + text = "spellobject_bomb.m2", fileId = "166935", text = "spellobject_bomb.m2", }, { value = "spellobject_boomerang.m2", + text = "spellobject_boomerang.m2", fileId = "166936", text = "spellobject_boomerang.m2", }, { value = "spellobject_invisibletrap.m2", + text = "spellobject_invisibletrap.m2", fileId = "2199509", text = "spellobject_invisibletrap.m2", }, { value = "spellobject_smithinghammer.m2", + text = "spellobject_smithinghammer.m2", fileId = "166938", text = "spellobject_smithinghammer.m2", }, { value = "spellobject_wrench.m2", + text = "spellobject_wrench.m2", fileId = "166939", text = "spellobject_wrench.m2", }, { value = "spike_impact_base.m2", + text = "spike_impact_base.m2", fileId = "166944", text = "spike_impact_base.m2", }, { value = "spike_low_base.m2", + text = "spike_low_base.m2", fileId = "166945", text = "spike_low_base.m2", }, { value = "spiritarmor_impact_head.m2", + text = "spiritarmor_impact_head.m2", fileId = "166950", text = "spiritarmor_impact_head.m2", }, { value = "sprint_cast_base.m2", + text = "sprint_cast_base.m2", fileId = "166951", text = "sprint_cast_base.m2", }, { value = "sprint_impact_chest.m2", + text = "sprint_impact_chest.m2", fileId = "166952", text = "sprint_impact_chest.m2", }, { value = "starfire_area.m2", + text = "starfire_area.m2", fileId = "166973", text = "starfire_area.m2", }, { value = "starshards_impact_base.m2", + text = "starshards_impact_base.m2", fileId = "166980", text = "starshards_impact_base.m2", }, { value = "steam.m2", + text = "steam.m2", fileId = "166981", text = "steam.m2", }, { value = "stoneform_state_base.m2", + text = "stoneform_state_base.m2", fileId = "166982", text = "stoneform_state_base.m2", }, { value = "strike_cast_chest.m2", + text = "strike_cast_chest.m2", fileId = "166985", text = "strike_cast_chest.m2", }, { value = "strike_impact_chest.m2", + text = "strike_impact_chest.m2", fileId = "166986", text = "strike_impact_chest.m2", }, { value = "stunswirl_state_head.m2", + text = "stunswirl_state_head.m2", fileId = "166988", text = "stunswirl_state_head.m2", }, { value = "summon_precast_hand.m2", + text = "summon_precast_hand.m2", fileId = "166991", text = "summon_precast_hand.m2", }, { value = "summonpet_cast_impact_base.m2", + text = "summonpet_cast_impact_base.m2", fileId = "166993", text = "summonpet_cast_impact_base.m2", }, { value = "summonpet_impact_base.m2", + text = "summonpet_impact_base.m2", fileId = "166994", text = "summonpet_impact_base.m2", }, { value = "summonwarhorse_impact_base.m2", + text = "summonwarhorse_impact_base.m2", fileId = "166995", text = "summonwarhorse_impact_base.m2", }, { value = "sunder_impact_chest.m2", + text = "sunder_impact_chest.m2", fileId = "166996", text = "sunder_impact_chest.m2", }, { value = "sweepingstrike_impact_chest.m2", + text = "sweepingstrike_impact_chest.m2", fileId = "167003", text = "sweepingstrike_impact_chest.m2", }, { value = "swipecaster.m2", + text = "swipecaster.m2", fileId = "167004", text = "swipecaster.m2", }, { value = "swipeimpact.m2", + text = "swipeimpact.m2", fileId = "167005", text = "swipeimpact.m2", }, { value = "tankarda_spellobject.m2", + text = "tankarda_spellobject.m2", fileId = "167090", text = "tankarda_spellobject.m2", }, { value = "taunt_cast.m2", + text = "taunt_cast.m2", fileId = "167092", text = "taunt_cast.m2", }, { value = "taunt_head.m2", + text = "taunt_head.m2", fileId = "167093", text = "taunt_head.m2", }, { value = "teleport.m2", + text = "teleport.m2", fileId = "167094", text = "teleport.m2", }, { value = "thorns_base.m2", + text = "thorns_base.m2", fileId = "167112", text = "thorns_base.m2", }, { value = "thorns_damage_base.m2", + text = "thorns_damage_base.m2", fileId = "167113", text = "thorns_damage_base.m2", }, { value = "thorns_low_chest.m2", + text = "thorns_low_chest.m2", fileId = "167114", text = "thorns_low_chest.m2", }, { value = "thorns_state_base.m2", + text = "thorns_state_base.m2", fileId = "167115", text = "thorns_state_base.m2", }, { value = "threatreduce_impact_head.m2", + text = "threatreduce_impact_head.m2", fileId = "167117", text = "threatreduce_impact_head.m2", }, { value = "thunderclap_cast_base.m2", + text = "thunderclap_cast_base.m2", fileId = "167120", text = "thunderclap_cast_base.m2", }, { value = "torch_missile.m2", + text = "torch_missile.m2", fileId = "167128", text = "torch_missile.m2", }, { value = "torchspell.m2", + text = "torchspell.m2", fileId = "167130", text = "torchspell.m2", }, { value = "totemb_spellobject.m2", + text = "totemb_spellobject.m2", fileId = "167132", text = "totemb_spellobject.m2", }, { value = "tranquility_area.m2", + text = "tranquility_area.m2", fileId = "167134", text = "tranquility_area.m2", }, { value = "tranquility_impact_base.m2", + text = "tranquility_impact_base.m2", fileId = "167135", text = "tranquility_impact_base.m2", }, { value = "trickortreat_treat_head.m2", + text = "trickortreat_treat_head.m2", fileId = "167139", text = "trickortreat_treat_head.m2", }, { value = "trickortreat_trick_head.m2", + text = "trickortreat_trick_head.m2", fileId = "167140", text = "trickortreat_trick_head.m2", }, { value = "turnundead_impact.m2", + text = "turnundead_impact.m2", fileId = "167141", text = "turnundead_impact.m2", }, { value = "undying_strength_impact_chest.m2", + text = "undying_strength_impact_chest.m2", fileId = "167143", text = "undying_strength_impact_chest.m2", }, { value = "unholyshackles_state_base.m2", + text = "unholyshackles_state_base.m2", fileId = "167144", text = "unholyshackles_state_base.m2", }, { value = "unyielding_will_impact_chest.m2", + text = "unyielding_will_impact_chest.m2", fileId = "167147", text = "unyielding_will_impact_chest.m2", }, { value = "vampiricembrace_state_base.m2", + text = "vampiricembrace_state_base.m2", fileId = "167150", text = "vampiricembrace_state_base.m2", }, { value = "vanish_cast_base.m2", + text = "vanish_cast_base.m2", fileId = "167151", text = "vanish_cast_base.m2", }, { value = "vengeance_state_hand.m2", + text = "vengeance_state_hand.m2", fileId = "167152", text = "vengeance_state_hand.m2", }, { value = "waterbolt_missile_low.m2", + text = "waterbolt_missile_low.m2", fileId = "167174", text = "waterbolt_missile_low.m2", }, { value = "waterbreathing_impact_base.m2", + text = "waterbreathing_impact_base.m2", fileId = "167175", text = "waterbreathing_impact_base.m2", }, { value = "waterbubble.m2", + text = "waterbubble.m2", fileId = "167177", text = "waterbubble.m2", }, { value = "waterelemental_impact_base.m2", + text = "waterelemental_impact_base.m2", fileId = "167178", text = "waterelemental_impact_base.m2", }, { value = "waterwalking_impact_head.m2", + text = "waterwalking_impact_head.m2", fileId = "167189", text = "waterwalking_impact_head.m2", }, { value = "web_missile.m2", + text = "web_missile.m2", fileId = "167194", text = "web_missile.m2", }, { value = "web_state.m2", + text = "web_state.m2", fileId = "167195", text = "web_state.m2", }, { value = "webspin.m2", + text = "webspin.m2", fileId = "167196", text = "webspin.m2", }, { value = "whirlwind_state_base.m2", + text = "whirlwind_state_base.m2", fileId = "167199", text = "whirlwind_state_base.m2", }, { value = "whirlwindgeo1.m2", + text = "whirlwindgeo1.m2", fileId = "167200", text = "whirlwindgeo1.m2", }, { value = "whirlwindgeo2.m2", + text = "whirlwindgeo2.m2", fileId = "167201", text = "whirlwindgeo2.m2", }, { value = "whirlwindgeowhite.m2", + text = "whirlwindgeowhite.m2", fileId = "167202", text = "whirlwindgeowhite.m2", }, { value = "wisdomaura_impact_base.m2", + text = "wisdomaura_impact_base.m2", fileId = "167211", text = "wisdomaura_impact_base.m2", }, { value = "wrath_impact_chest.m2", + text = "wrath_impact_chest.m2", fileId = "167212", text = "wrath_impact_chest.m2", }, { value = "wrath_missile.m2", + text = "wrath_missile.m2", fileId = "167213", text = "wrath_missile.m2", }, { value = "wrath_precast_hand.m2", + text = "wrath_precast_hand.m2", fileId = "167214", text = "wrath_precast_hand.m2", }, { value = "zig_missile.m2", + text = "zig_missile.m2", fileId = "167229", text = "zig_missile.m2", }, @@ -22085,12 +26422,15 @@ WeakAuras.ModelPaths = { }, { value = "test", + text = "test", children = { { value = "boartest", + text = "boartest", children = { { value = "boartest.m2", + text = "boartest.m2", fileId = "2353357", text = "boartest.m2", }, @@ -22102,15 +26442,19 @@ WeakAuras.ModelPaths = { }, { value = "world", + text = "world", children = { { value = "arttest", + text = "arttest", children = { { value = "boxtest", + text = "boxtest", children = { { value = "xyz.m2", + text = "xyz.m2", fileId = "189077", text = "xyz.m2", }, @@ -22122,18 +26466,23 @@ WeakAuras.ModelPaths = { }, { value = "azeroth", + text = "azeroth", children = { { value = "bootybay", + text = "bootybay", children = { { value = "passivedoodad", + text = "passivedoodad", children = { { value = "bootyentrance", + text = "bootyentrance", children = { { value = "bootybayentrance_02.m2", + text = "bootybayentrance_02.m2", fileId = "189079", text = "bootybayentrance_02.m2", }, @@ -22142,39 +26491,47 @@ WeakAuras.ModelPaths = { }, { value = "deadfish", + text = "deadfish", children = { { value = "fishdeadblue.m2", + text = "fishdeadblue.m2", fileId = "189085", text = "fishdeadblue.m2", }, { value = "fishdeadgreen.m2", + text = "fishdeadgreen.m2", fileId = "189086", text = "fishdeadgreen.m2", }, { value = "fishdeadorange.m2", + text = "fishdeadorange.m2", fileId = "189087", text = "fishdeadorange.m2", }, { value = "fishdeadpurple.m2", + text = "fishdeadpurple.m2", fileId = "189088", text = "fishdeadpurple.m2", }, { value = "fishfrenzyblue.m2", + text = "fishfrenzyblue.m2", fileId = "189089", text = "fishfrenzyblue.m2", }, { value = "fishfrenzygreen.m2", + text = "fishfrenzygreen.m2", fileId = "189090", text = "fishfrenzygreen.m2", }, { value = "fishrack.m2", + text = "fishrack.m2", fileId = "189091", text = "fishrack.m2", }, @@ -22183,9 +26540,11 @@ WeakAuras.ModelPaths = { }, { value = "fishingbox", + text = "fishingbox", children = { { value = "fishingbox.m2", + text = "fishingbox.m2", fileId = "189092", text = "fishingbox.m2", }, @@ -22194,14 +26553,17 @@ WeakAuras.ModelPaths = { }, { value = "fishingpoles", + text = "fishingpoles", children = { { value = "fishingpole01.m2", + text = "fishingpole01.m2", fileId = "189093", text = "fishingpole01.m2", }, { value = "fishingpole02.m2", + text = "fishingpole02.m2", fileId = "189094", text = "fishingpole02.m2", }, @@ -22210,9 +26572,11 @@ WeakAuras.ModelPaths = { }, { value = "goblinstatue", + text = "goblinstatue", children = { { value = "goblinstatuebooty.m2", + text = "goblinstatuebooty.m2", fileId = "189095", text = "goblinstatuebooty.m2", }, @@ -22221,9 +26585,11 @@ WeakAuras.ModelPaths = { }, { value = "harpoons", + text = "harpoons", children = { { value = "harpoon01.m2", + text = "harpoon01.m2", fileId = "189097", text = "harpoon01.m2", }, @@ -22232,9 +26598,11 @@ WeakAuras.ModelPaths = { }, { value = "sharkmodels", + text = "sharkmodels", children = { { value = "sharkmodel01.m2", + text = "sharkmodel01.m2", fileId = "189099", text = "sharkmodel01.m2", }, @@ -22249,20 +26617,25 @@ WeakAuras.ModelPaths = { }, { value = "burningsteppes", + text = "burningsteppes", children = { { value = "activedoodads", + text = "activedoodads", children = { { value = "darkironnode", + text = "darkironnode", children = { { value = "darkironnode.m2", + text = "darkironnode.m2", fileId = "189103", text = "darkironnode.m2", }, { value = "darkironnodeparticlerock.m2", + text = "darkironnodeparticlerock.m2", fileId = "189104", text = "darkironnodeparticlerock.m2", }, @@ -22274,17 +26647,21 @@ WeakAuras.ModelPaths = { }, { value = "passivedoodads", + text = "passivedoodads", children = { { value = "animalheads", + text = "animalheads", children = { { value = "deadheadboar.m2", + text = "deadheadboar.m2", fileId = "189105", text = "deadheadboar.m2", }, { value = "deadheaddeer.m2", + text = "deadheaddeer.m2", fileId = "189106", text = "deadheaddeer.m2", }, @@ -22293,29 +26670,35 @@ WeakAuras.ModelPaths = { }, { value = "ashpeople", + text = "ashpeople", children = { { value = "ashpeople01.m2", + text = "ashpeople01.m2", fileId = "189110", text = "ashpeople01.m2", }, { value = "ashpeople02.m2", + text = "ashpeople02.m2", fileId = "189112", text = "ashpeople02.m2", }, { value = "ashpeople03.m2", + text = "ashpeople03.m2", fileId = "189113", text = "ashpeople03.m2", }, { value = "ashpeople04.m2", + text = "ashpeople04.m2", fileId = "189114", text = "ashpeople04.m2", }, { value = "ashpeople05.m2", + text = "ashpeople05.m2", fileId = "189115", text = "ashpeople05.m2", }, @@ -22324,19 +26707,23 @@ WeakAuras.ModelPaths = { }, { value = "bonfire", + text = "bonfire", children = { { value = "orcbonfire.m2", + text = "orcbonfire.m2", fileId = "189118", text = "orcbonfire.m2", }, { value = "orcbonfire_blue.m2", + text = "orcbonfire_blue.m2", fileId = "189119", text = "orcbonfire_blue.m2", }, { value = "orcbonfireoff.m2", + text = "orcbonfireoff.m2", fileId = "189120", text = "orcbonfireoff.m2", }, @@ -22345,9 +26732,11 @@ WeakAuras.ModelPaths = { }, { value = "bridges", + text = "bridges", children = { { value = "burningropebridge.m2", + text = "burningropebridge.m2", fileId = "189124", text = "burningropebridge.m2", }, @@ -22356,9 +26745,11 @@ WeakAuras.ModelPaths = { }, { value = "burninggiantwheel", + text = "burninggiantwheel", children = { { value = "burninggiantwheel.m2", + text = "burninggiantwheel.m2", fileId = "189126", text = "burninggiantwheel.m2", }, @@ -22367,34 +26758,41 @@ WeakAuras.ModelPaths = { }, { value = "cliffrocks", + text = "cliffrocks", children = { { value = "burningsteppscliffrock01.m2", + text = "burningsteppscliffrock01.m2", fileId = "189127", text = "burningsteppscliffrock01.m2", }, { value = "burningsteppscliffrock02.m2", + text = "burningsteppscliffrock02.m2", fileId = "189128", text = "burningsteppscliffrock02.m2", }, { value = "burningsteppscliffrock03.m2", + text = "burningsteppscliffrock03.m2", fileId = "189129", text = "burningsteppscliffrock03.m2", }, { value = "burningsteppscliffrock04.m2", + text = "burningsteppscliffrock04.m2", fileId = "189130", text = "burningsteppscliffrock04.m2", }, { value = "burningsteppscliffrock05.m2", + text = "burningsteppscliffrock05.m2", fileId = "189131", text = "burningsteppscliffrock05.m2", }, { value = "burningsteppscliffrock06.m2", + text = "burningsteppscliffrock06.m2", fileId = "189132", text = "burningsteppscliffrock06.m2", }, @@ -22403,9 +26801,11 @@ WeakAuras.ModelPaths = { }, { value = "fallingembers", + text = "fallingembers", children = { { value = "fallingembers.m2", + text = "fallingembers.m2", fileId = "189134", text = "fallingembers.m2", }, @@ -22414,19 +26814,23 @@ WeakAuras.ModelPaths = { }, { value = "fences", + text = "fences", children = { { value = "burningsteppesfence.m2", + text = "burningsteppesfence.m2", fileId = "189135", text = "burningsteppesfence.m2", }, { value = "burningsteppesfencechain.m2", + text = "burningsteppesfencechain.m2", fileId = "189136", text = "burningsteppesfencechain.m2", }, { value = "burningsteppesfencepost.m2", + text = "burningsteppesfencepost.m2", fileId = "189137", text = "burningsteppesfencepost.m2", }, @@ -22435,9 +26839,11 @@ WeakAuras.ModelPaths = { }, { value = "lavaaltar", + text = "lavaaltar", children = { { value = "lavaaltar.m2", + text = "lavaaltar.m2", fileId = "189141", text = "lavaaltar.m2", }, @@ -22446,9 +26852,11 @@ WeakAuras.ModelPaths = { }, { value = "lavabridge", + text = "lavabridge", children = { { value = "lavabridge.m2", + text = "lavabridge.m2", fileId = "189147", text = "lavabridge.m2", }, @@ -22457,24 +26865,29 @@ WeakAuras.ModelPaths = { }, { value = "lavafalls", + text = "lavafalls", children = { { value = "lavafallsblackrock01.m2", + text = "lavafallsblackrock01.m2", fileId = "189151", text = "lavafallsblackrock01.m2", }, { value = "lavafallsblackrock02.m2", + text = "lavafallsblackrock02.m2", fileId = "189152", text = "lavafallsblackrock02.m2", }, { value = "lavafallsblackrock03.m2", + text = "lavafallsblackrock03.m2", fileId = "189153", text = "lavafallsblackrock03.m2", }, { value = "lavafallsblackrock04.m2", + text = "lavafallsblackrock04.m2", fileId = "189154", text = "lavafallsblackrock04.m2", }, @@ -22483,24 +26896,29 @@ WeakAuras.ModelPaths = { }, { value = "lavapillar", + text = "lavapillar", children = { { value = "lavapillar01.m2", + text = "lavapillar01.m2", fileId = "189158", text = "lavapillar01.m2", }, { value = "lavapillar02.m2", + text = "lavapillar02.m2", fileId = "189159", text = "lavapillar02.m2", }, { value = "lavapillar03.m2", + text = "lavapillar03.m2", fileId = "189160", text = "lavapillar03.m2", }, { value = "lavapillar04.m2", + text = "lavapillar04.m2", fileId = "189161", text = "lavapillar04.m2", }, @@ -22509,14 +26927,17 @@ WeakAuras.ModelPaths = { }, { value = "lavaplugs", + text = "lavaplugs", children = { { value = "lavaplug01.m2", + text = "lavaplug01.m2", fileId = "189165", text = "lavaplug01.m2", }, { value = "lavaplug02.m2", + text = "lavaplug02.m2", fileId = "189166", text = "lavaplug02.m2", }, @@ -22525,29 +26946,35 @@ WeakAuras.ModelPaths = { }, { value = "lavashrine", + text = "lavashrine", children = { { value = "lavashrine01.m2", + text = "lavashrine01.m2", fileId = "189170", text = "lavashrine01.m2", }, { value = "lavashrine02.m2", + text = "lavashrine02.m2", fileId = "189171", text = "lavashrine02.m2", }, { value = "lavashrine03.m2", + text = "lavashrine03.m2", fileId = "189172", text = "lavashrine03.m2", }, { value = "lavashrine04.m2", + text = "lavashrine04.m2", fileId = "189173", text = "lavashrine04.m2", }, { value = "searinggorgelavashrine.m2", + text = "searinggorgelavashrine.m2", fileId = "189178", text = "searinggorgelavashrine.m2", }, @@ -22556,9 +26983,11 @@ WeakAuras.ModelPaths = { }, { value = "lotharstatue", + text = "lotharstatue", children = { { value = "lotharstatue.m2", + text = "lotharstatue.m2", fileId = "189179", text = "lotharstatue.m2", }, @@ -22567,9 +26996,11 @@ WeakAuras.ModelPaths = { }, { value = "ogreheadpike", + text = "ogreheadpike", children = { { value = "ogreheadpike.m2", + text = "ogreheadpike.m2", fileId = "189180", text = "ogreheadpike.m2", }, @@ -22578,9 +27009,11 @@ WeakAuras.ModelPaths = { }, { value = "orcanvilstoneburningsteppes", + text = "orcanvilstoneburningsteppes", children = { { value = "orcanvilstoneburningsteppes.m2", + text = "orcanvilstoneburningsteppes.m2", fileId = "189186", text = "orcanvilstoneburningsteppes.m2", }, @@ -22589,14 +27022,17 @@ WeakAuras.ModelPaths = { }, { value = "orcburialpyres", + text = "orcburialpyres", children = { { value = "orcstoneburialpyre.m2", + text = "orcstoneburialpyre.m2", fileId = "189187", text = "orcstoneburialpyre.m2", }, { value = "orcstoneburialpyrebody.m2", + text = "orcstoneburialpyrebody.m2", fileId = "189188", text = "orcstoneburialpyrebody.m2", }, @@ -22605,9 +27041,11 @@ WeakAuras.ModelPaths = { }, { value = "orcfoundrypit", + text = "orcfoundrypit", children = { { value = "orcsmallfoundrypit.m2", + text = "orcsmallfoundrypit.m2", fileId = "189193", text = "orcsmallfoundrypit.m2", }, @@ -22616,19 +27054,23 @@ WeakAuras.ModelPaths = { }, { value = "orcsleepmats", + text = "orcsleepmats", children = { { value = "orcsleepmat01.m2", + text = "orcsleepmat01.m2", fileId = "189196", text = "orcsleepmat01.m2", }, { value = "orcsleepmat02.m2", + text = "orcsleepmat02.m2", fileId = "189197", text = "orcsleepmat02.m2", }, { value = "orcsleepmat03.m2", + text = "orcsleepmat03.m2", fileId = "189198", text = "orcsleepmat03.m2", }, @@ -22637,9 +27079,11 @@ WeakAuras.ModelPaths = { }, { value = "orctents", + text = "orctents", children = { { value = "orctent.m2", + text = "orctent.m2", fileId = "189200", text = "orctent.m2", }, @@ -22648,9 +27092,11 @@ WeakAuras.ModelPaths = { }, { value = "orctoolrackburningsteppes", + text = "orctoolrackburningsteppes", children = { { value = "orctoolrackburningsteppes.m2", + text = "orctoolrackburningsteppes.m2", fileId = "189204", text = "orctoolrackburningsteppes.m2", }, @@ -22659,9 +27105,11 @@ WeakAuras.ModelPaths = { }, { value = "pentagramdirt", + text = "pentagramdirt", children = { { value = "pentagramdirt.m2", + text = "pentagramdirt.m2", fileId = "189208", text = "pentagramdirt.m2", }, @@ -22670,64 +27118,77 @@ WeakAuras.ModelPaths = { }, { value = "rocks", + text = "rocks", children = { { value = "burningsteppesboulders01.m2", + text = "burningsteppesboulders01.m2", fileId = "189212", text = "burningsteppesboulders01.m2", }, { value = "burningsteppesboulders02.m2", + text = "burningsteppesboulders02.m2", fileId = "189213", text = "burningsteppesboulders02.m2", }, { value = "burningsteppesboulders03.m2", + text = "burningsteppesboulders03.m2", fileId = "189214", text = "burningsteppesboulders03.m2", }, { value = "burningsteppesboulders04.m2", + text = "burningsteppesboulders04.m2", fileId = "189215", text = "burningsteppesboulders04.m2", }, { value = "burningsteppesboulders05.m2", + text = "burningsteppesboulders05.m2", fileId = "189216", text = "burningsteppesboulders05.m2", }, { value = "burningsteppesboulders06.m2", + text = "burningsteppesboulders06.m2", fileId = "189217", text = "burningsteppesboulders06.m2", }, { value = "lavarock01.m2", + text = "lavarock01.m2", fileId = "189218", text = "lavarock01.m2", }, { value = "lavarock02.m2", + text = "lavarock02.m2", fileId = "189219", text = "lavarock02.m2", }, { value = "lavarock03.m2", + text = "lavarock03.m2", fileId = "189220", text = "lavarock03.m2", }, { value = "lavarock04.m2", + text = "lavarock04.m2", fileId = "189221", text = "lavarock04.m2", }, { value = "lavarock05.m2", + text = "lavarock05.m2", fileId = "189222", text = "lavarock05.m2", }, { value = "lavarock06.m2", + text = "lavarock06.m2", fileId = "189223", text = "lavarock06.m2", }, @@ -22736,9 +27197,11 @@ WeakAuras.ModelPaths = { }, { value = "ruins", + text = "ruins", children = { { value = "burnedbeam.m2", + text = "burnedbeam.m2", fileId = "189226", text = "burnedbeam.m2", }, @@ -22747,9 +27210,11 @@ WeakAuras.ModelPaths = { }, { value = "smeltingcauldron", + text = "smeltingcauldron", children = { { value = "smeltingcauldron.m2", + text = "smeltingcauldron.m2", fileId = "189229", text = "smeltingcauldron.m2", }, @@ -22758,9 +27223,11 @@ WeakAuras.ModelPaths = { }, { value = "smeltingweapons", + text = "smeltingweapons", children = { { value = "smeltingweapons.m2", + text = "smeltingweapons.m2", fileId = "189232", text = "smeltingweapons.m2", }, @@ -22769,9 +27236,11 @@ WeakAuras.ModelPaths = { }, { value = "smoke", + text = "smoke", children = { { value = "ashtreesmoke01.m2", + text = "ashtreesmoke01.m2", fileId = "189233", text = "ashtreesmoke01.m2", }, @@ -22780,24 +27249,29 @@ WeakAuras.ModelPaths = { }, { value = "stonebrackets", + text = "stonebrackets", children = { { value = "stoneblock01.m2", + text = "stoneblock01.m2", fileId = "189236", text = "stoneblock01.m2", }, { value = "stonebracket01.m2", + text = "stonebracket01.m2", fileId = "189237", text = "stonebracket01.m2", }, { value = "stonebracket02.m2", + text = "stonebracket02.m2", fileId = "189238", text = "stonebracket02.m2", }, { value = "stonebracket03.m2", + text = "stonebracket03.m2", fileId = "189239", text = "stonebracket03.m2", }, @@ -22806,49 +27280,59 @@ WeakAuras.ModelPaths = { }, { value = "stonegolemstatue", + text = "stonegolemstatue", children = { { value = "stonegolemstatue1-9.m2", + text = "stonegolemstatue1-9.m2", fileId = "189240", text = "stonegolemstatue1-9.m2", }, { value = "stonegolemstatue2-9.m2", + text = "stonegolemstatue2-9.m2", fileId = "189241", text = "stonegolemstatue2-9.m2", }, { value = "stonegolemstatue3-9.m2", + text = "stonegolemstatue3-9.m2", fileId = "189242", text = "stonegolemstatue3-9.m2", }, { value = "stonegolemstatue4-9.m2", + text = "stonegolemstatue4-9.m2", fileId = "189243", text = "stonegolemstatue4-9.m2", }, { value = "stonegolemstatue5-9.m2", + text = "stonegolemstatue5-9.m2", fileId = "189244", text = "stonegolemstatue5-9.m2", }, { value = "stonegolemstatue6-9.m2", + text = "stonegolemstatue6-9.m2", fileId = "189245", text = "stonegolemstatue6-9.m2", }, { value = "stonegolemstatue7-9.m2", + text = "stonegolemstatue7-9.m2", fileId = "189246", text = "stonegolemstatue7-9.m2", }, { value = "stonegolemstatue8-9.m2", + text = "stonegolemstatue8-9.m2", fileId = "189247", text = "stonegolemstatue8-9.m2", }, { value = "stonegolemstatue9-9.m2", + text = "stonegolemstatue9-9.m2", fileId = "189248", text = "stonegolemstatue9-9.m2", }, @@ -22857,49 +27341,59 @@ WeakAuras.ModelPaths = { }, { value = "trees", + text = "trees", children = { { value = "ashtree01.m2", + text = "ashtree01.m2", fileId = "189253", text = "ashtree01.m2", }, { value = "ashtree02.m2", + text = "ashtree02.m2", fileId = "189254", text = "ashtree02.m2", }, { value = "ashtree03.m2", + text = "ashtree03.m2", fileId = "189255", text = "ashtree03.m2", }, { value = "burningmidtree01.m2", + text = "burningmidtree01.m2", fileId = "189258", text = "burningmidtree01.m2", }, { value = "burningmidtree02.m2", + text = "burningmidtree02.m2", fileId = "189260", text = "burningmidtree02.m2", }, { value = "burningmidtree03.m2", + text = "burningmidtree03.m2", fileId = "189262", text = "burningmidtree03.m2", }, { value = "burningmidtree04.m2", + text = "burningmidtree04.m2", fileId = "189263", text = "burningmidtree04.m2", }, { value = "burningsteppestree01.m2", + text = "burningsteppestree01.m2", fileId = "189264", text = "burningsteppestree01.m2", }, { value = "burningsteppestree02.m2", + text = "burningsteppestree02.m2", fileId = "189265", text = "burningsteppestree02.m2", }, @@ -22908,34 +27402,41 @@ WeakAuras.ModelPaths = { }, { value = "volcanicvents", + text = "volcanicvents", children = { { value = "volcanicventlarge01.m2", + text = "volcanicventlarge01.m2", fileId = "189270", text = "volcanicventlarge01.m2", }, { value = "volcanicventlargeoff01.m2", + text = "volcanicventlargeoff01.m2", fileId = "189271", text = "volcanicventlargeoff01.m2", }, { value = "volcanicventmed01.m2", + text = "volcanicventmed01.m2", fileId = "189272", text = "volcanicventmed01.m2", }, { value = "volcanicventmedoff01.m2", + text = "volcanicventmedoff01.m2", fileId = "189273", text = "volcanicventmedoff01.m2", }, { value = "volcanicventsmall01.m2", + text = "volcanicventsmall01.m2", fileId = "189274", text = "volcanicventsmall01.m2", }, { value = "volcanicventsmalloff01.m2", + text = "volcanicventsmalloff01.m2", fileId = "189275", text = "volcanicventsmalloff01.m2", }, @@ -22944,9 +27445,11 @@ WeakAuras.ModelPaths = { }, { value = "warlockshrine", + text = "warlockshrine", children = { { value = "warlockshrine.m2", + text = "warlockshrine.m2", fileId = "189280", text = "warlockshrine.m2", }, @@ -22961,15 +27464,19 @@ WeakAuras.ModelPaths = { }, { value = "deadmines", + text = "deadmines", children = { { value = "passivedoodads", + text = "passivedoodads", children = { { value = "goblinmeltingpot", + text = "goblinmeltingpot", children = { { value = "goblinmeltingpot.m2", + text = "goblinmeltingpot.m2", fileId = "189282", text = "goblinmeltingpot.m2", }, @@ -22978,6 +27485,7 @@ WeakAuras.ModelPaths = { }, { value = "lavasink.m2", + text = "lavasink.m2", fileId = "189287", text = "lavasink.m2", }, @@ -22989,15 +27497,19 @@ WeakAuras.ModelPaths = { }, { value = "deadwindpass", + text = "deadwindpass", children = { { value = "buildings", + text = "buildings", children = { { value = "abandonedguardtower", + text = "abandonedguardtower", children = { { value = "abandonedhumanguardtower.m2", + text = "abandonedhumanguardtower.m2", fileId = "189288", text = "abandonedhumanguardtower.m2", }, @@ -23006,9 +27518,11 @@ WeakAuras.ModelPaths = { }, { value = "rockbridge", + text = "rockbridge", children = { { value = "deadwindrockbridge.m2", + text = "deadwindrockbridge.m2", fileId = "189292", text = "deadwindrockbridge.m2", }, @@ -23020,27 +27534,33 @@ WeakAuras.ModelPaths = { }, { value = "passivedoodads", + text = "passivedoodads", children = { { value = "deadwindtotems", + text = "deadwindtotems", children = { { value = "deadwindtotem01.m2", + text = "deadwindtotem01.m2", fileId = "189294", text = "deadwindtotem01.m2", }, { value = "deadwindtotem02.m2", + text = "deadwindtotem02.m2", fileId = "189295", text = "deadwindtotem02.m2", }, { value = "deadwindtotem03.m2", + text = "deadwindtotem03.m2", fileId = "189296", text = "deadwindtotem03.m2", }, { value = "deadwindtotem04.m2", + text = "deadwindtotem04.m2", fileId = "189297", text = "deadwindtotem04.m2", }, @@ -23049,14 +27569,17 @@ WeakAuras.ModelPaths = { }, { value = "hangingbodies", + text = "hangingbodies", children = { { value = "deadwindhangingbody01.m2", + text = "deadwindhangingbody01.m2", fileId = "189299", text = "deadwindhangingbody01.m2", }, { value = "deadwindhangingbody02.m2", + text = "deadwindhangingbody02.m2", fileId = "189300", text = "deadwindhangingbody02.m2", }, @@ -23065,9 +27588,11 @@ WeakAuras.ModelPaths = { }, { value = "hangingtree", + text = "hangingtree", children = { { value = "deadwindhangingtree.m2", + text = "deadwindhangingtree.m2", fileId = "189304", text = "deadwindhangingtree.m2", }, @@ -23076,9 +27601,11 @@ WeakAuras.ModelPaths = { }, { value = "kharazan_brick", + text = "kharazan_brick", children = { { value = "kharazan_brick.m2", + text = "kharazan_brick.m2", fileId = "189307", text = "kharazan_brick.m2", }, @@ -23087,59 +27614,71 @@ WeakAuras.ModelPaths = { }, { value = "rocks", + text = "rocks", children = { { value = "deadwindpasscliffrock01dnr.m2", + text = "deadwindpasscliffrock01dnr.m2", fileId = "189308", text = "deadwindpasscliffrock01dnr.m2", }, { value = "deadwindpasscliffrock02dnr.m2", + text = "deadwindpasscliffrock02dnr.m2", fileId = "189309", text = "deadwindpasscliffrock02dnr.m2", }, { value = "deadwindpasscliffrock03dnr.m2", + text = "deadwindpasscliffrock03dnr.m2", fileId = "189310", text = "deadwindpasscliffrock03dnr.m2", }, { value = "deadwindpasscliffrock04dnr.m2", + text = "deadwindpasscliffrock04dnr.m2", fileId = "189311", text = "deadwindpasscliffrock04dnr.m2", }, { value = "deadwindpasscliffrock05dnr.m2", + text = "deadwindpasscliffrock05dnr.m2", fileId = "189312", text = "deadwindpasscliffrock05dnr.m2", }, { value = "deadwindpassgroundrock01dnr.m2", + text = "deadwindpassgroundrock01dnr.m2", fileId = "189313", text = "deadwindpassgroundrock01dnr.m2", }, { value = "deadwindpassgroundrock02dnr.m2", + text = "deadwindpassgroundrock02dnr.m2", fileId = "189314", text = "deadwindpassgroundrock02dnr.m2", }, { value = "deadwindpassgroundrock03dnr.m2", + text = "deadwindpassgroundrock03dnr.m2", fileId = "189315", text = "deadwindpassgroundrock03dnr.m2", }, { value = "rockarch01dnr.m2", + text = "rockarch01dnr.m2", fileId = "189316", text = "rockarch01dnr.m2", }, { value = "rockarch02dnr.m2", + text = "rockarch02dnr.m2", fileId = "189317", text = "rockarch02dnr.m2", }, { value = "rockarch03dnr.m2", + text = "rockarch03dnr.m2", fileId = "189318", text = "rockarch03dnr.m2", }, @@ -23148,49 +27687,59 @@ WeakAuras.ModelPaths = { }, { value = "rocktrees", + text = "rocktrees", children = { { value = "deadwindpassrocktree01.m2", + text = "deadwindpassrocktree01.m2", fileId = "189319", text = "deadwindpassrocktree01.m2", }, { value = "deadwindpassrocktree02.m2", + text = "deadwindpassrocktree02.m2", fileId = "189322", text = "deadwindpassrocktree02.m2", }, { value = "deadwindpassrocktree03.m2", + text = "deadwindpassrocktree03.m2", fileId = "189324", text = "deadwindpassrocktree03.m2", }, { value = "deadwindpassrocktree04.m2", + text = "deadwindpassrocktree04.m2", fileId = "189325", text = "deadwindpassrocktree04.m2", }, { value = "deadwindpassrocktree05.m2", + text = "deadwindpassrocktree05.m2", fileId = "189326", text = "deadwindpassrocktree05.m2", }, { value = "deadwindpassrocktree06.m2", + text = "deadwindpassrocktree06.m2", fileId = "189327", text = "deadwindpassrocktree06.m2", }, { value = "deadwindpassrocktreebroken01.m2", + text = "deadwindpassrocktreebroken01.m2", fileId = "189328", text = "deadwindpassrocktreebroken01.m2", }, { value = "deadwindpassrocktreebroken02.m2", + text = "deadwindpassrocktreebroken02.m2", fileId = "189329", text = "deadwindpassrocktreebroken02.m2", }, { value = "deadwindpassrocktreebroken03.m2", + text = "deadwindpassrocktreebroken03.m2", fileId = "189330", text = "deadwindpassrocktreebroken03.m2", }, @@ -23199,9 +27748,11 @@ WeakAuras.ModelPaths = { }, { value = "roots", + text = "roots", children = { { value = "deadwindpassroot01.m2", + text = "deadwindpassroot01.m2", fileId = "189335", text = "deadwindpassroot01.m2", }, @@ -23210,14 +27761,17 @@ WeakAuras.ModelPaths = { }, { value = "trees", + text = "trees", children = { { value = "deadwindpassmidtree01.m2", + text = "deadwindpassmidtree01.m2", fileId = "189336", text = "deadwindpassmidtree01.m2", }, { value = "deadwindpassmidtree02.m2", + text = "deadwindpassmidtree02.m2", fileId = "189337", text = "deadwindpassmidtree02.m2", }, @@ -23226,49 +27780,59 @@ WeakAuras.ModelPaths = { }, { value = "weeds", + text = "weeds", children = { { value = "deadwindhangingweedsgroup01.m2", + text = "deadwindhangingweedsgroup01.m2", fileId = "189344", text = "deadwindhangingweedsgroup01.m2", }, { value = "deadwindhangingweedsgroup02.m2", + text = "deadwindhangingweedsgroup02.m2", fileId = "189345", text = "deadwindhangingweedsgroup02.m2", }, { value = "deadwindhangingweedsgroup03.m2", + text = "deadwindhangingweedsgroup03.m2", fileId = "189346", text = "deadwindhangingweedsgroup03.m2", }, { value = "deadwindhangingweedslarge01.m2", + text = "deadwindhangingweedslarge01.m2", fileId = "189347", text = "deadwindhangingweedslarge01.m2", }, { value = "deadwindhangingweedslarge02.m2", + text = "deadwindhangingweedslarge02.m2", fileId = "189348", text = "deadwindhangingweedslarge02.m2", }, { value = "deadwindhangingweedssmall01.m2", + text = "deadwindhangingweedssmall01.m2", fileId = "189349", text = "deadwindhangingweedssmall01.m2", }, { value = "deadwindhangingweedssmall02.m2", + text = "deadwindhangingweedssmall02.m2", fileId = "189350", text = "deadwindhangingweedssmall02.m2", }, { value = "deadwindhangingweedssmall03.m2", + text = "deadwindhangingweedssmall03.m2", fileId = "189351", text = "deadwindhangingweedssmall03.m2", }, { value = "deadwindhangingweedssmall04.m2", + text = "deadwindhangingweedssmall04.m2", fileId = "189352", text = "deadwindhangingweedssmall04.m2", }, @@ -23283,20 +27847,25 @@ WeakAuras.ModelPaths = { }, { value = "duskwood", + text = "duskwood", children = { { value = "buildings", + text = "buildings", children = { { value = "gnolltent", + text = "gnolltent", children = { { value = "gnolltent02.m2", + text = "gnolltent02.m2", fileId = "189359", text = "gnolltent02.m2", }, { value = "gnolltent03.m2", + text = "gnolltent03.m2", fileId = "189361", text = "gnolltent03.m2", }, @@ -23305,9 +27874,11 @@ WeakAuras.ModelPaths = { }, { value = "gypsywagon", + text = "gypsywagon", children = { { value = "gypsywagon.m2", + text = "gypsywagon.m2", fileId = "189375", text = "gypsywagon.m2", }, @@ -23316,9 +27887,11 @@ WeakAuras.ModelPaths = { }, { value = "ogremound", + text = "ogremound", children = { { value = "ogremound.m2", + text = "ogremound.m2", fileId = "189386", text = "ogremound.m2", }, @@ -23330,72 +27903,87 @@ WeakAuras.ModelPaths = { }, { value = "passivedoodads", + text = "passivedoodads", children = { { value = "bush", + text = "bush", children = { { value = "duskwoodbush01.m2", + text = "duskwoodbush01.m2", fileId = "189395", text = "duskwoodbush01.m2", }, { value = "duskwoodbush02.m2", + text = "duskwoodbush02.m2", fileId = "189396", text = "duskwoodbush02.m2", }, { value = "duskwoodbush03.m2", + text = "duskwoodbush03.m2", fileId = "189397", text = "duskwoodbush03.m2", }, { value = "duskwoodbush04.m2", + text = "duskwoodbush04.m2", fileId = "189398", text = "duskwoodbush04.m2", }, { value = "duskwoodbush05.m2", + text = "duskwoodbush05.m2", fileId = "189399", text = "duskwoodbush05.m2", }, { value = "duskwoodbush06.m2", + text = "duskwoodbush06.m2", fileId = "189400", text = "duskwoodbush06.m2", }, { value = "duskwoodbush07.m2", + text = "duskwoodbush07.m2", fileId = "189402", text = "duskwoodbush07.m2", }, { value = "duskwoodspookybush01.m2", + text = "duskwoodspookybush01.m2", fileId = "189405", text = "duskwoodspookybush01.m2", }, { value = "duskwoodspookybush02.m2", + text = "duskwoodspookybush02.m2", fileId = "189406", text = "duskwoodspookybush02.m2", }, { value = "duskwoodspookybush03.m2", + text = "duskwoodspookybush03.m2", fileId = "189407", text = "duskwoodspookybush03.m2", }, { value = "duskwoodspookybush04.m2", + text = "duskwoodspookybush04.m2", fileId = "189408", text = "duskwoodspookybush04.m2", }, { value = "pumpkin01.m2", + text = "pumpkin01.m2", fileId = "189409", text = "pumpkin01.m2", }, { value = "pumpkinpatch01.m2", + text = "pumpkinpatch01.m2", fileId = "189410", text = "pumpkinpatch01.m2", }, @@ -23404,9 +27992,11 @@ WeakAuras.ModelPaths = { }, { value = "chasmbridge", + text = "chasmbridge", children = { { value = "duskwoodchasmbridge.m2", + text = "duskwoodchasmbridge.m2", fileId = "189411", text = "duskwoodchasmbridge.m2", }, @@ -23415,9 +28005,11 @@ WeakAuras.ModelPaths = { }, { value = "coffin", + text = "coffin", children = { { value = "coffin.m2", + text = "coffin.m2", fileId = "189415", text = "coffin.m2", }, @@ -23426,9 +28018,11 @@ WeakAuras.ModelPaths = { }, { value = "coffinlid", + text = "coffinlid", children = { { value = "coffinlid.m2", + text = "coffinlid.m2", fileId = "189416", text = "coffinlid.m2", }, @@ -23437,9 +28031,11 @@ WeakAuras.ModelPaths = { }, { value = "coveredbridge", + text = "coveredbridge", children = { { value = "duskwoodcoveredbridge.m2", + text = "duskwoodcoveredbridge.m2", fileId = "189417", text = "duskwoodcoveredbridge.m2", }, @@ -23448,9 +28044,11 @@ WeakAuras.ModelPaths = { }, { value = "darkshireentrance", + text = "darkshireentrance", children = { { value = "darkshireentrance01.m2", + text = "darkshireentrance01.m2", fileId = "189423", text = "darkshireentrance01.m2", }, @@ -23459,12 +28057,15 @@ WeakAuras.ModelPaths = { }, { value = "detail", + text = "detail", children = { { value = "duskwoodcatails01", + text = "duskwoodcatails01", children = { { value = "duskwoodcatails01.m2", + text = "duskwoodcatails01.m2", fileId = "189426", text = "duskwoodcatails01.m2", }, @@ -23473,9 +28074,11 @@ WeakAuras.ModelPaths = { }, { value = "duskwoodgrass01", + text = "duskwoodgrass01", children = { { value = "duskwoodgrass01.m2", + text = "duskwoodgrass01.m2", fileId = "189427", text = "duskwoodgrass01.m2", }, @@ -23484,9 +28087,11 @@ WeakAuras.ModelPaths = { }, { value = "duskwoodlillypad01", + text = "duskwoodlillypad01", children = { { value = "duskwoodlillypad01.m2", + text = "duskwoodlillypad01.m2", fileId = "189429", text = "duskwoodlillypad01.m2", }, @@ -23495,9 +28100,11 @@ WeakAuras.ModelPaths = { }, { value = "duskwoodmushroom01", + text = "duskwoodmushroom01", children = { { value = "duskwoodmushroom01.m2", + text = "duskwoodmushroom01.m2", fileId = "189432", text = "duskwoodmushroom01.m2", }, @@ -23506,9 +28113,11 @@ WeakAuras.ModelPaths = { }, { value = "duskwoodseaweed01", + text = "duskwoodseaweed01", children = { { value = "duskwoodseaweed01.m2", + text = "duskwoodseaweed01.m2", fileId = "189434", text = "duskwoodseaweed01.m2", }, @@ -23517,9 +28126,11 @@ WeakAuras.ModelPaths = { }, { value = "duskwoodthornbush01", + text = "duskwoodthornbush01", children = { { value = "duskwoodthornbush01.m2", + text = "duskwoodthornbush01.m2", fileId = "189437", text = "duskwoodthornbush01.m2", }, @@ -23528,9 +28139,11 @@ WeakAuras.ModelPaths = { }, { value = "duskwoodthornbush02", + text = "duskwoodthornbush02", children = { { value = "duskwoodthornbush02.m2", + text = "duskwoodthornbush02.m2", fileId = "189438", text = "duskwoodthornbush02.m2", }, @@ -23539,9 +28152,11 @@ WeakAuras.ModelPaths = { }, { value = "duskwoodvine01", + text = "duskwoodvine01", children = { { value = "duskwoodvine01.m2", + text = "duskwoodvine01.m2", fileId = "189440", text = "duskwoodvine01.m2", }, @@ -23550,9 +28165,11 @@ WeakAuras.ModelPaths = { }, { value = "duskwoodvine02", + text = "duskwoodvine02", children = { { value = "duskwoodvine02.m2", + text = "duskwoodvine02.m2", fileId = "189442", text = "duskwoodvine02.m2", }, @@ -23564,9 +28181,11 @@ WeakAuras.ModelPaths = { }, { value = "duskwoodbarn", + text = "duskwoodbarn", children = { { value = "barnduskwood.m2", + text = "barnduskwood.m2", fileId = "189445", text = "barnduskwood.m2", }, @@ -23575,9 +28194,11 @@ WeakAuras.ModelPaths = { }, { value = "duskwoodhaystack", + text = "duskwoodhaystack", children = { { value = "duskwoodhaystack.m2", + text = "duskwoodhaystack.m2", fileId = "189452", text = "duskwoodhaystack.m2", }, @@ -23586,9 +28207,11 @@ WeakAuras.ModelPaths = { }, { value = "duskwoodhaywagon", + text = "duskwoodhaywagon", children = { { value = "duskwoodhaywagon.m2", + text = "duskwoodhaywagon.m2", fileId = "189455", text = "duskwoodhaywagon.m2", }, @@ -23597,9 +28220,11 @@ WeakAuras.ModelPaths = { }, { value = "duskwoodhearse", + text = "duskwoodhearse", children = { { value = "duskwoodhearse.m2", + text = "duskwoodhearse.m2", fileId = "189457", text = "duskwoodhearse.m2", }, @@ -23608,9 +28233,11 @@ WeakAuras.ModelPaths = { }, { value = "duskwoodscarecrow", + text = "duskwoodscarecrow", children = { { value = "duskscarecrow.m2", + text = "duskscarecrow.m2", fileId = "189458", text = "duskscarecrow.m2", }, @@ -23619,9 +28246,11 @@ WeakAuras.ModelPaths = { }, { value = "duskwoodstraw", + text = "duskwoodstraw", children = { { value = "duskwoodstraw.m2", + text = "duskwoodstraw.m2", fileId = "189461", text = "duskwoodstraw.m2", }, @@ -23630,9 +28259,11 @@ WeakAuras.ModelPaths = { }, { value = "duskwoodwheat", + text = "duskwoodwheat", children = { { value = "duskwoodwheat.m2", + text = "duskwoodwheat.m2", fileId = "189462", text = "duskwoodwheat.m2", }, @@ -23641,59 +28272,71 @@ WeakAuras.ModelPaths = { }, { value = "fence", + text = "fence", children = { { value = "duskwoodfencebottom.m2", + text = "duskwoodfencebottom.m2", fileId = "189464", text = "duskwoodfencebottom.m2", }, { value = "duskwoodfencebottombroken.m2", + text = "duskwoodfencebottombroken.m2", fileId = "189465", text = "duskwoodfencebottombroken.m2", }, { value = "duskwoodfencebrokensegment.m2", + text = "duskwoodfencebrokensegment.m2", fileId = "189466", text = "duskwoodfencebrokensegment.m2", }, { value = "duskwoodfencepost.m2", + text = "duskwoodfencepost.m2", fileId = "189467", text = "duskwoodfencepost.m2", }, { value = "duskwoodfencerail.m2", + text = "duskwoodfencerail.m2", fileId = "189468", text = "duskwoodfencerail.m2", }, { value = "duskwoodfencesegment.m2", + text = "duskwoodfencesegment.m2", fileId = "189469", text = "duskwoodfencesegment.m2", }, { value = "duskwoodfencesegment02.m2", + text = "duskwoodfencesegment02.m2", fileId = "189470", text = "duskwoodfencesegment02.m2", }, { value = "duskwoodfencetop.m2", + text = "duskwoodfencetop.m2", fileId = "189471", text = "duskwoodfencetop.m2", }, { value = "duskwoodfencetopbroken.m2", + text = "duskwoodfencetopbroken.m2", fileId = "189472", text = "duskwoodfencetopbroken.m2", }, { value = "rockwallend.m2", + text = "rockwallend.m2", fileId = "189477", text = "rockwallend.m2", }, { value = "rockwallrubble.m2", + text = "rockwallrubble.m2", fileId = "189478", text = "rockwallrubble.m2", }, @@ -23702,14 +28345,17 @@ WeakAuras.ModelPaths = { }, { value = "gates", + text = "gates", children = { { value = "duskwoodgate01.m2", + text = "duskwoodgate01.m2", fileId = "189480", text = "duskwoodgate01.m2", }, { value = "duskwoodtallcemetarygate.m2", + text = "duskwoodtallcemetarygate.m2", fileId = "189481", text = "duskwoodtallcemetarygate.m2", }, @@ -23718,9 +28364,11 @@ WeakAuras.ModelPaths = { }, { value = "graveframe", + text = "graveframe", children = { { value = "duskwoodgraveframe.m2", + text = "duskwoodgraveframe.m2", fileId = "189485", text = "duskwoodgraveframe.m2", }, @@ -23729,29 +28377,35 @@ WeakAuras.ModelPaths = { }, { value = "irongate", + text = "irongate", children = { { value = "cemetarygate01.m2", + text = "cemetarygate01.m2", fileId = "189488", text = "cemetarygate01.m2", }, { value = "gatepost.m2", + text = "gatepost.m2", fileId = "189491", text = "gatepost.m2", }, { value = "gatesegment01.m2", + text = "gatesegment01.m2", fileId = "189492", text = "gatesegment01.m2", }, { value = "gatesegment02.m2", + text = "gatesegment02.m2", fileId = "189493", text = "gatesegment02.m2", }, { value = "gatesegment03.m2", + text = "gatesegment03.m2", fileId = "189494", text = "gatesegment03.m2", }, @@ -23760,14 +28414,17 @@ WeakAuras.ModelPaths = { }, { value = "mausoleum", + text = "mausoleum", children = { { value = "duskwoodmausoleum.m2", + text = "duskwoodmausoleum.m2", fileId = "189496", text = "duskwoodmausoleum.m2", }, { value = "mausoleumactivedoors.m2", + text = "mausoleumactivedoors.m2", fileId = "189498", text = "mausoleumactivedoors.m2", }, @@ -23776,19 +28433,23 @@ WeakAuras.ModelPaths = { }, { value = "rocks", + text = "rocks", children = { { value = "duskwoodboulder01.m2", + text = "duskwoodboulder01.m2", fileId = "189499", text = "duskwoodboulder01.m2", }, { value = "duskwoodboulder02.m2", + text = "duskwoodboulder02.m2", fileId = "189500", text = "duskwoodboulder02.m2", }, { value = "duskwoodboulder03.m2", + text = "duskwoodboulder03.m2", fileId = "189501", text = "duskwoodboulder03.m2", }, @@ -23797,49 +28458,59 @@ WeakAuras.ModelPaths = { }, { value = "ruins", + text = "ruins", children = { { value = "duskwoodchimney01.m2", + text = "duskwoodchimney01.m2", fileId = "189505", text = "duskwoodchimney01.m2", }, { value = "duskwoodruins01.m2", + text = "duskwoodruins01.m2", fileId = "189506", text = "duskwoodruins01.m2", }, { value = "duskwoodruins02.m2", + text = "duskwoodruins02.m2", fileId = "189507", text = "duskwoodruins02.m2", }, { value = "duskwoodruins03.m2", + text = "duskwoodruins03.m2", fileId = "189508", text = "duskwoodruins03.m2", }, { value = "duskwoodruins04.m2", + text = "duskwoodruins04.m2", fileId = "189509", text = "duskwoodruins04.m2", }, { value = "duskwoodruinsbeam.m2", + text = "duskwoodruinsbeam.m2", fileId = "189510", text = "duskwoodruinsbeam.m2", }, { value = "duskwoodruinsbrick.m2", + text = "duskwoodruinsbrick.m2", fileId = "189511", text = "duskwoodruinsbrick.m2", }, { value = "duskwoodruinsfoundation01.m2", + text = "duskwoodruinsfoundation01.m2", fileId = "189512", text = "duskwoodruinsfoundation01.m2", }, { value = "duskwoodruinsfoundation02.m2", + text = "duskwoodruinsfoundation02.m2", fileId = "189513", text = "duskwoodruinsfoundation02.m2", }, @@ -23848,24 +28519,29 @@ WeakAuras.ModelPaths = { }, { value = "spooklesstrees", + text = "spooklesstrees", children = { { value = "duskwoodcs01.m2", + text = "duskwoodcs01.m2", fileId = "189516", text = "duskwoodcs01.m2", }, { value = "duskwoodcs02.m2", + text = "duskwoodcs02.m2", fileId = "189517", text = "duskwoodcs02.m2", }, { value = "duskwoodtreespookless01.m2", + text = "duskwoodtreespookless01.m2", fileId = "189521", text = "duskwoodtreespookless01.m2", }, { value = "duskwoodtreespookless02.m2", + text = "duskwoodtreespookless02.m2", fileId = "189522", text = "duskwoodtreespookless02.m2", }, @@ -23874,19 +28550,23 @@ WeakAuras.ModelPaths = { }, { value = "stoneframes", + text = "stoneframes", children = { { value = "duskwoodstoneframecorner.m2", + text = "duskwoodstoneframecorner.m2", fileId = "189523", text = "duskwoodstoneframecorner.m2", }, { value = "duskwoodstoneframelong.m2", + text = "duskwoodstoneframelong.m2", fileId = "189524", text = "duskwoodstoneframelong.m2", }, { value = "duskwoodstoneframeshort.m2", + text = "duskwoodstoneframeshort.m2", fileId = "189525", text = "duskwoodstoneframeshort.m2", }, @@ -23895,9 +28575,11 @@ WeakAuras.ModelPaths = { }, { value = "straw", + text = "straw", children = { { value = "duskwoodstraw02.m2", + text = "duskwoodstraw02.m2", fileId = "189527", text = "duskwoodstraw02.m2", }, @@ -23906,49 +28588,59 @@ WeakAuras.ModelPaths = { }, { value = "tombs", + text = "tombs", children = { { value = "dirtmound01.m2", + text = "dirtmound01.m2", fileId = "189528", text = "dirtmound01.m2", }, { value = "tombstone05.m2", + text = "tombstone05.m2", fileId = "189530", text = "tombstone05.m2", }, { value = "tombstone06.m2", + text = "tombstone06.m2", fileId = "189532", text = "tombstone06.m2", }, { value = "tombstone07.m2", + text = "tombstone07.m2", fileId = "189534", text = "tombstone07.m2", }, { value = "tombstone08.m2", + text = "tombstone08.m2", fileId = "189535", text = "tombstone08.m2", }, { value = "tombstonemonument01.m2", + text = "tombstonemonument01.m2", fileId = "189536", text = "tombstonemonument01.m2", }, { value = "tombstonemonument02.m2", + text = "tombstonemonument02.m2", fileId = "189538", text = "tombstonemonument02.m2", }, { value = "woodcross01.m2", + text = "woodcross01.m2", fileId = "189540", text = "woodcross01.m2", }, { value = "woodcross02.m2", + text = "woodcross02.m2", fileId = "189541", text = "woodcross02.m2", }, @@ -23957,84 +28649,101 @@ WeakAuras.ModelPaths = { }, { value = "trees", + text = "trees", children = { { value = "duskwoodbrowntree.m2", + text = "duskwoodbrowntree.m2", fileId = "189544", text = "duskwoodbrowntree.m2", }, { value = "duskwoodfallentree.m2", + text = "duskwoodfallentree.m2", fileId = "189545", text = "duskwoodfallentree.m2", }, { value = "duskwoodfallentree02.m2", + text = "duskwoodfallentree02.m2", fileId = "189546", text = "duskwoodfallentree02.m2", }, { value = "duskwoodspookytree01.m2", + text = "duskwoodspookytree01.m2", fileId = "189547", text = "duskwoodspookytree01.m2", }, { value = "duskwoodspookytree02.m2", + text = "duskwoodspookytree02.m2", fileId = "189551", text = "duskwoodspookytree02.m2", }, { value = "duskwoodspookytree03.m2", + text = "duskwoodspookytree03.m2", fileId = "189552", text = "duskwoodspookytree03.m2", }, { value = "duskwoodtree05.m2", + text = "duskwoodtree05.m2", fileId = "189557", text = "duskwoodtree05.m2", }, { value = "duskwoodtree06.m2", + text = "duskwoodtree06.m2", fileId = "189558", text = "duskwoodtree06.m2", }, { value = "duskwoodtree07.m2", + text = "duskwoodtree07.m2", fileId = "189559", text = "duskwoodtree07.m2", }, { value = "duskwoodtreecanopy01.m2", + text = "duskwoodtreecanopy01.m2", fileId = "189560", text = "duskwoodtreecanopy01.m2", }, { value = "duskwoodtreecanopy02.m2", + text = "duskwoodtreecanopy02.m2", fileId = "189561", text = "duskwoodtreecanopy02.m2", }, { value = "duskwoodtreecanopy03.m2", + text = "duskwoodtreecanopy03.m2", fileId = "189562", text = "duskwoodtreecanopy03.m2", }, { value = "duskwoodtreestump01.m2", + text = "duskwoodtreestump01.m2", fileId = "189566", text = "duskwoodtreestump01.m2", }, { value = "duskwoodtreestump02.m2", + text = "duskwoodtreestump02.m2", fileId = "189567", text = "duskwoodtreestump02.m2", }, { value = "duskwoodwhitetree.m2", + text = "duskwoodwhitetree.m2", fileId = "189571", text = "duskwoodwhitetree.m2", }, { value = "newduskwoodtreehuge.m2", + text = "newduskwoodtreehuge.m2", fileId = "189575", text = "newduskwoodtreehuge.m2", }, @@ -24043,9 +28752,11 @@ WeakAuras.ModelPaths = { }, { value = "walls", + text = "walls", children = { { value = "duskwoodrockwall.m2", + text = "duskwoodrockwall.m2", fileId = "189580", text = "duskwoodrockwall.m2", }, @@ -24054,9 +28765,11 @@ WeakAuras.ModelPaths = { }, { value = "warningtree", + text = "warningtree", children = { { value = "warningtree.m2", + text = "warningtree.m2", fileId = "189581", text = "warningtree.m2", }, @@ -24065,9 +28778,11 @@ WeakAuras.ModelPaths = { }, { value = "warpgate", + text = "warpgate", children = { { value = "duskwoodwarpgate.m2", + text = "duskwoodwarpgate.m2", fileId = "189589", text = "duskwoodwarpgate.m2", }, @@ -24076,19 +28791,23 @@ WeakAuras.ModelPaths = { }, { value = "webs", + text = "webs", children = { { value = "webdangle01.m2", + text = "webdangle01.m2", fileId = "189595", text = "webdangle01.m2", }, { value = "webdangle02.m2", + text = "webdangle02.m2", fileId = "189596", text = "webdangle02.m2", }, { value = "webstretch01.m2", + text = "webstretch01.m2", fileId = "189597", text = "webstretch01.m2", }, @@ -24103,15 +28822,19 @@ WeakAuras.ModelPaths = { }, { value = "elwynn", + text = "elwynn", children = { { value = "activedoodads", + text = "activedoodads", children = { { value = "abbeybell", + text = "abbeybell", children = { { value = "nsabbeybell.m2", + text = "nsabbeybell.m2", fileId = "189599", text = "nsabbeybell.m2", }, @@ -24123,12 +28846,15 @@ WeakAuras.ModelPaths = { }, { value = "buildings", + text = "buildings", children = { { value = "blacksmith", + text = "blacksmith", children = { { value = "blacksmith.m2", + text = "blacksmith.m2", fileId = "189601", text = "blacksmith.m2", }, @@ -24137,9 +28863,11 @@ WeakAuras.ModelPaths = { }, { value = "bridges", + text = "bridges", children = { { value = "elwynnfootbridge.m2", + text = "elwynnfootbridge.m2", fileId = "189610", text = "elwynnfootbridge.m2", }, @@ -24148,9 +28876,11 @@ WeakAuras.ModelPaths = { }, { value = "distillery", + text = "distillery", children = { { value = "distillery.m2", + text = "distillery.m2", fileId = "189611", text = "distillery.m2", }, @@ -24159,19 +28889,23 @@ WeakAuras.ModelPaths = { }, { value = "goldmine", + text = "goldmine", children = { { value = "goldmine.m2", + text = "goldmine.m2", fileId = "189620", text = "goldmine.m2", }, { value = "goldminetrackcurve.m2", + text = "goldminetrackcurve.m2", fileId = "189621", text = "goldminetrackcurve.m2", }, { value = "goldminetracks.m2", + text = "goldminetracks.m2", fileId = "189622", text = "goldminetracks.m2", }, @@ -24180,9 +28914,11 @@ WeakAuras.ModelPaths = { }, { value = "humanguardtower", + text = "humanguardtower", children = { { value = "humanguardtower.m2", + text = "humanguardtower.m2", fileId = "189629", text = "humanguardtower.m2", }, @@ -24191,9 +28927,11 @@ WeakAuras.ModelPaths = { }, { value = "humanwatchtower", + text = "humanwatchtower", children = { { value = "humanwatchtower.m2", + text = "humanwatchtower.m2", fileId = "189632", text = "humanwatchtower.m2", }, @@ -24202,9 +28940,11 @@ WeakAuras.ModelPaths = { }, { value = "stormwindentrance", + text = "stormwindentrance", children = { { value = "stormwindgate.m2", + text = "stormwindgate.m2", fileId = "189641", text = "stormwindgate.m2", }, @@ -24216,12 +28956,15 @@ WeakAuras.ModelPaths = { }, { value = "passivedoodads", + text = "passivedoodads", children = { { value = "anvil", + text = "anvil", children = { { value = "anvil.m2", + text = "anvil.m2", fileId = "189642", text = "anvil.m2", }, @@ -24230,9 +28973,11 @@ WeakAuras.ModelPaths = { }, { value = "ballista", + text = "ballista", children = { { value = "ballista.m2", + text = "ballista.m2", fileId = "189652", text = "ballista.m2", }, @@ -24241,9 +28986,11 @@ WeakAuras.ModelPaths = { }, { value = "ballistaruined", + text = "ballistaruined", children = { { value = "ballistaruined.m2", + text = "ballistaruined.m2", fileId = "189657", text = "ballistaruined.m2", }, @@ -24252,9 +28999,11 @@ WeakAuras.ModelPaths = { }, { value = "battlegladebanner1", + text = "battlegladebanner1", children = { { value = "battlegladebanner1.m2", + text = "battlegladebanner1.m2", fileId = "189666", text = "battlegladebanner1.m2", }, @@ -24263,9 +29012,11 @@ WeakAuras.ModelPaths = { }, { value = "battlegladebanner2", + text = "battlegladebanner2", children = { { value = "battlegladebanner2.m2", + text = "battlegladebanner2.m2", fileId = "189670", text = "battlegladebanner2.m2", }, @@ -24274,9 +29025,11 @@ WeakAuras.ModelPaths = { }, { value = "battlegladepolearmskull", + text = "battlegladepolearmskull", children = { { value = "battlegladepolearmskull.m2", + text = "battlegladepolearmskull.m2", fileId = "189674", text = "battlegladepolearmskull.m2", }, @@ -24285,9 +29038,11 @@ WeakAuras.ModelPaths = { }, { value = "battlegladeshield1", + text = "battlegladeshield1", children = { { value = "battlegladeshield1.m2", + text = "battlegladeshield1.m2", fileId = "189676", text = "battlegladeshield1.m2", }, @@ -24296,9 +29051,11 @@ WeakAuras.ModelPaths = { }, { value = "battlegladeshield2", + text = "battlegladeshield2", children = { { value = "battlegladeshield2.m2", + text = "battlegladeshield2.m2", fileId = "189678", text = "battlegladeshield2.m2", }, @@ -24307,9 +29064,11 @@ WeakAuras.ModelPaths = { }, { value = "battlegladeshield3", + text = "battlegladeshield3", children = { { value = "battlegladeshield3.m2", + text = "battlegladeshield3.m2", fileId = "189680", text = "battlegladeshield3.m2", }, @@ -24318,9 +29077,11 @@ WeakAuras.ModelPaths = { }, { value = "battlegladeskullhuman1", + text = "battlegladeskullhuman1", children = { { value = "battlegladeskullhuman1.m2", + text = "battlegladeskullhuman1.m2", fileId = "189682", text = "battlegladeskullhuman1.m2", }, @@ -24329,9 +29090,11 @@ WeakAuras.ModelPaths = { }, { value = "battlegladeskullhuman2", + text = "battlegladeskullhuman2", children = { { value = "battlegladeskullhuman2.m2", + text = "battlegladeskullhuman2.m2", fileId = "189684", text = "battlegladeskullhuman2.m2", }, @@ -24340,9 +29103,11 @@ WeakAuras.ModelPaths = { }, { value = "battlegladeskullorc1", + text = "battlegladeskullorc1", children = { { value = "battlegladeskullorc1.m2", + text = "battlegladeskullorc1.m2", fileId = "189685", text = "battlegladeskullorc1.m2", }, @@ -24351,9 +29116,11 @@ WeakAuras.ModelPaths = { }, { value = "battlegladeskullorc2", + text = "battlegladeskullorc2", children = { { value = "battlegladeskullorc2.m2", + text = "battlegladeskullorc2.m2", fileId = "189686", text = "battlegladeskullorc2.m2", }, @@ -24362,9 +29129,11 @@ WeakAuras.ModelPaths = { }, { value = "battlegladesword", + text = "battlegladesword", children = { { value = "battlegladesword.m2", + text = "battlegladesword.m2", fileId = "189687", text = "battlegladesword.m2", }, @@ -24373,9 +29142,11 @@ WeakAuras.ModelPaths = { }, { value = "battlegladeswordskull", + text = "battlegladeswordskull", children = { { value = "battlegladeswordskull.m2", + text = "battlegladeswordskull.m2", fileId = "189689", text = "battlegladeswordskull.m2", }, @@ -24384,9 +29155,11 @@ WeakAuras.ModelPaths = { }, { value = "battlegladewoodspikes", + text = "battlegladewoodspikes", children = { { value = "battlegladewoodspikes.m2", + text = "battlegladewoodspikes.m2", fileId = "189690", text = "battlegladewoodspikes.m2", }, @@ -24395,9 +29168,11 @@ WeakAuras.ModelPaths = { }, { value = "bellow", + text = "bellow", children = { { value = "bellow.m2", + text = "bellow.m2", fileId = "189691", text = "bellow.m2", }, @@ -24406,49 +29181,59 @@ WeakAuras.ModelPaths = { }, { value = "bush", + text = "bush", children = { { value = "elwynnbush01.m2", + text = "elwynnbush01.m2", fileId = "189692", text = "elwynnbush01.m2", }, { value = "elwynnbush02.m2", + text = "elwynnbush02.m2", fileId = "189693", text = "elwynnbush02.m2", }, { value = "elwynnbush03.m2", + text = "elwynnbush03.m2", fileId = "189694", text = "elwynnbush03.m2", }, { value = "elwynnbush04.m2", + text = "elwynnbush04.m2", fileId = "189695", text = "elwynnbush04.m2", }, { value = "elwynnbush05.m2", + text = "elwynnbush05.m2", fileId = "189696", text = "elwynnbush05.m2", }, { value = "elwynnbush06.m2", + text = "elwynnbush06.m2", fileId = "189697", text = "elwynnbush06.m2", }, { value = "elwynnbush07.m2", + text = "elwynnbush07.m2", fileId = "189698", text = "elwynnbush07.m2", }, { value = "elwynnbush08.m2", + text = "elwynnbush08.m2", fileId = "189699", text = "elwynnbush08.m2", }, { value = "elwynnbush09.m2", + text = "elwynnbush09.m2", fileId = "189700", text = "elwynnbush09.m2", }, @@ -24457,14 +29242,17 @@ WeakAuras.ModelPaths = { }, { value = "campfire", + text = "campfire", children = { { value = "elwynncampfire.m2", + text = "elwynncampfire.m2", fileId = "189705", text = "elwynncampfire.m2", }, { value = "elwynncampfire_blue.m2", + text = "elwynncampfire_blue.m2", fileId = "189706", text = "elwynncampfire_blue.m2", }, @@ -24473,9 +29261,11 @@ WeakAuras.ModelPaths = { }, { value = "catapult", + text = "catapult", children = { { value = "catapult.m2", + text = "catapult.m2", fileId = "189709", text = "catapult.m2", }, @@ -24484,29 +29274,35 @@ WeakAuras.ModelPaths = { }, { value = "cliffrocks", + text = "cliffrocks", children = { { value = "elwynncliffrock01.m2", + text = "elwynncliffrock01.m2", fileId = "189715", text = "elwynncliffrock01.m2", }, { value = "elwynncliffrock02.m2", + text = "elwynncliffrock02.m2", fileId = "189716", text = "elwynncliffrock02.m2", }, { value = "elwynncliffrock03.m2", + text = "elwynncliffrock03.m2", fileId = "189717", text = "elwynncliffrock03.m2", }, { value = "elwynncliffrock04.m2", + text = "elwynncliffrock04.m2", fileId = "189718", text = "elwynncliffrock04.m2", }, { value = "elwynncliffrock05.m2", + text = "elwynncliffrock05.m2", fileId = "189719", text = "elwynncliffrock05.m2", }, @@ -24515,49 +29311,59 @@ WeakAuras.ModelPaths = { }, { value = "corncrop", + text = "corncrop", children = { { value = "corn.m2", + text = "corn.m2", fileId = "189723", text = "corn.m2", }, { value = "corncrop1.m2", + text = "corncrop1.m2", fileId = "189725", text = "corncrop1.m2", }, { value = "corncrop2.m2", + text = "corncrop2.m2", fileId = "189727", text = "corncrop2.m2", }, { value = "corncrop3.m2", + text = "corncrop3.m2", fileId = "189728", text = "corncrop3.m2", }, { value = "corncropdead.m2", + text = "corncropdead.m2", fileId = "189730", text = "corncropdead.m2", }, { value = "corncroplowpoly.m2", + text = "corncroplowpoly.m2", fileId = "189731", text = "corncroplowpoly.m2", }, { value = "corncroprow.m2", + text = "corncroprow.m2", fileId = "189732", text = "corncroprow.m2", }, { value = "corncroprowlowpoly01.m2", + text = "corncroprowlowpoly01.m2", fileId = "189733", text = "corncroprowlowpoly01.m2", }, { value = "corncroprowlowpoly02.m2", + text = "corncroprowlowpoly02.m2", fileId = "189734", text = "corncroprowlowpoly02.m2", }, @@ -24566,12 +29372,15 @@ WeakAuras.ModelPaths = { }, { value = "detail", + text = "detail", children = { { value = "elwynncatails01", + text = "elwynncatails01", children = { { value = "elwynncatails01.m2", + text = "elwynncatails01.m2", fileId = "189739", text = "elwynncatails01.m2", }, @@ -24580,9 +29389,11 @@ WeakAuras.ModelPaths = { }, { value = "elwynncatails02", + text = "elwynncatails02", children = { { value = "elwynncatails02.m2", + text = "elwynncatails02.m2", fileId = "189740", text = "elwynncatails02.m2", }, @@ -24591,14 +29402,17 @@ WeakAuras.ModelPaths = { }, { value = "elwynndetailflowers", + text = "elwynndetailflowers", children = { { value = "elwynndetailflowers01.m2", + text = "elwynndetailflowers01.m2", fileId = "189742", text = "elwynndetailflowers01.m2", }, { value = "elwynndetailflowers02.m2", + text = "elwynndetailflowers02.m2", fileId = "189743", text = "elwynndetailflowers02.m2", }, @@ -24607,24 +29421,29 @@ WeakAuras.ModelPaths = { }, { value = "elwynndetailgrass", + text = "elwynndetailgrass", children = { { value = "elwynndetailgrass01.m2", + text = "elwynndetailgrass01.m2", fileId = "189744", text = "elwynndetailgrass01.m2", }, { value = "elwynndetailgrass02.m2", + text = "elwynndetailgrass02.m2", fileId = "189745", text = "elwynndetailgrass02.m2", }, { value = "elwynndetailgrass03.m2", + text = "elwynndetailgrass03.m2", fileId = "189746", text = "elwynndetailgrass03.m2", }, { value = "elwynndetailgrass04.m2", + text = "elwynndetailgrass04.m2", fileId = "189747", text = "elwynndetailgrass04.m2", }, @@ -24633,14 +29452,17 @@ WeakAuras.ModelPaths = { }, { value = "elwynndetailrocks", + text = "elwynndetailrocks", children = { { value = "elwynndetailrock01.m2", + text = "elwynndetailrock01.m2", fileId = "189749", text = "elwynndetailrock01.m2", }, { value = "elwynndetailrock02.m2", + text = "elwynndetailrock02.m2", fileId = "189750", text = "elwynndetailrock02.m2", }, @@ -24649,24 +29471,29 @@ WeakAuras.ModelPaths = { }, { value = "elwynnflower01.m2", + text = "elwynnflower01.m2", fileId = "189751", text = "elwynnflower01.m2", }, { value = "elwynnflower02.m2", + text = "elwynnflower02.m2", fileId = "189752", text = "elwynnflower02.m2", }, { value = "elwynngrass01.m2", + text = "elwynngrass01.m2", fileId = "189754", text = "elwynngrass01.m2", }, { value = "elwynngrass02", + text = "elwynngrass02", children = { { value = "elwynngrass02.m2", + text = "elwynngrass02.m2", fileId = "189755", text = "elwynngrass02.m2", }, @@ -24675,9 +29502,11 @@ WeakAuras.ModelPaths = { }, { value = "elwynngrass1", + text = "elwynngrass1", children = { { value = "elwynngrass1.m2", + text = "elwynngrass1.m2", fileId = "189757", text = "elwynngrass1.m2", }, @@ -24686,9 +29515,11 @@ WeakAuras.ModelPaths = { }, { value = "elwynnlillypad01", + text = "elwynnlillypad01", children = { { value = "elwynnlillypad01.m2", + text = "elwynnlillypad01.m2", fileId = "189759", text = "elwynnlillypad01.m2", }, @@ -24697,14 +29528,17 @@ WeakAuras.ModelPaths = { }, { value = "elwynnmelon01.m2", + text = "elwynnmelon01.m2", fileId = "189760", text = "elwynnmelon01.m2", }, { value = "elwynnmushroom01", + text = "elwynnmushroom01", children = { { value = "elwynnmushroom01.m2", + text = "elwynnmushroom01.m2", fileId = "189761", text = "elwynnmushroom01.m2", }, @@ -24713,9 +29547,11 @@ WeakAuras.ModelPaths = { }, { value = "elwynnpoppy1", + text = "elwynnpoppy1", children = { { value = "elwynnpoppy1.m2", + text = "elwynnpoppy1.m2", fileId = "189763", text = "elwynnpoppy1.m2", }, @@ -24724,9 +29560,11 @@ WeakAuras.ModelPaths = { }, { value = "elwynnpoppy2", + text = "elwynnpoppy2", children = { { value = "elwynnpoppy2.m2", + text = "elwynnpoppy2.m2", fileId = "189765", text = "elwynnpoppy2.m2", }, @@ -24735,9 +29573,11 @@ WeakAuras.ModelPaths = { }, { value = "elwynnreeds01", + text = "elwynnreeds01", children = { { value = "elwynnreeds01.m2", + text = "elwynnreeds01.m2", fileId = "189767", text = "elwynnreeds01.m2", }, @@ -24746,9 +29586,11 @@ WeakAuras.ModelPaths = { }, { value = "elwynnrock1", + text = "elwynnrock1", children = { { value = "elwynnrock1.m2", + text = "elwynnrock1.m2", fileId = "189768", text = "elwynnrock1.m2", }, @@ -24757,9 +29599,11 @@ WeakAuras.ModelPaths = { }, { value = "elwynnrock2", + text = "elwynnrock2", children = { { value = "elwynnrock2.m2", + text = "elwynnrock2.m2", fileId = "189770", text = "elwynnrock2.m2", }, @@ -24768,9 +29612,11 @@ WeakAuras.ModelPaths = { }, { value = "elwynnseaweed01", + text = "elwynnseaweed01", children = { { value = "elwynnseaweed01.m2", + text = "elwynnseaweed01.m2", fileId = "189772", text = "elwynnseaweed01.m2", }, @@ -24779,9 +29625,11 @@ WeakAuras.ModelPaths = { }, { value = "elwynnshrub1", + text = "elwynnshrub1", children = { { value = "elwynnshrub1.m2", + text = "elwynnshrub1.m2", fileId = "189774", text = "elwynnshrub1.m2", }, @@ -24790,9 +29638,11 @@ WeakAuras.ModelPaths = { }, { value = "elwynnthornbush01", + text = "elwynnthornbush01", children = { { value = "elwynnthornbush01.m2", + text = "elwynnthornbush01.m2", fileId = "189777", text = "elwynnthornbush01.m2", }, @@ -24801,9 +29651,11 @@ WeakAuras.ModelPaths = { }, { value = "elwynnthornbush02", + text = "elwynnthornbush02", children = { { value = "elwynnthornbush02.m2", + text = "elwynnthornbush02.m2", fileId = "189778", text = "elwynnthornbush02.m2", }, @@ -24812,9 +29664,11 @@ WeakAuras.ModelPaths = { }, { value = "elwynnvines01", + text = "elwynnvines01", children = { { value = "elwynnvines01.m2", + text = "elwynnvines01.m2", fileId = "189779", text = "elwynnvines01.m2", }, @@ -24823,9 +29677,11 @@ WeakAuras.ModelPaths = { }, { value = "elwynnvines02", + text = "elwynnvines02", children = { { value = "elwynnvines02.m2", + text = "elwynnvines02.m2", fileId = "189781", text = "elwynnvines02.m2", }, @@ -24834,9 +29690,11 @@ WeakAuras.ModelPaths = { }, { value = "elwynnvineyard", + text = "elwynnvineyard", children = { { value = "elwynnvineyard01.m2", + text = "elwynnvineyard01.m2", fileId = "189784", text = "elwynnvineyard01.m2", }, @@ -24845,9 +29703,11 @@ WeakAuras.ModelPaths = { }, { value = "elwynnwheat", + text = "elwynnwheat", children = { { value = "elwynnwheat01.m2", + text = "elwynnwheat01.m2", fileId = "189788", text = "elwynnwheat01.m2", }, @@ -24859,39 +29719,47 @@ WeakAuras.ModelPaths = { }, { value = "elwynnfences", + text = "elwynnfences", children = { { value = "elwynnfencesimple.m2", + text = "elwynnfencesimple.m2", fileId = "189790", text = "elwynnfencesimple.m2", }, { value = "elwynnfencesimplepost.m2", + text = "elwynnfencesimplepost.m2", fileId = "189791", text = "elwynnfencesimplepost.m2", }, { value = "elwynnfencetop.m2", + text = "elwynnfencetop.m2", fileId = "189792", text = "elwynnfencetop.m2", }, { value = "elwynnstonefence.m2", + text = "elwynnstonefence.m2", fileId = "189793", text = "elwynnstonefence.m2", }, { value = "elwynnstonefencepost.m2", + text = "elwynnstonefencepost.m2", fileId = "189794", text = "elwynnstonefencepost.m2", }, { value = "elwynnwoodfence01.m2", + text = "elwynnwoodfence01.m2", fileId = "189795", text = "elwynnwoodfence01.m2", }, { value = "elwynnwoodpost01.m2", + text = "elwynnwoodpost01.m2", fileId = "189796", text = "elwynnwoodpost01.m2", }, @@ -24900,9 +29768,11 @@ WeakAuras.ModelPaths = { }, { value = "eyeofazora", + text = "eyeofazora", children = { { value = "eyeofazora.m2", + text = "eyeofazora.m2", fileId = "189802", text = "eyeofazora.m2", }, @@ -24911,14 +29781,17 @@ WeakAuras.ModelPaths = { }, { value = "grapebuckets", + text = "grapebuckets", children = { { value = "grapebucket01.m2", + text = "grapebucket01.m2", fileId = "189805", text = "grapebucket01.m2", }, { value = "grapebucket02.m2", + text = "grapebucket02.m2", fileId = "189806", text = "grapebucket02.m2", }, @@ -24927,14 +29800,17 @@ WeakAuras.ModelPaths = { }, { value = "haystacks", + text = "haystacks", children = { { value = "haystack01.m2", + text = "haystack01.m2", fileId = "189810", text = "haystack01.m2", }, { value = "haystack02.m2", + text = "haystack02.m2", fileId = "189811", text = "haystack02.m2", }, @@ -24943,19 +29819,23 @@ WeakAuras.ModelPaths = { }, { value = "jars", + text = "jars", children = { { value = "jar01.m2", + text = "jar01.m2", fileId = "189815", text = "jar01.m2", }, { value = "jar02.m2", + text = "jar02.m2", fileId = "189816", text = "jar02.m2", }, { value = "jar03.m2", + text = "jar03.m2", fileId = "189817", text = "jar03.m2", }, @@ -24964,14 +29844,17 @@ WeakAuras.ModelPaths = { }, { value = "jugs", + text = "jugs", children = { { value = "jug01.m2", + text = "jug01.m2", fileId = "189820", text = "jug01.m2", }, { value = "jug02.m2", + text = "jug02.m2", fileId = "189821", text = "jug02.m2", }, @@ -24980,9 +29863,11 @@ WeakAuras.ModelPaths = { }, { value = "lamppost", + text = "lamppost", children = { { value = "lamppost.m2", + text = "lamppost.m2", fileId = "189825", text = "lamppost.m2", }, @@ -24991,9 +29876,11 @@ WeakAuras.ModelPaths = { }, { value = "minecart", + text = "minecart", children = { { value = "elwynnminecart.m2", + text = "elwynnminecart.m2", fileId = "189827", text = "elwynnminecart.m2", }, @@ -25002,9 +29889,11 @@ WeakAuras.ModelPaths = { }, { value = "monumentrock", + text = "monumentrock", children = { { value = "monumentrock.m2", + text = "monumentrock.m2", fileId = "189830", text = "monumentrock.m2", }, @@ -25013,9 +29902,11 @@ WeakAuras.ModelPaths = { }, { value = "pick", + text = "pick", children = { { value = "pick.m2", + text = "pick.m2", fileId = "189834", text = "pick.m2", }, @@ -25024,9 +29915,11 @@ WeakAuras.ModelPaths = { }, { value = "ruinedcatapult", + text = "ruinedcatapult", children = { { value = "ruinedcatapult.m2", + text = "ruinedcatapult.m2", fileId = "189840", text = "ruinedcatapult.m2", }, @@ -25035,9 +29928,11 @@ WeakAuras.ModelPaths = { }, { value = "ruinedfountain", + text = "ruinedfountain", children = { { value = "ruinedfountain.m2", + text = "ruinedfountain.m2", fileId = "189852", text = "ruinedfountain.m2", }, @@ -25046,9 +29941,11 @@ WeakAuras.ModelPaths = { }, { value = "shovel", + text = "shovel", children = { { value = "shovel.m2", + text = "shovel.m2", fileId = "189854", text = "shovel.m2", }, @@ -25057,37 +29954,45 @@ WeakAuras.ModelPaths = { }, { value = "signs", + text = "signs", children = { { value = "directional", + text = "directional", children = { { value = "duskwooddirectionalsign.m2", + text = "duskwooddirectionalsign.m2", fileId = "189855", text = "duskwooddirectionalsign.m2", }, { value = "goldshiredirectionalsign.m2", + text = "goldshiredirectionalsign.m2", fileId = "189857", text = "goldshiredirectionalsign.m2", }, { value = "northshiredirectionalsign.m2", + text = "northshiredirectionalsign.m2", fileId = "189859", text = "northshiredirectionalsign.m2", }, { value = "runestonedirectionalsign.m2", + text = "runestonedirectionalsign.m2", fileId = "189862", text = "runestonedirectionalsign.m2", }, { value = "stormwinddirectionalsign.m2", + text = "stormwinddirectionalsign.m2", fileId = "189863", text = "stormwinddirectionalsign.m2", }, { value = "westfalldirectionalsign.m2", + text = "westfalldirectionalsign.m2", fileId = "189866", text = "westfalldirectionalsign.m2", }, @@ -25096,9 +30001,11 @@ WeakAuras.ModelPaths = { }, { value = "genericposts", + text = "genericposts", children = { { value = "genericsmallsignpost01.m2", + text = "genericsmallsignpost01.m2", fileId = "189868", text = "genericsmallsignpost01.m2", }, @@ -25107,49 +30014,59 @@ WeakAuras.ModelPaths = { }, { value = "shop", + text = "shop", children = { { value = "humanalchemistsign.m2", + text = "humanalchemistsign.m2", fileId = "189878", text = "humanalchemistsign.m2", }, { value = "humanbaitandtacklesign.m2", + text = "humanbaitandtacklesign.m2", fileId = "189879", text = "humanbaitandtacklesign.m2", }, { value = "humanbanksign.m2", + text = "humanbanksign.m2", fileId = "189880", text = "humanbanksign.m2", }, { value = "humanblacksmithsign.m2", + text = "humanblacksmithsign.m2", fileId = "189881", text = "humanblacksmithsign.m2", }, { value = "humanboathousesign.m2", + text = "humanboathousesign.m2", fileId = "189882", text = "humanboathousesign.m2", }, { value = "humaninnsign.m2", + text = "humaninnsign.m2", fileId = "189883", text = "humaninnsign.m2", }, { value = "humaninnsignpost.m2", + text = "humaninnsignpost.m2", fileId = "189884", text = "humaninnsignpost.m2", }, { value = "humanmagicshopsign.m2", + text = "humanmagicshopsign.m2", fileId = "189885", text = "humanmagicshopsign.m2", }, { value = "humantannersign.m2", + text = "humantannersign.m2", fileId = "189886", text = "humantannersign.m2", }, @@ -25161,24 +30078,29 @@ WeakAuras.ModelPaths = { }, { value = "skeleton", + text = "skeleton", children = { { value = "battlegladeboneshumandark.m2", + text = "battlegladeboneshumandark.m2", fileId = "189893", text = "battlegladeboneshumandark.m2", }, { value = "battlegladebskeletonhumandark.m2", + text = "battlegladebskeletonhumandark.m2", fileId = "189894", text = "battlegladebskeletonhumandark.m2", }, { value = "battlegladeskullhumandark.m2", + text = "battlegladeskullhumandark.m2", fileId = "189896", text = "battlegladeskullhumandark.m2", }, { value = "battlegladespinehumandark.m2", + text = "battlegladespinehumandark.m2", fileId = "189898", text = "battlegladespinehumandark.m2", }, @@ -25187,9 +30109,11 @@ WeakAuras.ModelPaths = { }, { value = "smalldock", + text = "smalldock", children = { { value = "smalldock.m2", + text = "smalldock.m2", fileId = "189904", text = "smalldock.m2", }, @@ -25198,9 +30122,11 @@ WeakAuras.ModelPaths = { }, { value = "spike", + text = "spike", children = { { value = "spike.m2", + text = "spike.m2", fileId = "189906", text = "spike.m2", }, @@ -25209,9 +30135,11 @@ WeakAuras.ModelPaths = { }, { value = "statue", + text = "statue", children = { { value = "lionstatue.m2", + text = "lionstatue.m2", fileId = "189908", text = "lionstatue.m2", }, @@ -25220,9 +30148,11 @@ WeakAuras.ModelPaths = { }, { value = "stonepyre", + text = "stonepyre", children = { { value = "stonepyre.m2", + text = "stonepyre.m2", fileId = "189910", text = "stonepyre.m2", }, @@ -25231,12 +30161,15 @@ WeakAuras.ModelPaths = { }, { value = "tables", + text = "tables", children = { { value = "roundtable", + text = "roundtable", children = { { value = "roundtable.m2", + text = "roundtable.m2", fileId = "189914", text = "roundtable.m2", }, @@ -25248,14 +30181,17 @@ WeakAuras.ModelPaths = { }, { value = "tree", + text = "tree", children = { { value = "elwynnlog01.m2", + text = "elwynnlog01.m2", fileId = "189915", text = "elwynnlog01.m2", }, { value = "elwynnlog02.m2", + text = "elwynnlog02.m2", fileId = "189916", text = "elwynnlog02.m2", }, @@ -25264,42 +30200,51 @@ WeakAuras.ModelPaths = { }, { value = "trees", + text = "trees", children = { { value = "canopylesstree01.m2", + text = "canopylesstree01.m2", fileId = "189919", text = "canopylesstree01.m2", }, { value = "canopylesstree02.m2", + text = "canopylesstree02.m2", fileId = "189920", text = "canopylesstree02.m2", }, { value = "canopylesstree03.m2", + text = "canopylesstree03.m2", fileId = "189921", text = "canopylesstree03.m2", }, { value = "canopylesstree04.m2", + text = "canopylesstree04.m2", fileId = "189922", text = "canopylesstree04.m2", }, { value = "elwynnfirtree01.m2", + text = "elwynnfirtree01.m2", fileId = "189923", text = "elwynnfirtree01.m2", }, { value = "elwynntree01", + text = "elwynntree01", children = { { value = "elwynnpine01.m2", + text = "elwynnpine01.m2", fileId = "189924", text = "elwynnpine01.m2", }, { value = "elwynnpine02.m2", + text = "elwynnpine02.m2", fileId = "189925", text = "elwynnpine02.m2", }, @@ -25308,39 +30253,47 @@ WeakAuras.ModelPaths = { }, { value = "elwynntreecanopy01.m2", + text = "elwynntreecanopy01.m2", fileId = "189927", text = "elwynntreecanopy01.m2", }, { value = "elwynntreecanopy02.m2", + text = "elwynntreecanopy02.m2", fileId = "189928", text = "elwynntreecanopy02.m2", }, { value = "elwynntreecanopy03.m2", + text = "elwynntreecanopy03.m2", fileId = "189929", text = "elwynntreecanopy03.m2", }, { value = "elwynntreecanopy04.m2", + text = "elwynntreecanopy04.m2", fileId = "189930", text = "elwynntreecanopy04.m2", }, { value = "elwynntreemid01.m2", + text = "elwynntreemid01.m2", fileId = "189932", text = "elwynntreemid01.m2", }, { value = "stumps", + text = "stumps", children = { { value = "elwynntreestump01.m2", + text = "elwynntreestump01.m2", fileId = "189939", text = "elwynntreestump01.m2", }, { value = "elwynntreestump02.m2", + text = "elwynntreestump02.m2", fileId = "189940", text = "elwynntreestump02.m2", }, @@ -25352,29 +30305,35 @@ WeakAuras.ModelPaths = { }, { value = "vineyard", + text = "vineyard", children = { { value = "vineyard.m2", + text = "vineyard.m2", fileId = "189948", text = "vineyard.m2", }, { value = "vineyardcube01.m2", + text = "vineyardcube01.m2", fileId = "189949", text = "vineyardcube01.m2", }, { value = "vineyardcube02.m2", + text = "vineyardcube02.m2", fileId = "189950", text = "vineyardcube02.m2", }, { value = "vineyardlowpoly.m2", + text = "vineyardlowpoly.m2", fileId = "189951", text = "vineyardlowpoly.m2", }, { value = "vineyardwired.m2", + text = "vineyardwired.m2", fileId = "189953", text = "vineyardwired.m2", }, @@ -25383,9 +30342,11 @@ WeakAuras.ModelPaths = { }, { value = "waterbasin", + text = "waterbasin", children = { { value = "waterbasin.m2", + text = "waterbasin.m2", fileId = "189956", text = "waterbasin.m2", }, @@ -25394,14 +30355,17 @@ WeakAuras.ModelPaths = { }, { value = "waterfall", + text = "waterfall", children = { { value = "elwynnmediumwaterfall01.m2", + text = "elwynnmediumwaterfall01.m2", fileId = "189958", text = "elwynnmediumwaterfall01.m2", }, { value = "elwynntallwaterfall01.m2", + text = "elwynntallwaterfall01.m2", fileId = "189959", text = "elwynntallwaterfall01.m2", }, @@ -25416,12 +30380,15 @@ WeakAuras.ModelPaths = { }, { value = "karazahn", + text = "karazahn", children = { { value = "activedoodads", + text = "activedoodads", children = { { value = "karazahnportcullis.m2", + text = "karazahnportcullis.m2", fileId = "189972", text = "karazahnportcullis.m2", }, @@ -25430,17 +30397,21 @@ WeakAuras.ModelPaths = { }, { value = "passivedoodads", + text = "passivedoodads", children = { { value = "barrel", + text = "barrel", children = { { value = "karazahnbarrel01.m2", + text = "karazahnbarrel01.m2", fileId = "189980", text = "karazahnbarrel01.m2", }, { value = "karazahnbarrel02.m2", + text = "karazahnbarrel02.m2", fileId = "189981", text = "karazahnbarrel02.m2", }, @@ -25449,14 +30420,17 @@ WeakAuras.ModelPaths = { }, { value = "bonfire", + text = "bonfire", children = { { value = "karazahnbonfire01.m2", + text = "karazahnbonfire01.m2", fileId = "189983", text = "karazahnbonfire01.m2", }, { value = "karazahnbonfire02.m2", + text = "karazahnbonfire02.m2", fileId = "189984", text = "karazahnbonfire02.m2", }, @@ -25465,14 +30439,17 @@ WeakAuras.ModelPaths = { }, { value = "bookshelves", + text = "bookshelves", children = { { value = "karazahnbookshelflarge.m2", + text = "karazahnbookshelflarge.m2", fileId = "189992", text = "karazahnbookshelflarge.m2", }, { value = "karazahnbookshelfsmall.m2", + text = "karazahnbookshelfsmall.m2", fileId = "189993", text = "karazahnbookshelfsmall.m2", }, @@ -25481,14 +30458,17 @@ WeakAuras.ModelPaths = { }, { value = "brokencart", + text = "brokencart", children = { { value = "kn_brokencart.m2", + text = "kn_brokencart.m2", fileId = "189997", text = "kn_brokencart.m2", }, { value = "kn_brokencart02.m2", + text = "kn_brokencart02.m2", fileId = "189998", text = "kn_brokencart02.m2", }, @@ -25497,14 +30477,17 @@ WeakAuras.ModelPaths = { }, { value = "chandeliers", + text = "chandeliers", children = { { value = "karazanchandelier_01.m2", + text = "karazanchandelier_01.m2", fileId = "190006", text = "karazanchandelier_01.m2", }, { value = "karazanchandelier_02.m2", + text = "karazanchandelier_02.m2", fileId = "190007", text = "karazanchandelier_02.m2", }, @@ -25513,14 +30496,17 @@ WeakAuras.ModelPaths = { }, { value = "crates", + text = "crates", children = { { value = "karazahncrate01.m2", + text = "karazahncrate01.m2", fileId = "190012", text = "karazahncrate01.m2", }, { value = "karazahncrate02.m2", + text = "karazahncrate02.m2", fileId = "190013", text = "karazahncrate02.m2", }, @@ -25529,24 +30515,29 @@ WeakAuras.ModelPaths = { }, { value = "grainsacks", + text = "grainsacks", children = { { value = "kn_grainsack01.m2", + text = "kn_grainsack01.m2", fileId = "190015", text = "kn_grainsack01.m2", }, { value = "kn_grainsack02.m2", + text = "kn_grainsack02.m2", fileId = "190016", text = "kn_grainsack02.m2", }, { value = "kn_grainsack03.m2", + text = "kn_grainsack03.m2", fileId = "190017", text = "kn_grainsack03.m2", }, { value = "kn_spilledsack01.m2", + text = "kn_spilledsack01.m2", fileId = "190018", text = "kn_spilledsack01.m2", }, @@ -25555,19 +30546,23 @@ WeakAuras.ModelPaths = { }, { value = "karazahnwebs", + text = "karazahnwebs", children = { { value = "karazahnweb01.m2", + text = "karazahnweb01.m2", fileId = "190019", text = "karazahnweb01.m2", }, { value = "karazahnweb02.m2", + text = "karazahnweb02.m2", fileId = "190020", text = "karazahnweb02.m2", }, { value = "karazahnweb03.m2", + text = "karazahnweb03.m2", fileId = "190021", text = "karazahnweb03.m2", }, @@ -25576,14 +30571,17 @@ WeakAuras.ModelPaths = { }, { value = "pedestals", + text = "pedestals", children = { { value = "karazahnpedestals01.m2", + text = "karazahnpedestals01.m2", fileId = "190024", text = "karazahnpedestals01.m2", }, { value = "karazahnpedestals02.m2", + text = "karazahnpedestals02.m2", fileId = "190025", text = "karazahnpedestals02.m2", }, @@ -25592,14 +30590,17 @@ WeakAuras.ModelPaths = { }, { value = "rubble", + text = "rubble", children = { { value = "karazahnrockrubble01.m2", + text = "karazahnrockrubble01.m2", fileId = "190027", text = "karazahnrockrubble01.m2", }, { value = "karazahnrockrubble02.m2", + text = "karazahnrockrubble02.m2", fileId = "190028", text = "karazahnrockrubble02.m2", }, @@ -25608,39 +30609,47 @@ WeakAuras.ModelPaths = { }, { value = "sconces", + text = "sconces", children = { { value = "karazahnsconce01.m2", + text = "karazahnsconce01.m2", fileId = "190030", text = "karazahnsconce01.m2", }, { value = "karazahnsconce02.m2", + text = "karazahnsconce02.m2", fileId = "190031", text = "karazahnsconce02.m2", }, { value = "karazahnsconce03.m2", + text = "karazahnsconce03.m2", fileId = "190032", text = "karazahnsconce03.m2", }, { value = "karazahnsconce04.m2", + text = "karazahnsconce04.m2", fileId = "190033", text = "karazahnsconce04.m2", }, { value = "karazahnsconce05.m2", + text = "karazahnsconce05.m2", fileId = "190034", text = "karazahnsconce05.m2", }, { value = "karazahnsconce06.m2", + text = "karazahnsconce06.m2", fileId = "190035", text = "karazahnsconce06.m2", }, { value = "karazahnsconce07.m2", + text = "karazahnsconce07.m2", fileId = "190036", text = "karazahnsconce07.m2", }, @@ -25649,9 +30658,11 @@ WeakAuras.ModelPaths = { }, { value = "starlab", + text = "starlab", children = { { value = "karazahnstarlab.m2", + text = "karazahnstarlab.m2", fileId = "190039", text = "karazahnstarlab.m2", }, @@ -25660,14 +30671,17 @@ WeakAuras.ModelPaths = { }, { value = "tables", + text = "tables", children = { { value = "karazahntablebig.m2", + text = "karazahntablebig.m2", fileId = "190041", text = "karazahntablebig.m2", }, { value = "karazahntablesmall.m2", + text = "karazahntablesmall.m2", fileId = "190043", text = "karazahntablesmall.m2", }, @@ -25676,14 +30690,17 @@ WeakAuras.ModelPaths = { }, { value = "tapestries", + text = "tapestries", children = { { value = "karazantapestry01.m2", + text = "karazantapestry01.m2", fileId = "190044", text = "karazantapestry01.m2", }, { value = "karazantapestry02.m2", + text = "karazantapestry02.m2", fileId = "190045", text = "karazantapestry02.m2", }, @@ -25692,9 +30709,11 @@ WeakAuras.ModelPaths = { }, { value = "throne", + text = "throne", children = { { value = "karazahnthrone01.m2", + text = "karazahnthrone01.m2", fileId = "190064", text = "karazahnthrone01.m2", }, @@ -25703,9 +30722,11 @@ WeakAuras.ModelPaths = { }, { value = "volumetriclights", + text = "volumetriclights", children = { { value = "karazahndiningrays.m2", + text = "karazahndiningrays.m2", fileId = "2198647", text = "karazahndiningrays.m2", }, @@ -25720,35 +30741,43 @@ WeakAuras.ModelPaths = { }, { value = "pvp", + text = "pvp", children = { { value = "passivedoodads", + text = "passivedoodads", children = { { value = "bridgeruins", + text = "bridgeruins", children = { { value = "pvp_bridge_parts01.m2", + text = "pvp_bridge_parts01.m2", fileId = "190069", text = "pvp_bridge_parts01.m2", }, { value = "pvp_bridge_parts02.m2", + text = "pvp_bridge_parts02.m2", fileId = "190070", text = "pvp_bridge_parts02.m2", }, { value = "pvp_bridge_parts03.m2", + text = "pvp_bridge_parts03.m2", fileId = "190071", text = "pvp_bridge_parts03.m2", }, { value = "pvp_bridge_parts04.m2", + text = "pvp_bridge_parts04.m2", fileId = "190072", text = "pvp_bridge_parts04.m2", }, { value = "pvp_bridge_parts05.m2", + text = "pvp_bridge_parts05.m2", fileId = "190073", text = "pvp_bridge_parts05.m2", }, @@ -25763,25 +30792,31 @@ WeakAuras.ModelPaths = { }, { value = "redridge", + text = "redridge", children = { { value = "passivedoodads", + text = "passivedoodads", children = { { value = "bricks", + text = "bricks", children = { { value = "redridgebridgebrick01.m2", + text = "redridgebridgebrick01.m2", fileId = "190076", text = "redridgebridgebrick01.m2", }, { value = "redridgebridgebrick02.m2", + text = "redridgebridgebrick02.m2", fileId = "190077", text = "redridgebridgebrick02.m2", }, { value = "redridgebridgebrick03.m2", + text = "redridgebridgebrick03.m2", fileId = "190078", text = "redridgebridgebrick03.m2", }, @@ -25790,19 +30825,23 @@ WeakAuras.ModelPaths = { }, { value = "bush", + text = "bush", children = { { value = "redridgebush01.m2", + text = "redridgebush01.m2", fileId = "190080", text = "redridgebush01.m2", }, { value = "redridgebush02.m2", + text = "redridgebush02.m2", fileId = "190081", text = "redridgebush02.m2", }, { value = "redridgebush03.m2", + text = "redridgebush03.m2", fileId = "190082", text = "redridgebush03.m2", }, @@ -25811,12 +30850,15 @@ WeakAuras.ModelPaths = { }, { value = "detail", + text = "detail", children = { { value = "catailpatch", + text = "catailpatch", children = { { value = "catailpatch01.m2", + text = "catailpatch01.m2", fileId = "190084", text = "catailpatch01.m2", }, @@ -25828,34 +30870,41 @@ WeakAuras.ModelPaths = { }, { value = "dockpieces", + text = "dockpieces", children = { { value = "redridgedocksbeam01.m2", + text = "redridgedocksbeam01.m2", fileId = "190087", text = "redridgedocksbeam01.m2", }, { value = "redridgedocksboardwalk01.m2", + text = "redridgedocksboardwalk01.m2", fileId = "190088", text = "redridgedocksboardwalk01.m2", }, { value = "redridgedocksboardwalk02.m2", + text = "redridgedocksboardwalk02.m2", fileId = "190089", text = "redridgedocksboardwalk02.m2", }, { value = "redridgedocksboardwalk03.m2", + text = "redridgedocksboardwalk03.m2", fileId = "190090", text = "redridgedocksboardwalk03.m2", }, { value = "redridgedocksplank01.m2", + text = "redridgedocksplank01.m2", fileId = "190091", text = "redridgedocksplank01.m2", }, { value = "redridgedockspylon01.m2", + text = "redridgedockspylon01.m2", fileId = "190093", text = "redridgedockspylon01.m2", }, @@ -25864,14 +30913,17 @@ WeakAuras.ModelPaths = { }, { value = "docks", + text = "docks", children = { { value = "redridgedocks01.m2", + text = "redridgedocks01.m2", fileId = "190095", text = "redridgedocks01.m2", }, { value = "redridgedocks03.m2", + text = "redridgedocks03.m2", fileId = "190096", text = "redridgedocks03.m2", }, @@ -25880,9 +30932,11 @@ WeakAuras.ModelPaths = { }, { value = "misc", + text = "misc", children = { { value = "insectmound.m2", + text = "insectmound.m2", fileId = "190097", text = "insectmound.m2", }, @@ -25891,19 +30945,23 @@ WeakAuras.ModelPaths = { }, { value = "rocks", + text = "rocks", children = { { value = "redridgerock01.m2", + text = "redridgerock01.m2", fileId = "190101", text = "redridgerock01.m2", }, { value = "redridgerock02.m2", + text = "redridgerock02.m2", fileId = "190102", text = "redridgerock02.m2", }, { value = "redridgerock03.m2", + text = "redridgerock03.m2", fileId = "190103", text = "redridgerock03.m2", }, @@ -25912,9 +30970,11 @@ WeakAuras.ModelPaths = { }, { value = "rowboat", + text = "rowboat", children = { { value = "rowboat01.m2", + text = "rowboat01.m2", fileId = "190104", text = "rowboat01.m2", }, @@ -25923,14 +30983,17 @@ WeakAuras.ModelPaths = { }, { value = "spikewall", + text = "spikewall", children = { { value = "battlegladewoodspikeslongrow.m2", + text = "battlegladewoodspikeslongrow.m2", fileId = "190106", text = "battlegladewoodspikeslongrow.m2", }, { value = "battlegladewoodspikesshortrow.m2", + text = "battlegladewoodspikesshortrow.m2", fileId = "190107", text = "battlegladewoodspikesshortrow.m2", }, @@ -25939,9 +31002,11 @@ WeakAuras.ModelPaths = { }, { value = "stumps", + text = "stumps", children = { { value = "redridgestump02.m2", + text = "redridgestump02.m2", fileId = "190108", text = "redridgestump02.m2", }, @@ -25950,69 +31015,83 @@ WeakAuras.ModelPaths = { }, { value = "trees", + text = "trees", children = { { value = "redridgefallentree01.m2", + text = "redridgefallentree01.m2", fileId = "190114", text = "redridgefallentree01.m2", }, { value = "redridgefallentree01moss.m2", + text = "redridgefallentree01moss.m2", fileId = "190115", text = "redridgefallentree01moss.m2", }, { value = "redridgefallentree02.m2", + text = "redridgefallentree02.m2", fileId = "190116", text = "redridgefallentree02.m2", }, { value = "redridgefallentree02moss.m2", + text = "redridgefallentree02moss.m2", fileId = "190117", text = "redridgefallentree02moss.m2", }, { value = "redridgefallentree03.m2", + text = "redridgefallentree03.m2", fileId = "190118", text = "redridgefallentree03.m2", }, { value = "redridgetree01.m2", + text = "redridgetree01.m2", fileId = "190119", text = "redridgetree01.m2", }, { value = "redridgetree02.m2", + text = "redridgetree02.m2", fileId = "190120", text = "redridgetree02.m2", }, { value = "redridgetreecanopy01.m2", + text = "redridgetreecanopy01.m2", fileId = "190121", text = "redridgetreecanopy01.m2", }, { value = "redridgetreecanopy02.m2", + text = "redridgetreecanopy02.m2", fileId = "190122", text = "redridgetreecanopy02.m2", }, { value = "redridgetreecanopy03.m2", + text = "redridgetreecanopy03.m2", fileId = "190123", text = "redridgetreecanopy03.m2", }, { value = "redridgetreecanopy04.m2", + text = "redridgetreecanopy04.m2", fileId = "190124", text = "redridgetreecanopy04.m2", }, { value = "redridgetreemid01.m2", + text = "redridgetreemid01.m2", fileId = "190126", text = "redridgetreemid01.m2", }, { value = "redridgetreestump01.m2", + text = "redridgetreestump01.m2", fileId = "190128", text = "redridgetreestump01.m2", }, @@ -26027,25 +31106,31 @@ WeakAuras.ModelPaths = { }, { value = "stranglethorn", + text = "stranglethorn", children = { { value = "activedoodads", + text = "activedoodads", children = { { value = "cages", + text = "cages", children = { { value = "cage01.m2", + text = "cage01.m2", fileId = "190141", text = "cage01.m2", }, { value = "cage02.m2", + text = "cage02.m2", fileId = "190142", text = "cage02.m2", }, { value = "cage03.m2", + text = "cage03.m2", fileId = "190143", text = "cage03.m2", }, @@ -26054,9 +31139,11 @@ WeakAuras.ModelPaths = { }, { value = "holdingpen", + text = "holdingpen", children = { { value = "holdingpen.m2", + text = "holdingpen.m2", fileId = "190153", text = "holdingpen.m2", }, @@ -26068,12 +31155,15 @@ WeakAuras.ModelPaths = { }, { value = "buildings", + text = "buildings", children = { { value = "crashzeppelin", + text = "crashzeppelin", children = { { value = "crashzeppelin.m2", + text = "crashzeppelin.m2", fileId = "190160", text = "crashzeppelin.m2", }, @@ -26082,9 +31172,11 @@ WeakAuras.ModelPaths = { }, { value = "oilrig", + text = "oilrig", children = { { value = "oilrig.m2", + text = "oilrig.m2", fileId = "190165", text = "oilrig.m2", }, @@ -26093,9 +31185,11 @@ WeakAuras.ModelPaths = { }, { value = "runestonemoss_01", + text = "runestonemoss_01", children = { { value = "runestonemoss_01.m2", + text = "runestonemoss_01.m2", fileId = "190169", text = "runestonemoss_01.m2", }, @@ -26104,9 +31198,11 @@ WeakAuras.ModelPaths = { }, { value = "trollwatchtower", + text = "trollwatchtower", children = { { value = "trollwatchtower.m2", + text = "trollwatchtower.m2", fileId = "190175", text = "trollwatchtower.m2", }, @@ -26118,52 +31214,63 @@ WeakAuras.ModelPaths = { }, { value = "passivedoodads", + text = "passivedoodads", children = { { value = "aquaduct", + text = "aquaduct", children = { { value = "aquaductstone_corner1.m2", + text = "aquaductstone_corner1.m2", fileId = "190178", text = "aquaductstone_corner1.m2", }, { value = "aquaductstone_corner2.m2", + text = "aquaductstone_corner2.m2", fileId = "190179", text = "aquaductstone_corner2.m2", }, { value = "aquaductstone_longpillar.m2", + text = "aquaductstone_longpillar.m2", fileId = "190180", text = "aquaductstone_longpillar.m2", }, { value = "aquaductstone_pillar1.m2", + text = "aquaductstone_pillar1.m2", fileId = "190181", text = "aquaductstone_pillar1.m2", }, { value = "aquaductstone_pillar2.m2", + text = "aquaductstone_pillar2.m2", fileId = "190182", text = "aquaductstone_pillar2.m2", }, { value = "aquaductstone_pillar3.m2", + text = "aquaductstone_pillar3.m2", fileId = "190183", text = "aquaductstone_pillar3.m2", }, { value = "aquaductstone_short.m2", + text = "aquaductstone_short.m2", fileId = "190184", text = "aquaductstone_short.m2", }, { value = "aquaductstone_straight.m2", + text = "aquaductstone_straight.m2", fileId = "190185", text = "aquaductstone_straight.m2", }, { value = "aquaductstone_straight6.m2", + text = "aquaductstone_straight6.m2", fileId = "190186", text = "aquaductstone_straight6.m2", }, @@ -26172,29 +31279,35 @@ WeakAuras.ModelPaths = { }, { value = "bridge", + text = "bridge", children = { { value = "jaguarstatue.m2", + text = "jaguarstatue.m2", fileId = "190192", text = "jaguarstatue.m2", }, { value = "ropebridge.m2", + text = "ropebridge.m2", fileId = "190193", text = "ropebridge.m2", }, { value = "stonebridgelong.m2", + text = "stonebridgelong.m2", fileId = "190194", text = "stonebridgelong.m2", }, { value = "stonebridgeshort.m2", + text = "stonebridgeshort.m2", fileId = "190195", text = "stonebridgeshort.m2", }, { value = "stranglechasmbridge.m2", + text = "stranglechasmbridge.m2", fileId = "190196", text = "stranglechasmbridge.m2", }, @@ -26203,34 +31316,41 @@ WeakAuras.ModelPaths = { }, { value = "crystalcreatures", + text = "crystalcreatures", children = { { value = "crystallizedhuman01.m2", + text = "crystallizedhuman01.m2", fileId = "190202", text = "crystallizedhuman01.m2", }, { value = "crystallizedhuman02.m2", + text = "crystallizedhuman02.m2", fileId = "190203", text = "crystallizedhuman02.m2", }, { value = "crystallizedhuman03.m2", + text = "crystallizedhuman03.m2", fileId = "190204", text = "crystallizedhuman03.m2", }, { value = "crystallizedtroll01.m2", + text = "crystallizedtroll01.m2", fileId = "190205", text = "crystallizedtroll01.m2", }, { value = "crystallizedtroll02.m2", + text = "crystallizedtroll02.m2", fileId = "190206", text = "crystallizedtroll02.m2", }, { value = "crystallizedtroll03.m2", + text = "crystallizedtroll03.m2", fileId = "190207", text = "crystallizedtroll03.m2", }, @@ -26239,84 +31359,101 @@ WeakAuras.ModelPaths = { }, { value = "detail", + text = "detail", children = { { value = "strangleplant06.m2", + text = "strangleplant06.m2", fileId = "190223", text = "strangleplant06.m2", }, { value = "strangleplant07.m2", + text = "strangleplant07.m2", fileId = "190224", text = "strangleplant07.m2", }, { value = "strangleplant08.m2", + text = "strangleplant08.m2", fileId = "190225", text = "strangleplant08.m2", }, { value = "strangleplant09.m2", + text = "strangleplant09.m2", fileId = "190226", text = "strangleplant09.m2", }, { value = "strangleplant10.m2", + text = "strangleplant10.m2", fileId = "190227", text = "strangleplant10.m2", }, { value = "stranglethornfern01.m2", + text = "stranglethornfern01.m2", fileId = "190228", text = "stranglethornfern01.m2", }, { value = "stranglethornfern02.m2", + text = "stranglethornfern02.m2", fileId = "190229", text = "stranglethornfern02.m2", }, { value = "stranglethornfern03.m2", + text = "stranglethornfern03.m2", fileId = "190230", text = "stranglethornfern03.m2", }, { value = "stranglethornfern04.m2", + text = "stranglethornfern04.m2", fileId = "190231", text = "stranglethornfern04.m2", }, { value = "stranglethornfern05.m2", + text = "stranglethornfern05.m2", fileId = "190232", text = "stranglethornfern05.m2", }, { value = "stranglethornfern06.m2", + text = "stranglethornfern06.m2", fileId = "190233", text = "stranglethornfern06.m2", }, { value = "stranglethornplant01.m2", + text = "stranglethornplant01.m2", fileId = "190235", text = "stranglethornplant01.m2", }, { value = "stranglethornplant02.m2", + text = "stranglethornplant02.m2", fileId = "190237", text = "stranglethornplant02.m2", }, { value = "stranglethornplant03.m2", + text = "stranglethornplant03.m2", fileId = "190238", text = "stranglethornplant03.m2", }, { value = "stranglethornplant04.m2", + text = "stranglethornplant04.m2", fileId = "190239", text = "stranglethornplant04.m2", }, { value = "stranglethornplant05.m2", + text = "stranglethornplant05.m2", fileId = "190241", text = "stranglethornplant05.m2", }, @@ -26325,9 +31462,11 @@ WeakAuras.ModelPaths = { }, { value = "diamondminewalllantern", + text = "diamondminewalllantern", children = { { value = "diamondminewalllantern.m2", + text = "diamondminewalllantern.m2", fileId = "190246", text = "diamondminewalllantern.m2", }, @@ -26336,9 +31475,11 @@ WeakAuras.ModelPaths = { }, { value = "gemminecar01", + text = "gemminecar01", children = { { value = "gemminecar01.m2", + text = "gemminecar01.m2", fileId = "190252", text = "gemminecar01.m2", }, @@ -26347,9 +31488,11 @@ WeakAuras.ModelPaths = { }, { value = "gemminecar02", + text = "gemminecar02", children = { { value = "gemminecar02.m2", + text = "gemminecar02.m2", fileId = "190256", text = "gemminecar02.m2", }, @@ -26358,9 +31501,11 @@ WeakAuras.ModelPaths = { }, { value = "holyspringwell", + text = "holyspringwell", children = { { value = "holyspringwell.m2", + text = "holyspringwell.m2", fileId = "190260", text = "holyspringwell.m2", }, @@ -26369,9 +31514,11 @@ WeakAuras.ModelPaths = { }, { value = "overgrowth02", + text = "overgrowth02", children = { { value = "overgrowth02.m2", + text = "overgrowth02.m2", fileId = "190262", text = "overgrowth02.m2", }, @@ -26380,9 +31527,11 @@ WeakAuras.ModelPaths = { }, { value = "post", + text = "post", children = { { value = "bootybaypost.m2", + text = "bootybaypost.m2", fileId = "190263", text = "bootybaypost.m2", }, @@ -26391,19 +31540,23 @@ WeakAuras.ModelPaths = { }, { value = "rocks", + text = "rocks", children = { { value = "stranglethorncliffrock01.m2", + text = "stranglethorncliffrock01.m2", fileId = "190264", text = "stranglethorncliffrock01.m2", }, { value = "stranglethorncliffrock02.m2", + text = "stranglethorncliffrock02.m2", fileId = "190266", text = "stranglethorncliffrock02.m2", }, { value = "stranglethorncliffrock03.m2", + text = "stranglethorncliffrock03.m2", fileId = "190267", text = "stranglethorncliffrock03.m2", }, @@ -26412,114 +31565,137 @@ WeakAuras.ModelPaths = { }, { value = "ruins", + text = "ruins", children = { { value = "stranglethornruins01.m2", + text = "stranglethornruins01.m2", fileId = "190271", text = "stranglethornruins01.m2", }, { value = "stranglethornruins02.m2", + text = "stranglethornruins02.m2", fileId = "190272", text = "stranglethornruins02.m2", }, { value = "stranglethornruins03.m2", + text = "stranglethornruins03.m2", fileId = "190273", text = "stranglethornruins03.m2", }, { value = "stranglethornruins04.m2", + text = "stranglethornruins04.m2", fileId = "190274", text = "stranglethornruins04.m2", }, { value = "stranglethornruins05.m2", + text = "stranglethornruins05.m2", fileId = "190275", text = "stranglethornruins05.m2", }, { value = "stranglethornruins06.m2", + text = "stranglethornruins06.m2", fileId = "190276", text = "stranglethornruins06.m2", }, { value = "stranglethornruins07.m2", + text = "stranglethornruins07.m2", fileId = "190277", text = "stranglethornruins07.m2", }, { value = "stranglethornruins08.m2", + text = "stranglethornruins08.m2", fileId = "190278", text = "stranglethornruins08.m2", }, { value = "stranglethornruins09.m2", + text = "stranglethornruins09.m2", fileId = "190279", text = "stranglethornruins09.m2", }, { value = "stranglethornruins10.m2", + text = "stranglethornruins10.m2", fileId = "190280", text = "stranglethornruins10.m2", }, { value = "stranglethornruins11.m2", + text = "stranglethornruins11.m2", fileId = "190281", text = "stranglethornruins11.m2", }, { value = "stranglethornruins12.m2", + text = "stranglethornruins12.m2", fileId = "190282", text = "stranglethornruins12.m2", }, { value = "stranglethornruins13.m2", + text = "stranglethornruins13.m2", fileId = "190283", text = "stranglethornruins13.m2", }, { value = "stranglethornruins14.m2", + text = "stranglethornruins14.m2", fileId = "190284", text = "stranglethornruins14.m2", }, { value = "stranglethornruins15.m2", + text = "stranglethornruins15.m2", fileId = "190285", text = "stranglethornruins15.m2", }, { value = "stranglethornruins16.m2", + text = "stranglethornruins16.m2", fileId = "190286", text = "stranglethornruins16.m2", }, { value = "stranglethornruins17.m2", + text = "stranglethornruins17.m2", fileId = "190287", text = "stranglethornruins17.m2", }, { value = "stranglethornruins18.m2", + text = "stranglethornruins18.m2", fileId = "190288", text = "stranglethornruins18.m2", }, { value = "stranglethornruins19.m2", + text = "stranglethornruins19.m2", fileId = "190289", text = "stranglethornruins19.m2", }, { value = "stranglethornruins20.m2", + text = "stranglethornruins20.m2", fileId = "190290", text = "stranglethornruins20.m2", }, { value = "stranglethornruins21.m2", + text = "stranglethornruins21.m2", fileId = "190291", text = "stranglethornruins21.m2", }, { value = "stranglethornruins_pylon.m2", + text = "stranglethornruins_pylon.m2", fileId = "190292", text = "stranglethornruins_pylon.m2", }, @@ -26528,9 +31704,11 @@ WeakAuras.ModelPaths = { }, { value = "sack01_01", + text = "sack01_01", children = { { value = "sack01_01.m2", + text = "sack01_01.m2", fileId = "190300", text = "sack01_01.m2", }, @@ -26539,9 +31717,11 @@ WeakAuras.ModelPaths = { }, { value = "serpentstatue02", + text = "serpentstatue02", children = { { value = "serpentstatue02.m2", + text = "serpentstatue02.m2", fileId = "190304", text = "serpentstatue02.m2", }, @@ -26550,9 +31730,11 @@ WeakAuras.ModelPaths = { }, { value = "strangledeadtrees", + text = "strangledeadtrees", children = { { value = "strangledeadtree01.m2", + text = "strangledeadtree01.m2", fileId = "190308", text = "strangledeadtree01.m2", }, @@ -26561,37 +31743,45 @@ WeakAuras.ModelPaths = { }, { value = "trees", + text = "trees", children = { { value = "bootybaytree01.m2", + text = "bootybaytree01.m2", fileId = "190311", text = "bootybaytree01.m2", }, { value = "strangledeadtreenovine.m2", + text = "strangledeadtreenovine.m2", fileId = "190312", text = "strangledeadtreenovine.m2", }, { value = "stranglethornroot01.m2", + text = "stranglethornroot01.m2", fileId = "190313", text = "stranglethornroot01.m2", }, { value = "stranglethornroot02.m2", + text = "stranglethornroot02.m2", fileId = "190314", text = "stranglethornroot02.m2", }, { value = "stranglethornroot03.m2", + text = "stranglethornroot03.m2", fileId = "190315", text = "stranglethornroot03.m2", }, { value = "stranglethorntree01", + text = "stranglethorntree01", children = { { value = "stranglethorntree01.m2", + text = "stranglethorntree01.m2", fileId = "190316", text = "stranglethorntree01.m2", }, @@ -26600,9 +31790,11 @@ WeakAuras.ModelPaths = { }, { value = "stranglethorntree02", + text = "stranglethorntree02", children = { { value = "stranglethorntree02.m2", + text = "stranglethorntree02.m2", fileId = "190319", text = "stranglethorntree02.m2", }, @@ -26611,9 +31803,11 @@ WeakAuras.ModelPaths = { }, { value = "stranglethorntree04", + text = "stranglethorntree04", children = { { value = "stranglethorntree04.m2", + text = "stranglethorntree04.m2", fileId = "190322", text = "stranglethorntree04.m2", }, @@ -26625,19 +31819,23 @@ WeakAuras.ModelPaths = { }, { value = "trolldrum", + text = "trolldrum", children = { { value = "trolldrumsoundobj.m2", + text = "trolldrumsoundobj.m2", fileId = "190331", text = "trolldrumsoundobj.m2", }, { value = "trolldungeondrum03.m2", + text = "trolldungeondrum03.m2", fileId = "190332", text = "trolldungeondrum03.m2", }, { value = "trollruinsdrum01.m2", + text = "trollruinsdrum01.m2", fileId = "190333", text = "trollruinsdrum01.m2", }, @@ -26646,9 +31844,11 @@ WeakAuras.ModelPaths = { }, { value = "trolldungeonbasin wall", + text = "trolldungeonbasin wall", children = { { value = "trolldungeonbasinwall.m2", + text = "trolldungeonbasinwall.m2", fileId = "190335", text = "trolldungeonbasinwall.m2", }, @@ -26657,9 +31857,11 @@ WeakAuras.ModelPaths = { }, { value = "trolldungeonfountain", + text = "trolldungeonfountain", children = { { value = "trolldungeonfountain.m2", + text = "trolldungeonfountain.m2", fileId = "190337", text = "trolldungeonfountain.m2", }, @@ -26668,19 +31870,23 @@ WeakAuras.ModelPaths = { }, { value = "trolldungeonpottery", + text = "trolldungeonpottery", children = { { value = "trolldungeonpottery01.m2", + text = "trolldungeonpottery01.m2", fileId = "190341", text = "trolldungeonpottery01.m2", }, { value = "trolldungeonpottery02.m2", + text = "trolldungeonpottery02.m2", fileId = "190342", text = "trolldungeonpottery02.m2", }, { value = "trolldungeonpottery03.m2", + text = "trolldungeonpottery03.m2", fileId = "190343", text = "trolldungeonpottery03.m2", }, @@ -26689,9 +31895,11 @@ WeakAuras.ModelPaths = { }, { value = "trolldungeonring", + text = "trolldungeonring", children = { { value = "trolldungeonring.m2", + text = "trolldungeonring.m2", fileId = "190345", text = "trolldungeonring.m2", }, @@ -26700,14 +31908,17 @@ WeakAuras.ModelPaths = { }, { value = "trolldungeonring.m2", + text = "trolldungeonring.m2", fileId = "2198507", text = "trolldungeonring.m2", }, { value = "trolldungeonsacks", + text = "trolldungeonsacks", children = { { value = "trolldungeonsacks.m2", + text = "trolldungeonsacks.m2", fileId = "190347", text = "trolldungeonsacks.m2", }, @@ -26716,9 +31927,11 @@ WeakAuras.ModelPaths = { }, { value = "trolldungeonserpentstatue", + text = "trolldungeonserpentstatue", children = { { value = "trolldungeonserpentstatue.m2", + text = "trolldungeonserpentstatue.m2", fileId = "190348", text = "trolldungeonserpentstatue.m2", }, @@ -26727,9 +31940,11 @@ WeakAuras.ModelPaths = { }, { value = "trollruinsgong", + text = "trollruinsgong", children = { { value = "trollruinsgong03.m2", + text = "trollruinsgong03.m2", fileId = "190353", text = "trollruinsgong03.m2", }, @@ -26738,14 +31953,17 @@ WeakAuras.ModelPaths = { }, { value = "trollshrine", + text = "trollshrine", children = { { value = "stranglethorntikihead.m2", + text = "stranglethorntikihead.m2", fileId = "190354", text = "stranglethorntikihead.m2", }, { value = "trollshrine.m2", + text = "trollshrine.m2", fileId = "190358", text = "trollshrine.m2", }, @@ -26754,9 +31972,11 @@ WeakAuras.ModelPaths = { }, { value = "waterfall", + text = "waterfall", children = { { value = "stranglethornwaterfall01.m2", + text = "stranglethornwaterfall01.m2", fileId = "190361", text = "stranglethornwaterfall01.m2", }, @@ -26771,15 +31991,19 @@ WeakAuras.ModelPaths = { }, { value = "sunkentemple", + text = "sunkentemple", children = { { value = "passivedoodads", + text = "passivedoodads", children = { { value = "serpentaltar", + text = "serpentaltar", children = { { value = "serpentaltar.m2", + text = "serpentaltar.m2", fileId = "190363", text = "serpentaltar.m2", }, @@ -26794,15 +32018,19 @@ WeakAuras.ModelPaths = { }, { value = "swamposorrow", + text = "swamposorrow", children = { { value = "buildings", + text = "buildings", children = { { value = "runestonecrud_01", + text = "runestonecrud_01", children = { { value = "runestonecrud_01.m2", + text = "runestonecrud_01.m2", fileId = "190364", text = "runestonecrud_01.m2", }, @@ -26814,57 +32042,69 @@ WeakAuras.ModelPaths = { }, { value = "passivedoodads", + text = "passivedoodads", children = { { value = "plants", + text = "plants", children = { { value = "swampofsorrowlilypad01.m2", + text = "swampofsorrowlilypad01.m2", fileId = "190375", text = "swampofsorrowlilypad01.m2", }, { value = "swampofsorrowlilypad02.m2", + text = "swampofsorrowlilypad02.m2", fileId = "190376", text = "swampofsorrowlilypad02.m2", }, { value = "swampplant03.m2", + text = "swampplant03.m2", fileId = "190377", text = "swampplant03.m2", }, { value = "swampplant04.m2", + text = "swampplant04.m2", fileId = "190378", text = "swampplant04.m2", }, { value = "swampplant05.m2", + text = "swampplant05.m2", fileId = "190379", text = "swampplant05.m2", }, { value = "swampsorrowplant01.m2", + text = "swampsorrowplant01.m2", fileId = "190380", text = "swampsorrowplant01.m2", }, { value = "swampsorrowplant02.m2", + text = "swampsorrowplant02.m2", fileId = "190381", text = "swampsorrowplant02.m2", }, { value = "swampsorrowroot01.m2", + text = "swampsorrowroot01.m2", fileId = "190382", text = "swampsorrowroot01.m2", }, { value = "swampsorrowroot02.m2", + text = "swampsorrowroot02.m2", fileId = "190383", text = "swampsorrowroot02.m2", }, { value = "swampsorrowroot03.m2", + text = "swampsorrowroot03.m2", fileId = "190384", text = "swampsorrowroot03.m2", }, @@ -26873,19 +32113,23 @@ WeakAuras.ModelPaths = { }, { value = "rocks", + text = "rocks", children = { { value = "swampsorrowrock01.m2", + text = "swampsorrowrock01.m2", fileId = "190388", text = "swampsorrowrock01.m2", }, { value = "swampsorrowrock02.m2", + text = "swampsorrowrock02.m2", fileId = "190389", text = "swampsorrowrock02.m2", }, { value = "swampsorrowrock03.m2", + text = "swampsorrowrock03.m2", fileId = "190390", text = "swampsorrowrock03.m2", }, @@ -26894,9 +32138,11 @@ WeakAuras.ModelPaths = { }, { value = "swampbeastbones", + text = "swampbeastbones", children = { { value = "swampbeastbone01.m2", + text = "swampbeastbone01.m2", fileId = "190393", text = "swampbeastbone01.m2", }, @@ -26905,9 +32151,11 @@ WeakAuras.ModelPaths = { }, { value = "swampboats", + text = "swampboats", children = { { value = "swampboat01.m2", + text = "swampboat01.m2", fileId = "190398", text = "swampboat01.m2", }, @@ -26916,14 +32164,17 @@ WeakAuras.ModelPaths = { }, { value = "swampskulls", + text = "swampskulls", children = { { value = "swampskulls01.m2", + text = "swampskulls01.m2", fileId = "190400", text = "swampskulls01.m2", }, { value = "swampskulls02.m2", + text = "swampskulls02.m2", fileId = "190401", text = "swampskulls02.m2", }, @@ -26932,9 +32183,11 @@ WeakAuras.ModelPaths = { }, { value = "swampsnakestatue", + text = "swampsnakestatue", children = { { value = "swampsnakestatue01.m2", + text = "swampsnakestatue01.m2", fileId = "190404", text = "swampsnakestatue01.m2", }, @@ -26943,9 +32196,11 @@ WeakAuras.ModelPaths = { }, { value = "swampwagon", + text = "swampwagon", children = { { value = "swampwagon01.m2", + text = "swampwagon01.m2", fileId = "190405", text = "swampwagon01.m2", }, @@ -26954,19 +32209,23 @@ WeakAuras.ModelPaths = { }, { value = "treehuts", + text = "treehuts", children = { { value = "losttreehuts01.m2", + text = "losttreehuts01.m2", fileId = "190408", text = "losttreehuts01.m2", }, { value = "losttreehuts02.m2", + text = "losttreehuts02.m2", fileId = "190409", text = "losttreehuts02.m2", }, { value = "losttreehuts03.m2", + text = "losttreehuts03.m2", fileId = "190410", text = "losttreehuts03.m2", }, @@ -26975,24 +32234,29 @@ WeakAuras.ModelPaths = { }, { value = "treelogs", + text = "treelogs", children = { { value = "swamptreelog01.m2", + text = "swamptreelog01.m2", fileId = "190411", text = "swamptreelog01.m2", }, { value = "swamptreelog02.m2", + text = "swamptreelog02.m2", fileId = "190412", text = "swamptreelog02.m2", }, { value = "swamptreelog03.m2", + text = "swamptreelog03.m2", fileId = "190413", text = "swamptreelog03.m2", }, { value = "swamptreelog04.m2", + text = "swamptreelog04.m2", fileId = "190414", text = "swamptreelog04.m2", }, @@ -27001,44 +32265,53 @@ WeakAuras.ModelPaths = { }, { value = "trees", + text = "trees", children = { { value = "swampsorrowcanopytree01.m2", + text = "swampsorrowcanopytree01.m2", fileId = "190418", text = "swampsorrowcanopytree01.m2", }, { value = "swampsorrowcanopytree02.m2", + text = "swampsorrowcanopytree02.m2", fileId = "190419", text = "swampsorrowcanopytree02.m2", }, { value = "swampsorrowcanopytree03.m2", + text = "swampsorrowcanopytree03.m2", fileId = "190420", text = "swampsorrowcanopytree03.m2", }, { value = "swampsorrowcanopytree04.m2", + text = "swampsorrowcanopytree04.m2", fileId = "190421", text = "swampsorrowcanopytree04.m2", }, { value = "swampsorrowcanopytree05.m2", + text = "swampsorrowcanopytree05.m2", fileId = "190422", text = "swampsorrowcanopytree05.m2", }, { value = "swampsorrowcanopytree06.m2", + text = "swampsorrowcanopytree06.m2", fileId = "190423", text = "swampsorrowcanopytree06.m2", }, { value = "swampsorrowtree01.m2", + text = "swampsorrowtree01.m2", fileId = "190424", text = "swampsorrowtree01.m2", }, { value = "swampsorrowtree02.m2", + text = "swampsorrowtree02.m2", fileId = "190425", text = "swampsorrowtree02.m2", }, @@ -27047,14 +32320,17 @@ WeakAuras.ModelPaths = { }, { value = "vines", + text = "vines", children = { { value = "swamphangingvines01.m2", + text = "swamphangingvines01.m2", fileId = "190428", text = "swamphangingvines01.m2", }, { value = "swamphangingvines02.m2", + text = "swamphangingvines02.m2", fileId = "190429", text = "swamphangingvines02.m2", }, @@ -27063,14 +32339,17 @@ WeakAuras.ModelPaths = { }, { value = "waterhuts", + text = "waterhuts", children = { { value = "waterhut01.m2", + text = "waterhut01.m2", fileId = "190430", text = "waterhut01.m2", }, { value = "waterhut02.m2", + text = "waterhut02.m2", fileId = "190431", text = "waterhut02.m2", }, @@ -27085,50 +32364,61 @@ WeakAuras.ModelPaths = { }, { value = "theblastedlands", + text = "theblastedlands", children = { { value = "passivedoodads", + text = "passivedoodads", children = { { value = "bones", + text = "bones", children = { { value = "blastedlandsblastedcow.m2", + text = "blastedlandsblastedcow.m2", fileId = "190434", text = "blastedlandsblastedcow.m2", }, { value = "blastedlandsblastedmule.m2", + text = "blastedlandsblastedmule.m2", fileId = "190435", text = "blastedlandsblastedmule.m2", }, { value = "blastedlandsbone01.m2", + text = "blastedlandsbone01.m2", fileId = "190436", text = "blastedlandsbone01.m2", }, { value = "blastedlandsbonepile02.m2", + text = "blastedlandsbonepile02.m2", fileId = "190437", text = "blastedlandsbonepile02.m2", }, { value = "blastedlandsbonepile03.m2", + text = "blastedlandsbonepile03.m2", fileId = "190438", text = "blastedlandsbonepile03.m2", }, { value = "blastedlandsskull01.m2", + text = "blastedlandsskull01.m2", fileId = "190439", text = "blastedlandsskull01.m2", }, { value = "blastedlandsskull02.m2", + text = "blastedlandsskull02.m2", fileId = "190440", text = "blastedlandsskull02.m2", }, { value = "blastedlandsspine01.m2", + text = "blastedlandsspine01.m2", fileId = "190441", text = "blastedlandsspine01.m2", }, @@ -27137,14 +32427,17 @@ WeakAuras.ModelPaths = { }, { value = "column", + text = "column", children = { { value = "blastedlandsbrokencolumn01.m2", + text = "blastedlandsbrokencolumn01.m2", fileId = "190444", text = "blastedlandsbrokencolumn01.m2", }, { value = "blastedlandsbrokencolumn02.m2", + text = "blastedlandsbrokencolumn02.m2", fileId = "190445", text = "blastedlandsbrokencolumn02.m2", }, @@ -27153,9 +32446,11 @@ WeakAuras.ModelPaths = { }, { value = "detail", + text = "detail", children = { { value = "blastedlandsrock01.m2", + text = "blastedlandsrock01.m2", fileId = "190447", text = "blastedlandsrock01.m2", }, @@ -27164,29 +32459,35 @@ WeakAuras.ModelPaths = { }, { value = "rocks", + text = "rocks", children = { { value = "blastedlandsportalrock01.m2", + text = "blastedlandsportalrock01.m2", fileId = "190450", text = "blastedlandsportalrock01.m2", }, { value = "blastedlandsportalrock02.m2", + text = "blastedlandsportalrock02.m2", fileId = "190451", text = "blastedlandsportalrock02.m2", }, { value = "blastedlandsportalrock03.m2", + text = "blastedlandsportalrock03.m2", fileId = "190452", text = "blastedlandsportalrock03.m2", }, { value = "blastedlandsrock02.m2", + text = "blastedlandsrock02.m2", fileId = "190453", text = "blastedlandsrock02.m2", }, { value = "blastedlandsrock03.m2", + text = "blastedlandsrock03.m2", fileId = "190454", text = "blastedlandsrock03.m2", }, @@ -27195,14 +32496,17 @@ WeakAuras.ModelPaths = { }, { value = "roots", + text = "roots", children = { { value = "blastedlandsroot01.m2", + text = "blastedlandsroot01.m2", fileId = "190456", text = "blastedlandsroot01.m2", }, { value = "blastedlandsroot03.m2", + text = "blastedlandsroot03.m2", fileId = "190457", text = "blastedlandsroot03.m2", }, @@ -27211,84 +32515,101 @@ WeakAuras.ModelPaths = { }, { value = "ruins", + text = "ruins", children = { { value = "blastedlandsportalruins01.m2", + text = "blastedlandsportalruins01.m2", fileId = "190462", text = "blastedlandsportalruins01.m2", }, { value = "blastedlandsportalruins02.m2", + text = "blastedlandsportalruins02.m2", fileId = "190463", text = "blastedlandsportalruins02.m2", }, { value = "blastedlandsportalruins03.m2", + text = "blastedlandsportalruins03.m2", fileId = "190464", text = "blastedlandsportalruins03.m2", }, { value = "blastedlandsruins01.m2", + text = "blastedlandsruins01.m2", fileId = "190466", text = "blastedlandsruins01.m2", }, { value = "blastedlandsruins02.m2", + text = "blastedlandsruins02.m2", fileId = "190467", text = "blastedlandsruins02.m2", }, { value = "blastedlandsruins03.m2", + text = "blastedlandsruins03.m2", fileId = "190468", text = "blastedlandsruins03.m2", }, { value = "blastedlandsruinstusk.m2", + text = "blastedlandsruinstusk.m2", fileId = "190469", text = "blastedlandsruinstusk.m2", }, { value = "brokengatearch.m2", + text = "brokengatearch.m2", fileId = "190470", text = "brokengatearch.m2", }, { value = "brokengatechain01.m2", + text = "brokengatechain01.m2", fileId = "190471", text = "brokengatechain01.m2", }, { value = "brokengatechain02.m2", + text = "brokengatechain02.m2", fileId = "190472", text = "brokengatechain02.m2", }, { value = "brokengateside01.m2", + text = "brokengateside01.m2", fileId = "190474", text = "brokengateside01.m2", }, { value = "brokengateside02.m2", + text = "brokengateside02.m2", fileId = "190475", text = "brokengateside02.m2", }, { value = "brokengatewall.m2", + text = "brokengatewall.m2", fileId = "190476", text = "brokengatewall.m2", }, { value = "brokengatewood01.m2", + text = "brokengatewood01.m2", fileId = "190477", text = "brokengatewood01.m2", }, { value = "brokengatewood02.m2", + text = "brokengatewood02.m2", fileId = "190478", text = "brokengatewood02.m2", }, { value = "brokengatewood03.m2", + text = "brokengatewood03.m2", fileId = "190479", text = "brokengatewood03.m2", }, @@ -27297,34 +32618,41 @@ WeakAuras.ModelPaths = { }, { value = "trees", + text = "trees", children = { { value = "blastedlandsashtree02.m2", + text = "blastedlandsashtree02.m2", fileId = "190484", text = "blastedlandsashtree02.m2", }, { value = "blastedlandsashtree03.m2", + text = "blastedlandsashtree03.m2", fileId = "190485", text = "blastedlandsashtree03.m2", }, { value = "blastedlandsblastedtree01.m2", + text = "blastedlandsblastedtree01.m2", fileId = "190486", text = "blastedlandsblastedtree01.m2", }, { value = "blastedlandsblastedtree03.m2", + text = "blastedlandsblastedtree03.m2", fileId = "190487", text = "blastedlandsblastedtree03.m2", }, { value = "blastedlandsblastedtree04.m2", + text = "blastedlandsblastedtree04.m2", fileId = "190488", text = "blastedlandsblastedtree04.m2", }, { value = "blastedlandstree01.m2", + text = "blastedlandstree01.m2", fileId = "190489", text = "blastedlandstree01.m2", }, @@ -27339,15 +32667,19 @@ WeakAuras.ModelPaths = { }, { value = "westfall", + text = "westfall", children = { { value = "buildings", + text = "buildings", children = { { value = "church", + text = "church", children = { { value = "westfallchurch.m2", + text = "westfallchurch.m2", fileId = "190505", text = "westfallchurch.m2", }, @@ -27356,9 +32688,11 @@ WeakAuras.ModelPaths = { }, { value = "grainsilo", + text = "grainsilo", children = { { value = "westfallgrainsilo01.m2", + text = "westfallgrainsilo01.m2", fileId = "190508", text = "westfallgrainsilo01.m2", }, @@ -27367,9 +32701,11 @@ WeakAuras.ModelPaths = { }, { value = "lighthouse", + text = "lighthouse", children = { { value = "westfalllighthouse.m2", + text = "westfalllighthouse.m2", fileId = "190515", text = "westfalllighthouse.m2", }, @@ -27378,9 +32714,11 @@ WeakAuras.ModelPaths = { }, { value = "shed", + text = "shed", children = { { value = "westfallshed.m2", + text = "westfallshed.m2", fileId = "190517", text = "westfallshed.m2", }, @@ -27389,9 +32727,11 @@ WeakAuras.ModelPaths = { }, { value = "windmill", + text = "windmill", children = { { value = "westfallwindmill.m2", + text = "westfallwindmill.m2", fileId = "190519", text = "westfallwindmill.m2", }, @@ -27403,57 +32743,69 @@ WeakAuras.ModelPaths = { }, { value = "passivedoodads", + text = "passivedoodads", children = { { value = "aquaduct", + text = "aquaduct", children = { { value = "aquaduct_corner1.m2", + text = "aquaduct_corner1.m2", fileId = "190520", text = "aquaduct_corner1.m2", }, { value = "aquaduct_corner2.m2", + text = "aquaduct_corner2.m2", fileId = "190521", text = "aquaduct_corner2.m2", }, { value = "aquaduct_longpillar.m2", + text = "aquaduct_longpillar.m2", fileId = "190522", text = "aquaduct_longpillar.m2", }, { value = "aquaduct_pillar1.m2", + text = "aquaduct_pillar1.m2", fileId = "190523", text = "aquaduct_pillar1.m2", }, { value = "aquaduct_pillar2.m2", + text = "aquaduct_pillar2.m2", fileId = "190524", text = "aquaduct_pillar2.m2", }, { value = "aquaduct_pillar3.m2", + text = "aquaduct_pillar3.m2", fileId = "190525", text = "aquaduct_pillar3.m2", }, { value = "aquaduct_short.m2", + text = "aquaduct_short.m2", fileId = "190526", text = "aquaduct_short.m2", }, { value = "aquaduct_straight.m2", + text = "aquaduct_straight.m2", fileId = "190527", text = "aquaduct_straight.m2", }, { value = "aquaduct_straight6.m2", + text = "aquaduct_straight6.m2", fileId = "190528", text = "aquaduct_straight6.m2", }, { value = "aquaduct_xsupport.m2", + text = "aquaduct_xsupport.m2", fileId = "190529", text = "aquaduct_xsupport.m2", }, @@ -27462,9 +32814,11 @@ WeakAuras.ModelPaths = { }, { value = "barrel", + text = "barrel", children = { { value = "westfallbarrel01.m2", + text = "westfallbarrel01.m2", fileId = "190535", text = "westfallbarrel01.m2", }, @@ -27473,9 +32827,11 @@ WeakAuras.ModelPaths = { }, { value = "brokencart", + text = "brokencart", children = { { value = "brokencart.m2", + text = "brokencart.m2", fileId = "190536", text = "brokencart.m2", }, @@ -27484,9 +32840,11 @@ WeakAuras.ModelPaths = { }, { value = "butterchurner", + text = "butterchurner", children = { { value = "butterchurner.m2", + text = "butterchurner.m2", fileId = "190537", text = "butterchurner.m2", }, @@ -27495,14 +32853,17 @@ WeakAuras.ModelPaths = { }, { value = "cages", + text = "cages", children = { { value = "hangingcage01.m2", + text = "hangingcage01.m2", fileId = "190541", text = "hangingcage01.m2", }, { value = "hangingcage02.m2", + text = "hangingcage02.m2", fileId = "190542", text = "hangingcage02.m2", }, @@ -27511,9 +32872,11 @@ WeakAuras.ModelPaths = { }, { value = "crate", + text = "crate", children = { { value = "westfallcrate.m2", + text = "westfallcrate.m2", fileId = "190543", text = "westfallcrate.m2", }, @@ -27522,9 +32885,11 @@ WeakAuras.ModelPaths = { }, { value = "deadcow", + text = "deadcow", children = { { value = "deadcow.m2", + text = "deadcow.m2", fileId = "190545", text = "deadcow.m2", }, @@ -27533,9 +32898,11 @@ WeakAuras.ModelPaths = { }, { value = "deadmule", + text = "deadmule", children = { { value = "deadmule.m2", + text = "deadmule.m2", fileId = "190546", text = "deadmule.m2", }, @@ -27544,14 +32911,17 @@ WeakAuras.ModelPaths = { }, { value = "deadseamonster", + text = "deadseamonster", children = { { value = "deadseamonster.m2", + text = "deadseamonster.m2", fileId = "190548", text = "deadseamonster.m2", }, { value = "seamonsterchunk.m2", + text = "seamonsterchunk.m2", fileId = "190549", text = "seamonsterchunk.m2", }, @@ -27560,74 +32930,89 @@ WeakAuras.ModelPaths = { }, { value = "detail", + text = "detail", children = { { value = "westfallberrybush.m2", + text = "westfallberrybush.m2", fileId = "190564", text = "westfallberrybush.m2", }, { value = "westfallbush01.m2", + text = "westfallbush01.m2", fileId = "190566", text = "westfallbush01.m2", }, { value = "westfallcabbage.m2", + text = "westfallcabbage.m2", fileId = "190567", text = "westfallcabbage.m2", }, { value = "westfallcatails.m2", + text = "westfallcatails.m2", fileId = "190568", text = "westfallcatails.m2", }, { value = "westfallcornfield.m2", + text = "westfallcornfield.m2", fileId = "190571", text = "westfallcornfield.m2", }, { value = "westfallcotton.m2", + text = "westfallcotton.m2", fileId = "190572", text = "westfallcotton.m2", }, { value = "westfalldandilion.m2", + text = "westfalldandilion.m2", fileId = "190573", text = "westfalldandilion.m2", }, { value = "westfalldriftwood.m2", + text = "westfalldriftwood.m2", fileId = "190574", text = "westfalldriftwood.m2", }, { value = "westfallmandrake.m2", + text = "westfallmandrake.m2", fileId = "190576", text = "westfallmandrake.m2", }, { value = "westfallreeds01.m2", + text = "westfallreeds01.m2", fileId = "190577", text = "westfallreeds01.m2", }, { value = "westfalltobbaco.m2", + text = "westfalltobbaco.m2", fileId = "190578", text = "westfalltobbaco.m2", }, { value = "westfallwheat01.m2", + text = "westfallwheat01.m2", fileId = "190579", text = "westfallwheat01.m2", }, { value = "westfallwheat02.m2", + text = "westfallwheat02.m2", fileId = "190580", text = "westfallwheat02.m2", }, { value = "westfallwheat03.m2", + text = "westfallwheat03.m2", fileId = "190581", text = "westfallwheat03.m2", }, @@ -27636,9 +33021,11 @@ WeakAuras.ModelPaths = { }, { value = "furniture", + text = "furniture", children = { { value = "westfallbed01.m2", + text = "westfallbed01.m2", fileId = "190586", text = "westfallbed01.m2", }, @@ -27647,9 +33034,11 @@ WeakAuras.ModelPaths = { }, { value = "grindstone", + text = "grindstone", children = { { value = "grindstone.m2", + text = "grindstone.m2", fileId = "190587", text = "grindstone.m2", }, @@ -27658,9 +33047,11 @@ WeakAuras.ModelPaths = { }, { value = "harempillow01", + text = "harempillow01", children = { { value = "harempillow01.m2", + text = "harempillow01.m2", fileId = "190592", text = "harempillow01.m2", }, @@ -27669,9 +33060,11 @@ WeakAuras.ModelPaths = { }, { value = "harempillow02", + text = "harempillow02", children = { { value = "harempillow02.m2", + text = "harempillow02.m2", fileId = "190595", text = "harempillow02.m2", }, @@ -27680,9 +33073,11 @@ WeakAuras.ModelPaths = { }, { value = "harness", + text = "harness", children = { { value = "harness.m2", + text = "harness.m2", fileId = "190596", text = "harness.m2", }, @@ -27691,14 +33086,17 @@ WeakAuras.ModelPaths = { }, { value = "haystack", + text = "haystack", children = { { value = "westfallhaystack01.m2", + text = "westfallhaystack01.m2", fileId = "190597", text = "westfallhaystack01.m2", }, { value = "westfallhaystack02.m2", + text = "westfallhaystack02.m2", fileId = "190598", text = "westfallhaystack02.m2", }, @@ -27707,9 +33105,11 @@ WeakAuras.ModelPaths = { }, { value = "haywagon", + text = "haywagon", children = { { value = "westfallhaywagon.m2", + text = "westfallhaywagon.m2", fileId = "190599", text = "westfallhaywagon.m2", }, @@ -27718,9 +33118,11 @@ WeakAuras.ModelPaths = { }, { value = "lampdeadmines", + text = "lampdeadmines", children = { { value = "lampdeadmines.m2", + text = "lampdeadmines.m2", fileId = "190608", text = "lampdeadmines.m2", }, @@ -27729,19 +33131,23 @@ WeakAuras.ModelPaths = { }, { value = "lamppost", + text = "lamppost", children = { { value = "westfalllamppost.m2", + text = "westfalllamppost.m2", fileId = "190612", text = "westfalllamppost.m2", }, { value = "westfalllamppost01.m2", + text = "westfalllamppost01.m2", fileId = "190613", text = "westfalllamppost01.m2", }, { value = "westfalllamppost02.m2", + text = "westfalllamppost02.m2", fileId = "190614", text = "westfalllamppost02.m2", }, @@ -27750,9 +33156,11 @@ WeakAuras.ModelPaths = { }, { value = "lighthousebeam", + text = "lighthousebeam", children = { { value = "lighthouseeffect.m2", + text = "lighthouseeffect.m2", fileId = "190615", text = "lighthouseeffect.m2", }, @@ -27761,9 +33169,11 @@ WeakAuras.ModelPaths = { }, { value = "outhouse", + text = "outhouse", children = { { value = "outhouse.m2", + text = "outhouse.m2", fileId = "190617", text = "outhouse.m2", }, @@ -27772,9 +33182,11 @@ WeakAuras.ModelPaths = { }, { value = "plow", + text = "plow", children = { { value = "plow.m2", + text = "plow.m2", fileId = "190619", text = "plow.m2", }, @@ -27783,9 +33195,11 @@ WeakAuras.ModelPaths = { }, { value = "rakecart", + text = "rakecart", children = { { value = "rakecart.m2", + text = "rakecart.m2", fileId = "190620", text = "rakecart.m2", }, @@ -27794,14 +33208,17 @@ WeakAuras.ModelPaths = { }, { value = "rocks", + text = "rocks", children = { { value = "westfallboulder01.m2", + text = "westfallboulder01.m2", fileId = "190623", text = "westfallboulder01.m2", }, { value = "westfallboulder02.m2", + text = "westfallboulder02.m2", fileId = "190624", text = "westfallboulder02.m2", }, @@ -27810,14 +33227,17 @@ WeakAuras.ModelPaths = { }, { value = "rugracks", + text = "rugracks", children = { { value = "rugrack01.m2", + text = "rugrack01.m2", fileId = "190626", text = "rugrack01.m2", }, { value = "rugrack02.m2", + text = "rugrack02.m2", fileId = "190627", text = "rugrack02.m2", }, @@ -27826,9 +33246,11 @@ WeakAuras.ModelPaths = { }, { value = "scarecrow", + text = "scarecrow", children = { { value = "westfallscarecrow.m2", + text = "westfallscarecrow.m2", fileId = "190629", text = "westfallscarecrow.m2", }, @@ -27837,9 +33259,11 @@ WeakAuras.ModelPaths = { }, { value = "sunkenanchor", + text = "sunkenanchor", children = { { value = "sunkenanchor.m2", + text = "sunkenanchor.m2", fileId = "190632", text = "sunkenanchor.m2", }, @@ -27848,24 +33272,29 @@ WeakAuras.ModelPaths = { }, { value = "tombstones", + text = "tombstones", children = { { value = "tombstone01.m2", + text = "tombstone01.m2", fileId = "190633", text = "tombstone01.m2", }, { value = "tombstone02.m2", + text = "tombstone02.m2", fileId = "190634", text = "tombstone02.m2", }, { value = "tombstone03.m2", + text = "tombstone03.m2", fileId = "190635", text = "tombstone03.m2", }, { value = "tombstone04.m2", + text = "tombstone04.m2", fileId = "190636", text = "tombstone04.m2", }, @@ -27874,29 +33303,35 @@ WeakAuras.ModelPaths = { }, { value = "trees", + text = "trees", children = { { value = "westfalltree01.m2", + text = "westfalltree01.m2", fileId = "190638", text = "westfalltree01.m2", }, { value = "westfalltree02.m2", + text = "westfalltree02.m2", fileId = "190639", text = "westfalltree02.m2", }, { value = "westfalltree03.m2", + text = "westfalltree03.m2", fileId = "190640", text = "westfalltree03.m2", }, { value = "westfalltree04.m2", + text = "westfalltree04.m2", fileId = "190641", text = "westfalltree04.m2", }, { value = "westfalltreecanopy01.m2", + text = "westfalltreecanopy01.m2", fileId = "190642", text = "westfalltreecanopy01.m2", }, @@ -27905,14 +33340,17 @@ WeakAuras.ModelPaths = { }, { value = "treestumps", + text = "treestumps", children = { { value = "westfalltreestump01.m2", + text = "westfalltreestump01.m2", fileId = "190647", text = "westfalltreestump01.m2", }, { value = "westfalltreestump02.m2", + text = "westfalltreestump02.m2", fileId = "190648", text = "westfalltreestump02.m2", }, @@ -27921,19 +33359,23 @@ WeakAuras.ModelPaths = { }, { value = "utensils", + text = "utensils", children = { { value = "bowl.m2", + text = "bowl.m2", fileId = "190650", text = "bowl.m2", }, { value = "plate.m2", + text = "plate.m2", fileId = "190653", text = "plate.m2", }, { value = "stein.m2", + text = "stein.m2", fileId = "190654", text = "stein.m2", }, @@ -27942,9 +33384,11 @@ WeakAuras.ModelPaths = { }, { value = "westfall stable", + text = "westfall stable", children = { { value = "westfallstable01.m2", + text = "westfallstable01.m2", fileId = "190655", text = "westfallstable01.m2", }, @@ -27953,9 +33397,11 @@ WeakAuras.ModelPaths = { }, { value = "westfall wagon", + text = "westfall wagon", children = { { value = "westfallwagon01.m2", + text = "westfallwagon01.m2", fileId = "190657", text = "westfallwagon01.m2", }, @@ -27964,9 +33410,11 @@ WeakAuras.ModelPaths = { }, { value = "westfallchair", + text = "westfallchair", children = { { value = "westfallchair.m2", + text = "westfallchair.m2", fileId = "190658", text = "westfallchair.m2", }, @@ -27975,19 +33423,23 @@ WeakAuras.ModelPaths = { }, { value = "westfallfence", + text = "westfallfence", children = { { value = "westfallfence.m2", + text = "westfallfence.m2", fileId = "190659", text = "westfallfence.m2", }, { value = "westfallfenceend.m2", + text = "westfallfenceend.m2", fileId = "190660", text = "westfallfenceend.m2", }, { value = "westfallfencepost.m2", + text = "westfallfencepost.m2", fileId = "190661", text = "westfallfencepost.m2", }, @@ -27996,9 +33448,11 @@ WeakAuras.ModelPaths = { }, { value = "westfallfountain", + text = "westfallfountain", children = { { value = "westfallfountain.m2", + text = "westfallfountain.m2", fileId = "190662", text = "westfallfountain.m2", }, @@ -28007,24 +33461,29 @@ WeakAuras.ModelPaths = { }, { value = "westfallruins", + text = "westfallruins", children = { { value = "westfallruins01.m2", + text = "westfallruins01.m2", fileId = "190666", text = "westfallruins01.m2", }, { value = "westfallruins02.m2", + text = "westfallruins02.m2", fileId = "190667", text = "westfallruins02.m2", }, { value = "westfallruins03.m2", + text = "westfallruins03.m2", fileId = "190668", text = "westfallruins03.m2", }, { value = "westfallruins04.m2", + text = "westfallruins04.m2", fileId = "190669", text = "westfallruins04.m2", }, @@ -28033,9 +33492,11 @@ WeakAuras.ModelPaths = { }, { value = "westfallskeleton", + text = "westfallskeleton", children = { { value = "westfallskeleton.m2", + text = "westfallskeleton.m2", fileId = "190671", text = "westfallskeleton.m2", }, @@ -28044,9 +33505,11 @@ WeakAuras.ModelPaths = { }, { value = "westfalltable", + text = "westfalltable", children = { { value = "westfalltable.m2", + text = "westfalltable.m2", fileId = "190673", text = "westfalltable.m2", }, @@ -28055,9 +33518,11 @@ WeakAuras.ModelPaths = { }, { value = "westfallvineyards", + text = "westfallvineyards", children = { { value = "westfallvineyard01.m2", + text = "westfallvineyard01.m2", fileId = "190675", text = "westfallvineyard01.m2", }, @@ -28066,9 +33531,11 @@ WeakAuras.ModelPaths = { }, { value = "wreckedrowboat", + text = "wreckedrowboat", children = { { value = "wreckedrowboat.m2", + text = "wreckedrowboat.m2", fileId = "190677", text = "wreckedrowboat.m2", }, @@ -28083,25 +33550,31 @@ WeakAuras.ModelPaths = { }, { value = "zulgurub", + text = "zulgurub", children = { { value = "activedoodads", + text = "activedoodads", children = { { value = "doors", + text = "doors", children = { { value = "collisionwallpendoor01.m2", + text = "collisionwallpendoor01.m2", fileId = "190678", text = "collisionwallpendoor01.m2", }, { value = "zulgurubforcefield.m2", + text = "zulgurubforcefield.m2", fileId = "190680", text = "zulgurubforcefield.m2", }, { value = "zulgurubpendoor.m2", + text = "zulgurubpendoor.m2", fileId = "190681", text = "zulgurubpendoor.m2", }, @@ -28110,9 +33583,11 @@ WeakAuras.ModelPaths = { }, { value = "maindoor", + text = "maindoor", children = { { value = "zulgurubmaindoor.m2", + text = "zulgurubmaindoor.m2", fileId = "190683", text = "zulgurubmaindoor.m2", }, @@ -28121,9 +33596,11 @@ WeakAuras.ModelPaths = { }, { value = "spiderarea", + text = "spiderarea", children = { { value = "nastyspideregg.m2", + text = "nastyspideregg.m2", fileId = "190685", text = "nastyspideregg.m2", }, @@ -28132,9 +33609,11 @@ WeakAuras.ModelPaths = { }, { value = "voodoopile", + text = "voodoopile", children = { { value = "voodoopile01.m2", + text = "voodoopile01.m2", fileId = "190688", text = "voodoopile01.m2", }, @@ -28146,12 +33625,15 @@ WeakAuras.ModelPaths = { }, { value = "passivedoodads", + text = "passivedoodads", children = { { value = "battotem", + text = "battotem", children = { { value = "trollbattotem.m2", + text = "trollbattotem.m2", fileId = "190690", text = "trollbattotem.m2", }, @@ -28160,9 +33642,11 @@ WeakAuras.ModelPaths = { }, { value = "heart", + text = "heart", children = { { value = "heartofhakkar.m2", + text = "heartofhakkar.m2", fileId = "190693", text = "heartofhakkar.m2", }, @@ -28171,9 +33655,11 @@ WeakAuras.ModelPaths = { }, { value = "lightning", + text = "lightning", children = { { value = "zulgurublightningmadness.m2", + text = "zulgurublightningmadness.m2", fileId = "190694", text = "zulgurublightningmadness.m2", }, @@ -28182,24 +33668,29 @@ WeakAuras.ModelPaths = { }, { value = "ruins", + text = "ruins", children = { { value = "zulgurubruins04.m2", + text = "zulgurubruins04.m2", fileId = "190695", text = "zulgurubruins04.m2", }, { value = "zulgurubruins05.m2", + text = "zulgurubruins05.m2", fileId = "190696", text = "zulgurubruins05.m2", }, { value = "zulgurubruins06.m2", + text = "zulgurubruins06.m2", fileId = "190697", text = "zulgurubruins06.m2", }, { value = "zulgurubruins07.m2", + text = "zulgurubruins07.m2", fileId = "190698", text = "zulgurubruins07.m2", }, @@ -28208,29 +33699,35 @@ WeakAuras.ModelPaths = { }, { value = "spiderarea", + text = "spiderarea", children = { { value = "nastyspiderweb01.m2", + text = "nastyspiderweb01.m2", fileId = "190699", text = "nastyspiderweb01.m2", }, { value = "nastyspiderweb02.m2", + text = "nastyspiderweb02.m2", fileId = "190700", text = "nastyspiderweb02.m2", }, { value = "nastyspiderweb03.m2", + text = "nastyspiderweb03.m2", fileId = "190701", text = "nastyspiderweb03.m2", }, { value = "spiderpod01.m2", + text = "spiderpod01.m2", fileId = "190706", text = "spiderpod01.m2", }, { value = "spiderpod02.m2", + text = "spiderpod02.m2", fileId = "190707", text = "spiderpod02.m2", }, @@ -28239,29 +33736,35 @@ WeakAuras.ModelPaths = { }, { value = "trees", + text = "trees", children = { { value = "zulgurubtree01.m2", + text = "zulgurubtree01.m2", fileId = "190711", text = "zulgurubtree01.m2", }, { value = "zulgurubtree02.m2", + text = "zulgurubtree02.m2", fileId = "190712", text = "zulgurubtree02.m2", }, { value = "zulgurubtree03.m2", + text = "zulgurubtree03.m2", fileId = "190713", text = "zulgurubtree03.m2", }, { value = "zulgurubtree04.m2", + text = "zulgurubtree04.m2", fileId = "190714", text = "zulgurubtree04.m2", }, { value = "zulgurubtree05.m2", + text = "zulgurubtree05.m2", fileId = "190715", text = "zulgurubtree05.m2", }, @@ -28279,17 +33782,21 @@ WeakAuras.ModelPaths = { }, { value = "critter", + text = "critter", children = { { value = "bats", + text = "bats", children = { { value = "bat01.m2", + text = "bat01.m2", fileId = "190716", text = "bat01.m2", }, { value = "bat02.m2", + text = "bat02.m2", fileId = "190717", text = "bat02.m2", }, @@ -28298,24 +33805,29 @@ WeakAuras.ModelPaths = { }, { value = "birds", + text = "birds", children = { { value = "bird01.m2", + text = "bird01.m2", fileId = "190719", text = "bird01.m2", }, { value = "bird02.m2", + text = "bird02.m2", fileId = "190720", text = "bird02.m2", }, { value = "wasp01.m2", + text = "wasp01.m2", fileId = "190723", text = "wasp01.m2", }, { value = "wasp02.m2", + text = "wasp02.m2", fileId = "190724", text = "wasp02.m2", }, @@ -28324,19 +33836,23 @@ WeakAuras.ModelPaths = { }, { value = "butterflies", + text = "butterflies", children = { { value = "butterflyorange01.m2", + text = "butterflyorange01.m2", fileId = "190725", text = "butterflyorange01.m2", }, { value = "butterflypurple01.m2", + text = "butterflypurple01.m2", fileId = "190726", text = "butterflypurple01.m2", }, { value = "butterflywhite01.m2", + text = "butterflywhite01.m2", fileId = "190727", text = "butterflywhite01.m2", }, @@ -28345,9 +33861,11 @@ WeakAuras.ModelPaths = { }, { value = "fireflies", + text = "fireflies", children = { { value = "fireflies01.m2", + text = "fireflies01.m2", fileId = "190731", text = "fireflies01.m2", }, @@ -28356,9 +33874,11 @@ WeakAuras.ModelPaths = { }, { value = "fish", + text = "fish", children = { { value = "fish01.m2", + text = "fish01.m2", fileId = "190733", text = "fish01.m2", }, @@ -28367,9 +33887,11 @@ WeakAuras.ModelPaths = { }, { value = "flies", + text = "flies", children = { { value = "flies01.m2", + text = "flies01.m2", fileId = "190739", text = "flies01.m2", }, @@ -28381,69 +33903,83 @@ WeakAuras.ModelPaths = { }, { value = "detail", + text = "detail", children = { { value = "drkbus01.m2", + text = "drkbus01.m2", fileId = "2198651", text = "drkbus01.m2", }, { value = "drkbus02.m2", + text = "drkbus02.m2", fileId = "2198569", text = "drkbus02.m2", }, { value = "drkbus03.m2", + text = "drkbus03.m2", fileId = "2198633", text = "drkbus03.m2", }, { value = "drkbus04.m2", + text = "drkbus04.m2", fileId = "2198552", text = "drkbus04.m2", }, { value = "drkbus05.m2", + text = "drkbus05.m2", fileId = "2198589", text = "drkbus05.m2", }, { value = "drkbus06.m2", + text = "drkbus06.m2", fileId = "2198528", text = "drkbus06.m2", }, { value = "drkbus07.m2", + text = "drkbus07.m2", fileId = "2199417", text = "drkbus07.m2", }, { value = "drkgra01.m2", + text = "drkgra01.m2", fileId = "2198572", text = "drkgra01.m2", }, { value = "drkgra02.m2", + text = "drkgra02.m2", fileId = "2198494", text = "drkgra02.m2", }, { value = "drkgra03.m2", + text = "drkgra03.m2", fileId = "2198594", text = "drkgra03.m2", }, { value = "drkgra04.m2", + text = "drkgra04.m2", fileId = "2198627", text = "drkgra04.m2", }, { value = "drkgra05.m2", + text = "drkgra05.m2", fileId = "2198545", text = "drkgra05.m2", }, { value = "drkgra06.m2", + text = "drkgra06.m2", fileId = "2198584", text = "drkgra06.m2", }, @@ -28452,30 +33988,37 @@ WeakAuras.ModelPaths = { }, { value = "dreaming", + text = "dreaming", children = { { value = "passivedoodads", + text = "passivedoodads", children = { { value = "dreamcatchers", + text = "dreamcatchers", children = { { value = "emeralddreamcatcher01.m2", + text = "emeralddreamcatcher01.m2", fileId = "190755", text = "emeralddreamcatcher01.m2", }, { value = "emeralddreamcatcher02.m2", + text = "emeralddreamcatcher02.m2", fileId = "190756", text = "emeralddreamcatcher02.m2", }, { value = "emeralddreamcatcher03.m2", + text = "emeralddreamcatcher03.m2", fileId = "190757", text = "emeralddreamcatcher03.m2", }, { value = "emeralddreamcatcher04.m2", + text = "emeralddreamcatcher04.m2", fileId = "190758", text = "emeralddreamcatcher04.m2", }, @@ -28484,9 +34027,11 @@ WeakAuras.ModelPaths = { }, { value = "emeralddreamgiant", + text = "emeralddreamgiant", children = { { value = "emeralddreamgiant01.m2", + text = "emeralddreamgiant01.m2", fileId = "190760", text = "emeralddreamgiant01.m2", }, @@ -28495,69 +34040,83 @@ WeakAuras.ModelPaths = { }, { value = "flowers", + text = "flowers", children = { { value = "dnrdreambellflower01.m2", + text = "dnrdreambellflower01.m2", fileId = "190763", text = "dnrdreambellflower01.m2", }, { value = "dnrdreambellflower02.m2", + text = "dnrdreambellflower02.m2", fileId = "190764", text = "dnrdreambellflower02.m2", }, { value = "dnrdreambellflower03.m2", + text = "dnrdreambellflower03.m2", fileId = "190765", text = "dnrdreambellflower03.m2", }, { value = "dnrdreamdrippingflower01.m2", + text = "dnrdreamdrippingflower01.m2", fileId = "190766", text = "dnrdreamdrippingflower01.m2", }, { value = "dnrdreamdrippingflower02.m2", + text = "dnrdreamdrippingflower02.m2", fileId = "190767", text = "dnrdreamdrippingflower02.m2", }, { value = "dnrdreamdroopingflower01.m2", + text = "dnrdreamdroopingflower01.m2", fileId = "190768", text = "dnrdreamdroopingflower01.m2", }, { value = "dnrdreamdroopingflower02.m2", + text = "dnrdreamdroopingflower02.m2", fileId = "190769", text = "dnrdreamdroopingflower02.m2", }, { value = "dnrdreamorangeflower01.m2", + text = "dnrdreamorangeflower01.m2", fileId = "190770", text = "dnrdreamorangeflower01.m2", }, { value = "dnrdreamorangeflower02.m2", + text = "dnrdreamorangeflower02.m2", fileId = "190771", text = "dnrdreamorangeflower02.m2", }, { value = "dnrdreampurpleflower01.m2", + text = "dnrdreampurpleflower01.m2", fileId = "190772", text = "dnrdreampurpleflower01.m2", }, { value = "dnrdreampurpleflower02.m2", + text = "dnrdreampurpleflower02.m2", fileId = "190773", text = "dnrdreampurpleflower02.m2", }, { value = "dnrdreampurpleflower03.m2", + text = "dnrdreampurpleflower03.m2", fileId = "190774", text = "dnrdreampurpleflower03.m2", }, { value = "dnrdreamspinningflower01.m2", + text = "dnrdreamspinningflower01.m2", fileId = "190775", text = "dnrdreamspinningflower01.m2", }, @@ -28566,29 +34125,35 @@ WeakAuras.ModelPaths = { }, { value = "trees", + text = "trees", children = { { value = "emeralddreamfountaintree01.m2", + text = "emeralddreamfountaintree01.m2", fileId = "190793", text = "emeralddreamfountaintree01.m2", }, { value = "emeralddreamfountaintree02.m2", + text = "emeralddreamfountaintree02.m2", fileId = "190794", text = "emeralddreamfountaintree02.m2", }, { value = "emeralddreamfountaintree03.m2", + text = "emeralddreamfountaintree03.m2", fileId = "190795", text = "emeralddreamfountaintree03.m2", }, { value = "emeralddreamfountaintree04.m2", + text = "emeralddreamfountaintree04.m2", fileId = "190796", text = "emeralddreamfountaintree04.m2", }, { value = "emeralddreamfountaintree05.m2", + text = "emeralddreamfountaintree05.m2", fileId = "190797", text = "emeralddreamfountaintree05.m2", }, @@ -28603,58 +34168,71 @@ WeakAuras.ModelPaths = { }, { value = "dungeon", + text = "dungeon", children = { { value = "cave", + text = "cave", children = { { value = "passivedoodads", + text = "passivedoodads", children = { { value = "crystals", + text = "crystals", children = { { value = "basiliskcrystal02.m2", + text = "basiliskcrystal02.m2", fileId = "190803", text = "basiliskcrystal02.m2", }, { value = "caveminecrystalformation01.m2", + text = "caveminecrystalformation01.m2", fileId = "190804", text = "caveminecrystalformation01.m2", }, { value = "caveminecrystalformation02.m2", + text = "caveminecrystalformation02.m2", fileId = "190805", text = "caveminecrystalformation02.m2", }, { value = "caveminecrystalformation03.m2", + text = "caveminecrystalformation03.m2", fileId = "190806", text = "caveminecrystalformation03.m2", }, { value = "caveminecrystalformation04.m2", + text = "caveminecrystalformation04.m2", fileId = "190807", text = "caveminecrystalformation04.m2", }, { value = "caveminecrystalformation05.m2", + text = "caveminecrystalformation05.m2", fileId = "190808", text = "caveminecrystalformation05.m2", }, { value = "caveminecrystalformation06.m2", + text = "caveminecrystalformation06.m2", fileId = "190809", text = "caveminecrystalformation06.m2", }, { value = "caveminecrystalformation07.m2", + text = "caveminecrystalformation07.m2", fileId = "190810", text = "caveminecrystalformation07.m2", }, { value = "caveminecrystalformation08.m2", + text = "caveminecrystalformation08.m2", fileId = "190811", text = "caveminecrystalformation08.m2", }, @@ -28663,14 +34241,17 @@ WeakAuras.ModelPaths = { }, { value = "icicles", + text = "icicles", children = { { value = "caveicicle1.m2", + text = "caveicicle1.m2", fileId = "190813", text = "caveicicle1.m2", }, { value = "caveicicle2.m2", + text = "caveicicle2.m2", fileId = "190814", text = "caveicicle2.m2", }, @@ -28679,9 +34260,11 @@ WeakAuras.ModelPaths = { }, { value = "stalagmite", + text = "stalagmite", children = { { value = "stalagmite01.m2", + text = "stalagmite01.m2", fileId = "190815", text = "stalagmite01.m2", }, @@ -28690,24 +34273,29 @@ WeakAuras.ModelPaths = { }, { value = "stalagtite", + text = "stalagtite", children = { { value = "deadminesstalagtite01.m2", + text = "deadminesstalagtite01.m2", fileId = "190816", text = "deadminesstalagtite01.m2", }, { value = "deadminesstalagtite02.m2", + text = "deadminesstalagtite02.m2", fileId = "190817", text = "deadminesstalagtite02.m2", }, { value = "stalagtite01.m2", + text = "stalagtite01.m2", fileId = "190819", text = "stalagtite01.m2", }, { value = "stalagtite02.m2", + text = "stalagtite02.m2", fileId = "190820", text = "stalagtite02.m2", }, @@ -28722,15 +34310,19 @@ WeakAuras.ModelPaths = { }, { value = "cavernsoftime", + text = "cavernsoftime", children = { { value = "activedoodads", + text = "activedoodads", children = { { value = "cavernsoftimedoor", + text = "cavernsoftimedoor", children = { { value = "caverndoor.m2", + text = "caverndoor.m2", fileId = "190822", text = "caverndoor.m2", }, @@ -28742,22 +34334,27 @@ WeakAuras.ModelPaths = { }, { value = "passivedoodads", + text = "passivedoodads", children = { { value = "darkportal", + text = "darkportal", children = { { value = "cot_portalparticles.m2", + text = "cot_portalparticles.m2", fileId = "190823", text = "cot_portalparticles.m2", }, { value = "cot_standingstone01.m2", + text = "cot_standingstone01.m2", fileId = "190824", text = "cot_standingstone01.m2", }, { value = "cot_standingstone02.m2", + text = "cot_standingstone02.m2", fileId = "190825", text = "cot_standingstone02.m2", }, @@ -28766,89 +34363,107 @@ WeakAuras.ModelPaths = { }, { value = "energytrails", + text = "energytrails", children = { { value = "energytrail01.m2", + text = "energytrail01.m2", fileId = "190828", text = "energytrail01.m2", }, { value = "energytrail01b.m2", + text = "energytrail01b.m2", fileId = "190829", text = "energytrail01b.m2", }, { value = "energytrail01c.m2", + text = "energytrail01c.m2", fileId = "190830", text = "energytrail01c.m2", }, { value = "energytrail02.m2", + text = "energytrail02.m2", fileId = "190831", text = "energytrail02.m2", }, { value = "energytrail02b.m2", + text = "energytrail02b.m2", fileId = "190832", text = "energytrail02b.m2", }, { value = "energytrail03.m2", + text = "energytrail03.m2", fileId = "190833", text = "energytrail03.m2", }, { value = "energytrail03b.m2", + text = "energytrail03b.m2", fileId = "190834", text = "energytrail03b.m2", }, { value = "energytrail04.m2", + text = "energytrail04.m2", fileId = "190835", text = "energytrail04.m2", }, { value = "energytrail04b.m2", + text = "energytrail04b.m2", fileId = "190836", text = "energytrail04b.m2", }, { value = "energytrail05.m2", + text = "energytrail05.m2", fileId = "190837", text = "energytrail05.m2", }, { value = "energytrail05b.m2", + text = "energytrail05b.m2", fileId = "190838", text = "energytrail05b.m2", }, { value = "energytrail05c.m2", + text = "energytrail05c.m2", fileId = "190839", text = "energytrail05c.m2", }, { value = "energytrailhourglass.m2", + text = "energytrailhourglass.m2", fileId = "190840", text = "energytrailhourglass.m2", }, { value = "energytrailhourglassb.m2", + text = "energytrailhourglassb.m2", fileId = "190841", text = "energytrailhourglassb.m2", }, { value = "energytrailhourglassblue.m2", + text = "energytrailhourglassblue.m2", fileId = "190842", text = "energytrailhourglassblue.m2", }, { value = "energytrailhourglasspink.m2", + text = "energytrailhourglasspink.m2", fileId = "190843", text = "energytrailhourglasspink.m2", }, { value = "energytrailhourglassred.m2", + text = "energytrailhourglassred.m2", fileId = "190844", text = "energytrailhourglassred.m2", }, @@ -28857,9 +34472,11 @@ WeakAuras.ModelPaths = { }, { value = "hourglass", + text = "hourglass", children = { { value = "cot_hourglass.m2", + text = "cot_hourglass.m2", fileId = "190849", text = "cot_hourglass.m2", }, @@ -28868,9 +34485,11 @@ WeakAuras.ModelPaths = { }, { value = "portal", + text = "portal", children = { { value = "cot_portal01.m2", + text = "cot_portal01.m2", fileId = "190858", text = "cot_portal01.m2", }, @@ -28885,25 +34504,31 @@ WeakAuras.ModelPaths = { }, { value = "goldmine", + text = "goldmine", children = { { value = "passivedoodads", + text = "passivedoodads", children = { { value = "cavelanterns", + text = "cavelanterns", children = { { value = "caveminelantern01.m2", + text = "caveminelantern01.m2", fileId = "190869", text = "caveminelantern01.m2", }, { value = "caveminelantern02.m2", + text = "caveminelantern02.m2", fileId = "190870", text = "caveminelantern02.m2", }, { value = "caveminelantern03.m2", + text = "caveminelantern03.m2", fileId = "190871", text = "caveminelantern03.m2", }, @@ -28912,29 +34537,35 @@ WeakAuras.ModelPaths = { }, { value = "caveminekobolds", + text = "caveminekobolds", children = { { value = "caveminekobold01.m2", + text = "caveminekobold01.m2", fileId = "190872", text = "caveminekobold01.m2", }, { value = "caveminekobold02.m2", + text = "caveminekobold02.m2", fileId = "190873", text = "caveminekobold02.m2", }, { value = "caveminekobold04.m2", + text = "caveminekobold04.m2", fileId = "190874", text = "caveminekobold04.m2", }, { value = "caveminekobold05.m2", + text = "caveminekobold05.m2", fileId = "190875", text = "caveminekobold05.m2", }, { value = "caveminekobold06.m2", + text = "caveminekobold06.m2", fileId = "190876", text = "caveminekobold06.m2", }, @@ -28943,9 +34574,11 @@ WeakAuras.ModelPaths = { }, { value = "caveminespiderpillar01", + text = "caveminespiderpillar01", children = { { value = "caveminespiderpillar01.m2", + text = "caveminespiderpillar01.m2", fileId = "190880", text = "caveminespiderpillar01.m2", }, @@ -28954,14 +34587,17 @@ WeakAuras.ModelPaths = { }, { value = "cavespiderwebs", + text = "cavespiderwebs", children = { { value = "cavespiderweb01.m2", + text = "cavespiderweb01.m2", fileId = "190882", text = "cavespiderweb01.m2", }, { value = "cavespiderweb02.m2", + text = "cavespiderweb02.m2", fileId = "190883", text = "cavespiderweb02.m2", }, @@ -28976,12 +34612,15 @@ WeakAuras.ModelPaths = { }, { value = "goldshireinn", + text = "goldshireinn", children = { { value = "innbarrel", + text = "innbarrel", children = { { value = "innbarrel.m2", + text = "innbarrel.m2", fileId = "190885", text = "innbarrel.m2", }, @@ -28990,9 +34629,11 @@ WeakAuras.ModelPaths = { }, { value = "innbed", + text = "innbed", children = { { value = "innbed.m2", + text = "innbed.m2", fileId = "190886", text = "innbed.m2", }, @@ -29001,9 +34642,11 @@ WeakAuras.ModelPaths = { }, { value = "innbedcanopy", + text = "innbedcanopy", children = { { value = "innbedcanopy.m2", + text = "innbedcanopy.m2", fileId = "190887", text = "innbedcanopy.m2", }, @@ -29012,9 +34655,11 @@ WeakAuras.ModelPaths = { }, { value = "innchandelier", + text = "innchandelier", children = { { value = "innchandelier.m2", + text = "innchandelier.m2", fileId = "190890", text = "innchandelier.m2", }, @@ -29023,9 +34668,11 @@ WeakAuras.ModelPaths = { }, { value = "innlantern", + text = "innlantern", children = { { value = "innlantern.m2", + text = "innlantern.m2", fileId = "190893", text = "innlantern.m2", }, @@ -29034,9 +34681,11 @@ WeakAuras.ModelPaths = { }, { value = "innpillow", + text = "innpillow", children = { { value = "innpillow.m2", + text = "innpillow.m2", fileId = "190895", text = "innpillow.m2", }, @@ -29048,20 +34697,25 @@ WeakAuras.ModelPaths = { }, { value = "scarletmonastery", + text = "scarletmonastery", children = { { value = "passivedoodads", + text = "passivedoodads", children = { { value = "fountains", + text = "fountains", children = { { value = "fishfountain.m2", + text = "fishfountain.m2", fileId = "190898", text = "fishfountain.m2", }, { value = "monasteryfalls.m2", + text = "monasteryfalls.m2", fileId = "190900", text = "monasteryfalls.m2", }, @@ -29070,84 +34724,101 @@ WeakAuras.ModelPaths = { }, { value = "statues", + text = "statues", children = { { value = "statuedmmountainking.m2", + text = "statuedmmountainking.m2", fileId = "190914", text = "statuedmmountainking.m2", }, { value = "statuefountain.m2", + text = "statuefountain.m2", fileId = "190915", text = "statuefountain.m2", }, { value = "statuehefranger.m2", + text = "statuehefranger.m2", fileId = "190916", text = "statuehefranger.m2", }, { value = "statuehemmage.m2", + text = "statuehemmage.m2", fileId = "190917", text = "statuehemmage.m2", }, { value = "statuehfspear.m2", + text = "statuehfspear.m2", fileId = "190918", text = "statuehfspear.m2", }, { value = "statuehfsunshield.m2", + text = "statuehfsunshield.m2", fileId = "190919", text = "statuehfsunshield.m2", }, { value = "statuehfsunshieldclean.m2", + text = "statuehfsunshieldclean.m2", fileId = "190920", text = "statuehfsunshieldclean.m2", }, { value = "statuehftwinblades.m2", + text = "statuehftwinblades.m2", fileId = "190921", text = "statuehftwinblades.m2", }, { value = "statuehmcaptain.m2", + text = "statuehmcaptain.m2", fileId = "190922", text = "statuehmcaptain.m2", }, { value = "statuehmcaptainclean.m2", + text = "statuehmcaptainclean.m2", fileId = "190923", text = "statuehmcaptainclean.m2", }, { value = "statuehmcrusader.m2", + text = "statuehmcrusader.m2", fileId = "190924", text = "statuehmcrusader.m2", }, { value = "statuehmcrusaderclean.m2", + text = "statuehmcrusaderclean.m2", fileId = "190925", text = "statuehmcrusaderclean.m2", }, { value = "statuehmcrusadersoldier.m2", + text = "statuehmcrusadersoldier.m2", fileId = "190926", text = "statuehmcrusadersoldier.m2", }, { value = "statuehmonearm.m2", + text = "statuehmonearm.m2", fileId = "190927", text = "statuehmonearm.m2", }, { value = "statuehmpaladin.m2", + text = "statuehmpaladin.m2", fileId = "190928", text = "statuehmpaladin.m2", }, { value = "statuehmpriest.m2", + text = "statuehmpriest.m2", fileId = "190929", text = "statuehmpriest.m2", }, @@ -29165,23 +34836,29 @@ WeakAuras.ModelPaths = { }, { value = "environment", + text = "environment", children = { { value = "doodad", + text = "doodad", children = { { value = "anquiraj", + text = "anquiraj", children = { { value = "fireflies", + text = "fireflies", children = { { value = "hive_fireflies_01.m2", + text = "hive_fireflies_01.m2", fileId = "190963", text = "hive_fireflies_01.m2", }, { value = "hive_fireflies_large.m2", + text = "hive_fireflies_large.m2", fileId = "190964", text = "hive_fireflies_large.m2", }, @@ -29190,14 +34867,17 @@ WeakAuras.ModelPaths = { }, { value = "lightshaft", + text = "lightshaft", children = { { value = "hive_lightshaft01.m2", + text = "hive_lightshaft01.m2", fileId = "190967", text = "hive_lightshaft01.m2", }, { value = "hive_lightshaft02.m2", + text = "hive_lightshaft02.m2", fileId = "190968", text = "hive_lightshaft02.m2", }, @@ -29206,14 +34886,17 @@ WeakAuras.ModelPaths = { }, { value = "sandwaterfall", + text = "sandwaterfall", children = { { value = "hive_sand.m2", + text = "hive_sand.m2", fileId = "190970", text = "hive_sand.m2", }, { value = "hive_sandwaterfall.m2", + text = "hive_sandwaterfall.m2", fileId = "190971", text = "hive_sandwaterfall.m2", }, @@ -29222,9 +34905,11 @@ WeakAuras.ModelPaths = { }, { value = "steam", + text = "steam", children = { { value = "hivesteam.m2", + text = "hivesteam.m2", fileId = "190974", text = "hivesteam.m2", }, @@ -29236,104 +34921,125 @@ WeakAuras.ModelPaths = { }, { value = "carnival", + text = "carnival", children = { { value = "animaltrainer.m2", + text = "animaltrainer.m2", fileId = "191009", text = "animaltrainer.m2", }, { value = "carni_cannon.m2", + text = "carni_cannon.m2", fileId = "191016", text = "carni_cannon.m2", }, { value = "carni_cannontarget.m2", + text = "carni_cannontarget.m2", fileId = "191018", text = "carni_cannontarget.m2", }, { value = "carni_wagon01.m2", + text = "carni_wagon01.m2", fileId = "191019", text = "carni_wagon01.m2", }, { value = "carni_wagon_empty01.m2", + text = "carni_wagon_empty01.m2", fileId = "191020", text = "carni_wagon_empty01.m2", }, { value = "carnie_merchant01.m2", + text = "carnie_merchant01.m2", fileId = "191021", text = "carnie_merchant01.m2", }, { value = "carnietent_small01.m2", + text = "carnietent_small01.m2", fileId = "191022", text = "carnietent_small01.m2", }, { value = "carnival_banner01.m2", + text = "carnival_banner01.m2", fileId = "191023", text = "carnival_banner01.m2", }, { value = "carnival_banner02.m2", + text = "carnival_banner02.m2", fileId = "191024", text = "carnival_banner02.m2", }, { value = "carnivalrailing.m2", + text = "carnivalrailing.m2", fileId = "191025", text = "carnivalrailing.m2", }, { value = "coketent.m2", + text = "coketent.m2", fileId = "191026", text = "coketent.m2", }, { value = "darkmoonfaireposter.m2", + text = "darkmoonfaireposter.m2", fileId = "191029", text = "darkmoonfaireposter.m2", }, { value = "foodvendor.m2", + text = "foodvendor.m2", fileId = "191031", text = "foodvendor.m2", }, { value = "fortuneteller.m2", + text = "fortuneteller.m2", fileId = "191032", text = "fortuneteller.m2", }, { value = "haybail01.m2", + text = "haybail01.m2", fileId = "191033", text = "haybail01.m2", }, { value = "haybail02.m2", + text = "haybail02.m2", fileId = "191034", text = "haybail02.m2", }, { value = "shoutbox.m2", + text = "shoutbox.m2", fileId = "191037", text = "shoutbox.m2", }, { value = "souvenireshop.m2", + text = "souvenireshop.m2", fileId = "191038", text = "souvenireshop.m2", }, { value = "targetpractice.m2", + text = "targetpractice.m2", fileId = "191039", text = "targetpractice.m2", }, { value = "ticketmaster.m2", + text = "ticketmaster.m2", fileId = "191040", text = "ticketmaster.m2", }, @@ -29342,42 +35048,51 @@ WeakAuras.ModelPaths = { }, { value = "desolace", + text = "desolace", children = { { value = "centaurruins", + text = "centaurruins", children = { { value = "centaur_arch01.m2", + text = "centaur_arch01.m2", fileId = "2198606", text = "centaur_arch01.m2", }, { value = "centaur_brokearch01.m2", + text = "centaur_brokearch01.m2", fileId = "2198556", text = "centaur_brokearch01.m2", }, { value = "centaur_brokearch02.m2", + text = "centaur_brokearch02.m2", fileId = "2198540", text = "centaur_brokearch02.m2", }, { value = "centaur_brokepillar01.m2", + text = "centaur_brokepillar01.m2", fileId = "2198616", text = "centaur_brokepillar01.m2", }, { value = "centaur_pillar01.m2", + text = "centaur_pillar01.m2", fileId = "2198523", text = "centaur_pillar01.m2", }, { value = "centaur_wall01.m2", + text = "centaur_wall01.m2", fileId = "2198845", text = "centaur_wall01.m2", }, { value = "centaur_wall_ruin01.m2", + text = "centaur_wall_ruin01.m2", fileId = "2198518", text = "centaur_wall_ruin01.m2", }, @@ -29389,22 +35104,27 @@ WeakAuras.ModelPaths = { }, { value = "generaldoodads", + text = "generaldoodads", children = { { value = "elementalrifts", + text = "elementalrifts", children = { { value = "airrift.m2", + text = "airrift.m2", fileId = "191085", text = "airrift.m2", }, { value = "firerift.m2", + text = "firerift.m2", fileId = "191088", text = "firerift.m2", }, { value = "waterrift.m2", + text = "waterrift.m2", fileId = "191093", text = "waterrift.m2", }, @@ -29413,9 +35133,11 @@ WeakAuras.ModelPaths = { }, { value = "helpwantedposter", + text = "helpwantedposter", children = { { value = "helpwantedposter.m2", + text = "helpwantedposter.m2", fileId = "191094", text = "helpwantedposter.m2", }, @@ -29424,9 +35146,11 @@ WeakAuras.ModelPaths = { }, { value = "nightelflanternblue", + text = "nightelflanternblue", children = { { value = "ne_lanternblue01.m2", + text = "ne_lanternblue01.m2", fileId = "191096", text = "ne_lanternblue01.m2", }, @@ -29435,24 +35159,29 @@ WeakAuras.ModelPaths = { }, { value = "nightelfweapons", + text = "nightelfweapons", children = { { value = "ne_glaive01.m2", + text = "ne_glaive01.m2", fileId = "191098", text = "ne_glaive01.m2", }, { value = "ne_glaive02.m2", + text = "ne_glaive02.m2", fileId = "191099", text = "ne_glaive02.m2", }, { value = "ne_glaive03.m2", + text = "ne_glaive03.m2", fileId = "191100", text = "ne_glaive03.m2", }, { value = "ne_glaive04.m2", + text = "ne_glaive04.m2", fileId = "191101", text = "ne_glaive04.m2", }, @@ -29461,9 +35190,11 @@ WeakAuras.ModelPaths = { }, { value = "package", + text = "package", children = { { value = "horde_package01.m2", + text = "horde_package01.m2", fileId = "191107", text = "horde_package01.m2", }, @@ -29472,9 +35203,11 @@ WeakAuras.ModelPaths = { }, { value = "paladinshrine", + text = "paladinshrine", children = { { value = "paladinshrine.m2", + text = "paladinshrine.m2", fileId = "191109", text = "paladinshrine.m2", }, @@ -29486,9 +35219,11 @@ WeakAuras.ModelPaths = { }, { value = "naxxramas", + text = "naxxramas", children = { { value = "icyrune01.m2", + text = "icyrune01.m2", fileId = "191177", text = "icyrune01.m2", }, @@ -29497,17 +35232,21 @@ WeakAuras.ModelPaths = { }, { value = "plaguelands", + text = "plaguelands", children = { { value = "activedoodads", + text = "activedoodads", children = { { value = "plaguecauldronactive.m2", + text = "plaguecauldronactive.m2", fileId = "191217", text = "plaguecauldronactive.m2", }, { value = "plaguecauldronactivebase.m2", + text = "plaguecauldronactivebase.m2", fileId = "191218", text = "plaguecauldronactivebase.m2", }, @@ -29519,12 +35258,15 @@ WeakAuras.ModelPaths = { }, { value = "winterspringgrove", + text = "winterspringgrove", children = { { value = "crackedice", + text = "crackedice", children = { { value = "cracked_ice01.m2", + text = "cracked_ice01.m2", fileId = "191347", text = "cracked_ice01.m2", }, @@ -29542,15 +35284,19 @@ WeakAuras.ModelPaths = { }, { value = "generic", + text = "generic", children = { { value = "activedoodads", + text = "activedoodads", children = { { value = "bushes", + text = "bushes", children = { { value = "berrybush01.m2", + text = "berrybush01.m2", fileId = "196975", text = "berrybush01.m2", }, @@ -29559,9 +35305,11 @@ WeakAuras.ModelPaths = { }, { value = "chest01", + text = "chest01", children = { { value = "chest01.m2", + text = "chest01.m2", fileId = "196976", text = "chest01.m2", }, @@ -29570,9 +35318,11 @@ WeakAuras.ModelPaths = { }, { value = "chest02", + text = "chest02", children = { { value = "chest02.m2", + text = "chest02.m2", fileId = "196979", text = "chest02.m2", }, @@ -29581,9 +35331,11 @@ WeakAuras.ModelPaths = { }, { value = "chest03", + text = "chest03", children = { { value = "chest03.m2", + text = "chest03.m2", fileId = "196982", text = "chest03.m2", }, @@ -29592,9 +35344,11 @@ WeakAuras.ModelPaths = { }, { value = "chest04", + text = "chest04", children = { { value = "chest04.m2", + text = "chest04.m2", fileId = "196987", text = "chest04.m2", }, @@ -29603,19 +35357,23 @@ WeakAuras.ModelPaths = { }, { value = "chests", + text = "chests", children = { { value = "chest01b.m2", + text = "chest01b.m2", fileId = "196988", text = "chest01b.m2", }, { value = "chest01c.m2", + text = "chest01c.m2", fileId = "196989", text = "chest01c.m2", }, { value = "chestactive01.m2", + text = "chestactive01.m2", fileId = "196990", text = "chestactive01.m2", }, @@ -29624,9 +35382,11 @@ WeakAuras.ModelPaths = { }, { value = "christmas", + text = "christmas", children = { { value = "snowballmound01.m2", + text = "snowballmound01.m2", fileId = "196993", text = "snowballmound01.m2", }, @@ -29635,9 +35395,11 @@ WeakAuras.ModelPaths = { }, { value = "clam", + text = "clam", children = { { value = "giantclamactive.m2", + text = "giantclamactive.m2", fileId = "196998", text = "giantclamactive.m2", }, @@ -29646,12 +35408,15 @@ WeakAuras.ModelPaths = { }, { value = "doors", + text = "doors", children = { { value = "giantportcullis", + text = "giantportcullis", children = { { value = "giantportcullisflatbottom01.m2", + text = "giantportcullisflatbottom01.m2", fileId = "197001", text = "giantportcullisflatbottom01.m2", }, @@ -29660,9 +35425,11 @@ WeakAuras.ModelPaths = { }, { value = "gnomeregandoors", + text = "gnomeregandoors", children = { { value = "gnomeregandoor01.m2", + text = "gnomeregandoor01.m2", fileId = "197002", text = "gnomeregandoor01.m2", }, @@ -29671,9 +35438,11 @@ WeakAuras.ModelPaths = { }, { value = "sunkentempledoors", + text = "sunkentempledoors", children = { { value = "sunktemple_portcullis.m2", + text = "sunktemple_portcullis.m2", fileId = "197003", text = "sunktemple_portcullis.m2", }, @@ -29682,9 +35451,11 @@ WeakAuras.ModelPaths = { }, { value = "uldamandoors", + text = "uldamandoors", children = { { value = "uldamandoor01.m2", + text = "uldamandoor01.m2", fileId = "197004", text = "uldamandoor01.m2", }, @@ -29696,39 +35467,47 @@ WeakAuras.ModelPaths = { }, { value = "instanceportal", + text = "instanceportal", children = { { value = "instanceportal.m2", + text = "instanceportal.m2", fileId = "197007", text = "instanceportal.m2", }, { value = "instanceportal_green.m2", + text = "instanceportal_green.m2", fileId = "197008", text = "instanceportal_green.m2", }, { value = "instanceportal_red.m2", + text = "instanceportal_red.m2", fileId = "197011", text = "instanceportal_red.m2", }, { value = "instanceportal_white.m2", + text = "instanceportal_white.m2", fileId = "197012", text = "instanceportal_white.m2", }, { value = "instanceportalcollision.m2", + text = "instanceportalcollision.m2", fileId = "197013", text = "instanceportalcollision.m2", }, { value = "summon_ritual.m2", + text = "summon_ritual.m2", fileId = "197017", text = "summon_ritual.m2", }, { value = "temporal_displacement.m2", + text = "temporal_displacement.m2", fileId = "197018", text = "temporal_displacement.m2", }, @@ -29737,9 +35516,11 @@ WeakAuras.ModelPaths = { }, { value = "mageportals", + text = "mageportals", children = { { value = "stormwindmageportal01.m2", + text = "stormwindmageportal01.m2", fileId = "197020", text = "stormwindmageportal01.m2", }, @@ -29748,29 +35529,35 @@ WeakAuras.ModelPaths = { }, { value = "meetingstones", + text = "meetingstones", children = { { value = "meetingstone01.m2", + text = "meetingstone01.m2", fileId = "197022", text = "meetingstone01.m2", }, { value = "meetingstone02.m2", + text = "meetingstone02.m2", fileId = "197024", text = "meetingstone02.m2", }, { value = "meetingstone03.m2", + text = "meetingstone03.m2", fileId = "197026", text = "meetingstone03.m2", }, { value = "meetingstone04.m2", + text = "meetingstone04.m2", fileId = "197028", text = "meetingstone04.m2", }, { value = "meetingstone05.m2", + text = "meetingstone05.m2", fileId = "197030", text = "meetingstone05.m2", }, @@ -29779,9 +35566,11 @@ WeakAuras.ModelPaths = { }, { value = "rocks", + text = "rocks", children = { { value = "gemrock01.m2", + text = "gemrock01.m2", fileId = "197038", text = "gemrock01.m2", }, @@ -29790,39 +35579,47 @@ WeakAuras.ModelPaths = { }, { value = "spellportals", + text = "spellportals", children = { { value = "mageportal_darnassus.m2", + text = "mageportal_darnassus.m2", fileId = "197042", text = "mageportal_darnassus.m2", }, { value = "mageportal_ironforge.m2", + text = "mageportal_ironforge.m2", fileId = "197044", text = "mageportal_ironforge.m2", }, { value = "mageportal_maraudon.m2", + text = "mageportal_maraudon.m2", fileId = "197046", text = "mageportal_maraudon.m2", }, { value = "mageportal_ogrimmar.m2", + text = "mageportal_ogrimmar.m2", fileId = "197047", text = "mageportal_ogrimmar.m2", }, { value = "mageportal_stormwind.m2", + text = "mageportal_stormwind.m2", fileId = "197051", text = "mageportal_stormwind.m2", }, { value = "mageportal_thunderbluff.m2", + text = "mageportal_thunderbluff.m2", fileId = "197054", text = "mageportal_thunderbluff.m2", }, { value = "mageportal_undercity.m2", + text = "mageportal_undercity.m2", fileId = "197055", text = "mageportal_undercity.m2", }, @@ -29831,9 +35628,11 @@ WeakAuras.ModelPaths = { }, { value = "trollchest", + text = "trollchest", children = { { value = "trollchest.m2", + text = "trollchest.m2", fileId = "197063", text = "trollchest.m2", }, @@ -29842,9 +35641,11 @@ WeakAuras.ModelPaths = { }, { value = "worldtreeportals", + text = "worldtreeportals", children = { { value = "worldtreeportal01.m2", + text = "worldtreeportal01.m2", fileId = "197068", text = "worldtreeportal01.m2", }, @@ -29856,12 +35657,15 @@ WeakAuras.ModelPaths = { }, { value = "buildings", + text = "buildings", children = { { value = "humantentlarge", + text = "humantentlarge", children = { { value = "humantentlarge.m2", + text = "humantentlarge.m2", fileId = "197108", text = "humantentlarge.m2", }, @@ -29870,9 +35674,11 @@ WeakAuras.ModelPaths = { }, { value = "humantentmedium", + text = "humantentmedium", children = { { value = "humantentmedium.m2", + text = "humantentmedium.m2", fileId = "197109", text = "humantentmedium.m2", }, @@ -29884,45 +35690,55 @@ WeakAuras.ModelPaths = { }, { value = "centaur", + text = "centaur", children = { { value = "passive doodads", + text = "passive doodads", children = { { value = "centaurruins", + text = "centaurruins", children = { { value = "centaur_arch01.m2", + text = "centaur_arch01.m2", fileId = "197113", text = "centaur_arch01.m2", }, { value = "centaur_brokearch01.m2", + text = "centaur_brokearch01.m2", fileId = "197114", text = "centaur_brokearch01.m2", }, { value = "centaur_brokearch02.m2", + text = "centaur_brokearch02.m2", fileId = "197115", text = "centaur_brokearch02.m2", }, { value = "centaur_brokepillar01.m2", + text = "centaur_brokepillar01.m2", fileId = "197116", text = "centaur_brokepillar01.m2", }, { value = "centaur_pillar01.m2", + text = "centaur_pillar01.m2", fileId = "197117", text = "centaur_pillar01.m2", }, { value = "centaur_wall01.m2", + text = "centaur_wall01.m2", fileId = "197118", text = "centaur_wall01.m2", }, { value = "centaur_wall_ruin01.m2", + text = "centaur_wall_ruin01.m2", fileId = "197119", text = "centaur_wall_ruin01.m2", }, @@ -29931,14 +35747,17 @@ WeakAuras.ModelPaths = { }, { value = "centaurtents", + text = "centaurtents", children = { { value = "centaurtent01.m2", + text = "centaurtent01.m2", fileId = "197120", text = "centaurtent01.m2", }, { value = "centaurtent02.m2", + text = "centaurtent02.m2", fileId = "197121", text = "centaurtent02.m2", }, @@ -29953,50 +35772,61 @@ WeakAuras.ModelPaths = { }, { value = "darkirondwarf", + text = "darkirondwarf", children = { { value = "active doodads", + text = "active doodads", children = { { value = "runes", + text = "runes", children = { { value = "darkirondwarfrune_a.m2", + text = "darkirondwarfrune_a.m2", fileId = "197124", text = "darkirondwarfrune_a.m2", }, { value = "darkirondwarfrune_a1.m2", + text = "darkirondwarfrune_a1.m2", fileId = "197125", text = "darkirondwarfrune_a1.m2", }, { value = "darkirondwarfrune_b.m2", + text = "darkirondwarfrune_b.m2", fileId = "197126", text = "darkirondwarfrune_b.m2", }, { value = "darkirondwarfrune_c.m2", + text = "darkirondwarfrune_c.m2", fileId = "197127", text = "darkirondwarfrune_c.m2", }, { value = "darkirondwarfrune_d.m2", + text = "darkirondwarfrune_d.m2", fileId = "197128", text = "darkirondwarfrune_d.m2", }, { value = "darkirondwarfrune_e.m2", + text = "darkirondwarfrune_e.m2", fileId = "197129", text = "darkirondwarfrune_e.m2", }, { value = "darkirondwarfrune_f.m2", + text = "darkirondwarfrune_f.m2", fileId = "197130", text = "darkirondwarfrune_f.m2", }, { value = "darkirondwarfrune_g.m2", + text = "darkirondwarfrune_g.m2", fileId = "197131", text = "darkirondwarfrune_g.m2", }, @@ -30008,22 +35838,27 @@ WeakAuras.ModelPaths = { }, { value = "passive doodads", + text = "passive doodads", children = { { value = "beds", + text = "beds", children = { { value = "darkirondwarfbed01.m2", + text = "darkirondwarfbed01.m2", fileId = "197132", text = "darkirondwarfbed01.m2", }, { value = "darkirondwarfbed02.m2", + text = "darkirondwarfbed02.m2", fileId = "197133", text = "darkirondwarfbed02.m2", }, { value = "darkirondwarfbed03.m2", + text = "darkirondwarfbed03.m2", fileId = "197134", text = "darkirondwarfbed03.m2", }, @@ -30032,34 +35867,41 @@ WeakAuras.ModelPaths = { }, { value = "chairs", + text = "chairs", children = { { value = "darkironchair01.m2", + text = "darkironchair01.m2", fileId = "197137", text = "darkironchair01.m2", }, { value = "darkironchair02.m2", + text = "darkironchair02.m2", fileId = "197138", text = "darkironchair02.m2", }, { value = "darkironchair03.m2", + text = "darkironchair03.m2", fileId = "197139", text = "darkironchair03.m2", }, { value = "darkironchairbroken01.m2", + text = "darkironchairbroken01.m2", fileId = "197140", text = "darkironchairbroken01.m2", }, { value = "darkironchairbroken02.m2", + text = "darkironchairbroken02.m2", fileId = "197141", text = "darkironchairbroken02.m2", }, { value = "darkironchairbroken03.m2", + text = "darkironchairbroken03.m2", fileId = "197142", text = "darkironchairbroken03.m2", }, @@ -30068,24 +35910,29 @@ WeakAuras.ModelPaths = { }, { value = "corpses", + text = "corpses", children = { { value = "darkirondwarfcorpse01.m2", + text = "darkirondwarfcorpse01.m2", fileId = "197145", text = "darkirondwarfcorpse01.m2", }, { value = "darkirondwarfcorpse02.m2", + text = "darkirondwarfcorpse02.m2", fileId = "197146", text = "darkirondwarfcorpse02.m2", }, { value = "darkirondwarfcorpse03.m2", + text = "darkirondwarfcorpse03.m2", fileId = "197147", text = "darkirondwarfcorpse03.m2", }, { value = "darkirondwarfcorpse04.m2", + text = "darkirondwarfcorpse04.m2", fileId = "197148", text = "darkirondwarfcorpse04.m2", }, @@ -30094,24 +35941,29 @@ WeakAuras.ModelPaths = { }, { value = "crates", + text = "crates", children = { { value = "darkironcrate01.m2", + text = "darkironcrate01.m2", fileId = "197150", text = "darkironcrate01.m2", }, { value = "darkironcrate02.m2", + text = "darkironcrate02.m2", fileId = "197152", text = "darkironcrate02.m2", }, { value = "darkironcratebroken01.m2", + text = "darkironcratebroken01.m2", fileId = "197153", text = "darkironcratebroken01.m2", }, { value = "darkironcratebroken02.m2", + text = "darkironcratebroken02.m2", fileId = "197154", text = "darkironcratebroken02.m2", }, @@ -30120,14 +35972,17 @@ WeakAuras.ModelPaths = { }, { value = "grindingwheels", + text = "grindingwheels", children = { { value = "darkirongrindingwheel.m2", + text = "darkirongrindingwheel.m2", fileId = "197155", text = "darkirongrindingwheel.m2", }, { value = "darkirongrindingwheelbroken.m2", + text = "darkirongrindingwheelbroken.m2", fileId = "197156", text = "darkirongrindingwheelbroken.m2", }, @@ -30136,9 +35991,11 @@ WeakAuras.ModelPaths = { }, { value = "haypiles", + text = "haypiles", children = { { value = "darkhaypilelarge01.m2", + text = "darkhaypilelarge01.m2", fileId = "197158", text = "darkhaypilelarge01.m2", }, @@ -30147,29 +36004,35 @@ WeakAuras.ModelPaths = { }, { value = "kegs", + text = "kegs", children = { { value = "darkironkeg01.m2", + text = "darkironkeg01.m2", fileId = "197162", text = "darkironkeg01.m2", }, { value = "darkironkegbroken01.m2", + text = "darkironkegbroken01.m2", fileId = "197163", text = "darkironkegbroken01.m2", }, { value = "darkironkegbroken02.m2", + text = "darkironkegbroken02.m2", fileId = "197164", text = "darkironkegbroken02.m2", }, { value = "darkironkegstand01.m2", + text = "darkironkegstand01.m2", fileId = "197165", text = "darkironkegstand01.m2", }, { value = "darkironkegwstand01.m2", + text = "darkironkegwstand01.m2", fileId = "197166", text = "darkironkegwstand01.m2", }, @@ -30178,19 +36041,23 @@ WeakAuras.ModelPaths = { }, { value = "lamps", + text = "lamps", children = { { value = "darkironhanginglamp01.m2", + text = "darkironhanginglamp01.m2", fileId = "197167", text = "darkironhanginglamp01.m2", }, { value = "darkironhanginglamp02.m2", + text = "darkironhanginglamp02.m2", fileId = "197168", text = "darkironhanginglamp02.m2", }, { value = "darkironhanginglampbroken01.m2", + text = "darkironhanginglampbroken01.m2", fileId = "197169", text = "darkironhanginglampbroken01.m2", }, @@ -30199,24 +36066,29 @@ WeakAuras.ModelPaths = { }, { value = "lights", + text = "lights", children = { { value = "darkironlight01.m2", + text = "darkironlight01.m2", fileId = "197171", text = "darkironlight01.m2", }, { value = "darkironlight02.m2", + text = "darkironlight02.m2", fileId = "197172", text = "darkironlight02.m2", }, { value = "darkironlightbroken01.m2", + text = "darkironlightbroken01.m2", fileId = "197173", text = "darkironlightbroken01.m2", }, { value = "darkironlightbroken02.m2", + text = "darkironlightbroken02.m2", fileId = "197174", text = "darkironlightbroken02.m2", }, @@ -30225,14 +36097,17 @@ WeakAuras.ModelPaths = { }, { value = "manacles", + text = "manacles", children = { { value = "blackrockorcmanacle01.m2", + text = "blackrockorcmanacle01.m2", fileId = "197177", text = "blackrockorcmanacle01.m2", }, { value = "darkirondwarfmanacle01.m2", + text = "darkirondwarfmanacle01.m2", fileId = "197179", text = "darkirondwarfmanacle01.m2", }, @@ -30241,19 +36116,23 @@ WeakAuras.ModelPaths = { }, { value = "murals", + text = "murals", children = { { value = "darkironmural01.m2", + text = "darkironmural01.m2", fileId = "197181", text = "darkironmural01.m2", }, { value = "darkironmural02.m2", + text = "darkironmural02.m2", fileId = "197183", text = "darkironmural02.m2", }, { value = "darkironmural03.m2", + text = "darkironmural03.m2", fileId = "197185", text = "darkironmural03.m2", }, @@ -30262,39 +36141,47 @@ WeakAuras.ModelPaths = { }, { value = "skeletons", + text = "skeletons", children = { { value = "skeletonlaying01.m2", + text = "skeletonlaying01.m2", fileId = "197190", text = "skeletonlaying01.m2", }, { value = "skeletonlaying02.m2", + text = "skeletonlaying02.m2", fileId = "197191", text = "skeletonlaying02.m2", }, { value = "skeletonlaying03.m2", + text = "skeletonlaying03.m2", fileId = "197192", text = "skeletonlaying03.m2", }, { value = "skeletonsitting01.m2", + text = "skeletonsitting01.m2", fileId = "197193", text = "skeletonsitting01.m2", }, { value = "skeletonsitting02.m2", + text = "skeletonsitting02.m2", fileId = "197194", text = "skeletonsitting02.m2", }, { value = "skeletonsitting03.m2", + text = "skeletonsitting03.m2", fileId = "197195", text = "skeletonsitting03.m2", }, { value = "skeletonsitting04.m2", + text = "skeletonsitting04.m2", fileId = "197196", text = "skeletonsitting04.m2", }, @@ -30303,14 +36190,17 @@ WeakAuras.ModelPaths = { }, { value = "stretchedskins", + text = "stretchedskins", children = { { value = "blackrockstretchedskin01.m2", + text = "blackrockstretchedskin01.m2", fileId = "197199", text = "blackrockstretchedskin01.m2", }, { value = "blackrockstretchedskin02.m2", + text = "blackrockstretchedskin02.m2", fileId = "197200", text = "blackrockstretchedskin02.m2", }, @@ -30319,14 +36209,17 @@ WeakAuras.ModelPaths = { }, { value = "tables", + text = "tables", children = { { value = "darkirontable01.m2", + text = "darkirontable01.m2", fileId = "197201", text = "darkirontable01.m2", }, { value = "darkirontablebroken01.m2", + text = "darkirontablebroken01.m2", fileId = "197202", text = "darkirontablebroken01.m2", }, @@ -30335,19 +36228,23 @@ WeakAuras.ModelPaths = { }, { value = "tapestries", + text = "tapestries", children = { { value = "darkirontapestry01.m2", + text = "darkirontapestry01.m2", fileId = "197206", text = "darkirontapestry01.m2", }, { value = "darkirontapestry02.m2", + text = "darkirontapestry02.m2", fileId = "197207", text = "darkirontapestry02.m2", }, { value = "darkirontapestry03.m2", + text = "darkirontapestry03.m2", fileId = "197208", text = "darkirontapestry03.m2", }, @@ -30356,9 +36253,11 @@ WeakAuras.ModelPaths = { }, { value = "throne", + text = "throne", children = { { value = "darkironthrone.m2", + text = "darkironthrone.m2", fileId = "197210", text = "darkironthrone.m2", }, @@ -30367,14 +36266,17 @@ WeakAuras.ModelPaths = { }, { value = "tools", + text = "tools", children = { { value = "darkironsaw01.m2", + text = "darkironsaw01.m2", fileId = "197212", text = "darkironsaw01.m2", }, { value = "darkironsawbroken01.m2", + text = "darkironsawbroken01.m2", fileId = "197213", text = "darkironsawbroken01.m2", }, @@ -30383,14 +36285,17 @@ WeakAuras.ModelPaths = { }, { value = "woodpiles", + text = "woodpiles", children = { { value = "darkironwoodpile01.m2", + text = "darkironwoodpile01.m2", fileId = "197214", text = "darkironwoodpile01.m2", }, { value = "darkironwoodpile02.m2", + text = "darkironwoodpile02.m2", fileId = "197215", text = "darkironwoodpile02.m2", }, @@ -30399,39 +36304,47 @@ WeakAuras.ModelPaths = { }, { value = "woodplanks", + text = "woodplanks", children = { { value = "darkironwoodplanks01.m2", + text = "darkironwoodplanks01.m2", fileId = "197216", text = "darkironwoodplanks01.m2", }, { value = "darkironwoodplanks02.m2", + text = "darkironwoodplanks02.m2", fileId = "197217", text = "darkironwoodplanks02.m2", }, { value = "darkironwoodplanks03.m2", + text = "darkironwoodplanks03.m2", fileId = "197218", text = "darkironwoodplanks03.m2", }, { value = "darkironwoodplanks04.m2", + text = "darkironwoodplanks04.m2", fileId = "197219", text = "darkironwoodplanks04.m2", }, { value = "darkironwoodplanks05.m2", + text = "darkironwoodplanks05.m2", fileId = "197220", text = "darkironwoodplanks05.m2", }, { value = "darkironwoodplanks06.m2", + text = "darkironwoodplanks06.m2", fileId = "197221", text = "darkironwoodplanks06.m2", }, { value = "darkironwoodplanks07.m2", + text = "darkironwoodplanks07.m2", fileId = "197222", text = "darkironwoodplanks07.m2", }, @@ -30440,24 +36353,29 @@ WeakAuras.ModelPaths = { }, { value = "workbenches", + text = "workbenches", children = { { value = "darkironworkbench01.m2", + text = "darkironworkbench01.m2", fileId = "197224", text = "darkironworkbench01.m2", }, { value = "darkironworkbench02.m2", + text = "darkironworkbench02.m2", fileId = "197225", text = "darkironworkbench02.m2", }, { value = "darkironworkbenchbroken01.m2", + text = "darkironworkbenchbroken01.m2", fileId = "197226", text = "darkironworkbenchbroken01.m2", }, { value = "darkironworkbenchbroken02.m2", + text = "darkironworkbenchbroken02.m2", fileId = "197227", text = "darkironworkbenchbroken02.m2", }, @@ -30472,15 +36390,19 @@ WeakAuras.ModelPaths = { }, { value = "dwarf", + text = "dwarf", children = { { value = "active doodads", + text = "active doodads", children = { { value = "doors", + text = "doors", children = { { value = "dwarventunnelportcullis.m2", + text = "dwarventunnelportcullis.m2", fileId = "197231", text = "dwarventunnelportcullis.m2", }, @@ -30492,22 +36414,27 @@ WeakAuras.ModelPaths = { }, { value = "passive doodads", + text = "passive doodads", children = { { value = "banners", + text = "banners", children = { { value = "ironforgebanner01.m2", + text = "ironforgebanner01.m2", fileId = "197234", text = "ironforgebanner01.m2", }, { value = "ironforgebanner_ornate01.m2", + text = "ironforgebanner_ornate01.m2", fileId = "197235", text = "ironforgebanner_ornate01.m2", }, { value = "ironforgebannerstill.m2", + text = "ironforgebannerstill.m2", fileId = "197236", text = "ironforgebannerstill.m2", }, @@ -30516,9 +36443,11 @@ WeakAuras.ModelPaths = { }, { value = "barrels", + text = "barrels", children = { { value = "dwarvenbarrel01.m2", + text = "dwarvenbarrel01.m2", fileId = "197238", text = "dwarvenbarrel01.m2", }, @@ -30527,94 +36456,113 @@ WeakAuras.ModelPaths = { }, { value = "battlements", + text = "battlements", children = { { value = "dwarvenbattlementlarge01.m2", + text = "dwarvenbattlementlarge01.m2", fileId = "197239", text = "dwarvenbattlementlarge01.m2", }, { value = "dwarvenbattlementmossy01.m2", + text = "dwarvenbattlementmossy01.m2", fileId = "197240", text = "dwarvenbattlementmossy01.m2", }, { value = "dwarvenbattlementmossy02.m2", + text = "dwarvenbattlementmossy02.m2", fileId = "197241", text = "dwarvenbattlementmossy02.m2", }, { value = "dwarvenbattlementmossy03.m2", + text = "dwarvenbattlementmossy03.m2", fileId = "197242", text = "dwarvenbattlementmossy03.m2", }, { value = "dwarvenbattlementmossy04.m2", + text = "dwarvenbattlementmossy04.m2", fileId = "197243", text = "dwarvenbattlementmossy04.m2", }, { value = "dwarvenbattlementmossy05.m2", + text = "dwarvenbattlementmossy05.m2", fileId = "197244", text = "dwarvenbattlementmossy05.m2", }, { value = "dwarvenbattlementmossy06.m2", + text = "dwarvenbattlementmossy06.m2", fileId = "197245", text = "dwarvenbattlementmossy06.m2", }, { value = "dwarvenbattlementmossy07.m2", + text = "dwarvenbattlementmossy07.m2", fileId = "197246", text = "dwarvenbattlementmossy07.m2", }, { value = "dwarvenbattlementsmall01.m2", + text = "dwarvenbattlementsmall01.m2", fileId = "197247", text = "dwarvenbattlementsmall01.m2", }, { value = "dwarvenbattlementsnowy01.m2", + text = "dwarvenbattlementsnowy01.m2", fileId = "197248", text = "dwarvenbattlementsnowy01.m2", }, { value = "dwarvenbattlementsnowy02.m2", + text = "dwarvenbattlementsnowy02.m2", fileId = "197249", text = "dwarvenbattlementsnowy02.m2", }, { value = "dwarvenbattlementsnowy03.m2", + text = "dwarvenbattlementsnowy03.m2", fileId = "197250", text = "dwarvenbattlementsnowy03.m2", }, { value = "dwarvenbattlementsnowy04.m2", + text = "dwarvenbattlementsnowy04.m2", fileId = "197251", text = "dwarvenbattlementsnowy04.m2", }, { value = "dwarvenbattlementsnowy05.m2", + text = "dwarvenbattlementsnowy05.m2", fileId = "197252", text = "dwarvenbattlementsnowy05.m2", }, { value = "dwarvenbattlementsnowy06.m2", + text = "dwarvenbattlementsnowy06.m2", fileId = "197253", text = "dwarvenbattlementsnowy06.m2", }, { value = "dwarvenbattlementsnowy07.m2", + text = "dwarvenbattlementsnowy07.m2", fileId = "197254", text = "dwarvenbattlementsnowy07.m2", }, { value = "snowybattlementlarge01.m2", + text = "snowybattlementlarge01.m2", fileId = "197260", text = "snowybattlementlarge01.m2", }, { value = "snowybattlementsmall01.m2", + text = "snowybattlementsmall01.m2", fileId = "197261", text = "snowybattlementsmall01.m2", }, @@ -30623,9 +36571,11 @@ WeakAuras.ModelPaths = { }, { value = "beds", + text = "beds", children = { { value = "dwarvenbed01.m2", + text = "dwarvenbed01.m2", fileId = "197266", text = "dwarvenbed01.m2", }, @@ -30634,19 +36584,23 @@ WeakAuras.ModelPaths = { }, { value = "benches", + text = "benches", children = { { value = "ironforgebench_average01.m2", + text = "ironforgebench_average01.m2", fileId = "197270", text = "ironforgebench_average01.m2", }, { value = "ironforgebench_ornate01.m2", + text = "ironforgebench_ornate01.m2", fileId = "197272", text = "ironforgebench_ornate01.m2", }, { value = "ironforgebench_simple01.m2", + text = "ironforgebench_simple01.m2", fileId = "197274", text = "ironforgebench_simple01.m2", }, @@ -30655,79 +36609,95 @@ WeakAuras.ModelPaths = { }, { value = "bookshelves", + text = "bookshelves", children = { { value = "bookshelfdwarvenaverage01.m2", + text = "bookshelfdwarvenaverage01.m2", fileId = "197275", text = "bookshelfdwarvenaverage01.m2", }, { value = "bookshelfdwarvenaverage02.m2", + text = "bookshelfdwarvenaverage02.m2", fileId = "197276", text = "bookshelfdwarvenaverage02.m2", }, { value = "bookshelfdwarvenaverage03.m2", + text = "bookshelfdwarvenaverage03.m2", fileId = "197277", text = "bookshelfdwarvenaverage03.m2", }, { value = "bookshelfdwarvenaverage05.m2", + text = "bookshelfdwarvenaverage05.m2", fileId = "197278", text = "bookshelfdwarvenaverage05.m2", }, { value = "bookshelfdwarvenornate01.m2", + text = "bookshelfdwarvenornate01.m2", fileId = "197279", text = "bookshelfdwarvenornate01.m2", }, { value = "bookshelfdwarvenornate02.m2", + text = "bookshelfdwarvenornate02.m2", fileId = "197280", text = "bookshelfdwarvenornate02.m2", }, { value = "bookshelfdwarvenornate03.m2", + text = "bookshelfdwarvenornate03.m2", fileId = "197281", text = "bookshelfdwarvenornate03.m2", }, { value = "bookshelfdwarvenornate04.m2", + text = "bookshelfdwarvenornate04.m2", fileId = "197282", text = "bookshelfdwarvenornate04.m2", }, { value = "bookshelfdwarvenornate05.m2", + text = "bookshelfdwarvenornate05.m2", fileId = "197283", text = "bookshelfdwarvenornate05.m2", }, { value = "bookshelfdwarvensimple01.m2", + text = "bookshelfdwarvensimple01.m2", fileId = "197284", text = "bookshelfdwarvensimple01.m2", }, { value = "bookshelfdwarvensimple02.m2", + text = "bookshelfdwarvensimple02.m2", fileId = "197285", text = "bookshelfdwarvensimple02.m2", }, { value = "bookshelfdwarvensimple03.m2", + text = "bookshelfdwarvensimple03.m2", fileId = "197286", text = "bookshelfdwarvensimple03.m2", }, { value = "bookshelfdwarvensimple04.m2", + text = "bookshelfdwarvensimple04.m2", fileId = "197287", text = "bookshelfdwarvensimple04.m2", }, { value = "dwarvenbookshelflarge.m2", + text = "dwarvenbookshelflarge.m2", fileId = "197288", text = "dwarvenbookshelflarge.m2", }, { value = "dwarvenbookshelfsmall.m2", + text = "dwarvenbookshelfsmall.m2", fileId = "197289", text = "dwarvenbookshelfsmall.m2", }, @@ -30736,19 +36706,23 @@ WeakAuras.ModelPaths = { }, { value = "braziers", + text = "braziers", children = { { value = "dwarvenbrazier01.m2", + text = "dwarvenbrazier01.m2", fileId = "197292", text = "dwarvenbrazier01.m2", }, { value = "dwarvenbrazier02.m2", + text = "dwarvenbrazier02.m2", fileId = "197293", text = "dwarvenbrazier02.m2", }, { value = "stormwinddwarfbrazier.m2", + text = "stormwinddwarfbrazier.m2", fileId = "197295", text = "stormwinddwarfbrazier.m2", }, @@ -30757,19 +36731,23 @@ WeakAuras.ModelPaths = { }, { value = "chainlinks", + text = "chainlinks", children = { { value = "ts_chain01.m2", + text = "ts_chain01.m2", fileId = "197297", text = "ts_chain01.m2", }, { value = "ts_chain02.m2", + text = "ts_chain02.m2", fileId = "197298", text = "ts_chain02.m2", }, { value = "ts_chainmounting01.m2", + text = "ts_chainmounting01.m2", fileId = "197299", text = "ts_chainmounting01.m2", }, @@ -30778,39 +36756,47 @@ WeakAuras.ModelPaths = { }, { value = "chairs", + text = "chairs", children = { { value = "dwarvenchair01.m2", + text = "dwarvenchair01.m2", fileId = "197300", text = "dwarvenchair01.m2", }, { value = "dwarvenchair02.m2", + text = "dwarvenchair02.m2", fileId = "197301", text = "dwarvenchair02.m2", }, { value = "dwarvenchair03.m2", + text = "dwarvenchair03.m2", fileId = "197302", text = "dwarvenchair03.m2", }, { value = "dwarvenhighendchair.m2", + text = "dwarvenhighendchair.m2", fileId = "197304", text = "dwarvenhighendchair.m2", }, { value = "ironforgechair_average01.m2", + text = "ironforgechair_average01.m2", fileId = "197307", text = "ironforgechair_average01.m2", }, { value = "ironforgechair_ornate01.m2", + text = "ironforgechair_ornate01.m2", fileId = "197309", text = "ironforgechair_ornate01.m2", }, { value = "ironforgechair_simple01.m2", + text = "ironforgechair_simple01.m2", fileId = "197311", text = "ironforgechair_simple01.m2", }, @@ -30819,14 +36805,17 @@ WeakAuras.ModelPaths = { }, { value = "constructionsigns", + text = "constructionsigns", children = { { value = "underconstruction01.m2", + text = "underconstruction01.m2", fileId = "197315", text = "underconstruction01.m2", }, { value = "underconstruction02.m2", + text = "underconstruction02.m2", fileId = "197316", text = "underconstruction02.m2", }, @@ -30835,54 +36824,65 @@ WeakAuras.ModelPaths = { }, { value = "debris", + text = "debris", children = { { value = "ts_debris01.m2", + text = "ts_debris01.m2", fileId = "197317", text = "ts_debris01.m2", }, { value = "ts_debris02.m2", + text = "ts_debris02.m2", fileId = "197318", text = "ts_debris02.m2", }, { value = "ts_debris03.m2", + text = "ts_debris03.m2", fileId = "197319", text = "ts_debris03.m2", }, { value = "ts_debris04.m2", + text = "ts_debris04.m2", fileId = "197320", text = "ts_debris04.m2", }, { value = "ts_debris05.m2", + text = "ts_debris05.m2", fileId = "197321", text = "ts_debris05.m2", }, { value = "ts_debris06.m2", + text = "ts_debris06.m2", fileId = "197322", text = "ts_debris06.m2", }, { value = "ts_debris07.m2", + text = "ts_debris07.m2", fileId = "197323", text = "ts_debris07.m2", }, { value = "ts_debris08.m2", + text = "ts_debris08.m2", fileId = "197324", text = "ts_debris08.m2", }, { value = "ts_debris09.m2", + text = "ts_debris09.m2", fileId = "197325", text = "ts_debris09.m2", }, { value = "ts_debris10.m2", + text = "ts_debris10.m2", fileId = "197326", text = "ts_debris10.m2", }, @@ -30891,9 +36891,11 @@ WeakAuras.ModelPaths = { }, { value = "docks", + text = "docks", children = { { value = "anvilmardock01.m2", + text = "anvilmardock01.m2", fileId = "197327", text = "anvilmardock01.m2", }, @@ -30902,9 +36904,11 @@ WeakAuras.ModelPaths = { }, { value = "dwarfcorpse", + text = "dwarfcorpse", children = { { value = "corpseskeletondwarf.m2", + text = "corpseskeletondwarf.m2", fileId = "197330", text = "corpseskeletondwarf.m2", }, @@ -30913,9 +36917,11 @@ WeakAuras.ModelPaths = { }, { value = "dynamite", + text = "dynamite", children = { { value = "gunshopdynamitebundle.m2", + text = "gunshopdynamitebundle.m2", fileId = "197331", text = "gunshopdynamitebundle.m2", }, @@ -30924,19 +36930,23 @@ WeakAuras.ModelPaths = { }, { value = "excavationbannerstands", + text = "excavationbannerstands", children = { { value = "excavationbannerstand.m2", + text = "excavationbannerstand.m2", fileId = "197332", text = "excavationbannerstand.m2", }, { value = "excavationbannerstand01.m2", + text = "excavationbannerstand01.m2", fileId = "197333", text = "excavationbannerstand01.m2", }, { value = "excavationbannerstand02.m2", + text = "excavationbannerstand02.m2", fileId = "197334", text = "excavationbannerstand02.m2", }, @@ -30945,39 +36955,47 @@ WeakAuras.ModelPaths = { }, { value = "excavationbarrierplank", + text = "excavationbarrierplank", children = { { value = "excavationbarrierplank.m2", + text = "excavationbarrierplank.m2", fileId = "197337", text = "excavationbarrierplank.m2", }, { value = "excavationbarrierplank02.m2", + text = "excavationbarrierplank02.m2", fileId = "197338", text = "excavationbarrierplank02.m2", }, { value = "excavationbarrierplank02b.m2", + text = "excavationbarrierplank02b.m2", fileId = "197339", text = "excavationbarrierplank02b.m2", }, { value = "excavationbarrierplank02c.m2", + text = "excavationbarrierplank02c.m2", fileId = "197340", text = "excavationbarrierplank02c.m2", }, { value = "excavationbarrierplank03.m2", + text = "excavationbarrierplank03.m2", fileId = "197341", text = "excavationbarrierplank03.m2", }, { value = "excavationbarrierplank03b.m2", + text = "excavationbarrierplank03b.m2", fileId = "197342", text = "excavationbarrierplank03b.m2", }, { value = "excavationbarrierplank03c.m2", + text = "excavationbarrierplank03c.m2", fileId = "197343", text = "excavationbarrierplank03c.m2", }, @@ -30986,24 +37004,29 @@ WeakAuras.ModelPaths = { }, { value = "excavationbarrierpole", + text = "excavationbarrierpole", children = { { value = "excavationbarrierpole.m2", + text = "excavationbarrierpole.m2", fileId = "197344", text = "excavationbarrierpole.m2", }, { value = "excavationbarrierpole02.m2", + text = "excavationbarrierpole02.m2", fileId = "197345", text = "excavationbarrierpole02.m2", }, { value = "excavationbarrierpole03.m2", + text = "excavationbarrierpole03.m2", fileId = "197346", text = "excavationbarrierpole03.m2", }, { value = "excavationbarrierpole04.m2", + text = "excavationbarrierpole04.m2", fileId = "197347", text = "excavationbarrierpole04.m2", }, @@ -31012,84 +37035,101 @@ WeakAuras.ModelPaths = { }, { value = "excavationbarriers", + text = "excavationbarriers", children = { { value = "excavationbarrier01.m2", + text = "excavationbarrier01.m2", fileId = "197348", text = "excavationbarrier01.m2", }, { value = "excavationbarrier01_pvpcollision.m2", + text = "excavationbarrier01_pvpcollision.m2", fileId = "197349", text = "excavationbarrier01_pvpcollision.m2", }, { value = "excavationbarrier01b.m2", + text = "excavationbarrier01b.m2", fileId = "197350", text = "excavationbarrier01b.m2", }, { value = "excavationbarrier01b_pvpcollision.m2", + text = "excavationbarrier01b_pvpcollision.m2", fileId = "197351", text = "excavationbarrier01b_pvpcollision.m2", }, { value = "excavationbarrier02.m2", + text = "excavationbarrier02.m2", fileId = "197352", text = "excavationbarrier02.m2", }, { value = "excavationbarrier02_pvpcollision.m2", + text = "excavationbarrier02_pvpcollision.m2", fileId = "197353", text = "excavationbarrier02_pvpcollision.m2", }, { value = "excavationbarrier02b.m2", + text = "excavationbarrier02b.m2", fileId = "197354", text = "excavationbarrier02b.m2", }, { value = "excavationbarrier02b_pvpcollision.m2", + text = "excavationbarrier02b_pvpcollision.m2", fileId = "197355", text = "excavationbarrier02b_pvpcollision.m2", }, { value = "excavationbarrier03.m2", + text = "excavationbarrier03.m2", fileId = "197356", text = "excavationbarrier03.m2", }, { value = "excavationbarrier03_pvpcollision.m2", + text = "excavationbarrier03_pvpcollision.m2", fileId = "197357", text = "excavationbarrier03_pvpcollision.m2", }, { value = "excavationbarrier03b.m2", + text = "excavationbarrier03b.m2", fileId = "197358", text = "excavationbarrier03b.m2", }, { value = "excavationbarrier03b_pvpcollision.m2", + text = "excavationbarrier03b_pvpcollision.m2", fileId = "197359", text = "excavationbarrier03b_pvpcollision.m2", }, { value = "excavationbarrier04.m2", + text = "excavationbarrier04.m2", fileId = "197360", text = "excavationbarrier04.m2", }, { value = "excavationbarrier04_pvpcollision.m2", + text = "excavationbarrier04_pvpcollision.m2", fileId = "197361", text = "excavationbarrier04_pvpcollision.m2", }, { value = "excavationbarrier04b.m2", + text = "excavationbarrier04b.m2", fileId = "197362", text = "excavationbarrier04b.m2", }, { value = "excavationbarrier04b_pvpcollision.m2", + text = "excavationbarrier04b_pvpcollision.m2", fileId = "197363", text = "excavationbarrier04b_pvpcollision.m2", }, @@ -31098,9 +37138,11 @@ WeakAuras.ModelPaths = { }, { value = "excavationcrane", + text = "excavationcrane", children = { { value = "excavationcrane.m2", + text = "excavationcrane.m2", fileId = "197366", text = "excavationcrane.m2", }, @@ -31109,14 +37151,17 @@ WeakAuras.ModelPaths = { }, { value = "excavationdwarvenruins", + text = "excavationdwarvenruins", children = { { value = "excavationdwarvenruins01.m2", + text = "excavationdwarvenruins01.m2", fileId = "197372", text = "excavationdwarvenruins01.m2", }, { value = "excavationdwarvenruins02.m2", + text = "excavationdwarvenruins02.m2", fileId = "197373", text = "excavationdwarvenruins02.m2", }, @@ -31125,14 +37170,17 @@ WeakAuras.ModelPaths = { }, { value = "excavationrailingpost", + text = "excavationrailingpost", children = { { value = "excavationrailingpost.m2", + text = "excavationrailingpost.m2", fileId = "197374", text = "excavationrailingpost.m2", }, { value = "excavationrailingpostrope.m2", + text = "excavationrailingpostrope.m2", fileId = "197375", text = "excavationrailingpostrope.m2", }, @@ -31141,9 +37189,11 @@ WeakAuras.ModelPaths = { }, { value = "excavationrailingrail", + text = "excavationrailingrail", children = { { value = "excavationrailingrail.m2", + text = "excavationrailingrail.m2", fileId = "197377", text = "excavationrailingrail.m2", }, @@ -31152,14 +37202,17 @@ WeakAuras.ModelPaths = { }, { value = "excavationropestake", + text = "excavationropestake", children = { { value = "excavationrope.m2", + text = "excavationrope.m2", fileId = "197378", text = "excavationrope.m2", }, { value = "excavationropestake.m2", + text = "excavationropestake.m2", fileId = "197379", text = "excavationropestake.m2", }, @@ -31168,9 +37221,11 @@ WeakAuras.ModelPaths = { }, { value = "excavationstake", + text = "excavationstake", children = { { value = "excavationstake.m2", + text = "excavationstake.m2", fileId = "197382", text = "excavationstake.m2", }, @@ -31179,9 +37234,11 @@ WeakAuras.ModelPaths = { }, { value = "excavationtentpavillion", + text = "excavationtentpavillion", children = { { value = "excavationtentpavillion.m2", + text = "excavationtentpavillion.m2", fileId = "197383", text = "excavationtentpavillion.m2", }, @@ -31190,9 +37247,11 @@ WeakAuras.ModelPaths = { }, { value = "excavationtentpavillionruined", + text = "excavationtentpavillionruined", children = { { value = "excavationtentpavillionruined01.m2", + text = "excavationtentpavillionruined01.m2", fileId = "197385", text = "excavationtentpavillionruined01.m2", }, @@ -31201,24 +37260,29 @@ WeakAuras.ModelPaths = { }, { value = "excavationtents", + text = "excavationtents", children = { { value = "excavationtent01.m2", + text = "excavationtent01.m2", fileId = "197388", text = "excavationtent01.m2", }, { value = "excavationtent02.m2", + text = "excavationtent02.m2", fileId = "197389", text = "excavationtent02.m2", }, { value = "excavationtentruined01.m2", + text = "excavationtentruined01.m2", fileId = "197390", text = "excavationtentruined01.m2", }, { value = "excavationtentruined02.m2", + text = "excavationtentruined02.m2", fileId = "197391", text = "excavationtentruined02.m2", }, @@ -31227,9 +37291,11 @@ WeakAuras.ModelPaths = { }, { value = "excavationwaterwagon", + text = "excavationwaterwagon", children = { { value = "excavationwaterwagon.m2", + text = "excavationwaterwagon.m2", fileId = "197394", text = "excavationwaterwagon.m2", }, @@ -31238,9 +37304,11 @@ WeakAuras.ModelPaths = { }, { value = "forgebonfire", + text = "forgebonfire", children = { { value = "forgebonfire.m2", + text = "forgebonfire.m2", fileId = "197395", text = "forgebonfire.m2", }, @@ -31249,44 +37317,53 @@ WeakAuras.ModelPaths = { }, { value = "gunracks", + text = "gunracks", children = { { value = "gunrack01a.m2", + text = "gunrack01a.m2", fileId = "197398", text = "gunrack01a.m2", }, { value = "gunrack01b.m2", + text = "gunrack01b.m2", fileId = "197399", text = "gunrack01b.m2", }, { value = "gunrack01c.m2", + text = "gunrack01c.m2", fileId = "197400", text = "gunrack01c.m2", }, { value = "gunrack01d.m2", + text = "gunrack01d.m2", fileId = "197401", text = "gunrack01d.m2", }, { value = "gunrack02a.m2", + text = "gunrack02a.m2", fileId = "197402", text = "gunrack02a.m2", }, { value = "gunrack02b.m2", + text = "gunrack02b.m2", fileId = "197403", text = "gunrack02b.m2", }, { value = "gunrack02c.m2", + text = "gunrack02c.m2", fileId = "197404", text = "gunrack02c.m2", }, { value = "gunrack02d.m2", + text = "gunrack02d.m2", fileId = "197405", text = "gunrack02d.m2", }, @@ -31295,9 +37372,11 @@ WeakAuras.ModelPaths = { }, { value = "guns", + text = "guns", children = { { value = "rifledwarven.m2", + text = "rifledwarven.m2", fileId = "197406", text = "rifledwarven.m2", }, @@ -31306,9 +37385,11 @@ WeakAuras.ModelPaths = { }, { value = "gyrocopter", + text = "gyrocopter", children = { { value = "gyrocopter.m2", + text = "gyrocopter.m2", fileId = "197408", text = "gyrocopter.m2", }, @@ -31317,14 +37398,17 @@ WeakAuras.ModelPaths = { }, { value = "lampposts", + text = "lampposts", children = { { value = "anvilmarlamppost.m2", + text = "anvilmarlamppost.m2", fileId = "197409", text = "anvilmarlamppost.m2", }, { value = "lochlamppost.m2", + text = "lochlamppost.m2", fileId = "197411", text = "lochlamppost.m2", }, @@ -31333,89 +37417,107 @@ WeakAuras.ModelPaths = { }, { value = "lanterns", + text = "lanterns", children = { { value = "dwarvenhanginglanternhuge.m2", + text = "dwarvenhanginglanternhuge.m2", fileId = "197416", text = "dwarvenhanginglanternhuge.m2", }, { value = "dwarvenhanginglanternlarge01.m2", + text = "dwarvenhanginglanternlarge01.m2", fileId = "197418", text = "dwarvenhanginglanternlarge01.m2", }, { value = "dwarvenhanginglanternmedium01.m2", + text = "dwarvenhanginglanternmedium01.m2", fileId = "197419", text = "dwarvenhanginglanternmedium01.m2", }, { value = "dwarvenhanginglanternsmall01.m2", + text = "dwarvenhanginglanternsmall01.m2", fileId = "197420", text = "dwarvenhanginglanternsmall01.m2", }, { value = "giantlantern01.m2", + text = "giantlantern01.m2", fileId = "197424", text = "giantlantern01.m2", }, { value = "ironforgehanginglantern01.m2", + text = "ironforgehanginglantern01.m2", fileId = "197429", text = "ironforgehanginglantern01.m2", }, { value = "ironforgehanginglantern_new.m2", + text = "ironforgehanginglantern_new.m2", fileId = "197430", text = "ironforgehanginglantern_new.m2", }, { value = "mediumlantern01.m2", + text = "mediumlantern01.m2", fileId = "197434", text = "mediumlantern01.m2", }, { value = "mediumlantern02.m2", + text = "mediumlantern02.m2", fileId = "197435", text = "mediumlantern02.m2", }, { value = "mininglamp01.m2", + text = "mininglamp01.m2", fileId = "197436", text = "mininglamp01.m2", }, { value = "mininglamp02.m2", + text = "mininglamp02.m2", fileId = "197437", text = "mininglamp02.m2", }, { value = "new_large_lantern01.m2", + text = "new_large_lantern01.m2", fileId = "197438", text = "new_large_lantern01.m2", }, { value = "new_medium_lantern02.m2", + text = "new_medium_lantern02.m2", fileId = "197439", text = "new_medium_lantern02.m2", }, { value = "new_small_lantern01.m2", + text = "new_small_lantern01.m2", fileId = "197440", text = "new_small_lantern01.m2", }, { value = "new_small_lantern02.m2", + text = "new_small_lantern02.m2", fileId = "197441", text = "new_small_lantern02.m2", }, { value = "smalllantern01.m2", + text = "smalllantern01.m2", fileId = "197442", text = "smalllantern01.m2", }, { value = "smalllantern02.m2", + text = "smalllantern02.m2", fileId = "197443", text = "smalllantern02.m2", }, @@ -31424,9 +37526,11 @@ WeakAuras.ModelPaths = { }, { value = "minecarts", + text = "minecarts", children = { { value = "minecartgiant.m2", + text = "minecartgiant.m2", fileId = "197453", text = "minecartgiant.m2", }, @@ -31435,9 +37539,11 @@ WeakAuras.ModelPaths = { }, { value = "museum", + text = "museum", children = { { value = "fossil01.m2", + text = "fossil01.m2", fileId = "197456", text = "fossil01.m2", }, @@ -31446,24 +37552,29 @@ WeakAuras.ModelPaths = { }, { value = "platters", + text = "platters", children = { { value = "plattergoldornate01.m2", + text = "plattergoldornate01.m2", fileId = "197459", text = "plattergoldornate01.m2", }, { value = "plattergoldornate02.m2", + text = "plattergoldornate02.m2", fileId = "197460", text = "plattergoldornate02.m2", }, { value = "plattergoldsimple01.m2", + text = "plattergoldsimple01.m2", fileId = "197461", text = "plattergoldsimple01.m2", }, { value = "plattergoldsimple02.m2", + text = "plattergoldsimple02.m2", fileId = "197462", text = "plattergoldsimple02.m2", }, @@ -31472,14 +37583,17 @@ WeakAuras.ModelPaths = { }, { value = "powderkegs", + text = "powderkegs", children = { { value = "powderkeg01.m2", + text = "powderkeg01.m2", fileId = "197463", text = "powderkeg01.m2", }, { value = "powderkegfused.m2", + text = "powderkegfused.m2", fileId = "197464", text = "powderkegfused.m2", }, @@ -31488,9 +37602,11 @@ WeakAuras.ModelPaths = { }, { value = "sharpeningwheel", + text = "sharpeningwheel", children = { { value = "dwarvensharpeningwheel01.m2", + text = "dwarvensharpeningwheel01.m2", fileId = "197466", text = "dwarvensharpeningwheel01.m2", }, @@ -31499,14 +37615,17 @@ WeakAuras.ModelPaths = { }, { value = "signposts", + text = "signposts", children = { { value = "dwarvensignpost01.m2", + text = "dwarvensignpost01.m2", fileId = "197471", text = "dwarvensignpost01.m2", }, { value = "dwarvensignpostpointer01.m2", + text = "dwarvensignpostpointer01.m2", fileId = "197472", text = "dwarvensignpostpointer01.m2", }, @@ -31515,199 +37634,239 @@ WeakAuras.ModelPaths = { }, { value = "signs", + text = "signs", children = { { value = "dwarfsign_alchemist.m2", + text = "dwarfsign_alchemist.m2", fileId = "197475", text = "dwarfsign_alchemist.m2", }, { value = "dwarfsign_armory.m2", + text = "dwarfsign_armory.m2", fileId = "197477", text = "dwarfsign_armory.m2", }, { value = "dwarfsign_axes.m2", + text = "dwarfsign_axes.m2", fileId = "197478", text = "dwarfsign_axes.m2", }, { value = "dwarfsign_bags.m2", + text = "dwarfsign_bags.m2", fileId = "197480", text = "dwarfsign_bags.m2", }, { value = "dwarfsign_bakery.m2", + text = "dwarfsign_bakery.m2", fileId = "197482", text = "dwarfsign_bakery.m2", }, { value = "dwarfsign_bank.m2", + text = "dwarfsign_bank.m2", fileId = "197484", text = "dwarfsign_bank.m2", }, { value = "dwarfsign_blacksmith.m2", + text = "dwarfsign_blacksmith.m2", fileId = "197486", text = "dwarfsign_blacksmith.m2", }, { value = "dwarfsign_cartography.m2", + text = "dwarfsign_cartography.m2", fileId = "197488", text = "dwarfsign_cartography.m2", }, { value = "dwarfsign_cheese.m2", + text = "dwarfsign_cheese.m2", fileId = "197490", text = "dwarfsign_cheese.m2", }, { value = "dwarfsign_clotharmor.m2", + text = "dwarfsign_clotharmor.m2", fileId = "197492", text = "dwarfsign_clotharmor.m2", }, { value = "dwarfsign_cook.m2", + text = "dwarfsign_cook.m2", fileId = "197494", text = "dwarfsign_cook.m2", }, { value = "dwarfsign_daggers.m2", + text = "dwarfsign_daggers.m2", fileId = "197496", text = "dwarfsign_daggers.m2", }, { value = "dwarfsign_drinks.m2", + text = "dwarfsign_drinks.m2", fileId = "197498", text = "dwarfsign_drinks.m2", }, { value = "dwarfsign_enchanting.m2", + text = "dwarfsign_enchanting.m2", fileId = "197500", text = "dwarfsign_enchanting.m2", }, { value = "dwarfsign_fireworks.m2", + text = "dwarfsign_fireworks.m2", fileId = "197502", text = "dwarfsign_fireworks.m2", }, { value = "dwarfsign_firstaid.m2", + text = "dwarfsign_firstaid.m2", fileId = "197504", text = "dwarfsign_firstaid.m2", }, { value = "dwarfsign_fishing.m2", + text = "dwarfsign_fishing.m2", fileId = "197506", text = "dwarfsign_fishing.m2", }, { value = "dwarfsign_fletcher.m2", + text = "dwarfsign_fletcher.m2", fileId = "197508", text = "dwarfsign_fletcher.m2", }, { value = "dwarfsign_generalgoods.m2", + text = "dwarfsign_generalgoods.m2", fileId = "197509", text = "dwarfsign_generalgoods.m2", }, { value = "dwarfsign_gryphon.m2", + text = "dwarfsign_gryphon.m2", fileId = "197512", text = "dwarfsign_gryphon.m2", }, { value = "dwarfsign_gunsmith.m2", + text = "dwarfsign_gunsmith.m2", fileId = "197514", text = "dwarfsign_gunsmith.m2", }, { value = "dwarfsign_herbalist.m2", + text = "dwarfsign_herbalist.m2", fileId = "197516", text = "dwarfsign_herbalist.m2", }, { value = "dwarfsign_inscribing.m2", + text = "dwarfsign_inscribing.m2", fileId = "197518", text = "dwarfsign_inscribing.m2", }, { value = "dwarfsign_leatherarmor.m2", + text = "dwarfsign_leatherarmor.m2", fileId = "197520", text = "dwarfsign_leatherarmor.m2", }, { value = "dwarfsign_lockpicking.m2", + text = "dwarfsign_lockpicking.m2", fileId = "197522", text = "dwarfsign_lockpicking.m2", }, { value = "dwarfsign_maces.m2", + text = "dwarfsign_maces.m2", fileId = "197524", text = "dwarfsign_maces.m2", }, { value = "dwarfsign_magicshop.m2", + text = "dwarfsign_magicshop.m2", fileId = "197526", text = "dwarfsign_magicshop.m2", }, { value = "dwarfsign_mailarmor.m2", + text = "dwarfsign_mailarmor.m2", fileId = "197528", text = "dwarfsign_mailarmor.m2", }, { value = "dwarfsign_meat.m2", + text = "dwarfsign_meat.m2", fileId = "197530", text = "dwarfsign_meat.m2", }, { value = "dwarfsign_miner.m2", + text = "dwarfsign_miner.m2", fileId = "197532", text = "dwarfsign_miner.m2", }, { value = "dwarfsign_misc.m2", + text = "dwarfsign_misc.m2", fileId = "197534", text = "dwarfsign_misc.m2", }, { value = "dwarfsign_staves.m2", + text = "dwarfsign_staves.m2", fileId = "197536", text = "dwarfsign_staves.m2", }, { value = "dwarfsign_swords.m2", + text = "dwarfsign_swords.m2", fileId = "197538", text = "dwarfsign_swords.m2", }, { value = "dwarfsign_tabard.m2", + text = "dwarfsign_tabard.m2", fileId = "197540", text = "dwarfsign_tabard.m2", }, { value = "dwarfsign_tailor.m2", + text = "dwarfsign_tailor.m2", fileId = "197542", text = "dwarfsign_tailor.m2", }, { value = "dwarfsign_tavern.m2", + text = "dwarfsign_tavern.m2", fileId = "197544", text = "dwarfsign_tavern.m2", }, { value = "dwarfsign_weaponry.m2", + text = "dwarfsign_weaponry.m2", fileId = "197545", text = "dwarfsign_weaponry.m2", }, { value = "dwarfsign_winery.m2", + text = "dwarfsign_winery.m2", fileId = "197548", text = "dwarfsign_winery.m2", }, { value = "gnomesign_engineer.m2", + text = "gnomesign_engineer.m2", fileId = "197550", text = "gnomesign_engineer.m2", }, @@ -31716,14 +37875,17 @@ WeakAuras.ModelPaths = { }, { value = "steins", + text = "steins", children = { { value = "dwarvenstein01.m2", + text = "dwarvenstein01.m2", fileId = "197551", text = "dwarvenstein01.m2", }, { value = "dwarvenstein02.m2", + text = "dwarvenstein02.m2", fileId = "197552", text = "dwarvenstein02.m2", }, @@ -31732,109 +37894,131 @@ WeakAuras.ModelPaths = { }, { value = "tables", + text = "tables", children = { { value = "dwarventableaverage01.m2", + text = "dwarventableaverage01.m2", fileId = "197555", text = "dwarventableaverage01.m2", }, { value = "dwarventableaverage02.m2", + text = "dwarventableaverage02.m2", fileId = "197556", text = "dwarventableaverage02.m2", }, { value = "dwarventableaverage03.m2", + text = "dwarventableaverage03.m2", fileId = "197557", text = "dwarventableaverage03.m2", }, { value = "dwarventableaverage04.m2", + text = "dwarventableaverage04.m2", fileId = "197558", text = "dwarventableaverage04.m2", }, { value = "dwarventableaverage05.m2", + text = "dwarventableaverage05.m2", fileId = "197559", text = "dwarventableaverage05.m2", }, { value = "dwarventablelarge.m2", + text = "dwarventablelarge.m2", fileId = "197561", text = "dwarventablelarge.m2", }, { value = "dwarventableornate01.m2", + text = "dwarventableornate01.m2", fileId = "197562", text = "dwarventableornate01.m2", }, { value = "dwarventableornate02.m2", + text = "dwarventableornate02.m2", fileId = "197563", text = "dwarventableornate02.m2", }, { value = "dwarventableornate03.m2", + text = "dwarventableornate03.m2", fileId = "197564", text = "dwarventableornate03.m2", }, { value = "dwarventableornate04.m2", + text = "dwarventableornate04.m2", fileId = "197565", text = "dwarventableornate04.m2", }, { value = "dwarventableornate05.m2", + text = "dwarventableornate05.m2", fileId = "197566", text = "dwarventableornate05.m2", }, { value = "dwarventableornate06.m2", + text = "dwarventableornate06.m2", fileId = "197567", text = "dwarventableornate06.m2", }, { value = "dwarventableornate07.m2", + text = "dwarventableornate07.m2", fileId = "197568", text = "dwarventableornate07.m2", }, { value = "dwarventableornate08.m2", + text = "dwarventableornate08.m2", fileId = "197569", text = "dwarventableornate08.m2", }, { value = "dwarventablesimple01.m2", + text = "dwarventablesimple01.m2", fileId = "197571", text = "dwarventablesimple01.m2", }, { value = "dwarventablesimple02.m2", + text = "dwarventablesimple02.m2", fileId = "197572", text = "dwarventablesimple02.m2", }, { value = "dwarventablesimple03.m2", + text = "dwarventablesimple03.m2", fileId = "197573", text = "dwarventablesimple03.m2", }, { value = "dwarventablesimple04.m2", + text = "dwarventablesimple04.m2", fileId = "197574", text = "dwarventablesimple04.m2", }, { value = "dwarventablesimple05.m2", + text = "dwarventablesimple05.m2", fileId = "197575", text = "dwarventablesimple05.m2", }, { value = "dwarventablesmall.m2", + text = "dwarventablesmall.m2", fileId = "197576", text = "dwarventablesmall.m2", }, { value = "readingtable01.m2", + text = "readingtable01.m2", fileId = "197579", text = "readingtable01.m2", }, @@ -31843,54 +38027,65 @@ WeakAuras.ModelPaths = { }, { value = "targets", + text = "targets", children = { { value = "guntargetstand.m2", + text = "guntargetstand.m2", fileId = "197588", text = "guntargetstand.m2", }, { value = "targetaxe01.m2", + text = "targetaxe01.m2", fileId = "197591", text = "targetaxe01.m2", }, { value = "targetaxe02.m2", + text = "targetaxe02.m2", fileId = "197592", text = "targetaxe02.m2", }, { value = "targetaxe03.m2", + text = "targetaxe03.m2", fileId = "197593", text = "targetaxe03.m2", }, { value = "targethammer01.m2", + text = "targethammer01.m2", fileId = "197594", text = "targethammer01.m2", }, { value = "targethammer02.m2", + text = "targethammer02.m2", fileId = "197595", text = "targethammer02.m2", }, { value = "targethammer03.m2", + text = "targethammer03.m2", fileId = "197596", text = "targethammer03.m2", }, { value = "targetogre01.m2", + text = "targetogre01.m2", fileId = "197597", text = "targetogre01.m2", }, { value = "targetorc01.m2", + text = "targetorc01.m2", fileId = "197598", text = "targetorc01.m2", }, { value = "targetorc02.m2", + text = "targetorc02.m2", fileId = "197599", text = "targetorc02.m2", }, @@ -31899,39 +38094,47 @@ WeakAuras.ModelPaths = { }, { value = "tavernstuff", + text = "tavernstuff", children = { { value = "alekegfoot.m2", + text = "alekegfoot.m2", fileId = "197601", text = "alekegfoot.m2", }, { value = "alekegs01.m2", + text = "alekegs01.m2", fileId = "197602", text = "alekegs01.m2", }, { value = "alekegsingle.m2", + text = "alekegsingle.m2", fileId = "197603", text = "alekegsingle.m2", }, { value = "brewerytanks01.m2", + text = "brewerytanks01.m2", fileId = "197604", text = "brewerytanks01.m2", }, { value = "grainsacs01.m2", + text = "grainsacs01.m2", fileId = "197607", text = "grainsacs01.m2", }, { value = "grainsacs02.m2", + text = "grainsacs02.m2", fileId = "197608", text = "grainsacs02.m2", }, { value = "sink01.m2", + text = "sink01.m2", fileId = "197610", text = "sink01.m2", }, @@ -31940,19 +38143,23 @@ WeakAuras.ModelPaths = { }, { value = "tilings", + text = "tilings", children = { { value = "dwarventiling01.m2", + text = "dwarventiling01.m2", fileId = "197614", text = "dwarventiling01.m2", }, { value = "dwarventiling02.m2", + text = "dwarventiling02.m2", fileId = "197615", text = "dwarventiling02.m2", }, { value = "dwarventiling03.m2", + text = "dwarventiling03.m2", fileId = "197616", text = "dwarventiling03.m2", }, @@ -31961,29 +38168,35 @@ WeakAuras.ModelPaths = { }, { value = "tools", + text = "tools", children = { { value = "lunchbox01.m2", + text = "lunchbox01.m2", fileId = "197617", text = "lunchbox01.m2", }, { value = "mallet01.m2", + text = "mallet01.m2", fileId = "197618", text = "mallet01.m2", }, { value = "screwdriver01.m2", + text = "screwdriver01.m2", fileId = "197619", text = "screwdriver01.m2", }, { value = "toolbox01.m2", + text = "toolbox01.m2", fileId = "197621", text = "toolbox01.m2", }, { value = "wrench01.m2", + text = "wrench01.m2", fileId = "197622", text = "wrench01.m2", }, @@ -31992,49 +38205,59 @@ WeakAuras.ModelPaths = { }, { value = "wardrobe", + text = "wardrobe", children = { { value = "wardrobedwarvenaverage01.m2", + text = "wardrobedwarvenaverage01.m2", fileId = "197626", text = "wardrobedwarvenaverage01.m2", }, { value = "wardrobedwarvenaverage02.m2", + text = "wardrobedwarvenaverage02.m2", fileId = "197627", text = "wardrobedwarvenaverage02.m2", }, { value = "wardrobedwarvenaverage03.m2", + text = "wardrobedwarvenaverage03.m2", fileId = "197628", text = "wardrobedwarvenaverage03.m2", }, { value = "wardrobedwarvenornate01.m2", + text = "wardrobedwarvenornate01.m2", fileId = "197629", text = "wardrobedwarvenornate01.m2", }, { value = "wardrobedwarvenornate02.m2", + text = "wardrobedwarvenornate02.m2", fileId = "197630", text = "wardrobedwarvenornate02.m2", }, { value = "wardrobedwarvenornate03.m2", + text = "wardrobedwarvenornate03.m2", fileId = "197631", text = "wardrobedwarvenornate03.m2", }, { value = "wardrobedwarvensimple01.m2", + text = "wardrobedwarvensimple01.m2", fileId = "197632", text = "wardrobedwarvensimple01.m2", }, { value = "wardrobedwarvensimple02.m2", + text = "wardrobedwarvensimple02.m2", fileId = "197633", text = "wardrobedwarvensimple02.m2", }, { value = "wardrobedwarvensimple03.m2", + text = "wardrobedwarvensimple03.m2", fileId = "197634", text = "wardrobedwarvensimple03.m2", }, @@ -32049,15 +38272,19 @@ WeakAuras.ModelPaths = { }, { value = "gnome", + text = "gnome", children = { { value = "activedoodads", + text = "activedoodads", children = { { value = "gnomemachine", + text = "gnomemachine", children = { { value = "gnomemachine.m2", + text = "gnomemachine.m2", fileId = "197635", text = "gnomemachine.m2", }, @@ -32069,32 +38296,39 @@ WeakAuras.ModelPaths = { }, { value = "passive doodads", + text = "passive doodads", children = { { value = "buckets", + text = "buckets", children = { { value = "gnomebucket01.m2", + text = "gnomebucket01.m2", fileId = "197640", text = "gnomebucket01.m2", }, { value = "gnomebucket02.m2", + text = "gnomebucket02.m2", fileId = "197641", text = "gnomebucket02.m2", }, { value = "gnomebucket03.m2", + text = "gnomebucket03.m2", fileId = "197642", text = "gnomebucket03.m2", }, { value = "gnomebucket04.m2", + text = "gnomebucket04.m2", fileId = "197643", text = "gnomebucket04.m2", }, { value = "gnomebucket05.m2", + text = "gnomebucket05.m2", fileId = "197644", text = "gnomebucket05.m2", }, @@ -32103,24 +38337,29 @@ WeakAuras.ModelPaths = { }, { value = "elevatorparts", + text = "elevatorparts", children = { { value = "gnomeelevatorcar01.m2", + text = "gnomeelevatorcar01.m2", fileId = "197646", text = "gnomeelevatorcar01.m2", }, { value = "gnomeelevatorcar02.m2", + text = "gnomeelevatorcar02.m2", fileId = "197647", text = "gnomeelevatorcar02.m2", }, { value = "gnomeelevatorcar03.m2", + text = "gnomeelevatorcar03.m2", fileId = "197648", text = "gnomeelevatorcar03.m2", }, { value = "gnomeelevatorcar05.m2", + text = "gnomeelevatorcar05.m2", fileId = "197649", text = "gnomeelevatorcar05.m2", }, @@ -32129,69 +38368,83 @@ WeakAuras.ModelPaths = { }, { value = "furniture", + text = "furniture", children = { { value = "gnomebed01.m2", + text = "gnomebed01.m2", fileId = "197653", text = "gnomebed01.m2", }, { value = "gnomebed02.m2", + text = "gnomebed02.m2", fileId = "197654", text = "gnomebed02.m2", }, { value = "gnomebed03.m2", + text = "gnomebed03.m2", fileId = "197655", text = "gnomebed03.m2", }, { value = "gnomebedslanted01.m2", + text = "gnomebedslanted01.m2", fileId = "197656", text = "gnomebedslanted01.m2", }, { value = "gnomebenchsittable.m2", + text = "gnomebenchsittable.m2", fileId = "197657", text = "gnomebenchsittable.m2", }, { value = "gnomechair01.m2", + text = "gnomechair01.m2", fileId = "197658", text = "gnomechair01.m2", }, { value = "gnomechair02.m2", + text = "gnomechair02.m2", fileId = "197659", text = "gnomechair02.m2", }, { value = "gnomechair03.m2", + text = "gnomechair03.m2", fileId = "197660", text = "gnomechair03.m2", }, { value = "gnometable01.m2", + text = "gnometable01.m2", fileId = "197661", text = "gnometable01.m2", }, { value = "gnometable02.m2", + text = "gnometable02.m2", fileId = "197662", text = "gnometable02.m2", }, { value = "gnometable03.m2", + text = "gnometable03.m2", fileId = "197663", text = "gnometable03.m2", }, { value = "gnometable04.m2", + text = "gnometable04.m2", fileId = "197664", text = "gnometable04.m2", }, { value = "gnometable05.m2", + text = "gnometable05.m2", fileId = "197665", text = "gnometable05.m2", }, @@ -32200,29 +38453,35 @@ WeakAuras.ModelPaths = { }, { value = "gears&levers", + text = "gears&levers", children = { { value = "gnomebiggear.m2", + text = "gnomebiggear.m2", fileId = "197671", text = "gnomebiggear.m2", }, { value = "gnomegauge01.m2", + text = "gnomegauge01.m2", fileId = "197672", text = "gnomegauge01.m2", }, { value = "gnomelever.m2", + text = "gnomelever.m2", fileId = "197673", text = "gnomelever.m2", }, { value = "gnomemcwheel.m2", + text = "gnomemcwheel.m2", fileId = "197674", text = "gnomemcwheel.m2", }, { value = "gnomesmallgear.m2", + text = "gnomesmallgear.m2", fileId = "197675", text = "gnomesmallgear.m2", }, @@ -32231,54 +38490,65 @@ WeakAuras.ModelPaths = { }, { value = "gnomemachine", + text = "gnomemachine", children = { { value = "gnomemachine01.m2", + text = "gnomemachine01.m2", fileId = "197678", text = "gnomemachine01.m2", }, { value = "gnomemachine02.m2", + text = "gnomemachine02.m2", fileId = "197679", text = "gnomemachine02.m2", }, { value = "gnomemachine03.m2", + text = "gnomemachine03.m2", fileId = "197680", text = "gnomemachine03.m2", }, { value = "gnomemachine04.m2", + text = "gnomemachine04.m2", fileId = "197681", text = "gnomemachine04.m2", }, { value = "gnomemachine05.m2", + text = "gnomemachine05.m2", fileId = "197682", text = "gnomemachine05.m2", }, { value = "gnomemachinebroken03.m2", + text = "gnomemachinebroken03.m2", fileId = "197684", text = "gnomemachinebroken03.m2", }, { value = "gnomemachinebroken04.m2", + text = "gnomemachinebroken04.m2", fileId = "197685", text = "gnomemachinebroken04.m2", }, { value = "gnomemachinebroken05.m2", + text = "gnomemachinebroken05.m2", fileId = "197686", text = "gnomemachinebroken05.m2", }, { value = "gnomesubwayglass.m2", + text = "gnomesubwayglass.m2", fileId = "197687", text = "gnomesubwayglass.m2", }, { value = "gnomesubwaysign.m2", + text = "gnomesubwaysign.m2", fileId = "197688", text = "gnomesubwaysign.m2", }, @@ -32287,14 +38557,17 @@ WeakAuras.ModelPaths = { }, { value = "gnomemachinery", + text = "gnomemachinery", children = { { value = "gnomehutelevator.m2", + text = "gnomehutelevator.m2", fileId = "197700", text = "gnomehutelevator.m2", }, { value = "gnomehutmachinery.m2", + text = "gnomehutmachinery.m2", fileId = "197701", text = "gnomehutmachinery.m2", }, @@ -32303,9 +38576,11 @@ WeakAuras.ModelPaths = { }, { value = "gnomeroboarm", + text = "gnomeroboarm", children = { { value = "gnomeroboarm.m2", + text = "gnomeroboarm.m2", fileId = "197704", text = "gnomeroboarm.m2", }, @@ -32314,14 +38589,17 @@ WeakAuras.ModelPaths = { }, { value = "gnomerocketcarts", + text = "gnomerocketcarts", children = { { value = "crashedgnomerc.m2", + text = "crashedgnomerc.m2", fileId = "197705", text = "crashedgnomerc.m2", }, { value = "gnomerocketcart.m2", + text = "gnomerocketcart.m2", fileId = "197707", text = "gnomerocketcart.m2", }, @@ -32330,9 +38608,11 @@ WeakAuras.ModelPaths = { }, { value = "gnomewalladdons", + text = "gnomewalladdons", children = { { value = "gnomewalladdon01.m2", + text = "gnomewalladdon01.m2", fileId = "197708", text = "gnomewalladdon01.m2", }, @@ -32341,19 +38621,23 @@ WeakAuras.ModelPaths = { }, { value = "hazardlights", + text = "hazardlights", children = { { value = "gnomehazardlight01.m2", + text = "gnomehazardlight01.m2", fileId = "197709", text = "gnomehazardlight01.m2", }, { value = "gnomehazardlight02.m2", + text = "gnomehazardlight02.m2", fileId = "197710", text = "gnomehazardlight02.m2", }, { value = "gnomehazardlightred.m2", + text = "gnomehazardlightred.m2", fileId = "197711", text = "gnomehazardlightred.m2", }, @@ -32362,24 +38646,29 @@ WeakAuras.ModelPaths = { }, { value = "lights", + text = "lights", children = { { value = "gnomemaintenancelight01.m2", + text = "gnomemaintenancelight01.m2", fileId = "197716", text = "gnomemaintenancelight01.m2", }, { value = "gnomemaintenancelight02.m2", + text = "gnomemaintenancelight02.m2", fileId = "197717", text = "gnomemaintenancelight02.m2", }, { value = "gnomestructuralspotlight01.m2", + text = "gnomestructuralspotlight01.m2", fileId = "197718", text = "gnomestructuralspotlight01.m2", }, { value = "gnomestructuralspotlight02.m2", + text = "gnomestructuralspotlight02.m2", fileId = "197719", text = "gnomestructuralspotlight02.m2", }, @@ -32388,74 +38677,89 @@ WeakAuras.ModelPaths = { }, { value = "parts", + text = "parts", children = { { value = "gnomescrew01.m2", + text = "gnomescrew01.m2", fileId = "197722", text = "gnomescrew01.m2", }, { value = "gnomescrew02.m2", + text = "gnomescrew02.m2", fileId = "197723", text = "gnomescrew02.m2", }, { value = "gnomescrew03.m2", + text = "gnomescrew03.m2", fileId = "197724", text = "gnomescrew03.m2", }, { value = "gnomescrew04.m2", + text = "gnomescrew04.m2", fileId = "197725", text = "gnomescrew04.m2", }, { value = "gnomescrew05.m2", + text = "gnomescrew05.m2", fileId = "197726", text = "gnomescrew05.m2", }, { value = "gnomescrew06.m2", + text = "gnomescrew06.m2", fileId = "197727", text = "gnomescrew06.m2", }, { value = "gnomescrew07.m2", + text = "gnomescrew07.m2", fileId = "197728", text = "gnomescrew07.m2", }, { value = "gnomescrew08.m2", + text = "gnomescrew08.m2", fileId = "197729", text = "gnomescrew08.m2", }, { value = "gnomescrew09.m2", + text = "gnomescrew09.m2", fileId = "197730", text = "gnomescrew09.m2", }, { value = "gnomesteelplate01.m2", + text = "gnomesteelplate01.m2", fileId = "197731", text = "gnomesteelplate01.m2", }, { value = "gnomesteelplate02.m2", + text = "gnomesteelplate02.m2", fileId = "197732", text = "gnomesteelplate02.m2", }, { value = "gnomesteelplate03.m2", + text = "gnomesteelplate03.m2", fileId = "197733", text = "gnomesteelplate03.m2", }, { value = "gnomesteelplate04.m2", + text = "gnomesteelplate04.m2", fileId = "197734", text = "gnomesteelplate04.m2", }, { value = "gnomesteelplate05.m2", + text = "gnomesteelplate05.m2", fileId = "197735", text = "gnomesteelplate05.m2", }, @@ -32464,24 +38768,29 @@ WeakAuras.ModelPaths = { }, { value = "pipes", + text = "pipes", children = { { value = "gnomepipe01.m2", + text = "gnomepipe01.m2", fileId = "197736", text = "gnomepipe01.m2", }, { value = "gnomepipe02.m2", + text = "gnomepipe02.m2", fileId = "197737", text = "gnomepipe02.m2", }, { value = "gnomepipe03.m2", + text = "gnomepipe03.m2", fileId = "197738", text = "gnomepipe03.m2", }, { value = "gnomepipe04.m2", + text = "gnomepipe04.m2", fileId = "197739", text = "gnomepipe04.m2", }, @@ -32490,19 +38799,23 @@ WeakAuras.ModelPaths = { }, { value = "signposts", + text = "signposts", children = { { value = "gnomesignpost01.m2", + text = "gnomesignpost01.m2", fileId = "197740", text = "gnomesignpost01.m2", }, { value = "gnomesignpost02.m2", + text = "gnomesignpost02.m2", fileId = "197741", text = "gnomesignpost02.m2", }, { value = "gnomestreetsign01.m2", + text = "gnomestreetsign01.m2", fileId = "197742", text = "gnomestreetsign01.m2", }, @@ -32511,9 +38824,11 @@ WeakAuras.ModelPaths = { }, { value = "spidertank", + text = "spidertank", children = { { value = "gnomespidertank01.m2", + text = "gnomespidertank01.m2", fileId = "197745", text = "gnomespidertank01.m2", }, @@ -32522,19 +38837,23 @@ WeakAuras.ModelPaths = { }, { value = "steamwhistles", + text = "steamwhistles", children = { { value = "gnomewhistle02.m2", + text = "gnomewhistle02.m2", fileId = "197747", text = "gnomewhistle02.m2", }, { value = "gnomewhistle03.m2", + text = "gnomewhistle03.m2", fileId = "197748", text = "gnomewhistle03.m2", }, { value = "gnomewhistle04.m2", + text = "gnomewhistle04.m2", fileId = "197749", text = "gnomewhistle04.m2", }, @@ -32543,19 +38862,23 @@ WeakAuras.ModelPaths = { }, { value = "subway", + text = "subway", children = { { value = "subwaycar.m2", + text = "subwaycar.m2", fileId = "197751", text = "subwaycar.m2", }, { value = "subwayramp.m2", + text = "subwayramp.m2", fileId = "197752", text = "subwayramp.m2", }, { value = "underwaterlightshaft.m2", + text = "underwaterlightshaft.m2", fileId = "197753", text = "underwaterlightshaft.m2", }, @@ -32564,34 +38887,41 @@ WeakAuras.ModelPaths = { }, { value = "tools", + text = "tools", children = { { value = "gnometool01.m2", + text = "gnometool01.m2", fileId = "197754", text = "gnometool01.m2", }, { value = "gnometool02.m2", + text = "gnometool02.m2", fileId = "197755", text = "gnometool02.m2", }, { value = "gnometool03.m2", + text = "gnometool03.m2", fileId = "197756", text = "gnometool03.m2", }, { value = "gnometool04.m2", + text = "gnometool04.m2", fileId = "197757", text = "gnometool04.m2", }, { value = "gnometool05.m2", + text = "gnometool05.m2", fileId = "197758", text = "gnometool05.m2", }, { value = "gnometool06.m2", + text = "gnometool06.m2", fileId = "197759", text = "gnometool06.m2", }, @@ -32606,15 +38936,19 @@ WeakAuras.ModelPaths = { }, { value = "goblin", + text = "goblin", children = { { value = "passivedoodads", + text = "passivedoodads", children = { { value = "controlpanel", + text = "controlpanel", children = { { value = "goblincontrolpanel.m2", + text = "goblincontrolpanel.m2", fileId = "197760", text = "goblincontrolpanel.m2", }, @@ -32623,19 +38957,23 @@ WeakAuras.ModelPaths = { }, { value = "goblinmachinery", + text = "goblinmachinery", children = { { value = "goblinhutbottles.m2", + text = "goblinhutbottles.m2", fileId = "197766", text = "goblinhutbottles.m2", }, { value = "goblinmachinery.m2", + text = "goblinmachinery.m2", fileId = "197767", text = "goblinmachinery.m2", }, { value = "goblinweathervane.m2", + text = "goblinweathervane.m2", fileId = "197768", text = "goblinweathervane.m2", }, @@ -32644,34 +38982,41 @@ WeakAuras.ModelPaths = { }, { value = "goblinrocketcarts", + text = "goblinrocketcarts", children = { { value = "crashedgoblinrc.m2", + text = "crashedgoblinrc.m2", fileId = "197777", text = "crashedgoblinrc.m2", }, { value = "goblinrocketcart01.m2", + text = "goblinrocketcart01.m2", fileId = "197779", text = "goblinrocketcart01.m2", }, { value = "goblinrocketcart02.m2", + text = "goblinrocketcart02.m2", fileId = "197780", text = "goblinrocketcart02.m2", }, { value = "goblinrocketcart03.m2", + text = "goblinrocketcart03.m2", fileId = "197781", text = "goblinrocketcart03.m2", }, { value = "goblinrocketcart04.m2", + text = "goblinrocketcart04.m2", fileId = "197782", text = "goblinrocketcart04.m2", }, { value = "goblinrocketcart05.m2", + text = "goblinrocketcart05.m2", fileId = "197783", text = "goblinrocketcart05.m2", }, @@ -32680,14 +39025,17 @@ WeakAuras.ModelPaths = { }, { value = "goblinshreddersuit", + text = "goblinshreddersuit", children = { { value = "goblinshreddersuit01.m2", + text = "goblinshreddersuit01.m2", fileId = "197789", text = "goblinshreddersuit01.m2", }, { value = "goblinshreddersuit02.m2", + text = "goblinshreddersuit02.m2", fileId = "197790", text = "goblinshreddersuit02.m2", }, @@ -32696,39 +39044,47 @@ WeakAuras.ModelPaths = { }, { value = "goblintents", + text = "goblintents", children = { { value = "goblintent01.m2", + text = "goblintent01.m2", fileId = "197791", text = "goblintent01.m2", }, { value = "goblintent02.m2", + text = "goblintent02.m2", fileId = "197792", text = "goblintent02.m2", }, { value = "goblintent03.m2", + text = "goblintent03.m2", fileId = "197793", text = "goblintent03.m2", }, { value = "goblintent04.m2", + text = "goblintent04.m2", fileId = "197794", text = "goblintent04.m2", }, { value = "goblintent05.m2", + text = "goblintent05.m2", fileId = "197795", text = "goblintent05.m2", }, { value = "goblintent06.m2", + text = "goblintent06.m2", fileId = "197796", text = "goblintent06.m2", }, { value = "goblintent07.m2", + text = "goblintent07.m2", fileId = "197797", text = "goblintent07.m2", }, @@ -32737,9 +39093,11 @@ WeakAuras.ModelPaths = { }, { value = "goblintntwagon", + text = "goblintntwagon", children = { { value = "goblinwagontnt_01.m2", + text = "goblinwagontnt_01.m2", fileId = "197799", text = "goblinwagontnt_01.m2", }, @@ -32754,80 +39112,97 @@ WeakAuras.ModelPaths = { }, { value = "human", + text = "human", children = { { value = "activedoodads", + text = "activedoodads", children = { { value = "doors", + text = "doors", children = { { value = "deadminedoor01.m2", + text = "deadminedoor01.m2", fileId = "197803", text = "deadminedoor01.m2", }, { value = "deadminedoor02.m2", + text = "deadminedoor02.m2", fileId = "197804", text = "deadminedoor02.m2", }, { value = "farmdoor01test.m2", + text = "farmdoor01test.m2", fileId = "197807", text = "farmdoor01test.m2", }, { value = "genericwroughtgate01.m2", + text = "genericwroughtgate01.m2", fileId = "197810", text = "genericwroughtgate01.m2", }, { value = "monestarybossdoor.m2", + text = "monestarybossdoor.m2", fileId = "197814", text = "monestarybossdoor.m2", }, { value = "monestaryhalldoor.m2", + text = "monestaryhalldoor.m2", fileId = "197815", text = "monestaryhalldoor.m2", }, { value = "monestarysecretdoor.m2", + text = "monestarysecretdoor.m2", fileId = "197816", text = "monestarysecretdoor.m2", }, { value = "portcullisactive.m2", + text = "portcullisactive.m2", fileId = "197817", text = "portcullisactive.m2", }, { value = "scarletcathedraldoor.m2", + text = "scarletcathedraldoor.m2", fileId = "197819", text = "scarletcathedraldoor.m2", }, { value = "shadowfangdoor01.m2", + text = "shadowfangdoor01.m2", fileId = "197820", text = "shadowfangdoor01.m2", }, { value = "shadowfangdoor02.m2", + text = "shadowfangdoor02.m2", fileId = "197821", text = "shadowfangdoor02.m2", }, { value = "undeadwroughtgate01.m2", + text = "undeadwroughtgate01.m2", fileId = "197823", text = "undeadwroughtgate01.m2", }, { value = "wroughtirondoor.m2", + text = "wroughtirondoor.m2", fileId = "197825", text = "wroughtirondoor.m2", }, { value = "wroughtirondoor02.m2", + text = "wroughtirondoor02.m2", fileId = "197827", text = "wroughtirondoor02.m2", }, @@ -32836,9 +39211,11 @@ WeakAuras.ModelPaths = { }, { value = "shadowfang", + text = "shadowfang", children = { { value = "wizardssphere.m2", + text = "wizardssphere.m2", fileId = "197829", text = "wizardssphere.m2", }, @@ -32850,22 +39227,27 @@ WeakAuras.ModelPaths = { }, { value = "passive doodads", + text = "passive doodads", children = { { value = "altars", + text = "altars", children = { { value = "altar01.m2", + text = "altar01.m2", fileId = "197831", text = "altar01.m2", }, { value = "altar02.m2", + text = "altar02.m2", fileId = "197832", text = "altar02.m2", }, { value = "generalaltar01.m2", + text = "generalaltar01.m2", fileId = "197835", text = "generalaltar01.m2", }, @@ -32874,9 +39256,11 @@ WeakAuras.ModelPaths = { }, { value = "anchor", + text = "anchor", children = { { value = "deadmineanchor.m2", + text = "deadmineanchor.m2", fileId = "197836", text = "deadmineanchor.m2", }, @@ -32885,9 +39269,11 @@ WeakAuras.ModelPaths = { }, { value = "anchors", + text = "anchors", children = { { value = "bootyanchor.m2", + text = "bootyanchor.m2", fileId = "197838", text = "bootyanchor.m2", }, @@ -32896,29 +39282,35 @@ WeakAuras.ModelPaths = { }, { value = "animalheads", + text = "animalheads", children = { { value = "duskwoodboarhead01.m2", + text = "duskwoodboarhead01.m2", fileId = "197841", text = "duskwoodboarhead01.m2", }, { value = "duskwooddeerhead01.m2", + text = "duskwooddeerhead01.m2", fileId = "197842", text = "duskwooddeerhead01.m2", }, { value = "stuffedbear.m2", + text = "stuffedbear.m2", fileId = "197845", text = "stuffedbear.m2", }, { value = "stuffedfrenzy.m2", + text = "stuffedfrenzy.m2", fileId = "197846", text = "stuffedfrenzy.m2", }, { value = "stuffedtallstrider.m2", + text = "stuffedtallstrider.m2", fileId = "197847", text = "stuffedtallstrider.m2", }, @@ -32927,9 +39319,11 @@ WeakAuras.ModelPaths = { }, { value = "archerytargets", + text = "archerytargets", children = { { value = "stormwindarcherytarget01.m2", + text = "stormwindarcherytarget01.m2", fileId = "197849", text = "stormwindarcherytarget01.m2", }, @@ -32938,34 +39332,41 @@ WeakAuras.ModelPaths = { }, { value = "arches", + text = "arches", children = { { value = "gardenarch.m2", + text = "gardenarch.m2", fileId = "197851", text = "gardenarch.m2", }, { value = "gardenarchleftpost.m2", + text = "gardenarchleftpost.m2", fileId = "197852", text = "gardenarchleftpost.m2", }, { value = "gardenarchrightpost.m2", + text = "gardenarchrightpost.m2", fileId = "197853", text = "gardenarchrightpost.m2", }, { value = "gardenarchtop.m2", + text = "gardenarchtop.m2", fileId = "197854", text = "gardenarchtop.m2", }, { value = "trellis01.m2", + text = "trellis01.m2", fileId = "197858", text = "trellis01.m2", }, { value = "trellis02.m2", + text = "trellis02.m2", fileId = "197859", text = "trellis02.m2", }, @@ -32974,264 +39375,317 @@ WeakAuras.ModelPaths = { }, { value = "armor", + text = "armor", children = { { value = "armorbracerblue.m2", + text = "armorbracerblue.m2", fileId = "197860", text = "armorbracerblue.m2", }, { value = "armorbracergold.m2", + text = "armorbracergold.m2", fileId = "197861", text = "armorbracergold.m2", }, { value = "armorbracersilver.m2", + text = "armorbracersilver.m2", fileId = "197862", text = "armorbracersilver.m2", }, { value = "armorbracertrim.m2", + text = "armorbracertrim.m2", fileId = "197863", text = "armorbracertrim.m2", }, { value = "armorbreastplateblue.m2", + text = "armorbreastplateblue.m2", fileId = "197864", text = "armorbreastplateblue.m2", }, { value = "armorbreastplategold.m2", + text = "armorbreastplategold.m2", fileId = "197865", text = "armorbreastplategold.m2", }, { value = "armorbreastplategreen.m2", + text = "armorbreastplategreen.m2", fileId = "197866", text = "armorbreastplategreen.m2", }, { value = "armorbreastplatetrim.m2", + text = "armorbreastplatetrim.m2", fileId = "197867", text = "armorbreastplatetrim.m2", }, { value = "armorhelmbluevisordown.m2", + text = "armorhelmbluevisordown.m2", fileId = "197869", text = "armorhelmbluevisordown.m2", }, { value = "armorhelmbluevisorup.m2", + text = "armorhelmbluevisorup.m2", fileId = "197870", text = "armorhelmbluevisorup.m2", }, { value = "armorhelmgold.m2", + text = "armorhelmgold.m2", fileId = "197871", text = "armorhelmgold.m2", }, { value = "armorhelmgreen.m2", + text = "armorhelmgreen.m2", fileId = "197872", text = "armorhelmgreen.m2", }, { value = "armorhelmgreenflat.m2", + text = "armorhelmgreenflat.m2", fileId = "197873", text = "armorhelmgreenflat.m2", }, { value = "armorhelmtrim.m2", + text = "armorhelmtrim.m2", fileId = "197874", text = "armorhelmtrim.m2", }, { value = "armorhelmtrimflat.m2", + text = "armorhelmtrimflat.m2", fileId = "197875", text = "armorhelmtrimflat.m2", }, { value = "armorhelmvisorblue.m2", + text = "armorhelmvisorblue.m2", fileId = "197876", text = "armorhelmvisorblue.m2", }, { value = "armorleatherbracerblack.m2", + text = "armorleatherbracerblack.m2", fileId = "197877", text = "armorleatherbracerblack.m2", }, { value = "armorleatherbracerbrown.m2", + text = "armorleatherbracerbrown.m2", fileId = "197878", text = "armorleatherbracerbrown.m2", }, { value = "armorleatherbracerdark.m2", + text = "armorleatherbracerdark.m2", fileId = "197879", text = "armorleatherbracerdark.m2", }, { value = "armorleatherbracerorange.m2", + text = "armorleatherbracerorange.m2", fileId = "197880", text = "armorleatherbracerorange.m2", }, { value = "armorleatherhelmblack.m2", + text = "armorleatherhelmblack.m2", fileId = "197881", text = "armorleatherhelmblack.m2", }, { value = "armorleatherhelmblackflat.m2", + text = "armorleatherhelmblackflat.m2", fileId = "197882", text = "armorleatherhelmblackflat.m2", }, { value = "armorleatherhelmbrown.m2", + text = "armorleatherhelmbrown.m2", fileId = "197883", text = "armorleatherhelmbrown.m2", }, { value = "armorleatherhelmbrownflat.m2", + text = "armorleatherhelmbrownflat.m2", fileId = "197884", text = "armorleatherhelmbrownflat.m2", }, { value = "armorleatherlegplateblack.m2", + text = "armorleatherlegplateblack.m2", fileId = "197885", text = "armorleatherlegplateblack.m2", }, { value = "armorleatherlegplatebrown.m2", + text = "armorleatherlegplatebrown.m2", fileId = "197886", text = "armorleatherlegplatebrown.m2", }, { value = "armorleatherlegplatedark.m2", + text = "armorleatherlegplatedark.m2", fileId = "197887", text = "armorleatherlegplatedark.m2", }, { value = "armorleatherlegplateorange.m2", + text = "armorleatherlegplateorange.m2", fileId = "197888", text = "armorleatherlegplateorange.m2", }, { value = "armorleathershirtblack.m2", + text = "armorleathershirtblack.m2", fileId = "197889", text = "armorleathershirtblack.m2", }, { value = "armorleathershirtbrown.m2", + text = "armorleathershirtbrown.m2", fileId = "197890", text = "armorleathershirtbrown.m2", }, { value = "armorleathershirtdark.m2", + text = "armorleathershirtdark.m2", fileId = "197891", text = "armorleathershirtdark.m2", }, { value = "armorleathershirtorange.m2", + text = "armorleathershirtorange.m2", fileId = "197892", text = "armorleathershirtorange.m2", }, { value = "armorleathershoulderblack.m2", + text = "armorleathershoulderblack.m2", fileId = "197893", text = "armorleathershoulderblack.m2", }, { value = "armorleathershoulderdark.m2", + text = "armorleathershoulderdark.m2", fileId = "197894", text = "armorleathershoulderdark.m2", }, { value = "armorleathershoulderorange.m2", + text = "armorleathershoulderorange.m2", fileId = "197895", text = "armorleathershoulderorange.m2", }, { value = "armorlegplateblue.m2", + text = "armorlegplateblue.m2", fileId = "197896", text = "armorlegplateblue.m2", }, { value = "armorlegplategold.m2", + text = "armorlegplategold.m2", fileId = "197897", text = "armorlegplategold.m2", }, { value = "armorlegplatesilver.m2", + text = "armorlegplatesilver.m2", fileId = "197898", text = "armorlegplatesilver.m2", }, { value = "armorlegplatetrim.m2", + text = "armorlegplatetrim.m2", fileId = "197899", text = "armorlegplatetrim.m2", }, { value = "armormailhangingblue.m2", + text = "armormailhangingblue.m2", fileId = "197900", text = "armormailhangingblue.m2", }, { value = "armormailhangingbluelong.m2", + text = "armormailhangingbluelong.m2", fileId = "197901", text = "armormailhangingbluelong.m2", }, { value = "armormailhanginggold.m2", + text = "armormailhanginggold.m2", fileId = "197902", text = "armormailhanginggold.m2", }, { value = "armormailhanginggoldlong.m2", + text = "armormailhanginggoldlong.m2", fileId = "197903", text = "armormailhanginggoldlong.m2", }, { value = "armormailhangingred.m2", + text = "armormailhangingred.m2", fileId = "197904", text = "armormailhangingred.m2", }, { value = "armormailhangingredlong.m2", + text = "armormailhangingredlong.m2", fileId = "197905", text = "armormailhangingredlong.m2", }, { value = "armorshoulderblue.m2", + text = "armorshoulderblue.m2", fileId = "197906", text = "armorshoulderblue.m2", }, { value = "armorshouldergold.m2", + text = "armorshouldergold.m2", fileId = "197907", text = "armorshouldergold.m2", }, { value = "armorshouldersilver.m2", + text = "armorshouldersilver.m2", fileId = "197908", text = "armorshouldersilver.m2", }, { value = "armorshouldertrim.m2", + text = "armorshouldertrim.m2", fileId = "197909", text = "armorshouldertrim.m2", }, { value = "armorstand.m2", + text = "armorstand.m2", fileId = "197910", text = "armorstand.m2", }, { value = "armorstandmailblue.m2", + text = "armorstandmailblue.m2", fileId = "197911", text = "armorstandmailblue.m2", }, { value = "armorstandmailcoifblue.m2", + text = "armorstandmailcoifblue.m2", fileId = "197912", text = "armorstandmailcoifblue.m2", }, @@ -33240,84 +39694,101 @@ WeakAuras.ModelPaths = { }, { value = "artwork", + text = "artwork", children = { { value = "painting05.m2", + text = "painting05.m2", fileId = "197927", text = "painting05.m2", }, { value = "painting06.m2", + text = "painting06.m2", fileId = "197928", text = "painting06.m2", }, { value = "painting07.m2", + text = "painting07.m2", fileId = "197929", text = "painting07.m2", }, { value = "painting08.m2", + text = "painting08.m2", fileId = "197930", text = "painting08.m2", }, { value = "painting09.m2", + text = "painting09.m2", fileId = "197931", text = "painting09.m2", }, { value = "painting10.m2", + text = "painting10.m2", fileId = "197932", text = "painting10.m2", }, { value = "painting11.m2", + text = "painting11.m2", fileId = "197933", text = "painting11.m2", }, { value = "painting12.m2", + text = "painting12.m2", fileId = "197934", text = "painting12.m2", }, { value = "painting13.m2", + text = "painting13.m2", fileId = "197935", text = "painting13.m2", }, { value = "painting14.m2", + text = "painting14.m2", fileId = "197936", text = "painting14.m2", }, { value = "painting15.m2", + text = "painting15.m2", fileId = "197937", text = "painting15.m2", }, { value = "stormwindpainting01.m2", + text = "stormwindpainting01.m2", fileId = "197939", text = "stormwindpainting01.m2", }, { value = "stormwindpainting02.m2", + text = "stormwindpainting02.m2", fileId = "197940", text = "stormwindpainting02.m2", }, { value = "stormwindpainting03.m2", + text = "stormwindpainting03.m2", fileId = "197941", text = "stormwindpainting03.m2", }, { value = "stormwindpainting04.m2", + text = "stormwindpainting04.m2", fileId = "197942", text = "stormwindpainting04.m2", }, { value = "stormwindpainting05.m2", + text = "stormwindpainting05.m2", fileId = "197943", text = "stormwindpainting05.m2", }, @@ -33326,9 +39797,11 @@ WeakAuras.ModelPaths = { }, { value = "ballandchain", + text = "ballandchain", children = { { value = "ballandchain01.m2", + text = "ballandchain01.m2", fileId = "197946", text = "ballandchain01.m2", }, @@ -33337,24 +39810,29 @@ WeakAuras.ModelPaths = { }, { value = "ballistaruins", + text = "ballistaruins", children = { { value = "ballistabow01.m2", + text = "ballistabow01.m2", fileId = "197948", text = "ballistabow01.m2", }, { value = "ballistaframe01.m2", + text = "ballistaframe01.m2", fileId = "197949", text = "ballistaframe01.m2", }, { value = "ballistamissle01.m2", + text = "ballistamissle01.m2", fileId = "197950", text = "ballistamissle01.m2", }, { value = "ballistawheel01.m2", + text = "ballistawheel01.m2", fileId = "197951", text = "ballistawheel01.m2", }, @@ -33363,119 +39841,143 @@ WeakAuras.ModelPaths = { }, { value = "banners", + text = "banners", children = { { value = "bannerargentdawn.m2", + text = "bannerargentdawn.m2", fileId = "197959", text = "bannerargentdawn.m2", }, { value = "bluelorderonbanner.m2", + text = "bluelorderonbanner.m2", fileId = "197961", text = "bluelorderonbanner.m2", }, { value = "crimsonbanner01.m2", + text = "crimsonbanner01.m2", fileId = "197962", text = "crimsonbanner01.m2", }, { value = "durnholdebanner01.m2", + text = "durnholdebanner01.m2", fileId = "197964", text = "durnholdebanner01.m2", }, { value = "durnholdebanner02.m2", + text = "durnholdebanner02.m2", fileId = "197965", text = "durnholdebanner02.m2", }, { value = "durnholdebannernew.m2", + text = "durnholdebannernew.m2", fileId = "197966", text = "durnholdebannernew.m2", }, { value = "dwarvenbanner01.m2", + text = "dwarvenbanner01.m2", fileId = "197968", text = "dwarvenbanner01.m2", }, { value = "holybanner01.m2", + text = "holybanner01.m2", fileId = "197971", text = "holybanner01.m2", }, { value = "kultirasbanner01.m2", + text = "kultirasbanner01.m2", fileId = "197973", text = "kultirasbanner01.m2", }, { value = "kultirasbanner02.m2", + text = "kultirasbanner02.m2", fileId = "197974", text = "kultirasbanner02.m2", }, { value = "magicbanner01.m2", + text = "magicbanner01.m2", fileId = "197977", text = "magicbanner01.m2", }, { value = "nightelf01.m2", + text = "nightelf01.m2", fileId = "197979", text = "nightelf01.m2", }, { value = "scarletbanner01.m2", + text = "scarletbanner01.m2", fileId = "197982", text = "scarletbanner01.m2", }, { value = "scarletbanner02.m2", + text = "scarletbanner02.m2", fileId = "197986", text = "scarletbanner02.m2", }, { value = "scarletbanner03.m2", + text = "scarletbanner03.m2", fileId = "197987", text = "scarletbanner03.m2", }, { value = "scarletbannerclean.m2", + text = "scarletbannerclean.m2", fileId = "197988", text = "scarletbannerclean.m2", }, { value = "scarletbannerlong.m2", + text = "scarletbannerlong.m2", fileId = "197989", text = "scarletbannerlong.m2", }, { value = "shadowfangbanner01.m2", + text = "shadowfangbanner01.m2", fileId = "197991", text = "shadowfangbanner01.m2", }, { value = "shadowfangbanner02.m2", + text = "shadowfangbanner02.m2", fileId = "197992", text = "shadowfangbanner02.m2", }, { value = "stormwindgriffonbanner01.m2", + text = "stormwindgriffonbanner01.m2", fileId = "197995", text = "stormwindgriffonbanner01.m2", }, { value = "stormwindlionbanner.m2", + text = "stormwindlionbanner.m2", fileId = "197996", text = "stormwindlionbanner.m2", }, { value = "stormwindmagebanner01.m2", + text = "stormwindmagebanner01.m2", fileId = "197997", text = "stormwindmagebanner01.m2", }, { value = "warriorbanner01.m2", + text = "warriorbanner01.m2", fileId = "198000", text = "warriorbanner01.m2", }, @@ -33484,14 +39986,17 @@ WeakAuras.ModelPaths = { }, { value = "beds", + text = "beds", children = { { value = "bunkbed01.m2", + text = "bunkbed01.m2", fileId = "198001", text = "bunkbed01.m2", }, { value = "duskwoodbed.m2", + text = "duskwoodbed.m2", fileId = "198002", text = "duskwoodbed.m2", }, @@ -33500,14 +40005,17 @@ WeakAuras.ModelPaths = { }, { value = "beerkegs", + text = "beerkegs", children = { { value = "beerkeg01.m2", + text = "beerkeg01.m2", fileId = "198004", text = "beerkeg01.m2", }, { value = "beerkeg02.m2", + text = "beerkeg02.m2", fileId = "198006", text = "beerkeg02.m2", }, @@ -33516,14 +40024,17 @@ WeakAuras.ModelPaths = { }, { value = "bellows", + text = "bellows", children = { { value = "bellows.m2", + text = "bellows.m2", fileId = "198008", text = "bellows.m2", }, { value = "duskwoodbellows.m2", + text = "duskwoodbellows.m2", fileId = "198009", text = "duskwoodbellows.m2", }, @@ -33532,29 +40043,35 @@ WeakAuras.ModelPaths = { }, { value = "benches", + text = "benches", children = { { value = "duskwoodbench.m2", + text = "duskwoodbench.m2", fileId = "198011", text = "duskwoodbench.m2", }, { value = "innbench.m2", + text = "innbench.m2", fileId = "198012", text = "innbench.m2", }, { value = "shadowfangbench01.m2", + text = "shadowfangbench01.m2", fileId = "198013", text = "shadowfangbench01.m2", }, { value = "shadowfangbench02.m2", + text = "shadowfangbench02.m2", fileId = "198014", text = "shadowfangbench02.m2", }, { value = "stormwindbench01.m2", + text = "stormwindbench01.m2", fileId = "198015", text = "stormwindbench01.m2", }, @@ -33563,149 +40080,179 @@ WeakAuras.ModelPaths = { }, { value = "books", + text = "books", children = { { value = "booklarge01.m2", + text = "booklarge01.m2", fileId = "198016", text = "booklarge01.m2", }, { value = "booklarge02.m2", + text = "booklarge02.m2", fileId = "198017", text = "booklarge02.m2", }, { value = "booklarge03.m2", + text = "booklarge03.m2", fileId = "198018", text = "booklarge03.m2", }, { value = "booklargeopen01.m2", + text = "booklargeopen01.m2", fileId = "198019", text = "booklargeopen01.m2", }, { value = "booklargeopen02.m2", + text = "booklargeopen02.m2", fileId = "198020", text = "booklargeopen02.m2", }, { value = "booklargeopen03.m2", + text = "booklargeopen03.m2", fileId = "198021", text = "booklargeopen03.m2", }, { value = "bookmedium01.m2", + text = "bookmedium01.m2", fileId = "198022", text = "bookmedium01.m2", }, { value = "bookmedium02.m2", + text = "bookmedium02.m2", fileId = "198023", text = "bookmedium02.m2", }, { value = "bookmedium03.m2", + text = "bookmedium03.m2", fileId = "198024", text = "bookmedium03.m2", }, { value = "bookmedium04.m2", + text = "bookmedium04.m2", fileId = "198025", text = "bookmedium04.m2", }, { value = "bookmedium05.m2", + text = "bookmedium05.m2", fileId = "198026", text = "bookmedium05.m2", }, { value = "bookmedium06.m2", + text = "bookmedium06.m2", fileId = "198027", text = "bookmedium06.m2", }, { value = "bookmedium07.m2", + text = "bookmedium07.m2", fileId = "198028", text = "bookmedium07.m2", }, { value = "bookmediumopen01.m2", + text = "bookmediumopen01.m2", fileId = "198029", text = "bookmediumopen01.m2", }, { value = "bookmediumopen02.m2", + text = "bookmediumopen02.m2", fileId = "198030", text = "bookmediumopen02.m2", }, { value = "bookmediumopen03.m2", + text = "bookmediumopen03.m2", fileId = "198031", text = "bookmediumopen03.m2", }, { value = "bookmediumopen04.m2", + text = "bookmediumopen04.m2", fileId = "198032", text = "bookmediumopen04.m2", }, { value = "bookmediumopen05.m2", + text = "bookmediumopen05.m2", fileId = "198033", text = "bookmediumopen05.m2", }, { value = "booksmall01.m2", + text = "booksmall01.m2", fileId = "198035", text = "booksmall01.m2", }, { value = "booksmall02.m2", + text = "booksmall02.m2", fileId = "198036", text = "booksmall02.m2", }, { value = "booksmall03.m2", + text = "booksmall03.m2", fileId = "198037", text = "booksmall03.m2", }, { value = "booksmall04.m2", + text = "booksmall04.m2", fileId = "198038", text = "booksmall04.m2", }, { value = "booksmall05.m2", + text = "booksmall05.m2", fileId = "198039", text = "booksmall05.m2", }, { value = "booksmallopen01.m2", + text = "booksmallopen01.m2", fileId = "198040", text = "booksmallopen01.m2", }, { value = "booksmallopen02.m2", + text = "booksmallopen02.m2", fileId = "198041", text = "booksmallopen02.m2", }, { value = "booksmallopen03.m2", + text = "booksmallopen03.m2", fileId = "198042", text = "booksmallopen03.m2", }, { value = "booksmallopen04.m2", + text = "booksmallopen04.m2", fileId = "198043", text = "booksmallopen04.m2", }, { value = "booksmallopen05.m2", + text = "booksmallopen05.m2", fileId = "198044", text = "booksmallopen05.m2", }, { value = "generalbook01.m2", + text = "generalbook01.m2", fileId = "198046", text = "generalbook01.m2", }, @@ -33714,39 +40261,47 @@ WeakAuras.ModelPaths = { }, { value = "bookshelves", + text = "bookshelves", children = { { value = "abbeyshelf01.m2", + text = "abbeyshelf01.m2", fileId = "198047", text = "abbeyshelf01.m2", }, { value = "abbeyshelf01_unselectable.m2", + text = "abbeyshelf01_unselectable.m2", fileId = "198048", text = "abbeyshelf01_unselectable.m2", }, { value = "abbeyshelf02.m2", + text = "abbeyshelf02.m2", fileId = "198049", text = "abbeyshelf02.m2", }, { value = "abbeyshelf02_unselectable.m2", + text = "abbeyshelf02_unselectable.m2", fileId = "198050", text = "abbeyshelf02_unselectable.m2", }, { value = "duskwoodbookshelf01.m2", + text = "duskwoodbookshelf01.m2", fileId = "198052", text = "duskwoodbookshelf01.m2", }, { value = "duskwoodbookshelf02.m2", + text = "duskwoodbookshelf02.m2", fileId = "198053", text = "duskwoodbookshelf02.m2", }, { value = "duskwoodbookshelf03.m2", + text = "duskwoodbookshelf03.m2", fileId = "198054", text = "duskwoodbookshelf03.m2", }, @@ -33755,14 +40310,17 @@ WeakAuras.ModelPaths = { }, { value = "bookstacks", + text = "bookstacks", children = { { value = "generalbookstackshort01.m2", + text = "generalbookstackshort01.m2", fileId = "198055", text = "generalbookstackshort01.m2", }, { value = "generalbookstacktall01.m2", + text = "generalbookstacktall01.m2", fileId = "198056", text = "generalbookstacktall01.m2", }, @@ -33771,24 +40329,29 @@ WeakAuras.ModelPaths = { }, { value = "bottles", + text = "bottles", children = { { value = "bottle01.m2", + text = "bottle01.m2", fileId = "198057", text = "bottle01.m2", }, { value = "bottlesmoke.m2", + text = "bottlesmoke.m2", fileId = "198058", text = "bottlesmoke.m2", }, { value = "greenbottle01.m2", + text = "greenbottle01.m2", fileId = "198060", text = "greenbottle01.m2", }, { value = "greenbottle02.m2", + text = "greenbottle02.m2", fileId = "198061", text = "greenbottle02.m2", }, @@ -33797,19 +40360,23 @@ WeakAuras.ModelPaths = { }, { value = "braziers", + text = "braziers", children = { { value = "humanbraziercorrupt.m2", + text = "humanbraziercorrupt.m2", fileId = "198064", text = "humanbraziercorrupt.m2", }, { value = "humanbraziermagic.m2", + text = "humanbraziermagic.m2", fileId = "198065", text = "humanbraziermagic.m2", }, { value = "stormwindbrazier01.m2", + text = "stormwindbrazier01.m2", fileId = "198067", text = "stormwindbrazier01.m2", }, @@ -33818,14 +40385,17 @@ WeakAuras.ModelPaths = { }, { value = "buckets", + text = "buckets", children = { { value = "bucket.m2", + text = "bucket.m2", fileId = "198068", text = "bucket.m2", }, { value = "cavekoboldbucket.m2", + text = "cavekoboldbucket.m2", fileId = "198069", text = "cavekoboldbucket.m2", }, @@ -33834,19 +40404,23 @@ WeakAuras.ModelPaths = { }, { value = "candelabras", + text = "candelabras", children = { { value = "candelabratall01.m2", + text = "candelabratall01.m2", fileId = "198073", text = "candelabratall01.m2", }, { value = "candelabratall02.m2", + text = "candelabratall02.m2", fileId = "198074", text = "candelabratall02.m2", }, { value = "generalcandelabra01.m2", + text = "generalcandelabra01.m2", fileId = "198076", text = "generalcandelabra01.m2", }, @@ -33855,19 +40429,23 @@ WeakAuras.ModelPaths = { }, { value = "cannon", + text = "cannon", children = { { value = "cannon01.m2", + text = "cannon01.m2", fileId = "198078", text = "cannon01.m2", }, { value = "cannonlarge.m2", + text = "cannonlarge.m2", fileId = "198079", text = "cannonlarge.m2", }, { value = "deadminescannon01.m2", + text = "deadminescannon01.m2", fileId = "198082", text = "deadminescannon01.m2", }, @@ -33876,9 +40454,11 @@ WeakAuras.ModelPaths = { }, { value = "cannonballstack", + text = "cannonballstack", children = { { value = "deadminecannonballstack.m2", + text = "deadminecannonballstack.m2", fileId = "198084", text = "deadminecannonballstack.m2", }, @@ -33887,9 +40467,11 @@ WeakAuras.ModelPaths = { }, { value = "cargoboxes", + text = "cargoboxes", children = { { value = "deadminecargoboxes.m2", + text = "deadminecargoboxes.m2", fileId = "198085", text = "deadminecargoboxes.m2", }, @@ -33898,9 +40480,11 @@ WeakAuras.ModelPaths = { }, { value = "cargonetboxes", + text = "cargonetboxes", children = { { value = "deadminecargonetboxes.m2", + text = "deadminecargonetboxes.m2", fileId = "198086", text = "deadminecargonetboxes.m2", }, @@ -33909,29 +40493,35 @@ WeakAuras.ModelPaths = { }, { value = "cargonets", + text = "cargonets", children = { { value = "deadminecargonet01.m2", + text = "deadminecargonet01.m2", fileId = "198087", text = "deadminecargonet01.m2", }, { value = "deadminecargonet02.m2", + text = "deadminecargonet02.m2", fileId = "198088", text = "deadminecargonet02.m2", }, { value = "deadminecargonethang.m2", + text = "deadminecargonethang.m2", fileId = "198089", text = "deadminecargonethang.m2", }, { value = "deadminecargonethangshort.m2", + text = "deadminecargonethangshort.m2", fileId = "198090", text = "deadminecargonethangshort.m2", }, { value = "deadminecargonetlarge.m2", + text = "deadminecargonetlarge.m2", fileId = "198091", text = "deadminecargonetlarge.m2", }, @@ -33940,34 +40530,41 @@ WeakAuras.ModelPaths = { }, { value = "catapultruins", + text = "catapultruins", children = { { value = "catapultarm.m2", + text = "catapultarm.m2", fileId = "198093", text = "catapultarm.m2", }, { value = "catapultball01.m2", + text = "catapultball01.m2", fileId = "198095", text = "catapultball01.m2", }, { value = "catapultbeam.m2", + text = "catapultbeam.m2", fileId = "198096", text = "catapultbeam.m2", }, { value = "catapulttrunk01.m2", + text = "catapulttrunk01.m2", fileId = "198097", text = "catapulttrunk01.m2", }, { value = "catapulttrunk02.m2", + text = "catapulttrunk02.m2", fileId = "198098", text = "catapulttrunk02.m2", }, { value = "catapultwheel01.m2", + text = "catapultwheel01.m2", fileId = "198099", text = "catapultwheel01.m2", }, @@ -33976,14 +40573,17 @@ WeakAuras.ModelPaths = { }, { value = "cauldrons", + text = "cauldrons", children = { { value = "cauldron.m2", + text = "cauldron.m2", fileId = "198100", text = "cauldron.m2", }, { value = "cauldronempty.m2", + text = "cauldronempty.m2", fileId = "198101", text = "cauldronempty.m2", }, @@ -33992,9 +40592,11 @@ WeakAuras.ModelPaths = { }, { value = "caveminepump", + text = "caveminepump", children = { { value = "minepump01.m2", + text = "minepump01.m2", fileId = "198109", text = "minepump01.m2", }, @@ -34003,14 +40605,17 @@ WeakAuras.ModelPaths = { }, { value = "caveroof", + text = "caveroof", children = { { value = "deadminescaveroof.m2", + text = "deadminescaveroof.m2", fileId = "198110", text = "deadminescaveroof.m2", }, { value = "dnrdeadminescaveroof.m2", + text = "dnrdeadminescaveroof.m2", fileId = "198111", text = "dnrdeadminescaveroof.m2", }, @@ -34019,34 +40624,41 @@ WeakAuras.ModelPaths = { }, { value = "chairs", + text = "chairs", children = { { value = "generalchairhighend01.m2", + text = "generalchairhighend01.m2", fileId = "198114", text = "generalchairhighend01.m2", }, { value = "generalchairloend01.m2", + text = "generalchairloend01.m2", fileId = "198115", text = "generalchairloend01.m2", }, { value = "generalmedchair01.m2", + text = "generalmedchair01.m2", fileId = "198116", text = "generalmedchair01.m2", }, { value = "gmchairloend01.m2", + text = "gmchairloend01.m2", fileId = "198117", text = "gmchairloend01.m2", }, { value = "shadowfangchair01.m2", + text = "shadowfangchair01.m2", fileId = "198119", text = "shadowfangchair01.m2", }, { value = "shadowfangchair02.m2", + text = "shadowfangchair02.m2", fileId = "198120", text = "shadowfangchair02.m2", }, @@ -34055,14 +40667,17 @@ WeakAuras.ModelPaths = { }, { value = "chimneys", + text = "chimneys", children = { { value = "generalchimney01.m2", + text = "generalchimney01.m2", fileId = "198122", text = "generalchimney01.m2", }, { value = "generalchimney02.m2", + text = "generalchimney02.m2", fileId = "198123", text = "generalchimney02.m2", }, @@ -34071,64 +40686,77 @@ WeakAuras.ModelPaths = { }, { value = "cloth", + text = "cloth", children = { { value = "clothboltblue.m2", + text = "clothboltblue.m2", fileId = "198124", text = "clothboltblue.m2", }, { value = "clothboltgreen.m2", + text = "clothboltgreen.m2", fileId = "198125", text = "clothboltgreen.m2", }, { value = "clothboltred.m2", + text = "clothboltred.m2", fileId = "198126", text = "clothboltred.m2", }, { value = "clothboltwhite.m2", + text = "clothboltwhite.m2", fileId = "198127", text = "clothboltwhite.m2", }, { value = "clothspoolblue.m2", + text = "clothspoolblue.m2", fileId = "198128", text = "clothspoolblue.m2", }, { value = "clothspoolbluelow.m2", + text = "clothspoolbluelow.m2", fileId = "198129", text = "clothspoolbluelow.m2", }, { value = "clothspoolredlow.m2", + text = "clothspoolredlow.m2", fileId = "198130", text = "clothspoolredlow.m2", }, { value = "clothspoolyellow.m2", + text = "clothspoolyellow.m2", fileId = "198131", text = "clothspoolyellow.m2", }, { value = "clothyarnblue.m2", + text = "clothyarnblue.m2", fileId = "198133", text = "clothyarnblue.m2", }, { value = "clothyarnbluelow.m2", + text = "clothyarnbluelow.m2", fileId = "198134", text = "clothyarnbluelow.m2", }, { value = "clothyarnredlow.m2", + text = "clothyarnredlow.m2", fileId = "198135", text = "clothyarnredlow.m2", }, { value = "clothyarnyellow.m2", + text = "clothyarnyellow.m2", fileId = "198136", text = "clothyarnyellow.m2", }, @@ -34137,104 +40765,125 @@ WeakAuras.ModelPaths = { }, { value = "clothing", + text = "clothing", children = { { value = "bootrack01.m2", + text = "bootrack01.m2", fileId = "198138", text = "bootrack01.m2", }, { value = "bootsleatherblack.m2", + text = "bootsleatherblack.m2", fileId = "198139", text = "bootsleatherblack.m2", }, { value = "bootsleatherbrown01.m2", + text = "bootsleatherbrown01.m2", fileId = "198140", text = "bootsleatherbrown01.m2", }, { value = "bootsleatherdark.m2", + text = "bootsleatherdark.m2", fileId = "198141", text = "bootsleatherdark.m2", }, { value = "clothyarnballred.m2", + text = "clothyarnballred.m2", fileId = "198142", text = "clothyarnballred.m2", }, { value = "clothyarnballyellow.m2", + text = "clothyarnballyellow.m2", fileId = "198143", text = "clothyarnballyellow.m2", }, { value = "foldedpantsbrown.m2", + text = "foldedpantsbrown.m2", fileId = "198144", text = "foldedpantsbrown.m2", }, { value = "foldedpantsgrey.m2", + text = "foldedpantsgrey.m2", fileId = "198145", text = "foldedpantsgrey.m2", }, { value = "foldedshirtbrown.m2", + text = "foldedshirtbrown.m2", fileId = "198146", text = "foldedshirtbrown.m2", }, { value = "foldershirtgreen.m2", + text = "foldershirtgreen.m2", fileId = "198147", text = "foldershirtgreen.m2", }, { value = "hangingcloakblue.m2", + text = "hangingcloakblue.m2", fileId = "198148", text = "hangingcloakblue.m2", }, { value = "hangingcloakred.m2", + text = "hangingcloakred.m2", fileId = "198149", text = "hangingcloakred.m2", }, { value = "hangingpantsbrown.m2", + text = "hangingpantsbrown.m2", fileId = "198150", text = "hangingpantsbrown.m2", }, { value = "hangingpantsclotheslinebrown.m2", + text = "hangingpantsclotheslinebrown.m2", fileId = "198151", text = "hangingpantsclotheslinebrown.m2", }, { value = "hangingpantsclotheslinegrey.m2", + text = "hangingpantsclotheslinegrey.m2", fileId = "198152", text = "hangingpantsclotheslinegrey.m2", }, { value = "hangingpantsgrey.m2", + text = "hangingpantsgrey.m2", fileId = "198153", text = "hangingpantsgrey.m2", }, { value = "hangingshirtbrown.m2", + text = "hangingshirtbrown.m2", fileId = "198154", text = "hangingshirtbrown.m2", }, { value = "hangingshirtclotheslinebrown.m2", + text = "hangingshirtclotheslinebrown.m2", fileId = "198155", text = "hangingshirtclotheslinebrown.m2", }, { value = "hangingshirtclotheslinegreen.m2", + text = "hangingshirtclotheslinegreen.m2", fileId = "198156", text = "hangingshirtclotheslinegreen.m2", }, { value = "hangingshirtgreen.m2", + text = "hangingshirtgreen.m2", fileId = "198157", text = "hangingshirtgreen.m2", }, @@ -34243,49 +40892,59 @@ WeakAuras.ModelPaths = { }, { value = "crates", + text = "crates", children = { { value = "crategrain01.m2", + text = "crategrain01.m2", fileId = "198158", text = "crategrain01.m2", }, { value = "crategrainempty.m2", + text = "crategrainempty.m2", fileId = "198159", text = "crategrainempty.m2", }, { value = "crategrainlid.m2", + text = "crategrainlid.m2", fileId = "198160", text = "crategrainlid.m2", }, { value = "crategrainopen.m2", + text = "crategrainopen.m2", fileId = "198161", text = "crategrainopen.m2", }, { value = "graincrate01.m2", + text = "graincrate01.m2", fileId = "198163", text = "graincrate01.m2", }, { value = "replacecrate01.m2", + text = "replacecrate01.m2", fileId = "198165", text = "replacecrate01.m2", }, { value = "replacecrate02.m2", + text = "replacecrate02.m2", fileId = "198166", text = "replacecrate02.m2", }, { value = "replacecrate03.m2", + text = "replacecrate03.m2", fileId = "198167", text = "replacecrate03.m2", }, { value = "stormwindcrate01.m2", + text = "stormwindcrate01.m2", fileId = "198168", text = "stormwindcrate01.m2", }, @@ -34294,14 +40953,17 @@ WeakAuras.ModelPaths = { }, { value = "cups", + text = "cups", children = { { value = "metalcup03.m2", + text = "metalcup03.m2", fileId = "198169", text = "metalcup03.m2", }, { value = "metalcup04.m2", + text = "metalcup04.m2", fileId = "198170", text = "metalcup04.m2", }, @@ -34310,9 +40972,11 @@ WeakAuras.ModelPaths = { }, { value = "deadminecleat", + text = "deadminecleat", children = { { value = "deadminecleat.m2", + text = "deadminecleat.m2", fileId = "198172", text = "deadminecleat.m2", }, @@ -34321,9 +40985,11 @@ WeakAuras.ModelPaths = { }, { value = "deadminepowderkeg", + text = "deadminepowderkeg", children = { { value = "deadminepowderkeg.m2", + text = "deadminepowderkeg.m2", fileId = "198173", text = "deadminepowderkeg.m2", }, @@ -34332,9 +40998,11 @@ WeakAuras.ModelPaths = { }, { value = "desks", + text = "desks", children = { { value = "fancydesk01.m2", + text = "fancydesk01.m2", fileId = "198175", text = "fancydesk01.m2", }, @@ -34343,9 +41011,11 @@ WeakAuras.ModelPaths = { }, { value = "doghouses", + text = "doghouses", children = { { value = "doghouse.m2", + text = "doghouse.m2", fileId = "198177", text = "doghouse.m2", }, @@ -34354,9 +41024,11 @@ WeakAuras.ModelPaths = { }, { value = "dolls", + text = "dolls", children = { { value = "ragdoll01.m2", + text = "ragdoll01.m2", fileId = "198178", text = "ragdoll01.m2", }, @@ -34365,14 +41037,17 @@ WeakAuras.ModelPaths = { }, { value = "drapery", + text = "drapery", children = { { value = "drapery01.m2", + text = "drapery01.m2", fileId = "198185", text = "drapery01.m2", }, { value = "drapery02.m2", + text = "drapery02.m2", fileId = "198186", text = "drapery02.m2", }, @@ -34381,9 +41056,11 @@ WeakAuras.ModelPaths = { }, { value = "dredge", + text = "dredge", children = { { value = "cavekobolddredge.m2", + text = "cavekobolddredge.m2", fileId = "198189", text = "cavekobolddredge.m2", }, @@ -34392,9 +41069,11 @@ WeakAuras.ModelPaths = { }, { value = "elevatorparts", + text = "elevatorparts", children = { { value = "burningsteppselevator.m2", + text = "burningsteppselevator.m2", fileId = "198191", text = "burningsteppselevator.m2", }, @@ -34403,19 +41082,23 @@ WeakAuras.ModelPaths = { }, { value = "fire", + text = "fire", children = { { value = "undeadcampfire.m2", + text = "undeadcampfire.m2", fileId = "198193", text = "undeadcampfire.m2", }, { value = "undeadfirelarge.m2", + text = "undeadfirelarge.m2", fileId = "198194", text = "undeadfirelarge.m2", }, { value = "undeadfiresmall.m2", + text = "undeadfiresmall.m2", fileId = "198195", text = "undeadfiresmall.m2", }, @@ -34424,14 +41107,17 @@ WeakAuras.ModelPaths = { }, { value = "firewood", + text = "firewood", children = { { value = "firewoodpile01.m2", + text = "firewoodpile01.m2", fileId = "198197", text = "firewoodpile01.m2", }, { value = "firewoodpile03.m2", + text = "firewoodpile03.m2", fileId = "198198", text = "firewoodpile03.m2", }, @@ -34440,9 +41126,11 @@ WeakAuras.ModelPaths = { }, { value = "flagpole", + text = "flagpole", children = { { value = "flagpole01.m2", + text = "flagpole01.m2", fileId = "198199", text = "flagpole01.m2", }, @@ -34451,54 +41139,65 @@ WeakAuras.ModelPaths = { }, { value = "flowers", + text = "flowers", children = { { value = "flowersbunch01.m2", + text = "flowersbunch01.m2", fileId = "198202", text = "flowersbunch01.m2", }, { value = "flowersbunch02.m2", + text = "flowersbunch02.m2", fileId = "198203", text = "flowersbunch02.m2", }, { value = "flowersbunch03.m2", + text = "flowersbunch03.m2", fileId = "198204", text = "flowersbunch03.m2", }, { value = "flowersbunch04.m2", + text = "flowersbunch04.m2", fileId = "198205", text = "flowersbunch04.m2", }, { value = "flowersbunch05.m2", + text = "flowersbunch05.m2", fileId = "198206", text = "flowersbunch05.m2", }, { value = "flowersbunchdead01.m2", + text = "flowersbunchdead01.m2", fileId = "198207", text = "flowersbunchdead01.m2", }, { value = "flowersbunchdead02.m2", + text = "flowersbunchdead02.m2", fileId = "198208", text = "flowersbunchdead02.m2", }, { value = "flowerswreath01.m2", + text = "flowerswreath01.m2", fileId = "198209", text = "flowerswreath01.m2", }, { value = "flowerswreath02.m2", + text = "flowerswreath02.m2", fileId = "198210", text = "flowerswreath02.m2", }, { value = "flowerswreathdead01.m2", + text = "flowerswreathdead01.m2", fileId = "198211", text = "flowerswreathdead01.m2", }, @@ -34507,79 +41206,95 @@ WeakAuras.ModelPaths = { }, { value = "food", + text = "food", children = { { value = "bread01.m2", + text = "bread01.m2", fileId = "198212", text = "bread01.m2", }, { value = "breadfrench01.m2", + text = "breadfrench01.m2", fileId = "198214", text = "breadfrench01.m2", }, { value = "breadfrenchhalf.m2", + text = "breadfrenchhalf.m2", fileId = "198215", text = "breadfrenchhalf.m2", }, { value = "breadloaf01.m2", + text = "breadloaf01.m2", fileId = "198216", text = "breadloaf01.m2", }, { value = "breadloafhalf.m2", + text = "breadloafhalf.m2", fileId = "198217", text = "breadloafhalf.m2", }, { value = "breadslice.m2", + text = "breadslice.m2", fileId = "198218", text = "breadslice.m2", }, { value = "cheesewedge01.m2", + text = "cheesewedge01.m2", fileId = "198219", text = "cheesewedge01.m2", }, { value = "cheesewedgeswiss01.m2", + text = "cheesewedgeswiss01.m2", fileId = "198220", text = "cheesewedgeswiss01.m2", }, { value = "cheesewheel01.m2", + text = "cheesewheel01.m2", fileId = "198221", text = "cheesewheel01.m2", }, { value = "cheesewheelswiss01.m2", + text = "cheesewheelswiss01.m2", fileId = "198222", text = "cheesewheelswiss01.m2", }, { value = "fishplatter01.m2", + text = "fishplatter01.m2", fileId = "198223", text = "fishplatter01.m2", }, { value = "goldfruitbowl01.m2", + text = "goldfruitbowl01.m2", fileId = "198224", text = "goldfruitbowl01.m2", }, { value = "muffin01.m2", + text = "muffin01.m2", fileId = "198226", text = "muffin01.m2", }, { value = "pie01.m2", + text = "pie01.m2", fileId = "198227", text = "pie01.m2", }, { value = "roastboarplatter.m2", + text = "roastboarplatter.m2", fileId = "198228", text = "roastboarplatter.m2", }, @@ -34588,29 +41303,35 @@ WeakAuras.ModelPaths = { }, { value = "food&utensils", + text = "food&utensils", children = { { value = "cleaver01.m2", + text = "cleaver01.m2", fileId = "198230", text = "cleaver01.m2", }, { value = "haunch.m2", + text = "haunch.m2", fileId = "198232", text = "haunch.m2", }, { value = "kitchenknife.m2", + text = "kitchenknife.m2", fileId = "198234", text = "kitchenknife.m2", }, { value = "kitchenknife01.m2", + text = "kitchenknife01.m2", fileId = "198235", text = "kitchenknife01.m2", }, { value = "turkeyleg.m2", + text = "turkeyleg.m2", fileId = "198236", text = "turkeyleg.m2", }, @@ -34619,9 +41340,11 @@ WeakAuras.ModelPaths = { }, { value = "footlockers", + text = "footlockers", children = { { value = "duskwoodfootlocker01.m2", + text = "duskwoodfootlocker01.m2", fileId = "198238", text = "duskwoodfootlocker01.m2", }, @@ -34630,24 +41353,29 @@ WeakAuras.ModelPaths = { }, { value = "fountains", + text = "fountains", children = { { value = "plaguedfountain.m2", + text = "plaguedfountain.m2", fileId = "198240", text = "plaguedfountain.m2", }, { value = "snowfountain.m2", + text = "snowfountain.m2", fileId = "198243", text = "snowfountain.m2", }, { value = "stormwindfountain01.m2", + text = "stormwindfountain01.m2", fileId = "198247", text = "stormwindfountain01.m2", }, { value = "tirisfallfountain.m2", + text = "tirisfallfountain.m2", fileId = "198253", text = "tirisfallfountain.m2", }, @@ -34656,9 +41384,11 @@ WeakAuras.ModelPaths = { }, { value = "globes", + text = "globes", children = { { value = "globe01.m2", + text = "globe01.m2", fileId = "198254", text = "globe01.m2", }, @@ -34667,9 +41397,11 @@ WeakAuras.ModelPaths = { }, { value = "goblets", + text = "goblets", children = { { value = "goblet02.m2", + text = "goblet02.m2", fileId = "198256", text = "goblet02.m2", }, @@ -34678,9 +41410,11 @@ WeakAuras.ModelPaths = { }, { value = "gryphonroost", + text = "gryphonroost", children = { { value = "gryphonroost01.m2", + text = "gryphonroost01.m2", fileId = "198261", text = "gryphonroost01.m2", }, @@ -34689,129 +41423,155 @@ WeakAuras.ModelPaths = { }, { value = "gunshop", + text = "gunshop", children = { { value = "gunlongrifle.m2", + text = "gunlongrifle.m2", fileId = "198262", text = "gunlongrifle.m2", }, { value = "gunshopammoboxblue.m2", + text = "gunshopammoboxblue.m2", fileId = "198263", text = "gunshopammoboxblue.m2", }, { value = "gunshopammoboxblueblock.m2", + text = "gunshopammoboxblueblock.m2", fileId = "198264", text = "gunshopammoboxblueblock.m2", }, { value = "gunshopammoboxred.m2", + text = "gunshopammoboxred.m2", fileId = "198265", text = "gunshopammoboxred.m2", }, { value = "gunshopammoboxredblock.m2", + text = "gunshopammoboxredblock.m2", fileId = "198266", text = "gunshopammoboxredblock.m2", }, { value = "gunshopbomb.m2", + text = "gunshopbomb.m2", fileId = "198267", text = "gunshopbomb.m2", }, { value = "gunshopdynamite.m2", + text = "gunshopdynamite.m2", fileId = "198268", text = "gunshopdynamite.m2", }, { value = "gunshopfireworks01.m2", + text = "gunshopfireworks01.m2", fileId = "198269", text = "gunshopfireworks01.m2", }, { value = "gunshopfireworks02.m2", + text = "gunshopfireworks02.m2", fileId = "198270", text = "gunshopfireworks02.m2", }, { value = "gunshopfireworks03.m2", + text = "gunshopfireworks03.m2", fileId = "198271", text = "gunshopfireworks03.m2", }, { value = "gunshopfireworks04.m2", + text = "gunshopfireworks04.m2", fileId = "198272", text = "gunshopfireworks04.m2", }, { value = "gunshopfireworksbarrel.m2", + text = "gunshopfireworksbarrel.m2", fileId = "198273", text = "gunshopfireworksbarrel.m2", }, { value = "gunshopfireworksbig01.m2", + text = "gunshopfireworksbig01.m2", fileId = "198274", text = "gunshopfireworksbig01.m2", }, { value = "gunshopfireworksbig02.m2", + text = "gunshopfireworksbig02.m2", fileId = "198275", text = "gunshopfireworksbig02.m2", }, { value = "gunshopgunbarrel.m2", + text = "gunshopgunbarrel.m2", fileId = "198276", text = "gunshopgunbarrel.m2", }, { value = "gunshopgunstock.m2", + text = "gunshopgunstock.m2", fileId = "198277", text = "gunshopgunstock.m2", }, { value = "gunshopmortar.m2", + text = "gunshopmortar.m2", fileId = "198278", text = "gunshopmortar.m2", }, { value = "gunshopmortarshell.m2", + text = "gunshopmortarshell.m2", fileId = "198279", text = "gunshopmortarshell.m2", }, { value = "gunshoppowderkegopen.m2", + text = "gunshoppowderkegopen.m2", fileId = "198280", text = "gunshoppowderkegopen.m2", }, { value = "gunshoptarget01.m2", + text = "gunshoptarget01.m2", fileId = "198281", text = "gunshoptarget01.m2", }, { value = "gunshoptarget02.m2", + text = "gunshoptarget02.m2", fileId = "198282", text = "gunshoptarget02.m2", }, { value = "gunshoptarget03.m2", + text = "gunshoptarget03.m2", fileId = "198283", text = "gunshoptarget03.m2", }, { value = "gunshoptarget04.m2", + text = "gunshoptarget04.m2", fileId = "198284", text = "gunshoptarget04.m2", }, { value = "gunsniperrifle.m2", + text = "gunsniperrifle.m2", fileId = "198285", text = "gunsniperrifle.m2", }, { value = "guntripod.m2", + text = "guntripod.m2", fileId = "198286", text = "guntripod.m2", }, @@ -34820,9 +41580,11 @@ WeakAuras.ModelPaths = { }, { value = "gypsywagons", + text = "gypsywagons", children = { { value = "stormwindgypsywagon01.m2", + text = "stormwindgypsywagon01.m2", fileId = "198288", text = "stormwindgypsywagon01.m2", }, @@ -34831,9 +41593,11 @@ WeakAuras.ModelPaths = { }, { value = "hanging cages", + text = "hanging cages", children = { { value = "generalhangingcage01.m2", + text = "generalhangingcage01.m2", fileId = "198289", text = "generalhangingcage01.m2", }, @@ -34842,14 +41606,17 @@ WeakAuras.ModelPaths = { }, { value = "hanginglanterns", + text = "hanginglanterns", children = { { value = "generalhanginglantern01.m2", + text = "generalhanginglantern01.m2", fileId = "198291", text = "generalhanginglantern01.m2", }, { value = "generalhanginglanternlong.m2", + text = "generalhanginglanternlong.m2", fileId = "198292", text = "generalhanginglanternlong.m2", }, @@ -34858,19 +41625,23 @@ WeakAuras.ModelPaths = { }, { value = "haypiles", + text = "haypiles", children = { { value = "darkhaypilemedium01.m2", + text = "darkhaypilemedium01.m2", fileId = "198294", text = "darkhaypilemedium01.m2", }, { value = "shadowfanghaypile01.m2", + text = "shadowfanghaypile01.m2", fileId = "198296", text = "shadowfanghaypile01.m2", }, { value = "shadowfanghaypile02.m2", + text = "shadowfanghaypile02.m2", fileId = "198297", text = "shadowfanghaypile02.m2", }, @@ -34879,9 +41650,11 @@ WeakAuras.ModelPaths = { }, { value = "hearse", + text = "hearse", children = { { value = "moonbrookhearse.m2", + text = "moonbrookhearse.m2", fileId = "198301", text = "moonbrookhearse.m2", }, @@ -34890,14 +41663,17 @@ WeakAuras.ModelPaths = { }, { value = "lampposts", + text = "lampposts", children = { { value = "duskwoodlamppost.m2", + text = "duskwoodlamppost.m2", fileId = "198303", text = "duskwoodlamppost.m2", }, { value = "duskwoodlamppostbroken.m2", + text = "duskwoodlamppostbroken.m2", fileId = "198304", text = "duskwoodlamppostbroken.m2", }, @@ -34906,59 +41682,71 @@ WeakAuras.ModelPaths = { }, { value = "lamps", + text = "lamps", children = { { value = "lamppostbroken.m2", + text = "lamppostbroken.m2", fileId = "198310", text = "lamppostbroken.m2", }, { value = "plaguelandslamp.m2", + text = "plaguelandslamp.m2", fileId = "198312", text = "plaguelandslamp.m2", }, { value = "stormwindcanallamp01.m2", + text = "stormwindcanallamp01.m2", fileId = "198315", text = "stormwindcanallamp01.m2", }, { value = "stormwindstreetlamp01.m2", + text = "stormwindstreetlamp01.m2", fileId = "198316", text = "stormwindstreetlamp01.m2", }, { value = "tirisfallstreetlamp01.m2", + text = "tirisfallstreetlamp01.m2", fileId = "198318", text = "tirisfallstreetlamp01.m2", }, { value = "westernplaguelandslampost01.m2", + text = "westernplaguelandslampost01.m2", fileId = "198319", text = "westernplaguelandslampost01.m2", }, { value = "westernplaguelandslampost02.m2", + text = "westernplaguelandslampost02.m2", fileId = "198320", text = "westernplaguelandslampost02.m2", }, { value = "westernplaguelandslampostbroken01.m2", + text = "westernplaguelandslampostbroken01.m2", fileId = "198321", text = "westernplaguelandslampostbroken01.m2", }, { value = "westernplaguelandslampostbroken02.m2", + text = "westernplaguelandslampostbroken02.m2", fileId = "198322", text = "westernplaguelandslampostbroken02.m2", }, { value = "westernplaguelandslampoststraight.m2", + text = "westernplaguelandslampoststraight.m2", fileId = "198323", text = "westernplaguelandslampoststraight.m2", }, { value = "westernplaguelandslampoststraightoff.m2", + text = "westernplaguelandslampoststraightoff.m2", fileId = "198324", text = "westernplaguelandslampoststraightoff.m2", }, @@ -34967,24 +41755,29 @@ WeakAuras.ModelPaths = { }, { value = "lanterns", + text = "lanterns", children = { { value = "generallantern01.m2", + text = "generallantern01.m2", fileId = "198327", text = "generallantern01.m2", }, { value = "generallantern02.m2", + text = "generallantern02.m2", fileId = "198328", text = "generallantern02.m2", }, { value = "generallantern03.m2", + text = "generallantern03.m2", fileId = "198329", text = "generallantern03.m2", }, { value = "generallantern04.m2", + text = "generallantern04.m2", fileId = "198330", text = "generallantern04.m2", }, @@ -34993,24 +41786,29 @@ WeakAuras.ModelPaths = { }, { value = "logmachines", + text = "logmachines", children = { { value = "logmachine01.m2", + text = "logmachine01.m2", fileId = "198331", text = "logmachine01.m2", }, { value = "logmachine02.m2", + text = "logmachine02.m2", fileId = "198332", text = "logmachine02.m2", }, { value = "logmachine03.m2", + text = "logmachine03.m2", fileId = "198333", text = "logmachine03.m2", }, { value = "logmachine04.m2", + text = "logmachine04.m2", fileId = "198334", text = "logmachine04.m2", }, @@ -35019,14 +41817,17 @@ WeakAuras.ModelPaths = { }, { value = "loom", + text = "loom", children = { { value = "loomhumanblue.m2", + text = "loomhumanblue.m2", fileId = "198337", text = "loomhumanblue.m2", }, { value = "loomhumanwhite.m2", + text = "loomhumanwhite.m2", fileId = "198338", text = "loomhumanwhite.m2", }, @@ -35035,14 +41836,17 @@ WeakAuras.ModelPaths = { }, { value = "lumberpiles", + text = "lumberpiles", children = { { value = "deadminelumberpilelarge.m2", + text = "deadminelumberpilelarge.m2", fileId = "198339", text = "deadminelumberpilelarge.m2", }, { value = "deadminelumberpilesmall.m2", + text = "deadminelumberpilesmall.m2", fileId = "198340", text = "deadminelumberpilesmall.m2", }, @@ -35051,14 +41855,17 @@ WeakAuras.ModelPaths = { }, { value = "meat", + text = "meat", children = { { value = "bloodymeat01.m2", + text = "bloodymeat01.m2", fileId = "198343", text = "bloodymeat01.m2", }, { value = "bloodymeat02.m2", + text = "bloodymeat02.m2", fileId = "198344", text = "bloodymeat02.m2", }, @@ -35067,9 +41874,11 @@ WeakAuras.ModelPaths = { }, { value = "minemachine", + text = "minemachine", children = { { value = "cavekoboldminemachine.m2", + text = "cavekoboldminemachine.m2", fileId = "198346", text = "cavekoboldminemachine.m2", }, @@ -35078,14 +41887,17 @@ WeakAuras.ModelPaths = { }, { value = "miningsifters", + text = "miningsifters", children = { { value = "miningsifter01.m2", + text = "miningsifter01.m2", fileId = "198351", text = "miningsifter01.m2", }, { value = "miningsifter02.m2", + text = "miningsifter02.m2", fileId = "198352", text = "miningsifter02.m2", }, @@ -35094,14 +41906,17 @@ WeakAuras.ModelPaths = { }, { value = "miningtroughs", + text = "miningtroughs", children = { { value = "miningtroughlarge.m2", + text = "miningtroughlarge.m2", fileId = "198355", text = "miningtroughlarge.m2", }, { value = "miningtroughsmall.m2", + text = "miningtroughsmall.m2", fileId = "198356", text = "miningtroughsmall.m2", }, @@ -35110,9 +41925,11 @@ WeakAuras.ModelPaths = { }, { value = "mops", + text = "mops", children = { { value = "mop.m2", + text = "mop.m2", fileId = "198357", text = "mop.m2", }, @@ -35121,34 +41938,41 @@ WeakAuras.ModelPaths = { }, { value = "mugs", + text = "mugs", children = { { value = "goldgoblet01.m2", + text = "goldgoblet01.m2", fileId = "198358", text = "goldgoblet01.m2", }, { value = "goldgobletfilled01.m2", + text = "goldgobletfilled01.m2", fileId = "198359", text = "goldgobletfilled01.m2", }, { value = "mug01.m2", + text = "mug01.m2", fileId = "198360", text = "mug01.m2", }, { value = "mug02.m2", + text = "mug02.m2", fileId = "198361", text = "mug02.m2", }, { value = "mugfoam01.m2", + text = "mugfoam01.m2", fileId = "198366", text = "mugfoam01.m2", }, { value = "stein01.m2", + text = "stein01.m2", fileId = "198367", text = "stein01.m2", }, @@ -35157,14 +41981,17 @@ WeakAuras.ModelPaths = { }, { value = "museumskeletons", + text = "museumskeletons", children = { { value = "dragonskeletonhanging.m2", + text = "dragonskeletonhanging.m2", fileId = "198369", text = "dragonskeletonhanging.m2", }, { value = "dragonskullhanging.m2", + text = "dragonskullhanging.m2", fileId = "198370", text = "dragonskullhanging.m2", }, @@ -35173,9 +42000,11 @@ WeakAuras.ModelPaths = { }, { value = "oildrums", + text = "oildrums", children = { { value = "oildrum01.m2", + text = "oildrum01.m2", fileId = "198372", text = "oildrum01.m2", }, @@ -35184,14 +42013,17 @@ WeakAuras.ModelPaths = { }, { value = "oilrigstacks", + text = "oilrigstacks", children = { { value = "oilrigstack01.m2", + text = "oilrigstack01.m2", fileId = "198376", text = "oilrigstack01.m2", }, { value = "oilrigstack02.m2", + text = "oilrigstack02.m2", fileId = "198377", text = "oilrigstack02.m2", }, @@ -35200,14 +42032,17 @@ WeakAuras.ModelPaths = { }, { value = "onxiatrophy", + text = "onxiatrophy", children = { { value = "alliancehangingnefariantrophy.m2", + text = "alliancehangingnefariantrophy.m2", fileId = "198378", text = "alliancehangingnefariantrophy.m2", }, { value = "alliancehangingonyxiatrophy.m2", + text = "alliancehangingonyxiatrophy.m2", fileId = "198379", text = "alliancehangingonyxiatrophy.m2", }, @@ -35216,39 +42051,47 @@ WeakAuras.ModelPaths = { }, { value = "outposts", + text = "outposts", children = { { value = "generaloutpost01.m2", + text = "generaloutpost01.m2", fileId = "198380", text = "generaloutpost01.m2", }, { value = "generaloutpost02.m2", + text = "generaloutpost02.m2", fileId = "198381", text = "generaloutpost02.m2", }, { value = "generaloutpost03.m2", + text = "generaloutpost03.m2", fileId = "198382", text = "generaloutpost03.m2", }, { value = "generaloutpost04.m2", + text = "generaloutpost04.m2", fileId = "198383", text = "generaloutpost04.m2", }, { value = "generaloutpost05.m2", + text = "generaloutpost05.m2", fileId = "198384", text = "generaloutpost05.m2", }, { value = "generaloutpost06.m2", + text = "generaloutpost06.m2", fileId = "198385", text = "generaloutpost06.m2", }, { value = "generaloutpost07.m2", + text = "generaloutpost07.m2", fileId = "198386", text = "generaloutpost07.m2", }, @@ -35257,9 +42100,11 @@ WeakAuras.ModelPaths = { }, { value = "peasantlumber", + text = "peasantlumber", children = { { value = "peasantlumber01.m2", + text = "peasantlumber01.m2", fileId = "198389", text = "peasantlumber01.m2", }, @@ -35268,9 +42113,11 @@ WeakAuras.ModelPaths = { }, { value = "pews", + text = "pews", children = { { value = "generalchurchpew01.m2", + text = "generalchurchpew01.m2", fileId = "198390", text = "generalchurchpew01.m2", }, @@ -35279,44 +42126,53 @@ WeakAuras.ModelPaths = { }, { value = "planterboxes", + text = "planterboxes", children = { { value = "stormwindplanter.m2", + text = "stormwindplanter.m2", fileId = "198395", text = "stormwindplanter.m2", }, { value = "stormwindwindowplantera.m2", + text = "stormwindwindowplantera.m2", fileId = "198396", text = "stormwindwindowplantera.m2", }, { value = "stormwindwindowplanterb.m2", + text = "stormwindwindowplanterb.m2", fileId = "198397", text = "stormwindwindowplanterb.m2", }, { value = "stormwindwindowplanterempty.m2", + text = "stormwindwindowplanterempty.m2", fileId = "198398", text = "stormwindwindowplanterempty.m2", }, { value = "stormwindwindowplantergrass.m2", + text = "stormwindwindowplantergrass.m2", fileId = "198399", text = "stormwindwindowplantergrass.m2", }, { value = "tirisfallplanter.m2", + text = "tirisfallplanter.m2", fileId = "198402", text = "tirisfallplanter.m2", }, { value = "tirisfallwindowplantera.m2", + text = "tirisfallwindowplantera.m2", fileId = "198403", text = "tirisfallwindowplantera.m2", }, { value = "tirisfallwindowplanterb.m2", + text = "tirisfallwindowplanterb.m2", fileId = "198404", text = "tirisfallwindowplanterb.m2", }, @@ -35325,9 +42181,11 @@ WeakAuras.ModelPaths = { }, { value = "plates", + text = "plates", children = { { value = "generaldirtyplate01.m2", + text = "generaldirtyplate01.m2", fileId = "198405", text = "generaldirtyplate01.m2", }, @@ -35336,9 +42194,11 @@ WeakAuras.ModelPaths = { }, { value = "podiums", + text = "podiums", children = { { value = "duskwoodpodium01.m2", + text = "duskwoodpodium01.m2", fileId = "198407", text = "duskwoodpodium01.m2", }, @@ -35347,14 +42207,17 @@ WeakAuras.ModelPaths = { }, { value = "posters", + text = "posters", children = { { value = "missingposter01.m2", + text = "missingposter01.m2", fileId = "198409", text = "missingposter01.m2", }, { value = "missingposter02.m2", + text = "missingposter02.m2", fileId = "198411", text = "missingposter02.m2", }, @@ -35363,14 +42226,17 @@ WeakAuras.ModelPaths = { }, { value = "pulleys", + text = "pulleys", children = { { value = "exteriorpulley.m2", + text = "exteriorpulley.m2", fileId = "198412", text = "exteriorpulley.m2", }, { value = "exteriorpulleyfore3.m2", + text = "exteriorpulleyfore3.m2", fileId = "198413", text = "exteriorpulleyfore3.m2", }, @@ -35379,9 +42245,11 @@ WeakAuras.ModelPaths = { }, { value = "ramrod", + text = "ramrod", children = { { value = "deadminegiantramrod.m2", + text = "deadminegiantramrod.m2", fileId = "198418", text = "deadminegiantramrod.m2", }, @@ -35390,9 +42258,11 @@ WeakAuras.ModelPaths = { }, { value = "ropeladders", + text = "ropeladders", children = { { value = "ropeladder01.m2", + text = "ropeladder01.m2", fileId = "198421", text = "ropeladder01.m2", }, @@ -35401,9 +42271,11 @@ WeakAuras.ModelPaths = { }, { value = "ropes", + text = "ropes", children = { { value = "cavekoboldropecoil.m2", + text = "cavekoboldropecoil.m2", fileId = "198422", text = "cavekoboldropecoil.m2", }, @@ -35412,39 +42284,47 @@ WeakAuras.ModelPaths = { }, { value = "rugs", + text = "rugs", children = { { value = "generalbearskinrug01.m2", + text = "generalbearskinrug01.m2", fileId = "198426", text = "generalbearskinrug01.m2", }, { value = "karazahnruggreen.m2", + text = "karazahnruggreen.m2", fileId = "198428", text = "karazahnruggreen.m2", }, { value = "karazahnrugorange.m2", + text = "karazahnrugorange.m2", fileId = "198430", text = "karazahnrugorange.m2", }, { value = "karazahnrugpurple.m2", + text = "karazahnrugpurple.m2", fileId = "198432", text = "karazahnrugpurple.m2", }, { value = "karazahnrugred.m2", + text = "karazahnrugred.m2", fileId = "198434", text = "karazahnrugred.m2", }, { value = "stormwindrug01.m2", + text = "stormwindrug01.m2", fileId = "198435", text = "stormwindrug01.m2", }, { value = "stormwindrug02.m2", + text = "stormwindrug02.m2", fileId = "198436", text = "stormwindrug02.m2", }, @@ -35453,34 +42333,41 @@ WeakAuras.ModelPaths = { }, { value = "sacks", + text = "sacks", children = { { value = "plaguedgrainsack01.m2", + text = "plaguedgrainsack01.m2", fileId = "198437", text = "plaguedgrainsack01.m2", }, { value = "plaguedgrainsack02.m2", + text = "plaguedgrainsack02.m2", fileId = "198438", text = "plaguedgrainsack02.m2", }, { value = "sackherbspeacebloom01.m2", + text = "sackherbspeacebloom01.m2", fileId = "198440", text = "sackherbspeacebloom01.m2", }, { value = "sackherbsstack01.m2", + text = "sackherbsstack01.m2", fileId = "198441", text = "sackherbsstack01.m2", }, { value = "sackherbsstack02.m2", + text = "sackherbsstack02.m2", fileId = "198442", text = "sackherbsstack02.m2", }, { value = "sackherbsstranglekelp01.m2", + text = "sackherbsstranglekelp01.m2", fileId = "198443", text = "sackherbsstranglekelp01.m2", }, @@ -35489,9 +42376,11 @@ WeakAuras.ModelPaths = { }, { value = "sarcophagi", + text = "sarcophagi", children = { { value = "sarcophagus.m2", + text = "sarcophagus.m2", fileId = "198445", text = "sarcophagus.m2", }, @@ -35500,9 +42389,11 @@ WeakAuras.ModelPaths = { }, { value = "scribestations", + text = "scribestations", children = { { value = "generalscribestation01.m2", + text = "generalscribestation01.m2", fileId = "198449", text = "generalscribestation01.m2", }, @@ -35511,34 +42402,41 @@ WeakAuras.ModelPaths = { }, { value = "scrolls", + text = "scrolls", children = { { value = "scrolla02.m2", + text = "scrolla02.m2", fileId = "198451", text = "scrolla02.m2", }, { value = "scrolla03.m2", + text = "scrolla03.m2", fileId = "198452", text = "scrolla03.m2", }, { value = "scrollb01.m2", + text = "scrollb01.m2", fileId = "198453", text = "scrollb01.m2", }, { value = "scrollb02.m2", + text = "scrollb02.m2", fileId = "198454", text = "scrollb02.m2", }, { value = "scrollb03.m2", + text = "scrollb03.m2", fileId = "198455", text = "scrollb03.m2", }, { value = "scrollmap.m2", + text = "scrollmap.m2", fileId = "198457", text = "scrollmap.m2", }, @@ -35547,9 +42445,11 @@ WeakAuras.ModelPaths = { }, { value = "shack", + text = "shack", children = { { value = "shack.m2", + text = "shack.m2", fileId = "198459", text = "shack.m2", }, @@ -35558,14 +42458,17 @@ WeakAuras.ModelPaths = { }, { value = "shopcounter", + text = "shopcounter", children = { { value = "duskwoodshopcounter.m2", + text = "duskwoodshopcounter.m2", fileId = "198461", text = "duskwoodshopcounter.m2", }, { value = "duskwoodshopcounter02.m2", + text = "duskwoodshopcounter02.m2", fileId = "198462", text = "duskwoodshopcounter02.m2", }, @@ -35574,84 +42477,101 @@ WeakAuras.ModelPaths = { }, { value = "signposts", + text = "signposts", children = { { value = "humansignpost01.m2", + text = "humansignpost01.m2", fileId = "198463", text = "humansignpost01.m2", }, { value = "humansignpost02.m2", + text = "humansignpost02.m2", fileId = "198464", text = "humansignpost02.m2", }, { value = "humansignpost03.m2", + text = "humansignpost03.m2", fileId = "198465", text = "humansignpost03.m2", }, { value = "humansignpost04.m2", + text = "humansignpost04.m2", fileId = "198466", text = "humansignpost04.m2", }, { value = "humansignpost05.m2", + text = "humansignpost05.m2", fileId = "198467", text = "humansignpost05.m2", }, { value = "humansignpostpointer01.m2", + text = "humansignpostpointer01.m2", fileId = "198468", text = "humansignpostpointer01.m2", }, { value = "humansignpostpointer02.m2", + text = "humansignpostpointer02.m2", fileId = "198469", text = "humansignpostpointer02.m2", }, { value = "humansignpostpointer03.m2", + text = "humansignpostpointer03.m2", fileId = "198470", text = "humansignpostpointer03.m2", }, { value = "humansignpostpointer04.m2", + text = "humansignpostpointer04.m2", fileId = "198471", text = "humansignpostpointer04.m2", }, { value = "humansignpostpointer05.m2", + text = "humansignpostpointer05.m2", fileId = "198472", text = "humansignpostpointer05.m2", }, { value = "stonesignpointer01.m2", + text = "stonesignpointer01.m2", fileId = "198476", text = "stonesignpointer01.m2", }, { value = "stonesignpost01.m2", + text = "stonesignpost01.m2", fileId = "198477", text = "stonesignpost01.m2", }, { value = "woodsignpointernice01.m2", + text = "woodsignpointernice01.m2", fileId = "198478", text = "woodsignpointernice01.m2", }, { value = "woodsignpointerworn01.m2", + text = "woodsignpointerworn01.m2", fileId = "198479", text = "woodsignpointerworn01.m2", }, { value = "woodsignpostnice01.m2", + text = "woodsignpostnice01.m2", fileId = "198480", text = "woodsignpostnice01.m2", }, { value = "woodsignpostworn01.m2", + text = "woodsignpostworn01.m2", fileId = "198481", text = "woodsignpostworn01.m2", }, @@ -35660,84 +42580,101 @@ WeakAuras.ModelPaths = { }, { value = "signs", + text = "signs", children = { { value = "alchemistsshop01.m2", + text = "alchemistsshop01.m2", fileId = "198484", text = "alchemistsshop01.m2", }, { value = "armorershop01.m2", + text = "armorershop01.m2", fileId = "198486", text = "armorershop01.m2", }, { value = "bakershop01.m2", + text = "bakershop01.m2", fileId = "198488", text = "bakershop01.m2", }, { value = "bank01.m2", + text = "bank01.m2", fileId = "198490", text = "bank01.m2", }, { value = "butchershopsign01.m2", + text = "butchershopsign01.m2", fileId = "198492", text = "butchershopsign01.m2", }, { value = "cavekobolddangersign.m2", + text = "cavekobolddangersign.m2", fileId = "198493", text = "cavekobolddangersign.m2", }, { value = "cheeseshop01.m2", + text = "cheeseshop01.m2", fileId = "198497", text = "cheeseshop01.m2", }, { value = "fletchershop01.m2", + text = "fletchershop01.m2", fileId = "198500", text = "fletchershop01.m2", }, { value = "florist01.m2", + text = "florist01.m2", fileId = "198502", text = "florist01.m2", }, { value = "generalstore01.m2", + text = "generalstore01.m2", fileId = "198504", text = "generalstore01.m2", }, { value = "noblehouse01.m2", + text = "noblehouse01.m2", fileId = "198506", text = "noblehouse01.m2", }, { value = "tailor01.m2", + text = "tailor01.m2", fileId = "198508", text = "tailor01.m2", }, { value = "tavern01.m2", + text = "tavern01.m2", fileId = "198510", text = "tavern01.m2", }, { value = "visitorscenter01.m2", + text = "visitorscenter01.m2", fileId = "198512", text = "visitorscenter01.m2", }, { value = "weaponsmithshop01.m2", + text = "weaponsmithshop01.m2", fileId = "198514", text = "weaponsmithshop01.m2", }, { value = "wineshopsign01.m2", + text = "wineshopsign01.m2", fileId = "198516", text = "wineshopsign01.m2", }, @@ -35746,9 +42683,11 @@ WeakAuras.ModelPaths = { }, { value = "smokestack", + text = "smokestack", children = { { value = "smokestack.m2", + text = "smokestack.m2", fileId = "198517", text = "smokestack.m2", }, @@ -35757,9 +42696,11 @@ WeakAuras.ModelPaths = { }, { value = "spidereggsground", + text = "spidereggsground", children = { { value = "cavekoboldspidereggsground.m2", + text = "cavekoboldspidereggsground.m2", fileId = "198519", text = "cavekoboldspidereggsground.m2", }, @@ -35768,24 +42709,29 @@ WeakAuras.ModelPaths = { }, { value = "spidereggssack", + text = "spidereggssack", children = { { value = "cavekoboldspidereggssack.m2", + text = "cavekoboldspidereggssack.m2", fileId = "198522", text = "cavekoboldspidereggssack.m2", }, { value = "spidereggsack02.m2", + text = "spidereggsack02.m2", fileId = "198525", text = "spidereggsack02.m2", }, { value = "spidereggsack03.m2", + text = "spidereggsack03.m2", fileId = "198526", text = "spidereggsack03.m2", }, { value = "spidereggsack04.m2", + text = "spidereggsack04.m2", fileId = "198527", text = "spidereggsack04.m2", }, @@ -35794,79 +42740,95 @@ WeakAuras.ModelPaths = { }, { value = "statues", + text = "statues", children = { { value = "busthf01.m2", + text = "busthf01.m2", fileId = "198538", text = "busthf01.m2", }, { value = "busthf02.m2", + text = "busthf02.m2", fileId = "198539", text = "busthf02.m2", }, { value = "busthf04.m2", + text = "busthf04.m2", fileId = "198540", text = "busthf04.m2", }, { value = "busthm01.m2", + text = "busthm01.m2", fileId = "198542", text = "busthm01.m2", }, { value = "busthm02.m2", + text = "busthm02.m2", fileId = "198544", text = "busthm02.m2", }, { value = "duskstatue01.m2", + text = "duskstatue01.m2", fileId = "198551", text = "duskstatue01.m2", }, { value = "duskstatue02.m2", + text = "duskstatue02.m2", fileId = "198552", text = "duskstatue02.m2", }, { value = "northshireabbeybust01.m2", + text = "northshireabbeybust01.m2", fileId = "198558", text = "northshireabbeybust01.m2", }, { value = "statuealleria.m2", + text = "statuealleria.m2", fileId = "198559", text = "statuealleria.m2", }, { value = "statuedanath.m2", + text = "statuedanath.m2", fileId = "198560", text = "statuedanath.m2", }, { value = "statuekhadgar.m2", + text = "statuekhadgar.m2", fileId = "198561", text = "statuekhadgar.m2", }, { value = "statuekurdran.m2", + text = "statuekurdran.m2", fileId = "198562", text = "statuekurdran.m2", }, { value = "statuelion.m2", + text = "statuelion.m2", fileId = "198563", text = "statuelion.m2", }, { value = "statueturalyon.m2", + text = "statueturalyon.m2", fileId = "198564", text = "statueturalyon.m2", }, { value = "utherstatue.m2", + text = "utherstatue.m2", fileId = "198570", text = "utherstatue.m2", }, @@ -35875,14 +42837,17 @@ WeakAuras.ModelPaths = { }, { value = "steam", + text = "steam", children = { { value = "deadminesteam01.m2", + text = "deadminesteam01.m2", fileId = "198571", text = "deadminesteam01.m2", }, { value = "deadminesteam02.m2", + text = "deadminesteam02.m2", fileId = "198572", text = "deadminesteam02.m2", }, @@ -35891,19 +42856,23 @@ WeakAuras.ModelPaths = { }, { value = "steamgauges", + text = "steamgauges", children = { { value = "deadminesteamgauge01.m2", + text = "deadminesteamgauge01.m2", fileId = "198573", text = "deadminesteamgauge01.m2", }, { value = "deadminesteamgauge02.m2", + text = "deadminesteamgauge02.m2", fileId = "198574", text = "deadminesteamgauge02.m2", }, { value = "deadminesteamgauge03.m2", + text = "deadminesteamgauge03.m2", fileId = "198575", text = "deadminesteamgauge03.m2", }, @@ -35912,14 +42881,17 @@ WeakAuras.ModelPaths = { }, { value = "steamwhistles", + text = "steamwhistles", children = { { value = "deadminesteamwhistle.m2", + text = "deadminesteamwhistle.m2", fileId = "198576", text = "deadminesteamwhistle.m2", }, { value = "deadminesteamwhistleon.m2", + text = "deadminesteamwhistleon.m2", fileId = "198577", text = "deadminesteamwhistleon.m2", }, @@ -35928,14 +42900,17 @@ WeakAuras.ModelPaths = { }, { value = "stonefence", + text = "stonefence", children = { { value = "genericfencepost.m2", + text = "genericfencepost.m2", fileId = "198578", text = "genericfencepost.m2", }, { value = "genericwroughtfence01.m2", + text = "genericwroughtfence01.m2", fileId = "198580", text = "genericwroughtfence01.m2", }, @@ -35944,9 +42919,11 @@ WeakAuras.ModelPaths = { }, { value = "stonepyres", + text = "stonepyres", children = { { value = "stonepyre01.m2", + text = "stonepyre01.m2", fileId = "198581", text = "stonepyre01.m2", }, @@ -35955,29 +42932,35 @@ WeakAuras.ModelPaths = { }, { value = "stormwind", + text = "stormwind", children = { { value = "alliancemaptable.m2", + text = "alliancemaptable.m2", fileId = "198582", text = "alliancemaptable.m2", }, { value = "stormwinddoor.m2", + text = "stormwinddoor.m2", fileId = "198590", text = "stormwinddoor.m2", }, { value = "stormwindnightelftree.m2", + text = "stormwindnightelftree.m2", fileId = "198591", text = "stormwindnightelftree.m2", }, { value = "treefacade01.m2", + text = "treefacade01.m2", fileId = "198592", text = "treefacade01.m2", }, { value = "treefacade02.m2", + text = "treefacade02.m2", fileId = "198593", text = "treefacade02.m2", }, @@ -35986,19 +42969,23 @@ WeakAuras.ModelPaths = { }, { value = "stoves", + text = "stoves", children = { { value = "potbellystove.m2", + text = "potbellystove.m2", fileId = "198595", text = "potbellystove.m2", }, { value = "potbellystovepipe.m2", + text = "potbellystovepipe.m2", fileId = "198596", text = "potbellystovepipe.m2", }, { value = "potbellystovewall.m2", + text = "potbellystovewall.m2", fileId = "198597", text = "potbellystovewall.m2", }, @@ -36007,49 +42994,59 @@ WeakAuras.ModelPaths = { }, { value = "tables", + text = "tables", children = { { value = "bloodytable1.m2", + text = "bloodytable1.m2", fileId = "198598", text = "bloodytable1.m2", }, { value = "bloodytable2.m2", + text = "bloodytable2.m2", fileId = "198599", text = "bloodytable2.m2", }, { value = "bloodytable3.m2", + text = "bloodytable3.m2", fileId = "198600", text = "bloodytable3.m2", }, { value = "duskwoodtable01.m2", + text = "duskwoodtable01.m2", fileId = "198602", text = "duskwoodtable01.m2", }, { value = "inntable.m2", + text = "inntable.m2", fileId = "198603", text = "inntable.m2", }, { value = "inntablesmall.m2", + text = "inntablesmall.m2", fileId = "198604", text = "inntablesmall.m2", }, { value = "inntabletiny.m2", + text = "inntabletiny.m2", fileId = "198605", text = "inntabletiny.m2", }, { value = "shadowfangtable01.m2", + text = "shadowfangtable01.m2", fileId = "198608", text = "shadowfangtable01.m2", }, { value = "shadowfangtable02.m2", + text = "shadowfangtable02.m2", fileId = "198609", text = "shadowfangtable02.m2", }, @@ -36058,19 +43055,23 @@ WeakAuras.ModelPaths = { }, { value = "torturedevices", + text = "torturedevices", children = { { value = "generalironmaiden01.m2", + text = "generalironmaiden01.m2", fileId = "198611", text = "generalironmaiden01.m2", }, { value = "generalrack01.m2", + text = "generalrack01.m2", fileId = "198612", text = "generalrack01.m2", }, { value = "generalstocks01.m2", + text = "generalstocks01.m2", fileId = "198613", text = "generalstocks01.m2", }, @@ -36079,9 +43080,11 @@ WeakAuras.ModelPaths = { }, { value = "valves", + text = "valves", children = { { value = "deadminevalve.m2", + text = "deadminevalve.m2", fileId = "198616", text = "deadminevalve.m2", }, @@ -36090,14 +43093,17 @@ WeakAuras.ModelPaths = { }, { value = "valvesteam", + text = "valvesteam", children = { { value = "deadminevalvesteam01.m2", + text = "deadminevalvesteam01.m2", fileId = "198617", text = "deadminevalvesteam01.m2", }, { value = "deadminevalvesteam02.m2", + text = "deadminevalvesteam02.m2", fileId = "198618", text = "deadminevalvesteam02.m2", }, @@ -36106,9 +43112,11 @@ WeakAuras.ModelPaths = { }, { value = "valvewaterdrip", + text = "valvewaterdrip", children = { { value = "deadminevalvewaterdrip.m2", + text = "deadminevalvewaterdrip.m2", fileId = "198619", text = "deadminevalvewaterdrip.m2", }, @@ -36117,9 +43125,11 @@ WeakAuras.ModelPaths = { }, { value = "vendorawnings", + text = "vendorawnings", children = { { value = "stormwindvendorawning01.m2", + text = "stormwindvendorawning01.m2", fileId = "198620", text = "stormwindvendorawning01.m2", }, @@ -36128,9 +43138,11 @@ WeakAuras.ModelPaths = { }, { value = "vendortents", + text = "vendortents", children = { { value = "stormwindvendortent01.m2", + text = "stormwindvendortent01.m2", fileId = "198621", text = "stormwindvendortent01.m2", }, @@ -36139,14 +43151,17 @@ WeakAuras.ModelPaths = { }, { value = "vials", + text = "vials", children = { { value = "smallvials.m2", + text = "smallvials.m2", fileId = "198626", text = "smallvials.m2", }, { value = "vialsbottles.m2", + text = "vialsbottles.m2", fileId = "198630", text = "vialsbottles.m2", }, @@ -36155,9 +43170,11 @@ WeakAuras.ModelPaths = { }, { value = "walls", + text = "walls", children = { { value = "greatwall_portcullis.m2", + text = "greatwall_portcullis.m2", fileId = "198632", text = "greatwall_portcullis.m2", }, @@ -36166,14 +43183,17 @@ WeakAuras.ModelPaths = { }, { value = "wardrobe", + text = "wardrobe", children = { { value = "duskwoodwardrobe01.m2", + text = "duskwoodwardrobe01.m2", fileId = "198633", text = "duskwoodwardrobe01.m2", }, { value = "duskwoodwardrobe02.m2", + text = "duskwoodwardrobe02.m2", fileId = "198634", text = "duskwoodwardrobe02.m2", }, @@ -36182,9 +43202,11 @@ WeakAuras.ModelPaths = { }, { value = "waterdrops", + text = "waterdrops", children = { { value = "deadminewaterdrops.m2", + text = "deadminewaterdrops.m2", fileId = "198635", text = "deadminewaterdrops.m2", }, @@ -36193,9 +43215,11 @@ WeakAuras.ModelPaths = { }, { value = "weaponracks", + text = "weaponracks", children = { { value = "generalweaponrack01.m2", + text = "generalweaponrack01.m2", fileId = "198636", text = "generalweaponrack01.m2", }, @@ -36204,109 +43228,131 @@ WeakAuras.ModelPaths = { }, { value = "weapons&armor", + text = "weapons&armor", children = { { value = "2sidedpickaxe.m2", + text = "2sidedpickaxe.m2", fileId = "198637", text = "2sidedpickaxe.m2", }, { value = "crimsonwallshield01.m2", + text = "crimsonwallshield01.m2", fileId = "198639", text = "crimsonwallshield01.m2", }, { value = "humanarrow.m2", + text = "humanarrow.m2", fileId = "198642", text = "humanarrow.m2", }, { value = "humanarrows.m2", + text = "humanarrows.m2", fileId = "198643", text = "humanarrows.m2", }, { value = "humanaxe01.m2", + text = "humanaxe01.m2", fileId = "198644", text = "humanaxe01.m2", }, { value = "humanaxe02.m2", + text = "humanaxe02.m2", fileId = "198645", text = "humanaxe02.m2", }, { value = "humanbow01.m2", + text = "humanbow01.m2", fileId = "198646", text = "humanbow01.m2", }, { value = "humanbow02.m2", + text = "humanbow02.m2", fileId = "198647", text = "humanbow02.m2", }, { value = "humanhammer01.m2", + text = "humanhammer01.m2", fileId = "198648", text = "humanhammer01.m2", }, { value = "humanhammer02.m2", + text = "humanhammer02.m2", fileId = "198649", text = "humanhammer02.m2", }, { value = "humanmace01.m2", + text = "humanmace01.m2", fileId = "198650", text = "humanmace01.m2", }, { value = "humanmace02.m2", + text = "humanmace02.m2", fileId = "198651", text = "humanmace02.m2", }, { value = "humanspear01.m2", + text = "humanspear01.m2", fileId = "198652", text = "humanspear01.m2", }, { value = "humanspear02.m2", + text = "humanspear02.m2", fileId = "198653", text = "humanspear02.m2", }, { value = "humanstaff01.m2", + text = "humanstaff01.m2", fileId = "198654", text = "humanstaff01.m2", }, { value = "humanstaff02.m2", + text = "humanstaff02.m2", fileId = "198655", text = "humanstaff02.m2", }, { value = "humansword01.m2", + text = "humansword01.m2", fileId = "198656", text = "humansword01.m2", }, { value = "humansword02.m2", + text = "humansword02.m2", fileId = "198657", text = "humansword02.m2", }, { value = "orcarrow.m2", + text = "orcarrow.m2", fileId = "198658", text = "orcarrow.m2", }, { value = "wallshield03.m2", + text = "wallshield03.m2", fileId = "198660", text = "wallshield03.m2", }, { value = "wallsword01.m2", + text = "wallsword01.m2", fileId = "198662", text = "wallsword01.m2", }, @@ -36315,19 +43361,23 @@ WeakAuras.ModelPaths = { }, { value = "westfallgrainsilodestroyed01.m2", + text = "westfallgrainsilodestroyed01.m2", fileId = "198664", text = "westfallgrainsilodestroyed01.m2", }, { value = "woodendummies", + text = "woodendummies", children = { { value = "generalwoodendummy02.m2", + text = "generalwoodendummy02.m2", fileId = "198665", text = "generalwoodendummy02.m2", }, { value = "stormwindwoodendummy01.m2", + text = "stormwindwoodendummy01.m2", fileId = "198666", text = "stormwindwoodendummy01.m2", }, @@ -36336,14 +43386,17 @@ WeakAuras.ModelPaths = { }, { value = "woodenrails", + text = "woodenrails", children = { { value = "rail_wooden01.m2", + text = "rail_wooden01.m2", fileId = "198668", text = "rail_wooden01.m2", }, { value = "rail_wooden02.m2", + text = "rail_wooden02.m2", fileId = "198669", text = "rail_wooden02.m2", }, @@ -36352,14 +43405,17 @@ WeakAuras.ModelPaths = { }, { value = "woodenstairs", + text = "woodenstairs", children = { { value = "woodenstairs01.m2", + text = "woodenstairs01.m2", fileId = "198670", text = "woodenstairs01.m2", }, { value = "woodenstairs02.m2", + text = "woodenstairs02.m2", fileId = "198671", text = "woodenstairs02.m2", }, @@ -36368,34 +43424,41 @@ WeakAuras.ModelPaths = { }, { value = "wreckedbuildings", + text = "wreckedbuildings", children = { { value = "wreckedbuildinghbase01.m2", + text = "wreckedbuildinghbase01.m2", fileId = "198672", text = "wreckedbuildinghbase01.m2", }, { value = "wreckedbuildinghbase02.m2", + text = "wreckedbuildinghbase02.m2", fileId = "198673", text = "wreckedbuildinghbase02.m2", }, { value = "wreckedbuildinghbase03.m2", + text = "wreckedbuildinghbase03.m2", fileId = "198674", text = "wreckedbuildinghbase03.m2", }, { value = "wreckedbuildinghredbrick01.m2", + text = "wreckedbuildinghredbrick01.m2", fileId = "198675", text = "wreckedbuildinghredbrick01.m2", }, { value = "wreckedbuildinghwall01.m2", + text = "wreckedbuildinghwall01.m2", fileId = "198676", text = "wreckedbuildinghwall01.m2", }, { value = "wreckedbuildinghwall02.m2", + text = "wreckedbuildinghwall02.m2", fileId = "198677", text = "wreckedbuildinghwall02.m2", }, @@ -36407,12 +43470,15 @@ WeakAuras.ModelPaths = { }, { value = "passivedoodads", + text = "passivedoodads", children = { { value = "prisoncell", + text = "prisoncell", children = { { value = "prisoncell01.m2", + text = "prisoncell01.m2", fileId = "198678", text = "prisoncell01.m2", }, @@ -36427,50 +43493,61 @@ WeakAuras.ModelPaths = { }, { value = "makura", + text = "makura", children = { { value = "passive doodads", + text = "passive doodads", children = { { value = "makurashells", + text = "makurashells", children = { { value = "makurashells01.m2", + text = "makurashells01.m2", fileId = "198708", text = "makurashells01.m2", }, { value = "makurashells02.m2", + text = "makurashells02.m2", fileId = "198709", text = "makurashells02.m2", }, { value = "makurashells03.m2", + text = "makurashells03.m2", fileId = "198710", text = "makurashells03.m2", }, { value = "makurashells04.m2", + text = "makurashells04.m2", fileId = "198711", text = "makurashells04.m2", }, { value = "makurashells05.m2", + text = "makurashells05.m2", fileId = "198712", text = "makurashells05.m2", }, { value = "makurashells06.m2", + text = "makurashells06.m2", fileId = "198713", text = "makurashells06.m2", }, { value = "makurashells07.m2", + text = "makurashells07.m2", fileId = "198714", text = "makurashells07.m2", }, { value = "makurashells08.m2", + text = "makurashells08.m2", fileId = "198715", text = "makurashells08.m2", }, @@ -36485,15 +43562,19 @@ WeakAuras.ModelPaths = { }, { value = "murloc", + text = "murloc", children = { { value = "passive doodads", + text = "passive doodads", children = { { value = "altars", + text = "altars", children = { { value = "murlocaltar_01.m2", + text = "murlocaltar_01.m2", fileId = "198717", text = "murlocaltar_01.m2", }, @@ -36502,9 +43583,11 @@ WeakAuras.ModelPaths = { }, { value = "pearl", + text = "pearl", children = { { value = "greatpearl_01.m2", + text = "greatpearl_01.m2", fileId = "198719", text = "greatpearl_01.m2", }, @@ -36519,15 +43602,19 @@ WeakAuras.ModelPaths = { }, { value = "nightelf", + text = "nightelf", children = { { value = "activedoodads", + text = "activedoodads", children = { { value = "doors", + text = "doors", children = { { value = "bfd_brassdoors.m2", + text = "bfd_brassdoors.m2", fileId = "198720", text = "bfd_brassdoors.m2", }, @@ -36539,32 +43626,39 @@ WeakAuras.ModelPaths = { }, { value = "passive doodads", + text = "passive doodads", children = { { value = "banners", + text = "banners", children = { { value = "nightelfowlbanner01.m2", + text = "nightelfowlbanner01.m2", fileId = "198725", text = "nightelfowlbanner01.m2", }, { value = "nightelfowlbanner02.m2", + text = "nightelfowlbanner02.m2", fileId = "198726", text = "nightelfowlbanner02.m2", }, { value = "nightelfowlbanner03.m2", + text = "nightelfowlbanner03.m2", fileId = "198727", text = "nightelfowlbanner03.m2", }, { value = "nightelftreebanner01.m2", + text = "nightelftreebanner01.m2", fileId = "198729", text = "nightelftreebanner01.m2", }, { value = "nightelftreebanner02.m2", + text = "nightelftreebanner02.m2", fileId = "198731", text = "nightelftreebanner02.m2", }, @@ -36573,9 +43667,11 @@ WeakAuras.ModelPaths = { }, { value = "barrel", + text = "barrel", children = { { value = "elfbarrel01.m2", + text = "elfbarrel01.m2", fileId = "198733", text = "elfbarrel01.m2", }, @@ -36584,19 +43680,23 @@ WeakAuras.ModelPaths = { }, { value = "beds", + text = "beds", children = { { value = "elfbed01.m2", + text = "elfbed01.m2", fileId = "198734", text = "elfbed01.m2", }, { value = "elfbed02.m2", + text = "elfbed02.m2", fileId = "198735", text = "elfbed02.m2", }, { value = "elfbed03.m2", + text = "elfbed03.m2", fileId = "198736", text = "elfbed03.m2", }, @@ -36605,9 +43705,11 @@ WeakAuras.ModelPaths = { }, { value = "bowls", + text = "bowls", children = { { value = "nightelfbowl.m2", + text = "nightelfbowl.m2", fileId = "198741", text = "nightelfbowl.m2", }, @@ -36616,14 +43718,17 @@ WeakAuras.ModelPaths = { }, { value = "candles", + text = "candles", children = { { value = "ne_candle01.m2", + text = "ne_candle01.m2", fileId = "198743", text = "ne_candle01.m2", }, { value = "ne_floatingcandles.m2", + text = "ne_floatingcandles.m2", fileId = "198744", text = "ne_floatingcandles.m2", }, @@ -36632,9 +43737,11 @@ WeakAuras.ModelPaths = { }, { value = "crates", + text = "crates", children = { { value = "elfcrate01.m2", + text = "elfcrate01.m2", fileId = "198748", text = "elfcrate01.m2", }, @@ -36643,9 +43750,11 @@ WeakAuras.ModelPaths = { }, { value = "dressers", + text = "dressers", children = { { value = "ne_dresser01.m2", + text = "ne_dresser01.m2", fileId = "198749", text = "ne_dresser01.m2", }, @@ -36654,9 +43763,11 @@ WeakAuras.ModelPaths = { }, { value = "druidbeds", + text = "druidbeds", children = { { value = "wailingdruidbed.m2", + text = "wailingdruidbed.m2", fileId = "198752", text = "wailingdruidbed.m2", }, @@ -36665,9 +43776,11 @@ WeakAuras.ModelPaths = { }, { value = "fountains", + text = "fountains", children = { { value = "elvenfountain.m2", + text = "elvenfountain.m2", fileId = "198754", text = "elvenfountain.m2", }, @@ -36676,19 +43789,23 @@ WeakAuras.ModelPaths = { }, { value = "furniture", + text = "furniture", children = { { value = "elvenstonestool01.m2", + text = "elvenstonestool01.m2", fileId = "198755", text = "elvenstonestool01.m2", }, { value = "elvenstonetable01.m2", + text = "elvenstonetable01.m2", fileId = "198756", text = "elvenstonetable01.m2", }, { value = "stonebench01.m2", + text = "stonebench01.m2", fileId = "198757", text = "stonebench01.m2", }, @@ -36697,19 +43814,23 @@ WeakAuras.ModelPaths = { }, { value = "gardenbenches", + text = "gardenbenches", children = { { value = "gardenbench01.m2", + text = "gardenbench01.m2", fileId = "198758", text = "gardenbench01.m2", }, { value = "gardenbench02.m2", + text = "gardenbench02.m2", fileId = "198759", text = "gardenbench02.m2", }, { value = "gardenbench03.m2", + text = "gardenbench03.m2", fileId = "198760", text = "gardenbench03.m2", }, @@ -36718,9 +43839,11 @@ WeakAuras.ModelPaths = { }, { value = "gates", + text = "gates", children = { { value = "kalidarmoongate.m2", + text = "kalidarmoongate.m2", fileId = "198761", text = "kalidarmoongate.m2", }, @@ -36729,9 +43852,11 @@ WeakAuras.ModelPaths = { }, { value = "gazibos", + text = "gazibos", children = { { value = "kalidargazibo.m2", + text = "kalidargazibo.m2", fileId = "198762", text = "kalidargazibo.m2", }, @@ -36740,14 +43865,17 @@ WeakAuras.ModelPaths = { }, { value = "glaivethrower", + text = "glaivethrower", children = { { value = "nightelfglaivethrower_doodad01.m2", + text = "nightelfglaivethrower_doodad01.m2", fileId = "198764", text = "nightelfglaivethrower_doodad01.m2", }, { value = "nightelfglaivethrowerblade_doodad01.m2", + text = "nightelfglaivethrowerblade_doodad01.m2", fileId = "198765", text = "nightelfglaivethrowerblade_doodad01.m2", }, @@ -36756,9 +43884,11 @@ WeakAuras.ModelPaths = { }, { value = "hippogryphroost", + text = "hippogryphroost", children = { { value = "hippogryphroost.m2", + text = "hippogryphroost.m2", fileId = "198768", text = "hippogryphroost.m2", }, @@ -36767,34 +43897,41 @@ WeakAuras.ModelPaths = { }, { value = "lamps", + text = "lamps", children = { { value = "darnassusstreetlamp01.m2", + text = "darnassusstreetlamp01.m2", fileId = "198770", text = "darnassusstreetlamp01.m2", }, { value = "darnassusstreetlamp02.m2", + text = "darnassusstreetlamp02.m2", fileId = "198771", text = "darnassusstreetlamp02.m2", }, { value = "darnassuswreckedstreetlamp01.m2", + text = "darnassuswreckedstreetlamp01.m2", fileId = "198772", text = "darnassuswreckedstreetlamp01.m2", }, { value = "darnassuswreckedstreetlamp02.m2", + text = "darnassuswreckedstreetlamp02.m2", fileId = "198773", text = "darnassuswreckedstreetlamp02.m2", }, { value = "kalidarstreetlamp01.m2", + text = "kalidarstreetlamp01.m2", fileId = "198776", text = "kalidarstreetlamp01.m2", }, { value = "kalidarstreetlamp02.m2", + text = "kalidarstreetlamp02.m2", fileId = "198777", text = "kalidarstreetlamp02.m2", }, @@ -36803,19 +43940,23 @@ WeakAuras.ModelPaths = { }, { value = "lanterns", + text = "lanterns", children = { { value = "nightelfhanginglantern.m2", + text = "nightelfhanginglantern.m2", fileId = "198779", text = "nightelfhanginglantern.m2", }, { value = "nightelflantern01.m2", + text = "nightelflantern01.m2", fileId = "198780", text = "nightelflantern01.m2", }, { value = "nightelflantern02.m2", + text = "nightelflantern02.m2", fileId = "198781", text = "nightelflantern02.m2", }, @@ -36824,54 +43965,65 @@ WeakAuras.ModelPaths = { }, { value = "magicalimplements", + text = "magicalimplements", children = { { value = "nemagicimplement01.m2", + text = "nemagicimplement01.m2", fileId = "198785", text = "nemagicimplement01.m2", }, { value = "nemagicimplement02.m2", + text = "nemagicimplement02.m2", fileId = "198786", text = "nemagicimplement02.m2", }, { value = "nemagicimplement03.m2", + text = "nemagicimplement03.m2", fileId = "198787", text = "nemagicimplement03.m2", }, { value = "nemagicimplement04.m2", + text = "nemagicimplement04.m2", fileId = "198788", text = "nemagicimplement04.m2", }, { value = "nemagicimplement05.m2", + text = "nemagicimplement05.m2", fileId = "198789", text = "nemagicimplement05.m2", }, { value = "nemagicimplement06.m2", + text = "nemagicimplement06.m2", fileId = "198790", text = "nemagicimplement06.m2", }, { value = "nemagicimplement07.m2", + text = "nemagicimplement07.m2", fileId = "198791", text = "nemagicimplement07.m2", }, { value = "nemagicimplement08.m2", + text = "nemagicimplement08.m2", fileId = "198792", text = "nemagicimplement08.m2", }, { value = "nemagicimplement09.m2", + text = "nemagicimplement09.m2", fileId = "198793", text = "nemagicimplement09.m2", }, { value = "nemagicimplement10.m2", + text = "nemagicimplement10.m2", fileId = "198794", text = "nemagicimplement10.m2", }, @@ -36880,9 +44032,11 @@ WeakAuras.ModelPaths = { }, { value = "moonwelllight", + text = "moonwelllight", children = { { value = "moonwelllight.m2", + text = "moonwelllight.m2", fileId = "198798", text = "moonwelllight.m2", }, @@ -36891,24 +44045,29 @@ WeakAuras.ModelPaths = { }, { value = "pottery", + text = "pottery", children = { { value = "elvenpottery01.m2", + text = "elvenpottery01.m2", fileId = "198801", text = "elvenpottery01.m2", }, { value = "elvenpottery02.m2", + text = "elvenpottery02.m2", fileId = "198802", text = "elvenpottery02.m2", }, { value = "elvenpottery03.m2", + text = "elvenpottery03.m2", fileId = "198803", text = "elvenpottery03.m2", }, { value = "elvenpottery04.m2", + text = "elvenpottery04.m2", fileId = "198804", text = "elvenpottery04.m2", }, @@ -36917,19 +44076,23 @@ WeakAuras.ModelPaths = { }, { value = "pvpwalls", + text = "pvpwalls", children = { { value = "aszharapvp_walls_01.m2", + text = "aszharapvp_walls_01.m2", fileId = "198805", text = "aszharapvp_walls_01.m2", }, { value = "aszharapvp_walls_02.m2", + text = "aszharapvp_walls_02.m2", fileId = "198806", text = "aszharapvp_walls_02.m2", }, { value = "aszharapvp_walls_03.m2", + text = "aszharapvp_walls_03.m2", fileId = "198807", text = "aszharapvp_walls_03.m2", }, @@ -36938,134 +44101,161 @@ WeakAuras.ModelPaths = { }, { value = "ruins", + text = "ruins", children = { { value = "azrelfruin01.m2", + text = "azrelfruin01.m2", fileId = "198808", text = "azrelfruin01.m2", }, { value = "azrelfruin02.m2", + text = "azrelfruin02.m2", fileId = "198809", text = "azrelfruin02.m2", }, { value = "azrelfruin03.m2", + text = "azrelfruin03.m2", fileId = "198810", text = "azrelfruin03.m2", }, { value = "azrelfruin04.m2", + text = "azrelfruin04.m2", fileId = "198811", text = "azrelfruin04.m2", }, { value = "azrelfruin05.m2", + text = "azrelfruin05.m2", fileId = "198812", text = "azrelfruin05.m2", }, { value = "azrelfruin06.m2", + text = "azrelfruin06.m2", fileId = "198813", text = "azrelfruin06.m2", }, { value = "azrelfruin07.m2", + text = "azrelfruin07.m2", fileId = "198814", text = "azrelfruin07.m2", }, { value = "azrelfruin08.m2", + text = "azrelfruin08.m2", fileId = "198815", text = "azrelfruin08.m2", }, { value = "azrelfruin09.m2", + text = "azrelfruin09.m2", fileId = "198816", text = "azrelfruin09.m2", }, { value = "azrelfruin10.m2", + text = "azrelfruin10.m2", fileId = "198817", text = "azrelfruin10.m2", }, { value = "newelfruin01.m2", + text = "newelfruin01.m2", fileId = "198824", text = "newelfruin01.m2", }, { value = "newelfruin02.m2", + text = "newelfruin02.m2", fileId = "198825", text = "newelfruin02.m2", }, { value = "newelfruin03.m2", + text = "newelfruin03.m2", fileId = "198826", text = "newelfruin03.m2", }, { value = "newelfruin04.m2", + text = "newelfruin04.m2", fileId = "198827", text = "newelfruin04.m2", }, { value = "newelfruin05.m2", + text = "newelfruin05.m2", fileId = "198828", text = "newelfruin05.m2", }, { value = "newelfruin06.m2", + text = "newelfruin06.m2", fileId = "198829", text = "newelfruin06.m2", }, { value = "newelfruin07.m2", + text = "newelfruin07.m2", fileId = "198830", text = "newelfruin07.m2", }, { value = "newelfruin08.m2", + text = "newelfruin08.m2", fileId = "198831", text = "newelfruin08.m2", }, { value = "newelfruin09.m2", + text = "newelfruin09.m2", fileId = "198832", text = "newelfruin09.m2", }, { value = "newelfruin10.m2", + text = "newelfruin10.m2", fileId = "198833", text = "newelfruin10.m2", }, { value = "nightelfruins01.m2", + text = "nightelfruins01.m2", fileId = "198834", text = "nightelfruins01.m2", }, { value = "nightelfruins02.m2", + text = "nightelfruins02.m2", fileId = "198835", text = "nightelfruins02.m2", }, { value = "nightelfruins03.m2", + text = "nightelfruins03.m2", fileId = "198836", text = "nightelfruins03.m2", }, { value = "nightelfruins04.m2", + text = "nightelfruins04.m2", fileId = "198837", text = "nightelfruins04.m2", }, { value = "nightelfruins05.m2", + text = "nightelfruins05.m2", fileId = "198838", text = "nightelfruins05.m2", }, { value = "nightelfruins07.m2", + text = "nightelfruins07.m2", fileId = "198839", text = "nightelfruins07.m2", }, @@ -37074,9 +44264,11 @@ WeakAuras.ModelPaths = { }, { value = "screens", + text = "screens", children = { { value = "ne_screen01.m2", + text = "ne_screen01.m2", fileId = "198842", text = "ne_screen01.m2", }, @@ -37085,24 +44277,29 @@ WeakAuras.ModelPaths = { }, { value = "signposts", + text = "signposts", children = { { value = "nightelfsignpost01.m2", + text = "nightelfsignpost01.m2", fileId = "198845", text = "nightelfsignpost01.m2", }, { value = "nightelfsignpost02.m2", + text = "nightelfsignpost02.m2", fileId = "198846", text = "nightelfsignpost02.m2", }, { value = "nightelfsignpostpointer01.m2", + text = "nightelfsignpostpointer01.m2", fileId = "198847", text = "nightelfsignpostpointer01.m2", }, { value = "nightelfsignpostpointer02.m2", + text = "nightelfsignpostpointer02.m2", fileId = "198848", text = "nightelfsignpostpointer02.m2", }, @@ -37111,219 +44308,263 @@ WeakAuras.ModelPaths = { }, { value = "signs", + text = "signs", children = { { value = "nightelfshopsignbase01.m2", + text = "nightelfshopsignbase01.m2", fileId = "198888", text = "nightelfshopsignbase01.m2", }, { value = "nightelfsign_alchemist.m2", + text = "nightelfsign_alchemist.m2", fileId = "198889", text = "nightelfsign_alchemist.m2", }, { value = "nightelfsign_armory.m2", + text = "nightelfsign_armory.m2", fileId = "198890", text = "nightelfsign_armory.m2", }, { value = "nightelfsign_axes.m2", + text = "nightelfsign_axes.m2", fileId = "198891", text = "nightelfsign_axes.m2", }, { value = "nightelfsign_bags.m2", + text = "nightelfsign_bags.m2", fileId = "198892", text = "nightelfsign_bags.m2", }, { value = "nightelfsign_baker.m2", + text = "nightelfsign_baker.m2", fileId = "198893", text = "nightelfsign_baker.m2", }, { value = "nightelfsign_bank.m2", + text = "nightelfsign_bank.m2", fileId = "198894", text = "nightelfsign_bank.m2", }, { value = "nightelfsign_blacksmith.m2", + text = "nightelfsign_blacksmith.m2", fileId = "198895", text = "nightelfsign_blacksmith.m2", }, { value = "nightelfsign_bows.m2", + text = "nightelfsign_bows.m2", fileId = "198896", text = "nightelfsign_bows.m2", }, { value = "nightelfsign_breadshop.m2", + text = "nightelfsign_breadshop.m2", fileId = "198897", text = "nightelfsign_breadshop.m2", }, { value = "nightelfsign_cartography.m2", + text = "nightelfsign_cartography.m2", fileId = "198898", text = "nightelfsign_cartography.m2", }, { value = "nightelfsign_clotharmor.m2", + text = "nightelfsign_clotharmor.m2", fileId = "198899", text = "nightelfsign_clotharmor.m2", }, { value = "nightelfsign_cooking.m2", + text = "nightelfsign_cooking.m2", fileId = "198900", text = "nightelfsign_cooking.m2", }, { value = "nightelfsign_daggers.m2", + text = "nightelfsign_daggers.m2", fileId = "198901", text = "nightelfsign_daggers.m2", }, { value = "nightelfsign_drinks.m2", + text = "nightelfsign_drinks.m2", fileId = "198902", text = "nightelfsign_drinks.m2", }, { value = "nightelfsign_enchanting.m2", + text = "nightelfsign_enchanting.m2", fileId = "198903", text = "nightelfsign_enchanting.m2", }, { value = "nightelfsign_engineering.m2", + text = "nightelfsign_engineering.m2", fileId = "198904", text = "nightelfsign_engineering.m2", }, { value = "nightelfsign_firstaid.m2", + text = "nightelfsign_firstaid.m2", fileId = "198905", text = "nightelfsign_firstaid.m2", }, { value = "nightelfsign_fishing.m2", + text = "nightelfsign_fishing.m2", fileId = "198906", text = "nightelfsign_fishing.m2", }, { value = "nightelfsign_fletcher.m2", + text = "nightelfsign_fletcher.m2", fileId = "198907", text = "nightelfsign_fletcher.m2", }, { value = "nightelfsign_florist.m2", + text = "nightelfsign_florist.m2", fileId = "198908", text = "nightelfsign_florist.m2", }, { value = "nightelfsign_general.m2", + text = "nightelfsign_general.m2", fileId = "198909", text = "nightelfsign_general.m2", }, { value = "nightelfsign_herbalist.m2", + text = "nightelfsign_herbalist.m2", fileId = "198910", text = "nightelfsign_herbalist.m2", }, { value = "nightelfsign_hippogryph.m2", + text = "nightelfsign_hippogryph.m2", fileId = "198911", text = "nightelfsign_hippogryph.m2", }, { value = "nightelfsign_inscribing.m2", + text = "nightelfsign_inscribing.m2", fileId = "198912", text = "nightelfsign_inscribing.m2", }, { value = "nightelfsign_leatherarmor.m2", + text = "nightelfsign_leatherarmor.m2", fileId = "198913", text = "nightelfsign_leatherarmor.m2", }, { value = "nightelfsign_lockpicking.m2", + text = "nightelfsign_lockpicking.m2", fileId = "198914", text = "nightelfsign_lockpicking.m2", }, { value = "nightelfsign_maces.m2", + text = "nightelfsign_maces.m2", fileId = "198915", text = "nightelfsign_maces.m2", }, { value = "nightelfsign_magicshop.m2", + text = "nightelfsign_magicshop.m2", fileId = "198916", text = "nightelfsign_magicshop.m2", }, { value = "nightelfsign_mailarmor.m2", + text = "nightelfsign_mailarmor.m2", fileId = "198917", text = "nightelfsign_mailarmor.m2", }, { value = "nightelfsign_meatshop.m2", + text = "nightelfsign_meatshop.m2", fileId = "198918", text = "nightelfsign_meatshop.m2", }, { value = "nightelfsign_mining.m2", + text = "nightelfsign_mining.m2", fileId = "198919", text = "nightelfsign_mining.m2", }, { value = "nightelfsign_noblehouse.m2", + text = "nightelfsign_noblehouse.m2", fileId = "198920", text = "nightelfsign_noblehouse.m2", }, { value = "nightelfsign_poisons.m2", + text = "nightelfsign_poisons.m2", fileId = "198921", text = "nightelfsign_poisons.m2", }, { value = "nightelfsign_shields.m2", + text = "nightelfsign_shields.m2", fileId = "198922", text = "nightelfsign_shields.m2", }, { value = "nightelfsign_staves.m2", + text = "nightelfsign_staves.m2", fileId = "198923", text = "nightelfsign_staves.m2", }, { value = "nightelfsign_swords.m2", + text = "nightelfsign_swords.m2", fileId = "198924", text = "nightelfsign_swords.m2", }, { value = "nightelfsign_tabard.m2", + text = "nightelfsign_tabard.m2", fileId = "198925", text = "nightelfsign_tabard.m2", }, { value = "nightelfsign_tailor.m2", + text = "nightelfsign_tailor.m2", fileId = "198926", text = "nightelfsign_tailor.m2", }, { value = "nightelfsign_tavern.m2", + text = "nightelfsign_tavern.m2", fileId = "198927", text = "nightelfsign_tavern.m2", }, { value = "nightelfsign_weaponsmith.m2", + text = "nightelfsign_weaponsmith.m2", fileId = "198928", text = "nightelfsign_weaponsmith.m2", }, { value = "nightelfsign_welcome.m2", + text = "nightelfsign_welcome.m2", fileId = "198929", text = "nightelfsign_welcome.m2", }, { value = "nightelfsign_wine.m2", + text = "nightelfsign_wine.m2", fileId = "198930", text = "nightelfsign_wine.m2", }, @@ -37332,9 +44573,11 @@ WeakAuras.ModelPaths = { }, { value = "statue", + text = "statue", children = { { value = "kalidarwoodstatue02.m2", + text = "kalidarwoodstatue02.m2", fileId = "198931", text = "kalidarwoodstatue02.m2", }, @@ -37343,39 +44586,47 @@ WeakAuras.ModelPaths = { }, { value = "statues", + text = "statues", children = { { value = "druidstone.m2", + text = "druidstone.m2", fileId = "2198619", text = "druidstone.m2", }, { value = "kalidarwoodstatue01.m2", + text = "kalidarwoodstatue01.m2", fileId = "198936", text = "kalidarwoodstatue01.m2", }, { value = "statueaszharaarm.m2", + text = "statueaszharaarm.m2", fileId = "198942", text = "statueaszharaarm.m2", }, { value = "statueaszharafeet.m2", + text = "statueaszharafeet.m2", fileId = "198943", text = "statueaszharafeet.m2", }, { value = "statueaszharahead.m2", + text = "statueaszharahead.m2", fileId = "198944", text = "statueaszharahead.m2", }, { value = "statuenepriestess.m2", + text = "statuenepriestess.m2", fileId = "198945", text = "statuenepriestess.m2", }, { value = "woodwreckedstatue02.m2", + text = "woodwreckedstatue02.m2", fileId = "198946", text = "woodwreckedstatue02.m2", }, @@ -37384,14 +44635,17 @@ WeakAuras.ModelPaths = { }, { value = "steppingstones", + text = "steppingstones", children = { { value = "steppingstone01.m2", + text = "steppingstone01.m2", fileId = "198947", text = "steppingstone01.m2", }, { value = "steppingstone02.m2", + text = "steppingstone02.m2", fileId = "198948", text = "steppingstone02.m2", }, @@ -37400,19 +44654,23 @@ WeakAuras.ModelPaths = { }, { value = "stonerunes", + text = "stonerunes", children = { { value = "kalidarstonerune01.m2", + text = "kalidarstonerune01.m2", fileId = "198949", text = "kalidarstonerune01.m2", }, { value = "kalidarstonerune02.m2", + text = "kalidarstonerune02.m2", fileId = "198950", text = "kalidarstonerune02.m2", }, { value = "kalidarstonerune03.m2", + text = "kalidarstonerune03.m2", fileId = "198951", text = "kalidarstonerune03.m2", }, @@ -37421,9 +44679,11 @@ WeakAuras.ModelPaths = { }, { value = "tables", + text = "tables", children = { { value = "elvenwoodentable01.m2", + text = "elvenwoodentable01.m2", fileId = "198952", text = "elvenwoodentable01.m2", }, @@ -37432,9 +44692,11 @@ WeakAuras.ModelPaths = { }, { value = "taxiflags", + text = "taxiflags", children = { { value = "taxiflagnightelf.m2", + text = "taxiflagnightelf.m2", fileId = "198955", text = "taxiflagnightelf.m2", }, @@ -37443,9 +44705,11 @@ WeakAuras.ModelPaths = { }, { value = "teleporttree", + text = "teleporttree", children = { { value = "teleporttree.m2", + text = "teleporttree.m2", fileId = "198959", text = "teleporttree.m2", }, @@ -37454,19 +44718,23 @@ WeakAuras.ModelPaths = { }, { value = "totems", + text = "totems", children = { { value = "nightelfwarningtotem_01.m2", + text = "nightelfwarningtotem_01.m2", fileId = "198960", text = "nightelfwarningtotem_01.m2", }, { value = "nightelfwarningtotem_02.m2", + text = "nightelfwarningtotem_02.m2", fileId = "198961", text = "nightelfwarningtotem_02.m2", }, { value = "nightelfwarningtotem_03.m2", + text = "nightelfwarningtotem_03.m2", fileId = "198962", text = "nightelfwarningtotem_03.m2", }, @@ -37475,14 +44743,17 @@ WeakAuras.ModelPaths = { }, { value = "wagons", + text = "wagons", children = { { value = "nightelfcart.m2", + text = "nightelfcart.m2", fileId = "198965", text = "nightelfcart.m2", }, { value = "nightelfwagon.m2", + text = "nightelfwagon.m2", fileId = "198969", text = "nightelfwagon.m2", }, @@ -37491,64 +44762,77 @@ WeakAuras.ModelPaths = { }, { value = "wallhangings", + text = "wallhangings", children = { { value = "elfwallhanging01.m2", + text = "elfwallhanging01.m2", fileId = "198972", text = "elfwallhanging01.m2", }, { value = "elfwallhanging02.m2", + text = "elfwallhanging02.m2", fileId = "198973", text = "elfwallhanging02.m2", }, { value = "elfwallhanging03.m2", + text = "elfwallhanging03.m2", fileId = "198974", text = "elfwallhanging03.m2", }, { value = "elfwallhanging04.m2", + text = "elfwallhanging04.m2", fileId = "198975", text = "elfwallhanging04.m2", }, { value = "elfwallhanging05.m2", + text = "elfwallhanging05.m2", fileId = "198976", text = "elfwallhanging05.m2", }, { value = "elfwallhanging06.m2", + text = "elfwallhanging06.m2", fileId = "198977", text = "elfwallhanging06.m2", }, { value = "elfwallhanging07.m2", + text = "elfwallhanging07.m2", fileId = "198978", text = "elfwallhanging07.m2", }, { value = "elfwallhanging08.m2", + text = "elfwallhanging08.m2", fileId = "198979", text = "elfwallhanging08.m2", }, { value = "elfwallhanging09.m2", + text = "elfwallhanging09.m2", fileId = "198980", text = "elfwallhanging09.m2", }, { value = "elfwallhanging10.m2", + text = "elfwallhanging10.m2", fileId = "198981", text = "elfwallhanging10.m2", }, { value = "elfwallhanging11.m2", + text = "elfwallhanging11.m2", fileId = "198982", text = "elfwallhanging11.m2", }, { value = "elfwallhanging12.m2", + text = "elfwallhanging12.m2", fileId = "198983", text = "elfwallhanging12.m2", }, @@ -37563,20 +44847,25 @@ WeakAuras.ModelPaths = { }, { value = "ogre", + text = "ogre", children = { { value = "activedoodads", + text = "activedoodads", children = { { value = "ogrehead", + text = "ogrehead", children = { { value = "glowingogrehead.m2", + text = "glowingogrehead.m2", fileId = "198984", text = "glowingogrehead.m2", }, { value = "pikeforked.m2", + text = "pikeforked.m2", fileId = "198986", text = "pikeforked.m2", }, @@ -37588,17 +44877,21 @@ WeakAuras.ModelPaths = { }, { value = "passive doodads", + text = "passive doodads", children = { { value = "ogrebackpacks", + text = "ogrebackpacks", children = { { value = "ogrebackpack01.m2", + text = "ogrebackpack01.m2", fileId = "198989", text = "ogrebackpack01.m2", }, { value = "ogrebackpack02.m2", + text = "ogrebackpack02.m2", fileId = "198990", text = "ogrebackpack02.m2", }, @@ -37607,24 +44900,29 @@ WeakAuras.ModelPaths = { }, { value = "ogremeatchains", + text = "ogremeatchains", children = { { value = "ogremeatchain01.m2", + text = "ogremeatchain01.m2", fileId = "198992", text = "ogremeatchain01.m2", }, { value = "ogremeatchain02.m2", + text = "ogremeatchain02.m2", fileId = "198994", text = "ogremeatchain02.m2", }, { value = "ogremeatchain03.m2", + text = "ogremeatchain03.m2", fileId = "198995", text = "ogremeatchain03.m2", }, { value = "ogremeatchain04.m2", + text = "ogremeatchain04.m2", fileId = "198996", text = "ogremeatchain04.m2", }, @@ -37633,124 +44931,149 @@ WeakAuras.ModelPaths = { }, { value = "ogremoundrocks", + text = "ogremoundrocks", children = { { value = "brogremoundrock01.m2", + text = "brogremoundrock01.m2", fileId = "198998", text = "brogremoundrock01.m2", }, { value = "brogremoundrock02.m2", + text = "brogremoundrock02.m2", fileId = "198999", text = "brogremoundrock02.m2", }, { value = "brogremoundrock03.m2", + text = "brogremoundrock03.m2", fileId = "199000", text = "brogremoundrock03.m2", }, { value = "brogremoundrock04.m2", + text = "brogremoundrock04.m2", fileId = "199001", text = "brogremoundrock04.m2", }, { value = "brogremoundrock05.m2", + text = "brogremoundrock05.m2", fileId = "199002", text = "brogremoundrock05.m2", }, { value = "brogremoundrock06.m2", + text = "brogremoundrock06.m2", fileId = "199003", text = "brogremoundrock06.m2", }, { value = "grogremoundrock01.m2", + text = "grogremoundrock01.m2", fileId = "199004", text = "grogremoundrock01.m2", }, { value = "grogremoundrock02.m2", + text = "grogremoundrock02.m2", fileId = "199005", text = "grogremoundrock02.m2", }, { value = "grogremoundrock03.m2", + text = "grogremoundrock03.m2", fileId = "199006", text = "grogremoundrock03.m2", }, { value = "grogremoundrock04.m2", + text = "grogremoundrock04.m2", fileId = "199007", text = "grogremoundrock04.m2", }, { value = "grogremoundrock05.m2", + text = "grogremoundrock05.m2", fileId = "199008", text = "grogremoundrock05.m2", }, { value = "grogremoundrock06.m2", + text = "grogremoundrock06.m2", fileId = "199009", text = "grogremoundrock06.m2", }, { value = "ogremoundrock01.m2", + text = "ogremoundrock01.m2", fileId = "199010", text = "ogremoundrock01.m2", }, { value = "ogremoundrock02.m2", + text = "ogremoundrock02.m2", fileId = "199011", text = "ogremoundrock02.m2", }, { value = "ogremoundrock03.m2", + text = "ogremoundrock03.m2", fileId = "199012", text = "ogremoundrock03.m2", }, { value = "ogremoundrock04.m2", + text = "ogremoundrock04.m2", fileId = "199013", text = "ogremoundrock04.m2", }, { value = "ogremoundrock05.m2", + text = "ogremoundrock05.m2", fileId = "199014", text = "ogremoundrock05.m2", }, { value = "ogremoundrock06.m2", + text = "ogremoundrock06.m2", fileId = "199015", text = "ogremoundrock06.m2", }, { value = "snogremoundrock01.m2", + text = "snogremoundrock01.m2", fileId = "199016", text = "snogremoundrock01.m2", }, { value = "snogremoundrock02.m2", + text = "snogremoundrock02.m2", fileId = "199017", text = "snogremoundrock02.m2", }, { value = "snogremoundrock03.m2", + text = "snogremoundrock03.m2", fileId = "199018", text = "snogremoundrock03.m2", }, { value = "snogremoundrock04.m2", + text = "snogremoundrock04.m2", fileId = "199019", text = "snogremoundrock04.m2", }, { value = "snogremoundrock05.m2", + text = "snogremoundrock05.m2", fileId = "199020", text = "snogremoundrock05.m2", }, { value = "snogremoundrock06.m2", + text = "snogremoundrock06.m2", fileId = "199021", text = "snogremoundrock06.m2", }, @@ -37759,9 +45082,11 @@ WeakAuras.ModelPaths = { }, { value = "ogremoundvent", + text = "ogremoundvent", children = { { value = "ogresmokevent01.m2", + text = "ogresmokevent01.m2", fileId = "199022", text = "ogresmokevent01.m2", }, @@ -37770,9 +45095,11 @@ WeakAuras.ModelPaths = { }, { value = "ogrethrone", + text = "ogrethrone", children = { { value = "ogrethrone.m2", + text = "ogrethrone.m2", fileId = "199025", text = "ogrethrone.m2", }, @@ -37781,9 +45108,11 @@ WeakAuras.ModelPaths = { }, { value = "poodad", + text = "poodad", children = { { value = "poodad01.m2", + text = "poodad01.m2", fileId = "199028", text = "poodad01.m2", }, @@ -37792,29 +45121,35 @@ WeakAuras.ModelPaths = { }, { value = "torches", + text = "torches", children = { { value = "ogrewalltorch.m2", + text = "ogrewalltorch.m2", fileId = "199034", text = "ogrewalltorch.m2", }, { value = "ogrewalltorchblue.m2", + text = "ogrewalltorchblue.m2", fileId = "199035", text = "ogrewalltorchblue.m2", }, { value = "ogrewalltorchgreen.m2", + text = "ogrewalltorchgreen.m2", fileId = "199036", text = "ogrewalltorchgreen.m2", }, { value = "ogrewalltorchpurple.m2", + text = "ogrewalltorchpurple.m2", fileId = "199037", text = "ogrewalltorchpurple.m2", }, { value = "ogrewalltorchred.m2", + text = "ogrewalltorchred.m2", fileId = "199038", text = "ogrewalltorchred.m2", }, @@ -37829,15 +45164,19 @@ WeakAuras.ModelPaths = { }, { value = "orc", + text = "orc", children = { { value = "passive doodads", + text = "passive doodads", children = { { value = "altarofstormsstatues", + text = "altarofstormsstatues", children = { { value = "altarofstormsstatue.m2", + text = "altarofstormsstatue.m2", fileId = "199041", text = "altarofstormsstatue.m2", }, @@ -37846,24 +45185,29 @@ WeakAuras.ModelPaths = { }, { value = "animalskulls", + text = "animalskulls", children = { { value = "boarskull.m2", + text = "boarskull.m2", fileId = "199049", text = "boarskull.m2", }, { value = "carnosaurskull.m2", + text = "carnosaurskull.m2", fileId = "199050", text = "carnosaurskull.m2", }, { value = "tallstriderskull.m2", + text = "tallstriderskull.m2", fileId = "199052", text = "tallstriderskull.m2", }, { value = "tigerskull.m2", + text = "tigerskull.m2", fileId = "199054", text = "tigerskull.m2", }, @@ -37872,74 +45216,89 @@ WeakAuras.ModelPaths = { }, { value = "banners", + text = "banners", children = { { value = "clanbanner.m2", + text = "clanbanner.m2", fileId = "199056", text = "clanbanner.m2", }, { value = "clanbanner01.m2", + text = "clanbanner01.m2", fileId = "199058", text = "clanbanner01.m2", }, { value = "clanbanner02.m2", + text = "clanbanner02.m2", fileId = "199060", text = "clanbanner02.m2", }, { value = "clanbanner03.m2", + text = "clanbanner03.m2", fileId = "199062", text = "clanbanner03.m2", }, { value = "clanbanner04.m2", + text = "clanbanner04.m2", fileId = "199064", text = "clanbanner04.m2", }, { value = "clanbanner05.m2", + text = "clanbanner05.m2", fileId = "199066", text = "clanbanner05.m2", }, { value = "clanbanner06.m2", + text = "clanbanner06.m2", fileId = "199068", text = "clanbanner06.m2", }, { value = "clanbanner07warsong.m2", + text = "clanbanner07warsong.m2", fileId = "199070", text = "clanbanner07warsong.m2", }, { value = "ogrebannerboar.m2", + text = "ogrebannerboar.m2", fileId = "199074", text = "ogrebannerboar.m2", }, { value = "ogrebannersnow.m2", + text = "ogrebannersnow.m2", fileId = "199077", text = "ogrebannersnow.m2", }, { value = "ogrebannertiger.m2", + text = "ogrebannertiger.m2", fileId = "199078", text = "ogrebannertiger.m2", }, { value = "orcbanner1.m2", + text = "orcbanner1.m2", fileId = "199081", text = "orcbanner1.m2", }, { value = "orcbanner2.m2", + text = "orcbanner2.m2", fileId = "199082", text = "orcbanner2.m2", }, { value = "orcbanner3.m2", + text = "orcbanner3.m2", fileId = "199083", text = "orcbanner3.m2", }, @@ -37948,74 +45307,89 @@ WeakAuras.ModelPaths = { }, { value = "barrelsandcrates", + text = "barrelsandcrates", children = { { value = "orcbarrel01.m2", + text = "orcbarrel01.m2", fileId = "199090", text = "orcbarrel01.m2", }, { value = "orcbarrel03.m2", + text = "orcbarrel03.m2", fileId = "199091", text = "orcbarrel03.m2", }, { value = "orcbarrel04.m2", + text = "orcbarrel04.m2", fileId = "199092", text = "orcbarrel04.m2", }, { value = "orccrate01.m2", + text = "orccrate01.m2", fileId = "199094", text = "orccrate01.m2", }, { value = "orccrate02.m2", + text = "orccrate02.m2", fileId = "199095", text = "orccrate02.m2", }, { value = "orccrate03.m2", + text = "orccrate03.m2", fileId = "199096", text = "orccrate03.m2", }, { value = "orccrate06.m2", + text = "orccrate06.m2", fileId = "199097", text = "orccrate06.m2", }, { value = "orccrate07.m2", + text = "orccrate07.m2", fileId = "199099", text = "orccrate07.m2", }, { value = "orccrate08.m2", + text = "orccrate08.m2", fileId = "199100", text = "orccrate08.m2", }, { value = "orccrate09.m2", + text = "orccrate09.m2", fileId = "199101", text = "orccrate09.m2", }, { value = "orccrate10.m2", + text = "orccrate10.m2", fileId = "199102", text = "orccrate10.m2", }, { value = "orccratebroken01.m2", + text = "orccratebroken01.m2", fileId = "199103", text = "orccratebroken01.m2", }, { value = "orccratebroken02.m2", + text = "orccratebroken02.m2", fileId = "199104", text = "orccratebroken02.m2", }, { value = "orccratebroken03.m2", + text = "orccratebroken03.m2", fileId = "199105", text = "orccratebroken03.m2", }, @@ -38024,9 +45398,11 @@ WeakAuras.ModelPaths = { }, { value = "blankets", + text = "blankets", children = { { value = "marketblanket01.m2", + text = "marketblanket01.m2", fileId = "199107", text = "marketblanket01.m2", }, @@ -38035,19 +45411,23 @@ WeakAuras.ModelPaths = { }, { value = "bones", + text = "bones", children = { { value = "wailingcavernshangingbones01.m2", + text = "wailingcavernshangingbones01.m2", fileId = "199114", text = "wailingcavernshangingbones01.m2", }, { value = "wailingcavernshangingbones02.m2", + text = "wailingcavernshangingbones02.m2", fileId = "199115", text = "wailingcavernshangingbones02.m2", }, { value = "wailingcavernshangingbones03.m2", + text = "wailingcavernshangingbones03.m2", fileId = "199116", text = "wailingcavernshangingbones03.m2", }, @@ -38056,9 +45436,11 @@ WeakAuras.ModelPaths = { }, { value = "bongs", + text = "bongs", children = { { value = "hookahbong01.m2", + text = "hookahbong01.m2", fileId = "199118", text = "hookahbong01.m2", }, @@ -38067,9 +45449,11 @@ WeakAuras.ModelPaths = { }, { value = "bottles", + text = "bottles", children = { { value = "orcbottle01.m2", + text = "orcbottle01.m2", fileId = "199120", text = "orcbottle01.m2", }, @@ -38078,14 +45462,17 @@ WeakAuras.ModelPaths = { }, { value = "bowls", + text = "bowls", children = { { value = "bowlwood01.m2", + text = "bowlwood01.m2", fileId = "199121", text = "bowlwood01.m2", }, { value = "bowlwood02.m2", + text = "bowlwood02.m2", fileId = "199122", text = "bowlwood02.m2", }, @@ -38094,64 +45481,77 @@ WeakAuras.ModelPaths = { }, { value = "braziers", + text = "braziers", children = { { value = "blackrockorccampfire.m2", + text = "blackrockorccampfire.m2", fileId = "199127", text = "blackrockorccampfire.m2", }, { value = "mediumbrazier01.m2", + text = "mediumbrazier01.m2", fileId = "199129", text = "mediumbrazier01.m2", }, { value = "mediumbraziernoomni01.m2", + text = "mediumbraziernoomni01.m2", fileId = "199130", text = "mediumbraziernoomni01.m2", }, { value = "mediumbrazierpurple01.m2", + text = "mediumbrazierpurple01.m2", fileId = "199131", text = "mediumbrazierpurple01.m2", }, { value = "orcbrazier_campfire01.m2", + text = "orcbrazier_campfire01.m2", fileId = "199132", text = "orcbrazier_campfire01.m2", }, { value = "orcpvpbonfirelarge.m2", + text = "orcpvpbonfirelarge.m2", fileId = "199134", text = "orcpvpbonfirelarge.m2", }, { value = "smallbrazier01.m2", + text = "smallbrazier01.m2", fileId = "199136", text = "smallbrazier01.m2", }, { value = "smallbraziernoomni01.m2", + text = "smallbraziernoomni01.m2", fileId = "199137", text = "smallbraziernoomni01.m2", }, { value = "smallbrazierpurple01.m2", + text = "smallbrazierpurple01.m2", fileId = "199138", text = "smallbrazierpurple01.m2", }, { value = "smallbrazierpurplehanging.m2", + text = "smallbrazierpurplehanging.m2", fileId = "199139", text = "smallbrazierpurplehanging.m2", }, { value = "tallbrazier01.m2", + text = "tallbrazier01.m2", fileId = "199141", text = "tallbrazier01.m2", }, { value = "tallbraziernoomni01.m2", + text = "tallbraziernoomni01.m2", fileId = "199142", text = "tallbraziernoomni01.m2", }, @@ -38160,39 +45560,47 @@ WeakAuras.ModelPaths = { }, { value = "burntoutposts", + text = "burntoutposts", children = { { value = "burntoutpost01.m2", + text = "burntoutpost01.m2", fileId = "199144", text = "burntoutpost01.m2", }, { value = "burntoutpost02.m2", + text = "burntoutpost02.m2", fileId = "199145", text = "burntoutpost02.m2", }, { value = "burntoutpost03.m2", + text = "burntoutpost03.m2", fileId = "199146", text = "burntoutpost03.m2", }, { value = "burntoutpost04.m2", + text = "burntoutpost04.m2", fileId = "199147", text = "burntoutpost04.m2", }, { value = "burntoutpost05.m2", + text = "burntoutpost05.m2", fileId = "199148", text = "burntoutpost05.m2", }, { value = "burntoutpost06.m2", + text = "burntoutpost06.m2", fileId = "199149", text = "burntoutpost06.m2", }, { value = "burntoutpost07.m2", + text = "burntoutpost07.m2", fileId = "199150", text = "burntoutpost07.m2", }, @@ -38201,9 +45609,11 @@ WeakAuras.ModelPaths = { }, { value = "feedingtroughs", + text = "feedingtroughs", children = { { value = "feedtroph01.m2", + text = "feedtroph01.m2", fileId = "199153", text = "feedtroph01.m2", }, @@ -38212,14 +45622,17 @@ WeakAuras.ModelPaths = { }, { value = "firepits", + text = "firepits", children = { { value = "largefirepit01.m2", + text = "largefirepit01.m2", fileId = "199155", text = "largefirepit01.m2", }, { value = "smallfirepit01.m2", + text = "smallfirepit01.m2", fileId = "199156", text = "smallfirepit01.m2", }, @@ -38228,9 +45641,11 @@ WeakAuras.ModelPaths = { }, { value = "flags", + text = "flags", children = { { value = "orcflappingflag01.m2", + text = "orcflappingflag01.m2", fileId = "199157", text = "orcflappingflag01.m2", }, @@ -38239,9 +45654,11 @@ WeakAuras.ModelPaths = { }, { value = "geyser", + text = "geyser", children = { { value = "steamgeyser.m2", + text = "steamgeyser.m2", fileId = "199159", text = "steamgeyser.m2", }, @@ -38250,24 +45667,29 @@ WeakAuras.ModelPaths = { }, { value = "hammocks", + text = "hammocks", children = { { value = "hammock01.m2", + text = "hammock01.m2", fileId = "199160", text = "hammock01.m2", }, { value = "hammock02.m2", + text = "hammock02.m2", fileId = "199161", text = "hammock02.m2", }, { value = "hammock03.m2", + text = "hammock03.m2", fileId = "199162", text = "hammock03.m2", }, { value = "hammock04.m2", + text = "hammock04.m2", fileId = "199163", text = "hammock04.m2", }, @@ -38276,24 +45698,29 @@ WeakAuras.ModelPaths = { }, { value = "hangingbones", + text = "hangingbones", children = { { value = "orchangingbones01.m2", + text = "orchangingbones01.m2", fileId = "199166", text = "orchangingbones01.m2", }, { value = "orchangingbones02.m2", + text = "orchangingbones02.m2", fileId = "199167", text = "orchangingbones02.m2", }, { value = "orchangingbones03.m2", + text = "orchangingbones03.m2", fileId = "199168", text = "orchangingbones03.m2", }, { value = "orchangingbones04.m2", + text = "orchangingbones04.m2", fileId = "199169", text = "orchangingbones04.m2", }, @@ -38302,29 +45729,35 @@ WeakAuras.ModelPaths = { }, { value = "hordebanners", + text = "hordebanners", children = { { value = "hordebanner01.m2", + text = "hordebanner01.m2", fileId = "199173", text = "hordebanner01.m2", }, { value = "hordebanner02.m2", + text = "hordebanner02.m2", fileId = "199174", text = "hordebanner02.m2", }, { value = "hordebanner03.m2", + text = "hordebanner03.m2", fileId = "199175", text = "hordebanner03.m2", }, { value = "hordebanner04.m2", + text = "hordebanner04.m2", fileId = "199176", text = "hordebanner04.m2", }, { value = "hordebanner05.m2", + text = "hordebanner05.m2", fileId = "244208", text = "hordebanner05.m2", }, @@ -38333,34 +45766,41 @@ WeakAuras.ModelPaths = { }, { value = "jars", + text = "jars", children = { { value = "jarorc01.m2", + text = "jarorc01.m2", fileId = "199179", text = "jarorc01.m2", }, { value = "jarorc02.m2", + text = "jarorc02.m2", fileId = "199180", text = "jarorc02.m2", }, { value = "jarorc03.m2", + text = "jarorc03.m2", fileId = "199181", text = "jarorc03.m2", }, { value = "jarorc04.m2", + text = "jarorc04.m2", fileId = "199182", text = "jarorc04.m2", }, { value = "jarorc05.m2", + text = "jarorc05.m2", fileId = "199183", text = "jarorc05.m2", }, { value = "jarorc06.m2", + text = "jarorc06.m2", fileId = "199184", text = "jarorc06.m2", }, @@ -38369,14 +45809,17 @@ WeakAuras.ModelPaths = { }, { value = "jugs", + text = "jugs", children = { { value = "orcjug01.m2", + text = "orcjug01.m2", fileId = "199191", text = "orcjug01.m2", }, { value = "orcjug02.m2", + text = "orcjug02.m2", fileId = "199192", text = "orcjug02.m2", }, @@ -38385,9 +45828,11 @@ WeakAuras.ModelPaths = { }, { value = "kodowagon", + text = "kodowagon", children = { { value = "kodowagon.m2", + text = "kodowagon.m2", fileId = "199195", text = "kodowagon.m2", }, @@ -38396,19 +45841,23 @@ WeakAuras.ModelPaths = { }, { value = "lampposts", + text = "lampposts", children = { { value = "orcbrazier_lightpostbarrens.m2", + text = "orcbrazier_lightpostbarrens.m2", fileId = "199196", text = "orcbrazier_lightpostbarrens.m2", }, { value = "orcbrazierlamppost01.m2", + text = "orcbrazierlamppost01.m2", fileId = "199197", text = "orcbrazierlamppost01.m2", }, { value = "orcbrazierstreetlamp.m2", + text = "orcbrazierstreetlamp.m2", fileId = "199198", text = "orcbrazierstreetlamp.m2", }, @@ -38417,9 +45866,11 @@ WeakAuras.ModelPaths = { }, { value = "lanterns", + text = "lanterns", children = { { value = "orchanginglantern.m2", + text = "orchanginglantern.m2", fileId = "199201", text = "orchanginglantern.m2", }, @@ -38428,14 +45879,17 @@ WeakAuras.ModelPaths = { }, { value = "meatracks", + text = "meatracks", children = { { value = "rawmeatrack01.m2", + text = "rawmeatrack01.m2", fileId = "199203", text = "rawmeatrack01.m2", }, { value = "smokedmeatrack01.m2", + text = "smokedmeatrack01.m2", fileId = "199205", text = "smokedmeatrack01.m2", }, @@ -38444,9 +45898,11 @@ WeakAuras.ModelPaths = { }, { value = "mugs", + text = "mugs", children = { { value = "orcmug01.m2", + text = "orcmug01.m2", fileId = "199207", text = "orcmug01.m2", }, @@ -38455,9 +45911,11 @@ WeakAuras.ModelPaths = { }, { value = "orcbellows", + text = "orcbellows", children = { { value = "orcbellow.m2", + text = "orcbellow.m2", fileId = "199208", text = "orcbellow.m2", }, @@ -38466,14 +45924,17 @@ WeakAuras.ModelPaths = { }, { value = "orcfence", + text = "orcfence", children = { { value = "orcfence.m2", + text = "orcfence.m2", fileId = "199209", text = "orcfence.m2", }, { value = "orcfencepost.m2", + text = "orcfencepost.m2", fileId = "199210", text = "orcfencepost.m2", }, @@ -38482,9 +45943,11 @@ WeakAuras.ModelPaths = { }, { value = "pinata", + text = "pinata", children = { { value = "quillboarpinata.m2", + text = "quillboarpinata.m2", fileId = "199211", text = "quillboarpinata.m2", }, @@ -38493,9 +45956,11 @@ WeakAuras.ModelPaths = { }, { value = "pitchers", + text = "pitchers", children = { { value = "orcpitcher01.m2", + text = "orcpitcher01.m2", fileId = "199212", text = "orcpitcher01.m2", }, @@ -38504,24 +45969,29 @@ WeakAuras.ModelPaths = { }, { value = "plants", + text = "plants", children = { { value = "wailingfern06.m2", + text = "wailingfern06.m2", fileId = "199215", text = "wailingfern06.m2", }, { value = "wailingplant01.m2", + text = "wailingplant01.m2", fileId = "199217", text = "wailingplant01.m2", }, { value = "wailingplant02.m2", + text = "wailingplant02.m2", fileId = "199218", text = "wailingplant02.m2", }, { value = "wailingplantpurple01.m2", + text = "wailingplantpurple01.m2", fileId = "199220", text = "wailingplantpurple01.m2", }, @@ -38530,24 +46000,29 @@ WeakAuras.ModelPaths = { }, { value = "raptoreggs", + text = "raptoreggs", children = { { value = "wailingcavernsraptoreggs01.m2", + text = "wailingcavernsraptoreggs01.m2", fileId = "199222", text = "wailingcavernsraptoreggs01.m2", }, { value = "wailingcavernsraptoreggs02.m2", + text = "wailingcavernsraptoreggs02.m2", fileId = "199223", text = "wailingcavernsraptoreggs02.m2", }, { value = "wailingcavernsraptoreggs03.m2", + text = "wailingcavernsraptoreggs03.m2", fileId = "199224", text = "wailingcavernsraptoreggs03.m2", }, { value = "wailingcavernsraptoreggs04.m2", + text = "wailingcavernsraptoreggs04.m2", fileId = "199225", text = "wailingcavernsraptoreggs04.m2", }, @@ -38556,14 +46031,17 @@ WeakAuras.ModelPaths = { }, { value = "raptornests", + text = "raptornests", children = { { value = "wailingcavernsraptornest01.m2", + text = "wailingcavernsraptornest01.m2", fileId = "199226", text = "wailingcavernsraptornest01.m2", }, { value = "wailingcavernsraptornest02.m2", + text = "wailingcavernsraptornest02.m2", fileId = "199227", text = "wailingcavernsraptornest02.m2", }, @@ -38572,9 +46050,11 @@ WeakAuras.ModelPaths = { }, { value = "rickshaw", + text = "rickshaw", children = { { value = "rickshaw.m2", + text = "rickshaw.m2", fileId = "199229", text = "rickshaw.m2", }, @@ -38583,19 +46063,23 @@ WeakAuras.ModelPaths = { }, { value = "roasts", + text = "roasts", children = { { value = "roastboar.m2", + text = "roastboar.m2", fileId = "199231", text = "roastboar.m2", }, { value = "roasttallstrider01.m2", + text = "roasttallstrider01.m2", fileId = "199234", text = "roasttallstrider01.m2", }, { value = "roasttallstrider02.m2", + text = "roasttallstrider02.m2", fileId = "199235", text = "roasttallstrider02.m2", }, @@ -38604,19 +46088,23 @@ WeakAuras.ModelPaths = { }, { value = "rugs", + text = "rugs", children = { { value = "centaurrug01.m2", + text = "centaurrug01.m2", fileId = "199239", text = "centaurrug01.m2", }, { value = "furrug01.m2", + text = "furrug01.m2", fileId = "199241", text = "furrug01.m2", }, { value = "kotoskinrug01.m2", + text = "kotoskinrug01.m2", fileId = "199242", text = "kotoskinrug01.m2", }, @@ -38625,19 +46113,23 @@ WeakAuras.ModelPaths = { }, { value = "saddles", + text = "saddles", children = { { value = "direwolfsaddle.m2", + text = "direwolfsaddle.m2", fileId = "199243", text = "direwolfsaddle.m2", }, { value = "tallstridersaddle.m2", + text = "tallstridersaddle.m2", fileId = "199245", text = "tallstridersaddle.m2", }, { value = "wyvernsaddle.m2", + text = "wyvernsaddle.m2", fileId = "199247", text = "wyvernsaddle.m2", }, @@ -38646,19 +46138,23 @@ WeakAuras.ModelPaths = { }, { value = "shields", + text = "shields", children = { { value = "orcshield01.m2", + text = "orcshield01.m2", fileId = "199250", text = "orcshield01.m2", }, { value = "orcshield02.m2", + text = "orcshield02.m2", fileId = "199252", text = "orcshield02.m2", }, { value = "orcshield03.m2", + text = "orcshield03.m2", fileId = "199254", text = "orcshield03.m2", }, @@ -38667,34 +46163,41 @@ WeakAuras.ModelPaths = { }, { value = "signposts", + text = "signposts", children = { { value = "orcsignpost01.m2", + text = "orcsignpost01.m2", fileId = "199257", text = "orcsignpost01.m2", }, { value = "orcsignpost02.m2", + text = "orcsignpost02.m2", fileId = "199258", text = "orcsignpost02.m2", }, { value = "orcsignpost03.m2", + text = "orcsignpost03.m2", fileId = "199259", text = "orcsignpost03.m2", }, { value = "orcsignpostpointer01.m2", + text = "orcsignpostpointer01.m2", fileId = "199260", text = "orcsignpostpointer01.m2", }, { value = "orcsignpostpointer02.m2", + text = "orcsignpostpointer02.m2", fileId = "199261", text = "orcsignpostpointer02.m2", }, { value = "orcsignpostpointer03.m2", + text = "orcsignpostpointer03.m2", fileId = "199262", text = "orcsignpostpointer03.m2", }, @@ -38703,219 +46206,263 @@ WeakAuras.ModelPaths = { }, { value = "signs", + text = "signs", children = { { value = "orcsign_alchemist.m2", + text = "orcsign_alchemist.m2", fileId = "199263", text = "orcsign_alchemist.m2", }, { value = "orcsign_armory.m2", + text = "orcsign_armory.m2", fileId = "199266", text = "orcsign_armory.m2", }, { value = "orcsign_axes.m2", + text = "orcsign_axes.m2", fileId = "199267", text = "orcsign_axes.m2", }, { value = "orcsign_bags.m2", + text = "orcsign_bags.m2", fileId = "199269", text = "orcsign_bags.m2", }, { value = "orcsign_bank.m2", + text = "orcsign_bank.m2", fileId = "199271", text = "orcsign_bank.m2", }, { value = "orcsign_blacksmith.m2", + text = "orcsign_blacksmith.m2", fileId = "199273", text = "orcsign_blacksmith.m2", }, { value = "orcsign_bows.m2", + text = "orcsign_bows.m2", fileId = "199275", text = "orcsign_bows.m2", }, { value = "orcsign_bread.m2", + text = "orcsign_bread.m2", fileId = "199277", text = "orcsign_bread.m2", }, { value = "orcsign_cartography.m2", + text = "orcsign_cartography.m2", fileId = "199279", text = "orcsign_cartography.m2", }, { value = "orcsign_cheese.m2", + text = "orcsign_cheese.m2", fileId = "199281", text = "orcsign_cheese.m2", }, { value = "orcsign_clotharmor.m2", + text = "orcsign_clotharmor.m2", fileId = "199283", text = "orcsign_clotharmor.m2", }, { value = "orcsign_cooking.m2", + text = "orcsign_cooking.m2", fileId = "199285", text = "orcsign_cooking.m2", }, { value = "orcsign_daggers.m2", + text = "orcsign_daggers.m2", fileId = "199287", text = "orcsign_daggers.m2", }, { value = "orcsign_drinks.m2", + text = "orcsign_drinks.m2", fileId = "199289", text = "orcsign_drinks.m2", }, { value = "orcsign_enchanting.m2", + text = "orcsign_enchanting.m2", fileId = "199291", text = "orcsign_enchanting.m2", }, { value = "orcsign_engineering.m2", + text = "orcsign_engineering.m2", fileId = "199293", text = "orcsign_engineering.m2", }, { value = "orcsign_firstaid.m2", + text = "orcsign_firstaid.m2", fileId = "199295", text = "orcsign_firstaid.m2", }, { value = "orcsign_fishing.m2", + text = "orcsign_fishing.m2", fileId = "199297", text = "orcsign_fishing.m2", }, { value = "orcsign_fletcher.m2", + text = "orcsign_fletcher.m2", fileId = "199299", text = "orcsign_fletcher.m2", }, { value = "orcsign_food.m2", + text = "orcsign_food.m2", fileId = "199301", text = "orcsign_food.m2", }, { value = "orcsign_general.m2", + text = "orcsign_general.m2", fileId = "199303", text = "orcsign_general.m2", }, { value = "orcsign_guns.m2", + text = "orcsign_guns.m2", fileId = "199305", text = "orcsign_guns.m2", }, { value = "orcsign_herbalist.m2", + text = "orcsign_herbalist.m2", fileId = "199307", text = "orcsign_herbalist.m2", }, { value = "orcsign_inscribing.m2", + text = "orcsign_inscribing.m2", fileId = "199309", text = "orcsign_inscribing.m2", }, { value = "orcsign_leatherarmor.m2", + text = "orcsign_leatherarmor.m2", fileId = "199311", text = "orcsign_leatherarmor.m2", }, { value = "orcsign_lockpicking.m2", + text = "orcsign_lockpicking.m2", fileId = "199313", text = "orcsign_lockpicking.m2", }, { value = "orcsign_maces.m2", + text = "orcsign_maces.m2", fileId = "199315", text = "orcsign_maces.m2", }, { value = "orcsign_magicshop.m2", + text = "orcsign_magicshop.m2", fileId = "199317", text = "orcsign_magicshop.m2", }, { value = "orcsign_mailarmor.m2", + text = "orcsign_mailarmor.m2", fileId = "199319", text = "orcsign_mailarmor.m2", }, { value = "orcsign_meat.m2", + text = "orcsign_meat.m2", fileId = "199320", text = "orcsign_meat.m2", }, { value = "orcsign_mining.m2", + text = "orcsign_mining.m2", fileId = "199322", text = "orcsign_mining.m2", }, { value = "orcsign_misc.m2", + text = "orcsign_misc.m2", fileId = "199324", text = "orcsign_misc.m2", }, { value = "orcsign_poisons.m2", + text = "orcsign_poisons.m2", fileId = "199326", text = "orcsign_poisons.m2", }, { value = "orcsign_shields.m2", + text = "orcsign_shields.m2", fileId = "199327", text = "orcsign_shields.m2", }, { value = "orcsign_staves.m2", + text = "orcsign_staves.m2", fileId = "199329", text = "orcsign_staves.m2", }, { value = "orcsign_swords.m2", + text = "orcsign_swords.m2", fileId = "199331", text = "orcsign_swords.m2", }, { value = "orcsign_tabard.m2", + text = "orcsign_tabard.m2", fileId = "199333", text = "orcsign_tabard.m2", }, { value = "orcsign_tailor.m2", + text = "orcsign_tailor.m2", fileId = "199335", text = "orcsign_tailor.m2", }, { value = "orcsign_tavern.m2", + text = "orcsign_tavern.m2", fileId = "199337", text = "orcsign_tavern.m2", }, { value = "orcsign_visitorcenter.m2", + text = "orcsign_visitorcenter.m2", fileId = "199339", text = "orcsign_visitorcenter.m2", }, { value = "orcsign_weapons.m2", + text = "orcsign_weapons.m2", fileId = "199340", text = "orcsign_weapons.m2", }, { value = "orcsign_winery.m2", + text = "orcsign_winery.m2", fileId = "199343", text = "orcsign_winery.m2", }, { value = "orcsign_wyvern.m2", + text = "orcsign_wyvern.m2", fileId = "199345", text = "orcsign_wyvern.m2", }, @@ -38924,14 +46471,17 @@ WeakAuras.ModelPaths = { }, { value = "spits", + text = "spits", children = { { value = "spitmetal.m2", + text = "spitmetal.m2", fileId = "199346", text = "spitmetal.m2", }, { value = "spitwood.m2", + text = "spitwood.m2", fileId = "199347", text = "spitwood.m2", }, @@ -38940,9 +46490,11 @@ WeakAuras.ModelPaths = { }, { value = "statues", + text = "statues", children = { { value = "hellscreammonument_01.m2", + text = "hellscreammonument_01.m2", fileId = "199349", text = "hellscreammonument_01.m2", }, @@ -38951,9 +46503,11 @@ WeakAuras.ModelPaths = { }, { value = "stonebrazier", + text = "stonebrazier", children = { { value = "wailingstonebrazier.m2", + text = "wailingstonebrazier.m2", fileId = "199351", text = "wailingstonebrazier.m2", }, @@ -38962,14 +46516,17 @@ WeakAuras.ModelPaths = { }, { value = "tablecooker", + text = "tablecooker", children = { { value = "orctablecooker01.m2", + text = "orctablecooker01.m2", fileId = "199354", text = "orctablecooker01.m2", }, { value = "orctablecooker01fire.m2", + text = "orctablecooker01fire.m2", fileId = "199355", text = "orctablecooker01fire.m2", }, @@ -38978,14 +46535,17 @@ WeakAuras.ModelPaths = { }, { value = "tables", + text = "tables", children = { { value = "orcbench01.m2", + text = "orcbench01.m2", fileId = "199356", text = "orcbench01.m2", }, { value = "orctable01.m2", + text = "orctable01.m2", fileId = "199357", text = "orctable01.m2", }, @@ -38994,27 +46554,33 @@ WeakAuras.ModelPaths = { }, { value = "tailoring", + text = "tailoring", children = { { value = "bolts", + text = "bolts", children = { { value = "orcboltblue.m2", + text = "orcboltblue.m2", fileId = "199358", text = "orcboltblue.m2", }, { value = "orcboltgreen.m2", + text = "orcboltgreen.m2", fileId = "199359", text = "orcboltgreen.m2", }, { value = "orcboltred.m2", + text = "orcboltred.m2", fileId = "199360", text = "orcboltred.m2", }, { value = "orcboltwhite.m2", + text = "orcboltwhite.m2", fileId = "199361", text = "orcboltwhite.m2", }, @@ -39023,19 +46589,23 @@ WeakAuras.ModelPaths = { }, { value = "boots", + text = "boots", children = { { value = "orcboots01.m2", + text = "orcboots01.m2", fileId = "199363", text = "orcboots01.m2", }, { value = "orcboots02.m2", + text = "orcboots02.m2", fileId = "199364", text = "orcboots02.m2", }, { value = "orcboots03.m2", + text = "orcboots03.m2", fileId = "199365", text = "orcboots03.m2", }, @@ -39044,24 +46614,29 @@ WeakAuras.ModelPaths = { }, { value = "clothes", + text = "clothes", children = { { value = "orchangingpants01.m2", + text = "orchangingpants01.m2", fileId = "199369", text = "orchangingpants01.m2", }, { value = "orchangingshirt01.m2", + text = "orchangingshirt01.m2", fileId = "199370", text = "orchangingshirt01.m2", }, { value = "orcpants01.m2", + text = "orcpants01.m2", fileId = "199371", text = "orcpants01.m2", }, { value = "orcshirt01.m2", + text = "orcshirt01.m2", fileId = "199372", text = "orcshirt01.m2", }, @@ -39070,39 +46645,47 @@ WeakAuras.ModelPaths = { }, { value = "spools", + text = "spools", children = { { value = "orcspoolbluelow.m2", + text = "orcspoolbluelow.m2", fileId = "199373", text = "orcspoolbluelow.m2", }, { value = "orcspoolgreenlow.m2", + text = "orcspoolgreenlow.m2", fileId = "199374", text = "orcspoolgreenlow.m2", }, { value = "orcspoolorange.m2", + text = "orcspoolorange.m2", fileId = "199375", text = "orcspoolorange.m2", }, { value = "orcspoolpurple.m2", + text = "orcspoolpurple.m2", fileId = "199376", text = "orcspoolpurple.m2", }, { value = "orcspoolred.m2", + text = "orcspoolred.m2", fileId = "199377", text = "orcspoolred.m2", }, { value = "orcspoolredlow.m2", + text = "orcspoolredlow.m2", fileId = "199378", text = "orcspoolredlow.m2", }, { value = "orcspoolyellow.m2", + text = "orcspoolyellow.m2", fileId = "199379", text = "orcspoolyellow.m2", }, @@ -39111,14 +46694,17 @@ WeakAuras.ModelPaths = { }, { value = "yarn", + text = "yarn", children = { { value = "orcyarnred.m2", + text = "orcyarnred.m2", fileId = "199380", text = "orcyarnred.m2", }, { value = "orcyarnyellow.m2", + text = "orcyarnyellow.m2", fileId = "199381", text = "orcyarnyellow.m2", }, @@ -39130,9 +46716,11 @@ WeakAuras.ModelPaths = { }, { value = "taxiflags", + text = "taxiflags", children = { { value = "orctaxiflag.m2", + text = "orctaxiflag.m2", fileId = "199383", text = "orctaxiflag.m2", }, @@ -39141,24 +46729,29 @@ WeakAuras.ModelPaths = { }, { value = "tents", + text = "tents", children = { { value = "durotarorctent01.m2", + text = "durotarorctent01.m2", fileId = "199384", text = "durotarorctent01.m2", }, { value = "durotarorctent02.m2", + text = "durotarorctent02.m2", fileId = "199385", text = "durotarorctent02.m2", }, { value = "orctent01.m2", + text = "orctent01.m2", fileId = "199387", text = "orctent01.m2", }, { value = "orctent02.m2", + text = "orctent02.m2", fileId = "199389", text = "orctent02.m2", }, @@ -39167,9 +46760,11 @@ WeakAuras.ModelPaths = { }, { value = "trays", + text = "trays", children = { { value = "eggtray.m2", + text = "eggtray.m2", fileId = "199390", text = "eggtray.m2", }, @@ -39178,19 +46773,23 @@ WeakAuras.ModelPaths = { }, { value = "utensils", + text = "utensils", children = { { value = "ladlemetal.m2", + text = "ladlemetal.m2", fileId = "199392", text = "ladlemetal.m2", }, { value = "ladlewood.m2", + text = "ladlewood.m2", fileId = "199394", text = "ladlewood.m2", }, { value = "serratedcleaver.m2", + text = "serratedcleaver.m2", fileId = "199396", text = "serratedcleaver.m2", }, @@ -39199,49 +46798,59 @@ WeakAuras.ModelPaths = { }, { value = "voodoostuff", + text = "voodoostuff", children = { { value = "bubblingbowl01.m2", + text = "bubblingbowl01.m2", fileId = "199397", text = "bubblingbowl01.m2", }, { value = "bubblingbowl02.m2", + text = "bubblingbowl02.m2", fileId = "199398", text = "bubblingbowl02.m2", }, { value = "skullcandle01.m2", + text = "skullcandle01.m2", fileId = "199401", text = "skullcandle01.m2", }, { value = "skullcandle02.m2", + text = "skullcandle02.m2", fileId = "199402", text = "skullcandle02.m2", }, { value = "voodoodoll01.m2", + text = "voodoodoll01.m2", fileId = "199407", text = "voodoodoll01.m2", }, { value = "voodoodoll02.m2", + text = "voodoodoll02.m2", fileId = "199408", text = "voodoodoll02.m2", }, { value = "voodoodrum01.m2", + text = "voodoodrum01.m2", fileId = "199410", text = "voodoodrum01.m2", }, { value = "voodoodrum02.m2", + text = "voodoodrum02.m2", fileId = "199412", text = "voodoodrum02.m2", }, { value = "voodoodrum03.m2", + text = "voodoodrum03.m2", fileId = "199413", text = "voodoodrum03.m2", }, @@ -39250,34 +46859,41 @@ WeakAuras.ModelPaths = { }, { value = "wagons", + text = "wagons", children = { { value = "orcwagon01.m2", + text = "orcwagon01.m2", fileId = "199414", text = "orcwagon01.m2", }, { value = "orcwagon02.m2", + text = "orcwagon02.m2", fileId = "199415", text = "orcwagon02.m2", }, { value = "orcwagon03.m2", + text = "orcwagon03.m2", fileId = "199416", text = "orcwagon03.m2", }, { value = "orcwagon04.m2", + text = "orcwagon04.m2", fileId = "199417", text = "orcwagon04.m2", }, { value = "orcwagon05.m2", + text = "orcwagon05.m2", fileId = "199418", text = "orcwagon05.m2", }, { value = "orcwagon06.m2", + text = "orcwagon06.m2", fileId = "199419", text = "orcwagon06.m2", }, @@ -39286,24 +46902,29 @@ WeakAuras.ModelPaths = { }, { value = "wantedposters", + text = "wantedposters", children = { { value = "wantedposterframed01.m2", + text = "wantedposterframed01.m2", fileId = "199421", text = "wantedposterframed01.m2", }, { value = "wantedposterscroll01.m2", + text = "wantedposterscroll01.m2", fileId = "199424", text = "wantedposterscroll01.m2", }, { value = "wantedposterstuck01.m2", + text = "wantedposterstuck01.m2", fileId = "199426", text = "wantedposterstuck01.m2", }, { value = "wantedposterwood01.m2", + text = "wantedposterwood01.m2", fileId = "199428", text = "wantedposterwood01.m2", }, @@ -39312,69 +46933,83 @@ WeakAuras.ModelPaths = { }, { value = "weapons", + text = "weapons", children = { { value = "orcaxe01.m2", + text = "orcaxe01.m2", fileId = "199430", text = "orcaxe01.m2", }, { value = "orcaxe02.m2", + text = "orcaxe02.m2", fileId = "199432", text = "orcaxe02.m2", }, { value = "orcaxe03.m2", + text = "orcaxe03.m2", fileId = "199434", text = "orcaxe03.m2", }, { value = "orcspear01.m2", + text = "orcspear01.m2", fileId = "199436", text = "orcspear01.m2", }, { value = "orcspear02.m2", + text = "orcspear02.m2", fileId = "199438", text = "orcspear02.m2", }, { value = "orcspear03.m2", + text = "orcspear03.m2", fileId = "199439", text = "orcspear03.m2", }, { value = "orcstaff01.m2", + text = "orcstaff01.m2", fileId = "199440", text = "orcstaff01.m2", }, { value = "orcstaff02.m2", + text = "orcstaff02.m2", fileId = "199441", text = "orcstaff02.m2", }, { value = "orcstaff03.m2", + text = "orcstaff03.m2", fileId = "199442", text = "orcstaff03.m2", }, { value = "orcstaff04.m2", + text = "orcstaff04.m2", fileId = "199443", text = "orcstaff04.m2", }, { value = "orcstaff05.m2", + text = "orcstaff05.m2", fileId = "199444", text = "orcstaff05.m2", }, { value = "orcsword02.m2", + text = "orcsword02.m2", fileId = "199446", text = "orcsword02.m2", }, { value = "orcsword03.m2", + text = "orcsword03.m2", fileId = "199448", text = "orcsword03.m2", }, @@ -39383,14 +47018,17 @@ WeakAuras.ModelPaths = { }, { value = "wyvernnests", + text = "wyvernnests", children = { { value = "wyvernnest01.m2", + text = "wyvernnest01.m2", fileId = "199451", text = "wyvernnest01.m2", }, { value = "wyvernnest02.m2", + text = "wyvernnest02.m2", fileId = "199452", text = "wyvernnest02.m2", }, @@ -39399,9 +47037,11 @@ WeakAuras.ModelPaths = { }, { value = "wyvernroost", + text = "wyvernroost", children = { { value = "wyvernroost01.m2", + text = "wyvernroost01.m2", fileId = "199454", text = "wyvernroost01.m2", }, @@ -39416,27 +47056,33 @@ WeakAuras.ModelPaths = { }, { value = "passive doodads", + text = "passive doodads", children = { { value = "wantedposters", + text = "wantedposters", children = { { value = "newwantedposter01.m2", + text = "newwantedposter01.m2", fileId = "199473", text = "newwantedposter01.m2", }, { value = "newwantedposter02.m2", + text = "newwantedposter02.m2", fileId = "199475", text = "newwantedposter02.m2", }, { value = "newwantedposter03.m2", + text = "newwantedposter03.m2", fileId = "199476", text = "newwantedposter03.m2", }, { value = "newwantedposter04.m2", + text = "newwantedposter04.m2", fileId = "199477", text = "newwantedposter04.m2", }, @@ -39448,302 +47094,363 @@ WeakAuras.ModelPaths = { }, { value = "passivedoodads", + text = "passivedoodads", children = { { value = "ahnqiraj", + text = "ahnqiraj", children = { { value = "cloth_level01.m2", + text = "cloth_level01.m2", fileId = "199478", text = "cloth_level01.m2", }, { value = "cloth_level02.m2", + text = "cloth_level02.m2", fileId = "199479", text = "cloth_level02.m2", }, { value = "cloth_level03.m2", + text = "cloth_level03.m2", fileId = "199480", text = "cloth_level03.m2", }, { value = "cloth_level04.m2", + text = "cloth_level04.m2", fileId = "199481", text = "cloth_level04.m2", }, { value = "cloth_level05.m2", + text = "cloth_level05.m2", fileId = "199482", text = "cloth_level05.m2", }, { value = "cloth_level06.m2", + text = "cloth_level06.m2", fileId = "199483", text = "cloth_level06.m2", }, { value = "food_level02.m2", + text = "food_level02.m2", fileId = "199484", text = "food_level02.m2", }, { value = "food_level03.m2", + text = "food_level03.m2", fileId = "199485", text = "food_level03.m2", }, { value = "food_level04.m2", + text = "food_level04.m2", fileId = "199486", text = "food_level04.m2", }, { value = "food_level05.m2", + text = "food_level05.m2", fileId = "199487", text = "food_level05.m2", }, { value = "food_level06.m2", + text = "food_level06.m2", fileId = "199488", text = "food_level06.m2", }, { value = "foodherbs_level01.m2", + text = "foodherbs_level01.m2", fileId = "199489", text = "foodherbs_level01.m2", }, { value = "herbs_level02.m2", + text = "herbs_level02.m2", fileId = "199490", text = "herbs_level02.m2", }, { value = "herbs_level03.m2", + text = "herbs_level03.m2", fileId = "199491", text = "herbs_level03.m2", }, { value = "herbs_level04.m2", + text = "herbs_level04.m2", fileId = "199492", text = "herbs_level04.m2", }, { value = "herbs_level05.m2", + text = "herbs_level05.m2", fileId = "199493", text = "herbs_level05.m2", }, { value = "herbs_level06.m2", + text = "herbs_level06.m2", fileId = "199494", text = "herbs_level06.m2", }, { value = "horde_cloth01.m2", + text = "horde_cloth01.m2", fileId = "199495", text = "horde_cloth01.m2", }, { value = "horde_cloth02.m2", + text = "horde_cloth02.m2", fileId = "199496", text = "horde_cloth02.m2", }, { value = "horde_cloth03.m2", + text = "horde_cloth03.m2", fileId = "199497", text = "horde_cloth03.m2", }, { value = "horde_cloth04.m2", + text = "horde_cloth04.m2", fileId = "199498", text = "horde_cloth04.m2", }, { value = "horde_cloth05.m2", + text = "horde_cloth05.m2", fileId = "199499", text = "horde_cloth05.m2", }, { value = "horde_cloth06.m2", + text = "horde_cloth06.m2", fileId = "199500", text = "horde_cloth06.m2", }, { value = "horde_food01.m2", + text = "horde_food01.m2", fileId = "199501", text = "horde_food01.m2", }, { value = "horde_food02.m2", + text = "horde_food02.m2", fileId = "199502", text = "horde_food02.m2", }, { value = "horde_food03.m2", + text = "horde_food03.m2", fileId = "199503", text = "horde_food03.m2", }, { value = "horde_food04.m2", + text = "horde_food04.m2", fileId = "199504", text = "horde_food04.m2", }, { value = "horde_food05.m2", + text = "horde_food05.m2", fileId = "199505", text = "horde_food05.m2", }, { value = "horde_food06.m2", + text = "horde_food06.m2", fileId = "199506", text = "horde_food06.m2", }, { value = "horde_furs01.m2", + text = "horde_furs01.m2", fileId = "199507", text = "horde_furs01.m2", }, { value = "horde_furs02.m2", + text = "horde_furs02.m2", fileId = "199508", text = "horde_furs02.m2", }, { value = "horde_furs03.m2", + text = "horde_furs03.m2", fileId = "199509", text = "horde_furs03.m2", }, { value = "horde_furs04.m2", + text = "horde_furs04.m2", fileId = "199510", text = "horde_furs04.m2", }, { value = "horde_furs05.m2", + text = "horde_furs05.m2", fileId = "199511", text = "horde_furs05.m2", }, { value = "horde_furs06.m2", + text = "horde_furs06.m2", fileId = "199512", text = "horde_furs06.m2", }, { value = "horde_herbs01.m2", + text = "horde_herbs01.m2", fileId = "199513", text = "horde_herbs01.m2", }, { value = "horde_herbs02.m2", + text = "horde_herbs02.m2", fileId = "199514", text = "horde_herbs02.m2", }, { value = "horde_herbs03.m2", + text = "horde_herbs03.m2", fileId = "199515", text = "horde_herbs03.m2", }, { value = "horde_herbs04.m2", + text = "horde_herbs04.m2", fileId = "199516", text = "horde_herbs04.m2", }, { value = "horde_herbs05.m2", + text = "horde_herbs05.m2", fileId = "199517", text = "horde_herbs05.m2", }, { value = "horde_herbs06.m2", + text = "horde_herbs06.m2", fileId = "199518", text = "horde_herbs06.m2", }, { value = "horde_metal01.m2", + text = "horde_metal01.m2", fileId = "199519", text = "horde_metal01.m2", }, { value = "horde_metal02.m2", + text = "horde_metal02.m2", fileId = "199520", text = "horde_metal02.m2", }, { value = "horde_metal03.m2", + text = "horde_metal03.m2", fileId = "199521", text = "horde_metal03.m2", }, { value = "horde_metal04.m2", + text = "horde_metal04.m2", fileId = "199522", text = "horde_metal04.m2", }, { value = "horde_metal05.m2", + text = "horde_metal05.m2", fileId = "199523", text = "horde_metal05.m2", }, { value = "horde_metal06.m2", + text = "horde_metal06.m2", fileId = "199524", text = "horde_metal06.m2", }, { value = "leather_level01.m2", + text = "leather_level01.m2", fileId = "199526", text = "leather_level01.m2", }, { value = "leather_level02.m2", + text = "leather_level02.m2", fileId = "199527", text = "leather_level02.m2", }, { value = "leather_level03.m2", + text = "leather_level03.m2", fileId = "199528", text = "leather_level03.m2", }, { value = "leather_level04.m2", + text = "leather_level04.m2", fileId = "199529", text = "leather_level04.m2", }, { value = "leather_level05.m2", + text = "leather_level05.m2", fileId = "199530", text = "leather_level05.m2", }, { value = "leather_level06.m2", + text = "leather_level06.m2", fileId = "199531", text = "leather_level06.m2", }, { value = "metals_level01.m2", + text = "metals_level01.m2", fileId = "199536", text = "metals_level01.m2", }, { value = "metals_level02.m2", + text = "metals_level02.m2", fileId = "199537", text = "metals_level02.m2", }, { value = "metals_level03.m2", + text = "metals_level03.m2", fileId = "199538", text = "metals_level03.m2", }, { value = "metals_level04.m2", + text = "metals_level04.m2", fileId = "199539", text = "metals_level04.m2", }, { value = "metals_level05.m2", + text = "metals_level05.m2", fileId = "199540", text = "metals_level05.m2", }, { value = "metals_level06.m2", + text = "metals_level06.m2", fileId = "199541", text = "metals_level06.m2", }, @@ -39752,39 +47459,47 @@ WeakAuras.ModelPaths = { }, { value = "babies", + text = "babies", children = { { value = "baby_dw.m2", + text = "baby_dw.m2", fileId = "199546", text = "baby_dw.m2", }, { value = "baby_gn.m2", + text = "baby_gn.m2", fileId = "199547", text = "baby_gn.m2", }, { value = "baby_hu.m2", + text = "baby_hu.m2", fileId = "199548", text = "baby_hu.m2", }, { value = "baby_ne.m2", + text = "baby_ne.m2", fileId = "199549", text = "baby_ne.m2", }, { value = "baby_or.m2", + text = "baby_or.m2", fileId = "199550", text = "baby_or.m2", }, { value = "baby_ta.m2", + text = "baby_ta.m2", fileId = "199551", text = "baby_ta.m2", }, { value = "baby_tr.m2", + text = "baby_tr.m2", fileId = "199552", text = "baby_tr.m2", }, @@ -39793,24 +47508,29 @@ WeakAuras.ModelPaths = { }, { value = "barrel", + text = "barrel", children = { { value = "barrel01.m2", + text = "barrel01.m2", fileId = "199563", text = "barrel01.m2", }, { value = "barrellowpoly.m2", + text = "barrellowpoly.m2", fileId = "199565", text = "barrellowpoly.m2", }, { value = "brokenbarrel01.m2", + text = "brokenbarrel01.m2", fileId = "199566", text = "brokenbarrel01.m2", }, { value = "brokenbarrel02.m2", + text = "brokenbarrel02.m2", fileId = "199567", text = "brokenbarrel02.m2", }, @@ -39819,9 +47539,11 @@ WeakAuras.ModelPaths = { }, { value = "bindstone", + text = "bindstone", children = { { value = "newbindstone.m2", + text = "newbindstone.m2", fileId = "199571", text = "newbindstone.m2", }, @@ -39830,29 +47552,35 @@ WeakAuras.ModelPaths = { }, { value = "bleachers", + text = "bleachers", children = { { value = "bleacherseat1a.m2", + text = "bleacherseat1a.m2", fileId = "199572", text = "bleacherseat1a.m2", }, { value = "bleacherseat1b.m2", + text = "bleacherseat1b.m2", fileId = "199573", text = "bleacherseat1b.m2", }, { value = "bleacherseat1c.m2", + text = "bleacherseat1c.m2", fileId = "199574", text = "bleacherseat1c.m2", }, { value = "bleacherseat1d.m2", + text = "bleacherseat1d.m2", fileId = "199575", text = "bleacherseat1d.m2", }, { value = "bleacherswood01.m2", + text = "bleacherswood01.m2", fileId = "199576", text = "bleacherswood01.m2", }, @@ -39861,9 +47589,11 @@ WeakAuras.ModelPaths = { }, { value = "brokentrap", + text = "brokentrap", children = { { value = "brokenfreezingtrap.m2", + text = "brokenfreezingtrap.m2", fileId = "199580", text = "brokenfreezingtrap.m2", }, @@ -39872,134 +47602,161 @@ WeakAuras.ModelPaths = { }, { value = "christmas", + text = "christmas", children = { { value = "g_nutcracker.m2", + text = "g_nutcracker.m2", fileId = "199591", text = "g_nutcracker.m2", }, { value = "g_xmaswreath.m2", + text = "g_xmaswreath.m2", fileId = "199592", text = "g_xmaswreath.m2", }, { value = "lunarnewyear_lights.m2", + text = "lunarnewyear_lights.m2", fileId = "199594", text = "lunarnewyear_lights.m2", }, { value = "lunarnewyear_lightsx3.m2", + text = "lunarnewyear_lightsx3.m2", fileId = "199595", text = "lunarnewyear_lightsx3.m2", }, { value = "mistletoe.m2", + text = "mistletoe.m2", fileId = "199596", text = "mistletoe.m2", }, { value = "mistletoe02.m2", + text = "mistletoe02.m2", fileId = "199597", text = "mistletoe02.m2", }, { value = "xmas_lights.m2", + text = "xmas_lights.m2", fileId = "199600", text = "xmas_lights.m2", }, { value = "xmas_lights_broken.m2", + text = "xmas_lights_broken.m2", fileId = "199601", text = "xmas_lights_broken.m2", }, { value = "xmas_lights_broken3x.m2", + text = "xmas_lights_broken3x.m2", fileId = "199602", text = "xmas_lights_broken3x.m2", }, { value = "xmas_lightsx3.m2", + text = "xmas_lightsx3.m2", fileId = "199603", text = "xmas_lightsx3.m2", }, { value = "xmasgift01.m2", + text = "xmasgift01.m2", fileId = "199604", text = "xmasgift01.m2", }, { value = "xmasgift02.m2", + text = "xmasgift02.m2", fileId = "199605", text = "xmasgift02.m2", }, { value = "xmasgift03.m2", + text = "xmasgift03.m2", fileId = "199606", text = "xmasgift03.m2", }, { value = "xmasgift04.m2", + text = "xmasgift04.m2", fileId = "199607", text = "xmasgift04.m2", }, { value = "xmasgift05.m2", + text = "xmasgift05.m2", fileId = "199608", text = "xmasgift05.m2", }, { value = "xmasgift06.m2", + text = "xmasgift06.m2", fileId = "199609", text = "xmasgift06.m2", }, { value = "xmasropeline.m2", + text = "xmasropeline.m2", fileId = "199610", text = "xmasropeline.m2", }, { value = "xmasropelinepole.m2", + text = "xmasropelinepole.m2", fileId = "199611", text = "xmasropelinepole.m2", }, { value = "xmasstocking01.m2", + text = "xmasstocking01.m2", fileId = "199612", text = "xmasstocking01.m2", }, { value = "xmasstocking02.m2", + text = "xmasstocking02.m2", fileId = "199613", text = "xmasstocking02.m2", }, { value = "xmasstocking03.m2", + text = "xmasstocking03.m2", fileId = "199614", text = "xmasstocking03.m2", }, { value = "xmastree_largealliance01.m2", + text = "xmastree_largealliance01.m2", fileId = "199615", text = "xmastree_largealliance01.m2", }, { value = "xmastree_largealliance01white.m2", + text = "xmastree_largealliance01white.m2", fileId = "199616", text = "xmastree_largealliance01white.m2", }, { value = "xmastree_largehorde01.m2", + text = "xmastree_largehorde01.m2", fileId = "199617", text = "xmastree_largehorde01.m2", }, { value = "xmastree_mediumalliance01.m2", + text = "xmastree_mediumalliance01.m2", fileId = "199618", text = "xmastree_mediumalliance01.m2", }, { value = "xmastree_mediumhorde01.m2", + text = "xmastree_mediumhorde01.m2", fileId = "199619", text = "xmastree_mediumhorde01.m2", }, @@ -40008,9 +47765,11 @@ WeakAuras.ModelPaths = { }, { value = "crate01", + text = "crate01", children = { { value = "crate01.m2", + text = "crate01.m2", fileId = "199632", text = "crate01.m2", }, @@ -40019,9 +47778,11 @@ WeakAuras.ModelPaths = { }, { value = "crate02", + text = "crate02", children = { { value = "crate02.m2", + text = "crate02.m2", fileId = "199634", text = "crate02.m2", }, @@ -40030,14 +47791,17 @@ WeakAuras.ModelPaths = { }, { value = "cratesfirstaid", + text = "cratesfirstaid", children = { { value = "cratealliancefirstaid01.m2", + text = "cratealliancefirstaid01.m2", fileId = "199636", text = "cratealliancefirstaid01.m2", }, { value = "cratehordefirstaid01.m2", + text = "cratehordefirstaid01.m2", fileId = "199639", text = "cratehordefirstaid01.m2", }, @@ -40046,9 +47810,11 @@ WeakAuras.ModelPaths = { }, { value = "creaturedeathskeletons", + text = "creaturedeathskeletons", children = { { value = "dragonfootsoldierbones.m2", + text = "dragonfootsoldierbones.m2", fileId = "199640", text = "dragonfootsoldierbones.m2", }, @@ -40057,9 +47823,11 @@ WeakAuras.ModelPaths = { }, { value = "darkportals", + text = "darkportals", children = { { value = "darkportal01.m2", + text = "darkportal01.m2", fileId = "199642", text = "darkportal01.m2", }, @@ -40068,24 +47836,29 @@ WeakAuras.ModelPaths = { }, { value = "deadtreelogs", + text = "deadtreelogs", children = { { value = "deadtreelog01.m2", + text = "deadtreelog01.m2", fileId = "199652", text = "deadtreelog01.m2", }, { value = "deadtreelog02.m2", + text = "deadtreelog02.m2", fileId = "199653", text = "deadtreelog02.m2", }, { value = "deadtreelog03.m2", + text = "deadtreelog03.m2", fileId = "199654", text = "deadtreelog03.m2", }, { value = "deadtreelog04.m2", + text = "deadtreelog04.m2", fileId = "199655", text = "deadtreelog04.m2", }, @@ -40094,94 +47867,113 @@ WeakAuras.ModelPaths = { }, { value = "deathskeletons", + text = "deathskeletons", children = { { value = "dwarffemaledeathskeleton.m2", + text = "dwarffemaledeathskeleton.m2", fileId = "199666", text = "dwarffemaledeathskeleton.m2", }, { value = "dwarfmaledeathskeleton.m2", + text = "dwarfmaledeathskeleton.m2", fileId = "199667", text = "dwarfmaledeathskeleton.m2", }, { value = "gnomefemaledeathskeleton.m2", + text = "gnomefemaledeathskeleton.m2", fileId = "199668", text = "gnomefemaledeathskeleton.m2", }, { value = "gnomemaledeathskeleton.m2", + text = "gnomemaledeathskeleton.m2", fileId = "199669", text = "gnomemaledeathskeleton.m2", }, { value = "goblinfemaledeathskeleton.m2", + text = "goblinfemaledeathskeleton.m2", fileId = "323069", text = "goblinfemaledeathskeleton.m2", }, { value = "goblinmaledeathskeleton.m2", + text = "goblinmaledeathskeleton.m2", fileId = "323070", text = "goblinmaledeathskeleton.m2", }, { value = "humanfemaledeathskeleton.m2", + text = "humanfemaledeathskeleton.m2", fileId = "199670", text = "humanfemaledeathskeleton.m2", }, { value = "humanmaledeathskeleton.m2", + text = "humanmaledeathskeleton.m2", fileId = "199671", text = "humanmaledeathskeleton.m2", }, { value = "nightelffemaledeathskeleton.m2", + text = "nightelffemaledeathskeleton.m2", fileId = "199672", text = "nightelffemaledeathskeleton.m2", }, { value = "nightelfmaledeathskeleton.m2", + text = "nightelfmaledeathskeleton.m2", fileId = "199673", text = "nightelfmaledeathskeleton.m2", }, { value = "orcfemaledeathskeleton.m2", + text = "orcfemaledeathskeleton.m2", fileId = "199674", text = "orcfemaledeathskeleton.m2", }, { value = "orcmaledeathskeleton.m2", + text = "orcmaledeathskeleton.m2", fileId = "199675", text = "orcmaledeathskeleton.m2", }, { value = "scourgefemaledeathskeleton.m2", + text = "scourgefemaledeathskeleton.m2", fileId = "199676", text = "scourgefemaledeathskeleton.m2", }, { value = "scourgemaledeathskeleton.m2", + text = "scourgemaledeathskeleton.m2", fileId = "199677", text = "scourgemaledeathskeleton.m2", }, { value = "taurenfemaledeathskeleton.m2", + text = "taurenfemaledeathskeleton.m2", fileId = "199678", text = "taurenfemaledeathskeleton.m2", }, { value = "taurenmaledeathskeleton.m2", + text = "taurenmaledeathskeleton.m2", fileId = "199679", text = "taurenmaledeathskeleton.m2", }, { value = "trollfemaledeathskeleton.m2", + text = "trollfemaledeathskeleton.m2", fileId = "199680", text = "trollfemaledeathskeleton.m2", }, { value = "trollmaledeathskeleton.m2", + text = "trollmaledeathskeleton.m2", fileId = "199681", text = "trollmaledeathskeleton.m2", }, @@ -40190,14 +47982,17 @@ WeakAuras.ModelPaths = { }, { value = "directionalmarker", + text = "directionalmarker", children = { { value = "directionalmarker.m2", + text = "directionalmarker.m2", fileId = "199683", text = "directionalmarker.m2", }, { value = "directionalmarker02.m2", + text = "directionalmarker02.m2", fileId = "199684", text = "directionalmarker02.m2", }, @@ -40206,9 +48001,11 @@ WeakAuras.ModelPaths = { }, { value = "doors", + text = "doors", children = { { value = "doortest01.m2", + text = "doortest01.m2", fileId = "199686", text = "doortest01.m2", }, @@ -40217,9 +48014,11 @@ WeakAuras.ModelPaths = { }, { value = "duelingflag", + text = "duelingflag", children = { { value = "duelingflag.m2", + text = "duelingflag.m2", fileId = "199687", text = "duelingflag.m2", }, @@ -40228,29 +48027,35 @@ WeakAuras.ModelPaths = { }, { value = "eastereggs", + text = "eastereggs", children = { { value = "easteregg01.m2", + text = "easteregg01.m2", fileId = "199691", text = "easteregg01.m2", }, { value = "easteregg02.m2", + text = "easteregg02.m2", fileId = "199693", text = "easteregg02.m2", }, { value = "easteregg03.m2", + text = "easteregg03.m2", fileId = "199695", text = "easteregg03.m2", }, { value = "easteregg04.m2", + text = "easteregg04.m2", fileId = "199697", text = "easteregg04.m2", }, { value = "easteregg05.m2", + text = "easteregg05.m2", fileId = "199699", text = "easteregg05.m2", }, @@ -40259,14 +48064,17 @@ WeakAuras.ModelPaths = { }, { value = "engineering", + text = "engineering", children = { { value = "spring.m2", + text = "spring.m2", fileId = "199701", text = "spring.m2", }, { value = "spring02.m2", + text = "spring02.m2", fileId = "199702", text = "spring02.m2", }, @@ -40275,19 +48083,23 @@ WeakAuras.ModelPaths = { }, { value = "feathers", + text = "feathers", children = { { value = "featherbigblue.m2", + text = "featherbigblue.m2", fileId = "199704", text = "featherbigblue.m2", }, { value = "featherbigbrown.m2", + text = "featherbigbrown.m2", fileId = "199706", text = "featherbigbrown.m2", }, { value = "featherbigred.m2", + text = "featherbigred.m2", fileId = "199708", text = "featherbigred.m2", }, @@ -40296,14 +48108,17 @@ WeakAuras.ModelPaths = { }, { value = "fish", + text = "fish", children = { { value = "fishskel01.m2", + text = "fishskel01.m2", fileId = "199710", text = "fishskel01.m2", }, { value = "fishskel02.m2", + text = "fishskel02.m2", fileId = "199712", text = "fishskel02.m2", }, @@ -40312,49 +48127,59 @@ WeakAuras.ModelPaths = { }, { value = "floatingdebris", + text = "floatingdebris", children = { { value = "floatingbarrel01.m2", + text = "floatingbarrel01.m2", fileId = "199713", text = "floatingbarrel01.m2", }, { value = "floatingbarrel02.m2", + text = "floatingbarrel02.m2", fileId = "199714", text = "floatingbarrel02.m2", }, { value = "floatingboards01.m2", + text = "floatingboards01.m2", fileId = "199715", text = "floatingboards01.m2", }, { value = "floatingboardsburning01.m2", + text = "floatingboardsburning01.m2", fileId = "199716", text = "floatingboardsburning01.m2", }, { value = "floatingcoffin01.m2", + text = "floatingcoffin01.m2", fileId = "199717", text = "floatingcoffin01.m2", }, { value = "floatingcrate01.m2", + text = "floatingcrate01.m2", fileId = "199718", text = "floatingcrate01.m2", }, { value = "floatingtree01.m2", + text = "floatingtree01.m2", fileId = "199719", text = "floatingtree01.m2", }, { value = "floatingtree02.m2", + text = "floatingtree02.m2", fileId = "199720", text = "floatingtree02.m2", }, { value = "floatingtree03.m2", + text = "floatingtree03.m2", fileId = "199721", text = "floatingtree03.m2", }, @@ -40363,9 +48188,11 @@ WeakAuras.ModelPaths = { }, { value = "flyinginsects", + text = "flyinginsects", children = { { value = "flyingsmallinsects.m2", + text = "flyingsmallinsects.m2", fileId = "199723", text = "flyingsmallinsects.m2", }, @@ -40374,64 +48201,77 @@ WeakAuras.ModelPaths = { }, { value = "fruits", + text = "fruits", children = { { value = "fruit_apple.m2", + text = "fruit_apple.m2", fileId = "199724", text = "fruit_apple.m2", }, { value = "fruit_banana.m2", + text = "fruit_banana.m2", fileId = "199725", text = "fruit_banana.m2", }, { value = "fruit_bananabunch.m2", + text = "fruit_bananabunch.m2", fileId = "199726", text = "fruit_bananabunch.m2", }, { value = "fruit_melon.m2", + text = "fruit_melon.m2", fileId = "199727", text = "fruit_melon.m2", }, { value = "fruit_melonslice01.m2", + text = "fruit_melonslice01.m2", fileId = "199728", text = "fruit_melonslice01.m2", }, { value = "fruit_melonslice02.m2", + text = "fruit_melonslice02.m2", fileId = "199729", text = "fruit_melonslice02.m2", }, { value = "fruit_orange.m2", + text = "fruit_orange.m2", fileId = "199730", text = "fruit_orange.m2", }, { value = "fruit_orangeslice.m2", + text = "fruit_orangeslice.m2", fileId = "199731", text = "fruit_orangeslice.m2", }, { value = "fruit_pear.m2", + text = "fruit_pear.m2", fileId = "199732", text = "fruit_pear.m2", }, { value = "fruitbowl_apples.m2", + text = "fruitbowl_apples.m2", fileId = "199734", text = "fruitbowl_apples.m2", }, { value = "fruitbowl_empty.m2", + text = "fruitbowl_empty.m2", fileId = "199735", text = "fruitbowl_empty.m2", }, { value = "fruitbowl_mixed.m2", + text = "fruitbowl_mixed.m2", fileId = "199736", text = "fruitbowl_mixed.m2", }, @@ -40440,52 +48280,63 @@ WeakAuras.ModelPaths = { }, { value = "furniture", + text = "furniture", children = { { value = "containers", + text = "containers", children = { { value = "barrel02.m2", + text = "barrel02.m2", fileId = "199737", text = "barrel02.m2", }, { value = "crate03.m2", + text = "crate03.m2", fileId = "199739", text = "crate03.m2", }, { value = "exploding_package.m2", + text = "exploding_package.m2", fileId = "199742", text = "exploding_package.m2", }, { value = "lichcontainer01.m2", + text = "lichcontainer01.m2", fileId = "199744", text = "lichcontainer01.m2", }, { value = "sack01.m2", + text = "sack01.m2", fileId = "199745", text = "sack01.m2", }, { value = "sack02.m2", + text = "sack02.m2", fileId = "199746", text = "sack02.m2", }, { value = "titanchest.m2", + text = "titanchest.m2", fileId = "199748", text = "titanchest.m2", }, { value = "titanvase01.m2", + text = "titanvase01.m2", fileId = "199751", text = "titanvase01.m2", }, { value = "titanvase02.m2", + text = "titanvase02.m2", fileId = "199753", text = "titanvase02.m2", }, @@ -40494,14 +48345,17 @@ WeakAuras.ModelPaths = { }, { value = "refuse", + text = "refuse", children = { { value = "bone01.m2", + text = "bone01.m2", fileId = "199754", text = "bone01.m2", }, { value = "bone02.m2", + text = "bone02.m2", fileId = "199755", text = "bone02.m2", }, @@ -40513,9 +48367,11 @@ WeakAuras.ModelPaths = { }, { value = "gallows", + text = "gallows", children = { { value = "gallows01.m2", + text = "gallows01.m2", fileId = "199756", text = "gallows01.m2", }, @@ -40524,14 +48380,17 @@ WeakAuras.ModelPaths = { }, { value = "graystone", + text = "graystone", children = { { value = "graystone01.m2", + text = "graystone01.m2", fileId = "199757", text = "graystone01.m2", }, { value = "graystone02.m2", + text = "graystone02.m2", fileId = "199758", text = "graystone02.m2", }, @@ -40540,24 +48399,29 @@ WeakAuras.ModelPaths = { }, { value = "halloween", + text = "halloween", children = { { value = "burningash01.m2", + text = "burningash01.m2", fileId = "199786", text = "burningash01.m2", }, { value = "burningwickerman01.m2", + text = "burningwickerman01.m2", fileId = "199787", text = "burningwickerman01.m2", }, { value = "hangingskulllight01.m2", + text = "hangingskulllight01.m2", fileId = "199788", text = "hangingskulllight01.m2", }, { value = "hangingskulllight02.m2", + text = "hangingskulllight02.m2", fileId = "199789", text = "hangingskulllight02.m2", }, @@ -40566,14 +48430,17 @@ WeakAuras.ModelPaths = { }, { value = "hides", + text = "hides", children = { { value = "hidestack01.m2", + text = "hidestack01.m2", fileId = "199795", text = "hidestack01.m2", }, { value = "hidestack02.m2", + text = "hidestack02.m2", fileId = "199796", text = "hidestack02.m2", }, @@ -40582,109 +48449,131 @@ WeakAuras.ModelPaths = { }, { value = "lights", + text = "lights", children = { { value = "bigcandle.m2", + text = "bigcandle.m2", fileId = "199797", text = "bigcandle.m2", }, { value = "candelabra01.m2", + text = "candelabra01.m2", fileId = "199801", text = "candelabra01.m2", }, { value = "candelabra02.m2", + text = "candelabra02.m2", fileId = "199802", text = "candelabra02.m2", }, { value = "candelabratallwall01.m2", + text = "candelabratallwall01.m2", fileId = "199803", text = "candelabratallwall01.m2", }, { value = "candelabratallwall02.m2", + text = "candelabratallwall02.m2", fileId = "199804", text = "candelabratallwall02.m2", }, { value = "candle01.m2", + text = "candle01.m2", fileId = "199806", text = "candle01.m2", }, { value = "candle02.m2", + text = "candle02.m2", fileId = "199807", text = "candle02.m2", }, { value = "candle03.m2", + text = "candle03.m2", fileId = "199808", text = "candle03.m2", }, { value = "candleblack01.m2", + text = "candleblack01.m2", fileId = "199809", text = "candleblack01.m2", }, { value = "candleoff01.m2", + text = "candleoff01.m2", fileId = "199810", text = "candleoff01.m2", }, { value = "candleoff02.m2", + text = "candleoff02.m2", fileId = "199811", text = "candleoff02.m2", }, { value = "candleoff03.m2", + text = "candleoff03.m2", fileId = "199812", text = "candleoff03.m2", }, { value = "chandelier01.m2", + text = "chandelier01.m2", fileId = "199813", text = "chandelier01.m2", }, { value = "freestandingtorch01.m2", + text = "freestandingtorch01.m2", fileId = "199815", text = "freestandingtorch01.m2", }, { value = "freestandingtorch02.m2", + text = "freestandingtorch02.m2", fileId = "199816", text = "freestandingtorch02.m2", }, { value = "freestandingtorch04_giant.m2", + text = "freestandingtorch04_giant.m2", fileId = "199817", text = "freestandingtorch04_giant.m2", }, { value = "freestandingtorch04_huge.m2", + text = "freestandingtorch04_huge.m2", fileId = "199818", text = "freestandingtorch04_huge.m2", }, { value = "freestandingtorch04_hugeblue.m2", + text = "freestandingtorch04_hugeblue.m2", fileId = "199819", text = "freestandingtorch04_hugeblue.m2", }, { value = "generaltorch01.m2", + text = "generaltorch01.m2", fileId = "199820", text = "generaltorch01.m2", }, { value = "torch.m2", + text = "torch.m2", fileId = "199823", text = "torch.m2", }, { value = "torch_out.m2", + text = "torch_out.m2", fileId = "199825", text = "torch_out.m2", }, @@ -40693,109 +48582,131 @@ WeakAuras.ModelPaths = { }, { value = "lunarnewyear", + text = "lunarnewyear", children = { { value = "firecrackerstring_blue01.m2", + text = "firecrackerstring_blue01.m2", fileId = "199829", text = "firecrackerstring_blue01.m2", }, { value = "firecrackerstring_red01.m2", + text = "firecrackerstring_red01.m2", fileId = "199830", text = "firecrackerstring_red01.m2", }, { value = "luckymoneyenvelope_01.m2", + text = "luckymoneyenvelope_01.m2", fileId = "199832", text = "luckymoneyenvelope_01.m2", }, { value = "lunarnewyear_heroportrait_dw.m2", + text = "lunarnewyear_heroportrait_dw.m2", fileId = "199834", text = "lunarnewyear_heroportrait_dw.m2", }, { value = "lunarnewyear_heroportrait_gn.m2", + text = "lunarnewyear_heroportrait_gn.m2", fileId = "199836", text = "lunarnewyear_heroportrait_gn.m2", }, { value = "lunarnewyear_heroportrait_hu.m2", + text = "lunarnewyear_heroportrait_hu.m2", fileId = "199838", text = "lunarnewyear_heroportrait_hu.m2", }, { value = "lunarnewyear_heroportrait_ne.m2", + text = "lunarnewyear_heroportrait_ne.m2", fileId = "199840", text = "lunarnewyear_heroportrait_ne.m2", }, { value = "lunarnewyear_heroportrait_or.m2", + text = "lunarnewyear_heroportrait_or.m2", fileId = "199842", text = "lunarnewyear_heroportrait_or.m2", }, { value = "lunarnewyear_heroportrait_sc.m2", + text = "lunarnewyear_heroportrait_sc.m2", fileId = "199844", text = "lunarnewyear_heroportrait_sc.m2", }, { value = "lunarnewyear_heroportrait_ta.m2", + text = "lunarnewyear_heroportrait_ta.m2", fileId = "199846", text = "lunarnewyear_heroportrait_ta.m2", }, { value = "lunarnewyear_heroportrait_tr.m2", + text = "lunarnewyear_heroportrait_tr.m2", fileId = "199848", text = "lunarnewyear_heroportrait_tr.m2", }, { value = "lunarnewyearbanner_alliance_hanging.m2", + text = "lunarnewyearbanner_alliance_hanging.m2", fileId = "199849", text = "lunarnewyearbanner_alliance_hanging.m2", }, { value = "lunarnewyearbanner_alliance_hanging02.m2", + text = "lunarnewyearbanner_alliance_hanging02.m2", fileId = "199850", text = "lunarnewyearbanner_alliance_hanging02.m2", }, { value = "lunarnewyearbanner_alliance_standing.m2", + text = "lunarnewyearbanner_alliance_standing.m2", fileId = "199851", text = "lunarnewyearbanner_alliance_standing.m2", }, { value = "lunarnewyearbanner_horde_hanging.m2", + text = "lunarnewyearbanner_horde_hanging.m2", fileId = "199852", text = "lunarnewyearbanner_horde_hanging.m2", }, { value = "lunarnewyearbanner_horde_hanging02.m2", + text = "lunarnewyearbanner_horde_hanging02.m2", fileId = "199853", text = "lunarnewyearbanner_horde_hanging02.m2", }, { value = "lunarnewyearbanner_horde_standing.m2", + text = "lunarnewyearbanner_horde_standing.m2", fileId = "199854", text = "lunarnewyearbanner_horde_standing.m2", }, { value = "lunarnewyearlantern_alliance_hanging.m2", + text = "lunarnewyearlantern_alliance_hanging.m2", fileId = "199855", text = "lunarnewyearlantern_alliance_hanging.m2", }, { value = "lunarnewyearlantern_alliance_standing.m2", + text = "lunarnewyearlantern_alliance_standing.m2", fileId = "199856", text = "lunarnewyearlantern_alliance_standing.m2", }, { value = "lunarnewyearlantern_horde_hanging.m2", + text = "lunarnewyearlantern_horde_hanging.m2", fileId = "199857", text = "lunarnewyearlantern_horde_hanging.m2", }, { value = "lunarnewyearlantern_horde_standing.m2", + text = "lunarnewyearlantern_horde_standing.m2", fileId = "199858", text = "lunarnewyearlantern_horde_standing.m2", }, @@ -40804,64 +48715,77 @@ WeakAuras.ModelPaths = { }, { value = "metalbars", + text = "metalbars", children = { { value = "metalbars01copper.m2", + text = "metalbars01copper.m2", fileId = "199860", text = "metalbars01copper.m2", }, { value = "metalbars01iron.m2", + text = "metalbars01iron.m2", fileId = "199861", text = "metalbars01iron.m2", }, { value = "metalbars01mithril.m2", + text = "metalbars01mithril.m2", fileId = "199862", text = "metalbars01mithril.m2", }, { value = "metalbars01truesilver.m2", + text = "metalbars01truesilver.m2", fileId = "199863", text = "metalbars01truesilver.m2", }, { value = "metalbarstack01copper.m2", + text = "metalbarstack01copper.m2", fileId = "199867", text = "metalbarstack01copper.m2", }, { value = "metalbarstack01iron.m2", + text = "metalbarstack01iron.m2", fileId = "199868", text = "metalbarstack01iron.m2", }, { value = "metalbarstack01mithril.m2", + text = "metalbarstack01mithril.m2", fileId = "199869", text = "metalbarstack01mithril.m2", }, { value = "metalbarstack01truesilver.m2", + text = "metalbarstack01truesilver.m2", fileId = "199870", text = "metalbarstack01truesilver.m2", }, { value = "metalbarstack02copper.m2", + text = "metalbarstack02copper.m2", fileId = "199871", text = "metalbarstack02copper.m2", }, { value = "metalbarstack02iron.m2", + text = "metalbarstack02iron.m2", fileId = "199872", text = "metalbarstack02iron.m2", }, { value = "metalbarstack02mithril.m2", + text = "metalbarstack02mithril.m2", fileId = "199873", text = "metalbarstack02mithril.m2", }, { value = "metalbarstack02truesilver.m2", + text = "metalbarstack02truesilver.m2", fileId = "199874", text = "metalbarstack02truesilver.m2", }, @@ -40870,32 +48794,39 @@ WeakAuras.ModelPaths = { }, { value = "misc", + text = "misc", children = { { value = "minecars", + text = "minecars", children = { { value = "caveminecar01.m2", + text = "caveminecar01.m2", fileId = "199876", text = "caveminecar01.m2", }, { value = "caveminecarwrecked01.m2", + text = "caveminecarwrecked01.m2", fileId = "199880", text = "caveminecarwrecked01.m2", }, { value = "caveminecarwrecked02.m2", + text = "caveminecarwrecked02.m2", fileId = "199881", text = "caveminecarwrecked02.m2", }, { value = "caveminepulley01.m2", + text = "caveminepulley01.m2", fileId = "199882", text = "caveminepulley01.m2", }, { value = "caveminepulley02.m2", + text = "caveminepulley02.m2", fileId = "199883", text = "caveminepulley02.m2", }, @@ -40904,9 +48835,11 @@ WeakAuras.ModelPaths = { }, { value = "pulleys", + text = "pulleys", children = { { value = "pulley.m2", + text = "pulley.m2", fileId = "199885", text = "pulley.m2", }, @@ -40915,9 +48848,11 @@ WeakAuras.ModelPaths = { }, { value = "wheelbarrow", + text = "wheelbarrow", children = { { value = "caveminewheelbarrow01.m2", + text = "caveminewheelbarrow01.m2", fileId = "199886", text = "caveminewheelbarrow01.m2", }, @@ -40929,294 +48864,353 @@ WeakAuras.ModelPaths = { }, { value = "particleemitters", + text = "particleemitters", children = { { value = "ashenvalewisps.m2", + text = "ashenvalewisps.m2", fileId = "199904", text = "ashenvalewisps.m2", }, { value = "aurablue.m2", + text = "aurablue.m2", fileId = "199905", text = "aurablue.m2", }, { value = "aurabluehuge.m2", + text = "aurabluehuge.m2", fileId = "199906", text = "aurabluehuge.m2", }, { value = "aurablueshort.m2", + text = "aurablueshort.m2", fileId = "199907", text = "aurablueshort.m2", }, { value = "aurabluetall.m2", + text = "aurabluetall.m2", fileId = "199908", text = "aurabluetall.m2", }, { value = "aurablueverytall.m2", + text = "aurablueverytall.m2", fileId = "199909", text = "aurablueverytall.m2", }, { value = "auragreen.m2", + text = "auragreen.m2", fileId = "199910", text = "auragreen.m2", }, { value = "auragreenshort.m2", + text = "auragreenshort.m2", fileId = "199911", text = "auragreenshort.m2", }, { value = "auragreentall.m2", + text = "auragreentall.m2", fileId = "199912", text = "auragreentall.m2", }, { value = "auragreenverytall.m2", + text = "auragreenverytall.m2", fileId = "199913", text = "auragreenverytall.m2", }, { value = "aurapurple.m2", + text = "aurapurple.m2", fileId = "199914", text = "aurapurple.m2", }, { value = "aurapurpleshort.m2", + text = "aurapurpleshort.m2", fileId = "199915", text = "aurapurpleshort.m2", }, { value = "aurapurpletall.m2", + text = "aurapurpletall.m2", fileId = "199916", text = "aurapurpletall.m2", }, { value = "aurapurpleverytall.m2", + text = "aurapurpleverytall.m2", fileId = "199917", text = "aurapurpleverytall.m2", }, { value = "aurared.m2", + text = "aurared.m2", fileId = "199918", text = "aurared.m2", }, { value = "auraredhuge.m2", + text = "auraredhuge.m2", fileId = "199919", text = "auraredhuge.m2", }, { value = "auraredshort.m2", + text = "auraredshort.m2", fileId = "199920", text = "auraredshort.m2", }, { value = "auraredtall.m2", + text = "auraredtall.m2", fileId = "199921", text = "auraredtall.m2", }, { value = "auraredverytall.m2", + text = "auraredverytall.m2", fileId = "199922", text = "auraredverytall.m2", }, { value = "aurayellow.m2", + text = "aurayellow.m2", fileId = "199923", text = "aurayellow.m2", }, { value = "aurayellowhuge.m2", + text = "aurayellowhuge.m2", fileId = "199924", text = "aurayellowhuge.m2", }, { value = "aurayellowshort.m2", + text = "aurayellowshort.m2", fileId = "199925", text = "aurayellowshort.m2", }, { value = "aurayellowtall.m2", + text = "aurayellowtall.m2", fileId = "199926", text = "aurayellowtall.m2", }, { value = "aurayellowverytall.m2", + text = "aurayellowverytall.m2", fileId = "199927", text = "aurayellowverytall.m2", }, { value = "blacksmith_smoke.m2", + text = "blacksmith_smoke.m2", fileId = "199929", text = "blacksmith_smoke.m2", }, { value = "blastedlandslightningbolt01.m2", + text = "blastedlandslightningbolt01.m2", fileId = "199930", text = "blastedlandslightningbolt01.m2", }, { value = "bubbles01.m2", + text = "bubbles01.m2", fileId = "199932", text = "bubbles01.m2", }, { value = "bubblesb.m2", + text = "bubblesb.m2", fileId = "199933", text = "bubblesb.m2", }, { value = "bubblesb_bigemitter.m2", + text = "bubblesb_bigemitter.m2", fileId = "199934", text = "bubblesb_bigemitter.m2", }, { value = "ceilingdustemitter.m2", + text = "ceilingdustemitter.m2", fileId = "199935", text = "ceilingdustemitter.m2", }, { value = "druidwisp01.m2", + text = "druidwisp01.m2", fileId = "199938", text = "druidwisp01.m2", }, { value = "dustwallowgroundfog.m2", + text = "dustwallowgroundfog.m2", fileId = "199939", text = "dustwallowgroundfog.m2", }, { value = "dustwallowgroundfogplane.m2", + text = "dustwallowgroundfogplane.m2", fileId = "199940", text = "dustwallowgroundfogplane.m2", }, { value = "feralaslightblue.m2", + text = "feralaslightblue.m2", fileId = "199941", text = "feralaslightblue.m2", }, { value = "feralaslightgreen.m2", + text = "feralaslightgreen.m2", fileId = "199942", text = "feralaslightgreen.m2", }, { value = "feralaslightpurple.m2", + text = "feralaslightpurple.m2", fileId = "199944", text = "feralaslightpurple.m2", }, { value = "feralaslightyellow.m2", + text = "feralaslightyellow.m2", fileId = "199945", text = "feralaslightyellow.m2", }, { value = "flamecircle.m2", + text = "flamecircle.m2", fileId = "199946", text = "flamecircle.m2", }, { value = "flyswarms.m2", + text = "flyswarms.m2", fileId = "199947", text = "flyswarms.m2", }, { value = "fogbox.m2", + text = "fogbox.m2", fileId = "199948", text = "fogbox.m2", }, { value = "fountainparticles.m2", + text = "fountainparticles.m2", fileId = "199949", text = "fountainparticles.m2", }, { value = "greengroundfog.m2", + text = "greengroundfog.m2", fileId = "199950", text = "greengroundfog.m2", }, { value = "greygroundfog.m2", + text = "greygroundfog.m2", fileId = "199951", text = "greygroundfog.m2", }, { value = "housesmoke.m2", + text = "housesmoke.m2", fileId = "199954", text = "housesmoke.m2", }, { value = "lavaparticlesplash.m2", + text = "lavaparticlesplash.m2", fileId = "199956", text = "lavaparticlesplash.m2", }, { value = "lavasmokeemitter.m2", + text = "lavasmokeemitter.m2", fileId = "199957", text = "lavasmokeemitter.m2", }, { value = "lavasmokeemitterb.m2", + text = "lavasmokeemitterb.m2", fileId = "199958", text = "lavasmokeemitterb.m2", }, { value = "lavasplashparticle.m2", + text = "lavasplashparticle.m2", fileId = "199959", text = "lavasplashparticle.m2", }, { value = "mountaincaveriver.m2", + text = "mountaincaveriver.m2", fileId = "199962", text = "mountaincaveriver.m2", }, { value = "orangegroundfog.m2", + text = "orangegroundfog.m2", fileId = "199964", text = "orangegroundfog.m2", }, { value = "outlanddemonglow.m2", + text = "outlanddemonglow.m2", fileId = "199965", text = "outlanddemonglow.m2", }, { value = "purplegroundfog.m2", + text = "purplegroundfog.m2", fileId = "199967", text = "purplegroundfog.m2", }, { value = "shadowfangfog01.m2", + text = "shadowfangfog01.m2", fileId = "199968", text = "shadowfangfog01.m2", }, { value = "shrineaurablue.m2", + text = "shrineaurablue.m2", fileId = "199969", text = "shrineaurablue.m2", }, { value = "steam02.m2", + text = "steam02.m2", fileId = "199970", text = "steam02.m2", }, { value = "steam03.m2", + text = "steam03.m2", fileId = "199971", text = "steam03.m2", }, { value = "steam04.m2", + text = "steam04.m2", fileId = "199972", text = "steam04.m2", }, { value = "sunkenflame01.m2", + text = "sunkenflame01.m2", fileId = "199973", text = "sunkenflame01.m2", }, @@ -41225,14 +49219,17 @@ WeakAuras.ModelPaths = { }, { value = "plainrune", + text = "plainrune", children = { { value = "plainrune.m2", + text = "plainrune.m2", fileId = "199975", text = "plainrune.m2", }, { value = "runestone.m2", + text = "runestone.m2", fileId = "199976", text = "runestone.m2", }, @@ -41241,29 +49238,35 @@ WeakAuras.ModelPaths = { }, { value = "plaque", + text = "plaque", children = { { value = "plaquebronze01.m2", + text = "plaquebronze01.m2", fileId = "199981", text = "plaquebronze01.m2", }, { value = "plaquebronze02.m2", + text = "plaquebronze02.m2", fileId = "199983", text = "plaquebronze02.m2", }, { value = "plaquesilver01.m2", + text = "plaquesilver01.m2", fileId = "199985", text = "plaquesilver01.m2", }, { value = "plaquesilver02.m2", + text = "plaquesilver02.m2", fileId = "199987", text = "plaquesilver02.m2", }, { value = "plaquestone01.m2", + text = "plaquestone01.m2", fileId = "199989", text = "plaquestone01.m2", }, @@ -41272,44 +49275,53 @@ WeakAuras.ModelPaths = { }, { value = "postboxes", + text = "postboxes", children = { { value = "postboxdwarf.m2", + text = "postboxdwarf.m2", fileId = "199993", text = "postboxdwarf.m2", }, { value = "postboxgnome.m2", + text = "postboxgnome.m2", fileId = "199996", text = "postboxgnome.m2", }, { value = "postboxhuman.m2", + text = "postboxhuman.m2", fileId = "199999", text = "postboxhuman.m2", }, { value = "postboxnightelf.m2", + text = "postboxnightelf.m2", fileId = "200004", text = "postboxnightelf.m2", }, { value = "postboxorc.m2", + text = "postboxorc.m2", fileId = "200007", text = "postboxorc.m2", }, { value = "postboxtauren.m2", + text = "postboxtauren.m2", fileId = "200010", text = "postboxtauren.m2", }, { value = "postboxtroll.m2", + text = "postboxtroll.m2", fileId = "200012", text = "postboxtroll.m2", }, { value = "postboxundead.m2", + text = "postboxundead.m2", fileId = "200014", text = "postboxundead.m2", }, @@ -41318,9 +49330,11 @@ WeakAuras.ModelPaths = { }, { value = "shamanstone", + text = "shamanstone", children = { { value = "shamanstone01.m2", + text = "shamanstone01.m2", fileId = "200024", text = "shamanstone01.m2", }, @@ -41329,24 +49343,29 @@ WeakAuras.ModelPaths = { }, { value = "shieldracks", + text = "shieldracks", children = { { value = "rackshieldalliance01.m2", + text = "rackshieldalliance01.m2", fileId = "200030", text = "rackshieldalliance01.m2", }, { value = "rackshieldalliance02.m2", + text = "rackshieldalliance02.m2", fileId = "200031", text = "rackshieldalliance02.m2", }, { value = "rackshieldhorde01.m2", + text = "rackshieldhorde01.m2", fileId = "200032", text = "rackshieldhorde01.m2", }, { value = "rackshieldhorde02.m2", + text = "rackshieldhorde02.m2", fileId = "200033", text = "rackshieldhorde02.m2", }, @@ -41355,12 +49374,15 @@ WeakAuras.ModelPaths = { }, { value = "ships", + text = "ships", children = { { value = "shipanimation", + text = "shipanimation", children = { { value = "transportship_sails.m2", + text = "transportship_sails.m2", fileId = "200049", text = "transportship_sails.m2", }, @@ -41369,9 +49391,11 @@ WeakAuras.ModelPaths = { }, { value = "shipramps", + text = "shipramps", children = { { value = "shipramp01.m2", + text = "shipramp01.m2", fileId = "200052", text = "shipramp01.m2", }, @@ -41380,9 +49404,11 @@ WeakAuras.ModelPaths = { }, { value = "zeppelinanimation", + text = "zeppelinanimation", children = { { value = "zepanimation.m2", + text = "zepanimation.m2", fileId = "200053", text = "zepanimation.m2", }, @@ -41394,84 +49420,101 @@ WeakAuras.ModelPaths = { }, { value = "skeletons", + text = "skeletons", children = { { value = "chainedskeleton01.m2", + text = "chainedskeleton01.m2", fileId = "200056", text = "chainedskeleton01.m2", }, { value = "chainedskeleton02.m2", + text = "chainedskeleton02.m2", fileId = "200057", text = "chainedskeleton02.m2", }, { value = "chainedskeleton03.m2", + text = "chainedskeleton03.m2", fileId = "200058", text = "chainedskeleton03.m2", }, { value = "chainedskeleton04.m2", + text = "chainedskeleton04.m2", fileId = "200059", text = "chainedskeleton04.m2", }, { value = "chainedskeleton05.m2", + text = "chainedskeleton05.m2", fileId = "200060", text = "chainedskeleton05.m2", }, { value = "chainedskeleton06.m2", + text = "chainedskeleton06.m2", fileId = "200061", text = "chainedskeleton06.m2", }, { value = "lightskeletonlaying01.m2", + text = "lightskeletonlaying01.m2", fileId = "200062", text = "lightskeletonlaying01.m2", }, { value = "lightskeletonlaying02.m2", + text = "lightskeletonlaying02.m2", fileId = "200063", text = "lightskeletonlaying02.m2", }, { value = "lightskeletonlaying03.m2", + text = "lightskeletonlaying03.m2", fileId = "200064", text = "lightskeletonlaying03.m2", }, { value = "lightskeletonsitting01.m2", + text = "lightskeletonsitting01.m2", fileId = "200065", text = "lightskeletonsitting01.m2", }, { value = "lightskeletonsitting02.m2", + text = "lightskeletonsitting02.m2", fileId = "200066", text = "lightskeletonsitting02.m2", }, { value = "lightskeletonsitting03.m2", + text = "lightskeletonsitting03.m2", fileId = "200067", text = "lightskeletonsitting03.m2", }, { value = "lightskeletonsitting04.m2", + text = "lightskeletonsitting04.m2", fileId = "200068", text = "lightskeletonsitting04.m2", }, { value = "skeletalservant01.m2", + text = "skeletalservant01.m2", fileId = "200070", text = "skeletalservant01.m2", }, { value = "skeletalservant02.m2", + text = "skeletalservant02.m2", fileId = "200071", text = "skeletalservant02.m2", }, { value = "skeletalservant03.m2", + text = "skeletalservant03.m2", fileId = "200072", text = "skeletalservant03.m2", }, @@ -41480,104 +49523,125 @@ WeakAuras.ModelPaths = { }, { value = "summerfestival", + text = "summerfestival", children = { { value = "summerfest_bonfire_large01.m2", + text = "summerfest_bonfire_large01.m2", fileId = "200080", text = "summerfest_bonfire_large01.m2", }, { value = "summerfest_bonfire_large02.m2", + text = "summerfest_bonfire_large02.m2", fileId = "200081", text = "summerfest_bonfire_large02.m2", }, { value = "summerfest_bonfire_large03.m2", + text = "summerfest_bonfire_large03.m2", fileId = "200082", text = "summerfest_bonfire_large03.m2", }, { value = "summerfest_bonfire_large04.m2", + text = "summerfest_bonfire_large04.m2", fileId = "200083", text = "summerfest_bonfire_large04.m2", }, { value = "summerfest_bonfire_small01.m2", + text = "summerfest_bonfire_small01.m2", fileId = "200086", text = "summerfest_bonfire_small01.m2", }, { value = "summerfest_bonfire_small02.m2", + text = "summerfest_bonfire_small02.m2", fileId = "200087", text = "summerfest_bonfire_small02.m2", }, { value = "summerfest_bonfire_small03.m2", + text = "summerfest_bonfire_small03.m2", fileId = "200088", text = "summerfest_bonfire_small03.m2", }, { value = "summerfest_bonfire_small04.m2", + text = "summerfest_bonfire_small04.m2", fileId = "200089", text = "summerfest_bonfire_small04.m2", }, { value = "summerfest_brazier_01.m2", + text = "summerfest_brazier_01.m2", fileId = "200091", text = "summerfest_brazier_01.m2", }, { value = "summerfest_brazier_02.m2", + text = "summerfest_brazier_02.m2", fileId = "200092", text = "summerfest_brazier_02.m2", }, { value = "summerfest_brazier_03.m2", + text = "summerfest_brazier_03.m2", fileId = "200093", text = "summerfest_brazier_03.m2", }, { value = "summerfest_crate.m2", + text = "summerfest_crate.m2", fileId = "200096", text = "summerfest_crate.m2", }, { value = "summerfest_maypole.m2", + text = "summerfest_maypole.m2", fileId = "200099", text = "summerfest_maypole.m2", }, { value = "summerfest_ribbon01huge.m2", + text = "summerfest_ribbon01huge.m2", fileId = "200102", text = "summerfest_ribbon01huge.m2", }, { value = "summerfest_ribbon02.m2", + text = "summerfest_ribbon02.m2", fileId = "200103", text = "summerfest_ribbon02.m2", }, { value = "summerfest_streamers.m2", + text = "summerfest_streamers.m2", fileId = "200104", text = "summerfest_streamers.m2", }, { value = "summerfest_streamersx3.m2", + text = "summerfest_streamersx3.m2", fileId = "200106", text = "summerfest_streamersx3.m2", }, { value = "summerfest_wreath01.m2", + text = "summerfest_wreath01.m2", fileId = "200107", text = "summerfest_wreath01.m2", }, { value = "summerfest_wreathfloating.m2", + text = "summerfest_wreathfloating.m2", fileId = "200108", text = "summerfest_wreathfloating.m2", }, { value = "summerfest_wreathhanginghuge.m2", + text = "summerfest_wreathhanginghuge.m2", fileId = "200109", text = "summerfest_wreathhanginghuge.m2", }, @@ -41586,9 +49650,11 @@ WeakAuras.ModelPaths = { }, { value = "testball", + text = "testball", children = { { value = "testball.m2", + text = "testball.m2", fileId = "200117", text = "testball.m2", }, @@ -41597,59 +49663,71 @@ WeakAuras.ModelPaths = { }, { value = "thanksgiving", + text = "thanksgiving", children = { { value = "g_cornucopia.m2", + text = "g_cornucopia.m2", fileId = "200118", text = "g_cornucopia.m2", }, { value = "g_indiancorn_basket.m2", + text = "g_indiancorn_basket.m2", fileId = "200119", text = "g_indiancorn_basket.m2", }, { value = "g_pilgrimhat.m2", + text = "g_pilgrimhat.m2", fileId = "200120", text = "g_pilgrimhat.m2", }, { value = "g_pumpkin.m2", + text = "g_pumpkin.m2", fileId = "200121", text = "g_pumpkin.m2", }, { value = "g_pumpkinwhat.m2", + text = "g_pumpkinwhat.m2", fileId = "200122", text = "g_pumpkinwhat.m2", }, { value = "g_squash01.m2", + text = "g_squash01.m2", fileId = "200123", text = "g_squash01.m2", }, { value = "g_squash02.m2", + text = "g_squash02.m2", fileId = "200124", text = "g_squash02.m2", }, { value = "g_squash03.m2", + text = "g_squash03.m2", fileId = "200125", text = "g_squash03.m2", }, { value = "g_squash04.m2", + text = "g_squash04.m2", fileId = "200126", text = "g_squash04.m2", }, { value = "g_squashgreen.m2", + text = "g_squashgreen.m2", fileId = "200127", text = "g_squashgreen.m2", }, { value = "g_squashlong.m2", + text = "g_squashlong.m2", fileId = "200128", text = "g_squashlong.m2", }, @@ -41658,9 +49736,11 @@ WeakAuras.ModelPaths = { }, { value = "traps", + text = "traps", children = { { value = "spellobject_invisibletrap.m2", + text = "spellobject_invisibletrap.m2", fileId = "2199319", text = "spellobject_invisibletrap.m2", }, @@ -41669,19 +49749,23 @@ WeakAuras.ModelPaths = { }, { value = "treasurepiles", + text = "treasurepiles", children = { { value = "goldpilelarge01.m2", + text = "goldpilelarge01.m2", fileId = "200135", text = "goldpilelarge01.m2", }, { value = "goldpilemedium01.m2", + text = "goldpilemedium01.m2", fileId = "200136", text = "goldpilemedium01.m2", }, { value = "goldpilesmall01.m2", + text = "goldpilesmall01.m2", fileId = "200137", text = "goldpilesmall01.m2", }, @@ -41690,39 +49774,47 @@ WeakAuras.ModelPaths = { }, { value = "tugofwar", + text = "tugofwar", children = { { value = "gryphonroost_ruined.m2", + text = "gryphonroost_ruined.m2", fileId = "200143", text = "gryphonroost_ruined.m2", }, { value = "tugofwar_dustextractor.m2", + text = "tugofwar_dustextractor.m2", fileId = "200151", text = "tugofwar_dustextractor.m2", }, { value = "tugofwar_reddustbag01.m2", + text = "tugofwar_reddustbag01.m2", fileId = "200152", text = "tugofwar_reddustbag01.m2", }, { value = "tugofwar_redspiceexplosion.m2", + text = "tugofwar_redspiceexplosion.m2", fileId = "200153", text = "tugofwar_redspiceexplosion.m2", }, { value = "tugofwar_redspicegeyser.m2", + text = "tugofwar_redspicegeyser.m2", fileId = "200154", text = "tugofwar_redspicegeyser.m2", }, { value = "tugofwar_redspicemissile.m2", + text = "tugofwar_redspicemissile.m2", fileId = "200155", text = "tugofwar_redspicemissile.m2", }, { value = "tugofwar_redspicepile.m2", + text = "tugofwar_redspicepile.m2", fileId = "200156", text = "tugofwar_redspicepile.m2", }, @@ -41731,109 +49823,131 @@ WeakAuras.ModelPaths = { }, { value = "valentinesday", + text = "valentinesday", children = { { value = "valentines_blanket.m2", + text = "valentines_blanket.m2", fileId = "200165", text = "valentines_blanket.m2", }, { value = "valentinesarc.m2", + text = "valentinesarc.m2", fileId = "200167", text = "valentinesarc.m2", }, { value = "valentinescandle.m2", + text = "valentinescandle.m2", fileId = "200170", text = "valentinescandle.m2", }, { value = "valentineschocolate.m2", + text = "valentineschocolate.m2", fileId = "200172", text = "valentineschocolate.m2", }, { value = "valentineschocolategreen.m2", + text = "valentineschocolategreen.m2", fileId = "200174", text = "valentineschocolategreen.m2", }, { value = "valentineschocolatepurple.m2", + text = "valentineschocolatepurple.m2", fileId = "200176", text = "valentineschocolatepurple.m2", }, { value = "valentineschocolateyellow.m2", + text = "valentineschocolateyellow.m2", fileId = "200178", text = "valentineschocolateyellow.m2", }, { value = "valentinescolognebottle.m2", + text = "valentinescolognebottle.m2", fileId = "200180", text = "valentinescolognebottle.m2", }, { value = "valentinescrate.m2", + text = "valentinescrate.m2", fileId = "200181", text = "valentinescrate.m2", }, { value = "valentinesperfumebottle.m2", + text = "valentinesperfumebottle.m2", fileId = "200183", text = "valentinesperfumebottle.m2", }, { value = "valentinesplant.m2", + text = "valentinesplant.m2", fileId = "200185", text = "valentinesplant.m2", }, { value = "valentinesribbon01.m2", + text = "valentinesribbon01.m2", fileId = "200187", text = "valentinesribbon01.m2", }, { value = "valentinesribbon01huge.m2", + text = "valentinesribbon01huge.m2", fileId = "200188", text = "valentinesribbon01huge.m2", }, { value = "valentinesribbon02.m2", + text = "valentinesribbon02.m2", fileId = "200189", text = "valentinesribbon02.m2", }, { value = "valentinesstreamers.m2", + text = "valentinesstreamers.m2", fileId = "200190", text = "valentinesstreamers.m2", }, { value = "valentinesstreamersx3.m2", + text = "valentinesstreamersx3.m2", fileId = "200191", text = "valentinesstreamersx3.m2", }, { value = "valentineswreath01.m2", + text = "valentineswreath01.m2", fileId = "200192", text = "valentineswreath01.m2", }, { value = "valentineswreath01huge.m2", + text = "valentineswreath01huge.m2", fileId = "200193", text = "valentineswreath01huge.m2", }, { value = "valentineswreathfloating.m2", + text = "valentineswreathfloating.m2", fileId = "200194", text = "valentineswreathfloating.m2", }, { value = "valentineswreathhanging.m2", + text = "valentineswreathhanging.m2", fileId = "200195", text = "valentineswreathhanging.m2", }, { value = "valentineswreathhanginghuge.m2", + text = "valentineswreathhanginghuge.m2", fileId = "200196", text = "valentineswreathhanginghuge.m2", }, @@ -41842,17 +49956,21 @@ WeakAuras.ModelPaths = { }, { value = "wall", + text = "wall", children = { { value = "bones", + text = "bones", children = { { value = "cavewallbones01.m2", + text = "cavewallbones01.m2", fileId = "200200", text = "cavewallbones01.m2", }, { value = "cavewallbones02.m2", + text = "cavewallbones02.m2", fileId = "200201", text = "cavewallbones02.m2", }, @@ -41864,14 +49982,17 @@ WeakAuras.ModelPaths = { }, { value = "waterfall", + text = "waterfall", children = { { value = "newwaterfall.m2", + text = "newwaterfall.m2", fileId = "200202", text = "newwaterfall.m2", }, { value = "waterfall-long.m2", + text = "waterfall-long.m2", fileId = "200203", text = "waterfall-long.m2", }, @@ -41880,9 +50001,11 @@ WeakAuras.ModelPaths = { }, { value = "waterfalls", + text = "waterfalls", children = { { value = "damwaterfall01.m2", + text = "damwaterfall01.m2", fileId = "200204", text = "damwaterfall01.m2", }, @@ -41891,34 +50014,41 @@ WeakAuras.ModelPaths = { }, { value = "weaponcrates", + text = "weaponcrates", children = { { value = "weaponcratealliancesword.m2", + text = "weaponcratealliancesword.m2", fileId = "200208", text = "weaponcratealliancesword.m2", }, { value = "weaponcrateallianceswordlid.m2", + text = "weaponcrateallianceswordlid.m2", fileId = "200209", text = "weaponcrateallianceswordlid.m2", }, { value = "weaponcrateallianceswordopen.m2", + text = "weaponcrateallianceswordopen.m2", fileId = "200210", text = "weaponcrateallianceswordopen.m2", }, { value = "weaponcratehordeaxe.m2", + text = "weaponcratehordeaxe.m2", fileId = "200211", text = "weaponcratehordeaxe.m2", }, { value = "weaponcratehordeaxelid.m2", + text = "weaponcratehordeaxelid.m2", fileId = "200212", text = "weaponcratehordeaxelid.m2", }, { value = "weaponcratehordeaxeopen.m2", + text = "weaponcratehordeaxeopen.m2", fileId = "200213", text = "weaponcratehordeaxeopen.m2", }, @@ -41927,99 +50057,119 @@ WeakAuras.ModelPaths = { }, { value = "weapons", + text = "weapons", children = { { value = "bone_bow.m2", + text = "bone_bow.m2", fileId = "200214", text = "bone_bow.m2", }, { value = "bone_shield.m2", + text = "bone_shield.m2", fileId = "200215", text = "bone_shield.m2", }, { value = "boneclub01.m2", + text = "boneclub01.m2", fileId = "200217", text = "boneclub01.m2", }, { value = "caveman_club01.m2", + text = "caveman_club01.m2", fileId = "200218", text = "caveman_club01.m2", }, { value = "flint_club01.m2", + text = "flint_club01.m2", fileId = "200219", text = "flint_club01.m2", }, { value = "flint_spear02.m2", + text = "flint_spear02.m2", fileId = "200220", text = "flint_spear02.m2", }, { value = "flintspear01.m2", + text = "flintspear01.m2", fileId = "200223", text = "flintspear01.m2", }, { value = "knotted_club01.m2", + text = "knotted_club01.m2", fileId = "200225", text = "knotted_club01.m2", }, { value = "leather_shield.m2", + text = "leather_shield.m2", fileId = "200227", text = "leather_shield.m2", }, { value = "naga_trident.m2", + text = "naga_trident.m2", fileId = "200228", text = "naga_trident.m2", }, { value = "skullclub01.m2", + text = "skullclub01.m2", fileId = "200233", text = "skullclub01.m2", }, { value = "skullspear01.m2", + text = "skullspear01.m2", fileId = "200234", text = "skullspear01.m2", }, { value = "spiked_club01.m2", + text = "spiked_club01.m2", fileId = "200235", text = "spiked_club01.m2", }, { value = "steelspear01.m2", + text = "steelspear01.m2", fileId = "200237", text = "steelspear01.m2", }, { value = "stone_club01.m2", + text = "stone_club01.m2", fileId = "200238", text = "stone_club01.m2", }, { value = "stone_spear01.m2", + text = "stone_spear01.m2", fileId = "200239", text = "stone_spear01.m2", }, { value = "wicker_bow.m2", + text = "wicker_bow.m2", fileId = "200243", text = "wicker_bow.m2", }, { value = "wicker_shield.m2", + text = "wicker_shield.m2", fileId = "200244", text = "wicker_shield.m2", }, { value = "woodclub01.m2", + text = "woodclub01.m2", fileId = "200246", text = "woodclub01.m2", }, @@ -42028,9 +50178,11 @@ WeakAuras.ModelPaths = { }, { value = "well", + text = "well", children = { { value = "well.m2", + text = "well.m2", fileId = "200252", text = "well.m2", }, @@ -42039,14 +50191,17 @@ WeakAuras.ModelPaths = { }, { value = "windblown", + text = "windblown", children = { { value = "dustwestfall.m2", + text = "dustwestfall.m2", fileId = "200254", text = "dustwestfall.m2", }, { value = "snowdunmorogh.m2", + text = "snowdunmorogh.m2", fileId = "200256", text = "snowdunmorogh.m2", }, @@ -42055,14 +50210,17 @@ WeakAuras.ModelPaths = { }, { value = "windowbeam", + text = "windowbeam", children = { { value = "windowbeam01.m2", + text = "windowbeam01.m2", fileId = "200257", text = "windowbeam01.m2", }, { value = "windowbeam02.m2", + text = "windowbeam02.m2", fileId = "200258", text = "windowbeam02.m2", }, @@ -42074,15 +50232,19 @@ WeakAuras.ModelPaths = { }, { value = "pirate", + text = "pirate", children = { { value = "passive doodads", + text = "passive doodads", children = { { value = "piratelandmarks", + text = "piratelandmarks", children = { { value = "piratelandmark.m2", + text = "piratelandmark.m2", fileId = "200259", text = "piratelandmark.m2", }, @@ -42097,107 +50259,129 @@ WeakAuras.ModelPaths = { }, { value = "pvp", + text = "pvp", children = { { value = "battlefieldbanners", + text = "battlefieldbanners", children = { { value = "battlefieldbanner_state_base_plaguelands.m2", + text = "battlefieldbanner_state_base_plaguelands.m2", fileId = "200264", text = "battlefieldbanner_state_base_plaguelands.m2", }, { value = "battlefieldbanner_state_flaga_plaguelands.m2", + text = "battlefieldbanner_state_flaga_plaguelands.m2", fileId = "200265", text = "battlefieldbanner_state_flaga_plaguelands.m2", }, { value = "battlefieldbanner_state_flagh_plaguelands.m2", + text = "battlefieldbanner_state_flagh_plaguelands.m2", fileId = "200266", text = "battlefieldbanner_state_flagh_plaguelands.m2", }, { value = "battlefieldbanner_state_flagn_plaguelands.m2", + text = "battlefieldbanner_state_flagn_plaguelands.m2", fileId = "200267", text = "battlefieldbanner_state_flagn_plaguelands.m2", }, { value = "battlefieldbanneralliance.m2", + text = "battlefieldbanneralliance.m2", fileId = "200268", text = "battlefieldbanneralliance.m2", }, { value = "battlefieldbanneralliancebw.m2", + text = "battlefieldbanneralliancebw.m2", fileId = "200270", text = "battlefieldbanneralliancebw.m2", }, { value = "battlefieldbanneralliancebwflagonly.m2", + text = "battlefieldbanneralliancebwflagonly.m2", fileId = "200271", text = "battlefieldbanneralliancebwflagonly.m2", }, { value = "battlefieldbannerallianceflagonly.m2", + text = "battlefieldbannerallianceflagonly.m2", fileId = "200272", text = "battlefieldbannerallianceflagonly.m2", }, { value = "battlefieldbanneralliancelarge.m2", + text = "battlefieldbanneralliancelarge.m2", fileId = "200273", text = "battlefieldbanneralliancelarge.m2", }, { value = "battlefieldbanneralliancelargebw.m2", + text = "battlefieldbanneralliancelargebw.m2", fileId = "200274", text = "battlefieldbanneralliancelargebw.m2", }, { value = "battlefieldbanneralliancestatusbar2min.m2", + text = "battlefieldbanneralliancestatusbar2min.m2", fileId = "200275", text = "battlefieldbanneralliancestatusbar2min.m2", }, { value = "battlefieldbannerhorde.m2", + text = "battlefieldbannerhorde.m2", fileId = "200276", text = "battlefieldbannerhorde.m2", }, { value = "battlefieldbannerhordebw.m2", + text = "battlefieldbannerhordebw.m2", fileId = "200278", text = "battlefieldbannerhordebw.m2", }, { value = "battlefieldbannerhordebwflagonly.m2", + text = "battlefieldbannerhordebwflagonly.m2", fileId = "200279", text = "battlefieldbannerhordebwflagonly.m2", }, { value = "battlefieldbannerhordeflagonly.m2", + text = "battlefieldbannerhordeflagonly.m2", fileId = "200280", text = "battlefieldbannerhordeflagonly.m2", }, { value = "battlefieldbannerhordelarge.m2", + text = "battlefieldbannerhordelarge.m2", fileId = "200281", text = "battlefieldbannerhordelarge.m2", }, { value = "battlefieldbannerhordelargebw.m2", + text = "battlefieldbannerhordelargebw.m2", fileId = "200282", text = "battlefieldbannerhordelargebw.m2", }, { value = "battlefieldbannerneutral.m2", + text = "battlefieldbannerneutral.m2", fileId = "200283", text = "battlefieldbannerneutral.m2", }, { value = "battlefieldbannerneutralflagonly.m2", + text = "battlefieldbannerneutralflagonly.m2", fileId = "200284", text = "battlefieldbannerneutralflagonly.m2", }, { value = "battlefieldbannerneutralpost.m2", + text = "battlefieldbannerneutralpost.m2", fileId = "200285", text = "battlefieldbannerneutralpost.m2", }, @@ -42206,14 +50390,17 @@ WeakAuras.ModelPaths = { }, { value = "collisionwall", + text = "collisionwall", children = { { value = "collisionwallpvp01.m2", + text = "collisionwallpvp01.m2", fileId = "200293", text = "collisionwallpvp01.m2", }, { value = "collisionwallpvp02.m2", + text = "collisionwallpvp02.m2", fileId = "527813", text = "collisionwallpvp02.m2", }, @@ -42222,14 +50409,17 @@ WeakAuras.ModelPaths = { }, { value = "ctfflags", + text = "ctfflags", children = { { value = "alliancectfflag.m2", + text = "alliancectfflag.m2", fileId = "200296", text = "alliancectfflag.m2", }, { value = "hordectfflag.m2", + text = "hordectfflag.m2", fileId = "200299", text = "hordectfflag.m2", }, @@ -42238,14 +50428,17 @@ WeakAuras.ModelPaths = { }, { value = "fires", + text = "fires", children = { { value = "lowpolyfire.m2", + text = "lowpolyfire.m2", fileId = "200302", text = "lowpolyfire.m2", }, { value = "lowpolyfireanim.m2", + text = "lowpolyfireanim.m2", fileId = "200303", text = "lowpolyfireanim.m2", }, @@ -42254,29 +50447,35 @@ WeakAuras.ModelPaths = { }, { value = "runes", + text = "runes", children = { { value = "pvp_rune_berserker.m2", + text = "pvp_rune_berserker.m2", fileId = "200305", text = "pvp_rune_berserker.m2", }, { value = "pvp_rune_invis.m2", + text = "pvp_rune_invis.m2", fileId = "200307", text = "pvp_rune_invis.m2", }, { value = "pvp_rune_restoration.m2", + text = "pvp_rune_restoration.m2", fileId = "200308", text = "pvp_rune_restoration.m2", }, { value = "pvp_rune_speed.m2", + text = "pvp_rune_speed.m2", fileId = "200309", text = "pvp_rune_speed.m2", }, { value = "pvp_rune_speed_icon.m2", + text = "pvp_rune_speed_icon.m2", fileId = "200310", text = "pvp_rune_speed_icon.m2", }, @@ -42285,37 +50484,45 @@ WeakAuras.ModelPaths = { }, { value = "warsong", + text = "warsong", children = { { value = "nightelfctfflagplaceglow.m2", + text = "nightelfctfflagplaceglow.m2", fileId = "200316", text = "nightelfctfflagplaceglow.m2", }, { value = "orcctfflagplaceglow.m2", + text = "orcctfflagplaceglow.m2", fileId = "200317", text = "orcctfflagplaceglow.m2", }, { value = "warsongctfnightelftoplight.m2", + text = "warsongctfnightelftoplight.m2", fileId = "200319", text = "warsongctfnightelftoplight.m2", }, { value = "warsonggulch_orc_door01.m2", + text = "warsonggulch_orc_door01.m2", fileId = "200320", text = "warsonggulch_orc_door01.m2", }, { value = "windows", + text = "windows", children = { { value = "elfwindow.m2", + text = "elfwindow.m2", fileId = "200324", text = "elfwindow.m2", }, { value = "orcwindow.m2", + text = "orcwindow.m2", fileId = "200325", text = "orcwindow.m2", }, @@ -42330,15 +50537,19 @@ WeakAuras.ModelPaths = { }, { value = "quilboar", + text = "quilboar", children = { { value = "activedoodads", + text = "activedoodads", children = { { value = "doors", + text = "doors", children = { { value = "razorfenforcefield01.m2", + text = "razorfenforcefield01.m2", fileId = "200328", text = "razorfenforcefield01.m2", }, @@ -42350,17 +50561,21 @@ WeakAuras.ModelPaths = { }, { value = "passive doodads", + text = "passive doodads", children = { { value = "barbs", + text = "barbs", children = { { value = "barbs_01.m2", + text = "barbs_01.m2", fileId = "200329", text = "barbs_01.m2", }, { value = "barbs_02.m2", + text = "barbs_02.m2", fileId = "200330", text = "barbs_02.m2", }, @@ -42369,14 +50584,17 @@ WeakAuras.ModelPaths = { }, { value = "huts", + text = "huts", children = { { value = "quillboar_hut01.m2", + text = "quillboar_hut01.m2", fileId = "200332", text = "quillboar_hut01.m2", }, { value = "quillboar_small_hut01.m2", + text = "quillboar_small_hut01.m2", fileId = "200333", text = "quillboar_small_hut01.m2", }, @@ -42385,9 +50603,11 @@ WeakAuras.ModelPaths = { }, { value = "leantos", + text = "leantos", children = { { value = "razorfen leanto03.m2", + text = "razorfen leanto03.m2", fileId = "200335", text = "razorfen leanto03.m2", }, @@ -42396,9 +50616,11 @@ WeakAuras.ModelPaths = { }, { value = "post", + text = "post", children = { { value = "quillboarpost.m2", + text = "quillboarpost.m2", fileId = "200336", text = "quillboarpost.m2", }, @@ -42407,14 +50629,17 @@ WeakAuras.ModelPaths = { }, { value = "quilboarrockpaintings", + text = "quilboarrockpaintings", children = { { value = "quillboarpaintingcliff01.m2", + text = "quillboarpaintingcliff01.m2", fileId = "200337", text = "quillboarpaintingcliff01.m2", }, { value = "quillboarpaintingrock01.m2", + text = "quillboarpaintingrock01.m2", fileId = "200338", text = "quillboarpaintingrock01.m2", }, @@ -42423,34 +50648,41 @@ WeakAuras.ModelPaths = { }, { value = "thorncanopies", + text = "thorncanopies", children = { { value = "razorfen_canopy01.m2", + text = "razorfen_canopy01.m2", fileId = "200342", text = "razorfen_canopy01.m2", }, { value = "razorfen_canopy01_hole.m2", + text = "razorfen_canopy01_hole.m2", fileId = "200343", text = "razorfen_canopy01_hole.m2", }, { value = "razorfen_canopy02.m2", + text = "razorfen_canopy02.m2", fileId = "200344", text = "razorfen_canopy02.m2", }, { value = "thorncanopy_01.m2", + text = "thorncanopy_01.m2", fileId = "200345", text = "thorncanopy_01.m2", }, { value = "thorncanopy_02.m2", + text = "thorncanopy_02.m2", fileId = "200346", text = "thorncanopy_02.m2", }, { value = "thorncanopy_03.m2", + text = "thorncanopy_03.m2", fileId = "200347", text = "thorncanopy_03.m2", }, @@ -42459,9 +50691,11 @@ WeakAuras.ModelPaths = { }, { value = "troughs", + text = "troughs", children = { { value = "razorfentrough01.m2", + text = "razorfentrough01.m2", fileId = "200349", text = "razorfentrough01.m2", }, @@ -42476,25 +50710,31 @@ WeakAuras.ModelPaths = { }, { value = "satyr", + text = "satyr", children = { { value = "passive doodads", + text = "passive doodads", children = { { value = "container", + text = "container", children = { { value = "satyrcontainer01.m2", + text = "satyrcontainer01.m2", fileId = "200350", text = "satyrcontainer01.m2", }, { value = "satyrcontainer02.m2", + text = "satyrcontainer02.m2", fileId = "200351", text = "satyrcontainer02.m2", }, { value = "satyrcontainer03.m2", + text = "satyrcontainer03.m2", fileId = "200352", text = "satyrcontainer03.m2", }, @@ -42503,19 +50743,23 @@ WeakAuras.ModelPaths = { }, { value = "tents", + text = "tents", children = { { value = "satyrtent01.m2", + text = "satyrtent01.m2", fileId = "200353", text = "satyrtent01.m2", }, { value = "satyrtent02.m2", + text = "satyrtent02.m2", fileId = "200355", text = "satyrtent02.m2", }, { value = "satyrtent03.m2", + text = "satyrtent03.m2", fileId = "200356", text = "satyrtent03.m2", }, @@ -42530,30 +50774,37 @@ WeakAuras.ModelPaths = { }, { value = "tauren", + text = "tauren", children = { { value = "passive doodads", + text = "passive doodads", children = { { value = "animalcages", + text = "animalcages", children = { { value = "animalcage01.m2", + text = "animalcage01.m2", fileId = "200357", text = "animalcage01.m2", }, { value = "animalcage02.m2", + text = "animalcage02.m2", fileId = "200358", text = "animalcage02.m2", }, { value = "animalcage03.m2", + text = "animalcage03.m2", fileId = "200359", text = "animalcage03.m2", }, { value = "animalcage04.m2", + text = "animalcage04.m2", fileId = "200360", text = "animalcage04.m2", }, @@ -42562,14 +50813,17 @@ WeakAuras.ModelPaths = { }, { value = "archerytargets", + text = "archerytargets", children = { { value = "archerytargetdwarf01.m2", + text = "archerytargetdwarf01.m2", fileId = "200363", text = "archerytargetdwarf01.m2", }, { value = "archerytargethuman01.m2", + text = "archerytargethuman01.m2", fileId = "200364", text = "archerytargethuman01.m2", }, @@ -42578,9 +50832,11 @@ WeakAuras.ModelPaths = { }, { value = "babywheels", + text = "babywheels", children = { { value = "babywheel01.m2", + text = "babywheel01.m2", fileId = "200365", text = "babywheel01.m2", }, @@ -42589,14 +50845,17 @@ WeakAuras.ModelPaths = { }, { value = "ballandhoop", + text = "ballandhoop", children = { { value = "taurenballhoopstand.m2", + text = "taurenballhoopstand.m2", fileId = "200369", text = "taurenballhoopstand.m2", }, { value = "taurenleatherball.m2", + text = "taurenleatherball.m2", fileId = "200370", text = "taurenleatherball.m2", }, @@ -42605,39 +50864,47 @@ WeakAuras.ModelPaths = { }, { value = "baskets", + text = "baskets", children = { { value = "flatbasket01.m2", + text = "flatbasket01.m2", fileId = "200371", text = "flatbasket01.m2", }, { value = "largebasket01.m2", + text = "largebasket01.m2", fileId = "200372", text = "largebasket01.m2", }, { value = "largebasket02.m2", + text = "largebasket02.m2", fileId = "200373", text = "largebasket02.m2", }, { value = "largebasket03.m2", + text = "largebasket03.m2", fileId = "200374", text = "largebasket03.m2", }, { value = "smallbasket01.m2", + text = "smallbasket01.m2", fileId = "200375", text = "smallbasket01.m2", }, { value = "smallbasket02.m2", + text = "smallbasket02.m2", fileId = "200376", text = "smallbasket02.m2", }, { value = "smallbasket03.m2", + text = "smallbasket03.m2", fileId = "200377", text = "smallbasket03.m2", }, @@ -42646,49 +50913,59 @@ WeakAuras.ModelPaths = { }, { value = "bowls", + text = "bowls", children = { { value = "taurenbowl01.m2", + text = "taurenbowl01.m2", fileId = "200378", text = "taurenbowl01.m2", }, { value = "taurenbowl02.m2", + text = "taurenbowl02.m2", fileId = "200379", text = "taurenbowl02.m2", }, { value = "taurenbowl03.m2", + text = "taurenbowl03.m2", fileId = "200380", text = "taurenbowl03.m2", }, { value = "taurenbowl04.m2", + text = "taurenbowl04.m2", fileId = "200381", text = "taurenbowl04.m2", }, { value = "taurenbowl05.m2", + text = "taurenbowl05.m2", fileId = "200382", text = "taurenbowl05.m2", }, { value = "taurenbowl06.m2", + text = "taurenbowl06.m2", fileId = "200383", text = "taurenbowl06.m2", }, { value = "taurenbowl07.m2", + text = "taurenbowl07.m2", fileId = "200384", text = "taurenbowl07.m2", }, { value = "taurenbowl08.m2", + text = "taurenbowl08.m2", fileId = "200385", text = "taurenbowl08.m2", }, { value = "taurenbowl09.m2", + text = "taurenbowl09.m2", fileId = "200386", text = "taurenbowl09.m2", }, @@ -42697,24 +50974,29 @@ WeakAuras.ModelPaths = { }, { value = "carvingtools", + text = "carvingtools", children = { { value = "carvingchisel01.m2", + text = "carvingchisel01.m2", fileId = "200388", text = "carvingchisel01.m2", }, { value = "carvingchisel02.m2", + text = "carvingchisel02.m2", fileId = "200389", text = "carvingchisel02.m2", }, { value = "carvinghammer01.m2", + text = "carvinghammer01.m2", fileId = "200390", text = "carvinghammer01.m2", }, { value = "carvinghatchet01.m2", + text = "carvinghatchet01.m2", fileId = "200391", text = "carvinghatchet01.m2", }, @@ -42723,14 +51005,17 @@ WeakAuras.ModelPaths = { }, { value = "chairs", + text = "chairs", children = { { value = "taurenlogchair01.m2", + text = "taurenlogchair01.m2", fileId = "200393", text = "taurenlogchair01.m2", }, { value = "taurenlogchair02.m2", + text = "taurenlogchair02.m2", fileId = "200394", text = "taurenlogchair02.m2", }, @@ -42739,14 +51024,17 @@ WeakAuras.ModelPaths = { }, { value = "chimes", + text = "chimes", children = { { value = "taurenchimesbells.m2", + text = "taurenchimesbells.m2", fileId = "200395", text = "taurenchimesbells.m2", }, { value = "taurenchimeswood.m2", + text = "taurenchimeswood.m2", fileId = "200396", text = "taurenchimeswood.m2", }, @@ -42755,19 +51043,23 @@ WeakAuras.ModelPaths = { }, { value = "dreamcatchers", + text = "dreamcatchers", children = { { value = "dreamcatcher01.m2", + text = "dreamcatcher01.m2", fileId = "200397", text = "dreamcatcher01.m2", }, { value = "dreamcatcher02.m2", + text = "dreamcatcher02.m2", fileId = "200398", text = "dreamcatcher02.m2", }, { value = "dreamcatcher03.m2", + text = "dreamcatcher03.m2", fileId = "200399", text = "dreamcatcher03.m2", }, @@ -42776,19 +51068,23 @@ WeakAuras.ModelPaths = { }, { value = "drums", + text = "drums", children = { { value = "taurendrumgiant01.m2", + text = "taurendrumgiant01.m2", fileId = "200401", text = "taurendrumgiant01.m2", }, { value = "taurendrummed01.m2", + text = "taurendrummed01.m2", fileId = "200402", text = "taurendrummed01.m2", }, { value = "taurendrumsmall01.m2", + text = "taurendrumsmall01.m2", fileId = "200403", text = "taurendrumsmall01.m2", }, @@ -42797,9 +51093,11 @@ WeakAuras.ModelPaths = { }, { value = "funeralpyres", + text = "funeralpyres", children = { { value = "funeralpyre02.m2", + text = "funeralpyre02.m2", fileId = "200405", text = "funeralpyre02.m2", }, @@ -42808,9 +51106,11 @@ WeakAuras.ModelPaths = { }, { value = "hitchingposts", + text = "hitchingposts", children = { { value = "taurenhitchingpost.m2", + text = "taurenhitchingpost.m2", fileId = "200406", text = "taurenhitchingpost.m2", }, @@ -42819,9 +51119,11 @@ WeakAuras.ModelPaths = { }, { value = "hotspringssteam", + text = "hotspringssteam", children = { { value = "hotspringssteam.m2", + text = "hotspringssteam.m2", fileId = "200407", text = "hotspringssteam.m2", }, @@ -42830,9 +51132,11 @@ WeakAuras.ModelPaths = { }, { value = "kilns", + text = "kilns", children = { { value = "taurenkiln01.m2", + text = "taurenkiln01.m2", fileId = "200409", text = "taurenkiln01.m2", }, @@ -42841,19 +51145,23 @@ WeakAuras.ModelPaths = { }, { value = "kites", + text = "kites", children = { { value = "taurenkite01.m2", + text = "taurenkite01.m2", fileId = "200410", text = "taurenkite01.m2", }, { value = "taurenkite02.m2", + text = "taurenkite02.m2", fileId = "200411", text = "taurenkite02.m2", }, { value = "taurenkite03.m2", + text = "taurenkite03.m2", fileId = "200412", text = "taurenkite03.m2", }, @@ -42862,9 +51170,11 @@ WeakAuras.ModelPaths = { }, { value = "kodohide", + text = "kodohide", children = { { value = "taurenkodohide.m2", + text = "taurenkodohide.m2", fileId = "200416", text = "taurenkodohide.m2", }, @@ -42873,19 +51183,23 @@ WeakAuras.ModelPaths = { }, { value = "kodohorncontainers", + text = "kodohorncontainers", children = { { value = "bagkodohorns.m2", + text = "bagkodohorns.m2", fileId = "200417", text = "bagkodohorns.m2", }, { value = "basketkodohorns.m2", + text = "basketkodohorns.m2", fileId = "200418", text = "basketkodohorns.m2", }, { value = "basketkodohorns2.m2", + text = "basketkodohorns2.m2", fileId = "200419", text = "basketkodohorns2.m2", }, @@ -42894,19 +51208,23 @@ WeakAuras.ModelPaths = { }, { value = "kodoskulls", + text = "kodoskulls", children = { { value = "kodoskulls01.m2", + text = "kodoskulls01.m2", fileId = "200420", text = "kodoskulls01.m2", }, { value = "kodoskulls02.m2", + text = "kodoskulls02.m2", fileId = "200421", text = "kodoskulls02.m2", }, { value = "kodoskulls03.m2", + text = "kodoskulls03.m2", fileId = "200422", text = "kodoskulls03.m2", }, @@ -42915,24 +51233,29 @@ WeakAuras.ModelPaths = { }, { value = "lampposts", + text = "lampposts", children = { { value = "taurenlamppost.m2", + text = "taurenlamppost.m2", fileId = "200426", text = "taurenlamppost.m2", }, { value = "taurenlamppost02.m2", + text = "taurenlamppost02.m2", fileId = "200427", text = "taurenlamppost02.m2", }, { value = "taurenlamppostbroken.m2", + text = "taurenlamppostbroken.m2", fileId = "200428", text = "taurenlamppostbroken.m2", }, { value = "taurenlamppostbroken02.m2", + text = "taurenlamppostbroken02.m2", fileId = "200429", text = "taurenlamppostbroken02.m2", }, @@ -42941,14 +51264,17 @@ WeakAuras.ModelPaths = { }, { value = "loom", + text = "loom", children = { { value = "taurenloomblue.m2", + text = "taurenloomblue.m2", fileId = "200431", text = "taurenloomblue.m2", }, { value = "taurenloomwhite.m2", + text = "taurenloomwhite.m2", fileId = "200432", text = "taurenloomwhite.m2", }, @@ -42957,9 +51283,11 @@ WeakAuras.ModelPaths = { }, { value = "mortarpestle", + text = "mortarpestle", children = { { value = "mortarpestle.m2", + text = "mortarpestle.m2", fileId = "200433", text = "mortarpestle.m2", }, @@ -42968,9 +51296,11 @@ WeakAuras.ModelPaths = { }, { value = "peacepipe", + text = "peacepipe", children = { { value = "peacepipe05.m2", + text = "peacepipe05.m2", fileId = "200434", text = "peacepipe05.m2", }, @@ -42979,9 +51309,11 @@ WeakAuras.ModelPaths = { }, { value = "pvpwalls", + text = "pvpwalls", children = { { value = "azsharataurnwallpvp_01.m2", + text = "azsharataurnwallpvp_01.m2", fileId = "200436", text = "azsharataurnwallpvp_01.m2", }, @@ -42990,14 +51322,17 @@ WeakAuras.ModelPaths = { }, { value = "rattles", + text = "rattles", children = { { value = "taurenrattle01.m2", + text = "taurenrattle01.m2", fileId = "200439", text = "taurenrattle01.m2", }, { value = "taurenrattle02.m2", + text = "taurenrattle02.m2", fileId = "200440", text = "taurenrattle02.m2", }, @@ -43006,19 +51341,23 @@ WeakAuras.ModelPaths = { }, { value = "sacks", + text = "sacks", children = { { value = "taurensack01.m2", + text = "taurensack01.m2", fileId = "200441", text = "taurensack01.m2", }, { value = "taurensack02.m2", + text = "taurensack02.m2", fileId = "200442", text = "taurensack02.m2", }, { value = "taurensack03.m2", + text = "taurensack03.m2", fileId = "200443", text = "taurensack03.m2", }, @@ -43027,29 +51366,35 @@ WeakAuras.ModelPaths = { }, { value = "sandpaintings", + text = "sandpaintings", children = { { value = "taurensandpainting01.m2", + text = "taurensandpainting01.m2", fileId = "200444", text = "taurensandpainting01.m2", }, { value = "taurensandpainting02.m2", + text = "taurensandpainting02.m2", fileId = "200445", text = "taurensandpainting02.m2", }, { value = "taurensandpainting03.m2", + text = "taurensandpainting03.m2", fileId = "200446", text = "taurensandpainting03.m2", }, { value = "taurensandpainting04.m2", + text = "taurensandpainting04.m2", fileId = "200447", text = "taurensandpainting04.m2", }, { value = "taurensandpainting05.m2", + text = "taurensandpainting05.m2", fileId = "200448", text = "taurensandpainting05.m2", }, @@ -43058,24 +51403,29 @@ WeakAuras.ModelPaths = { }, { value = "signposts", + text = "signposts", children = { { value = "taurensignpost01.m2", + text = "taurensignpost01.m2", fileId = "200451", text = "taurensignpost01.m2", }, { value = "taurensignpost02.m2", + text = "taurensignpost02.m2", fileId = "200452", text = "taurensignpost02.m2", }, { value = "taurensignpostpointer01.m2", + text = "taurensignpostpointer01.m2", fileId = "200453", text = "taurensignpostpointer01.m2", }, { value = "taurensignpostpointer02.m2", + text = "taurensignpostpointer02.m2", fileId = "200454", text = "taurensignpostpointer02.m2", }, @@ -43084,184 +51434,221 @@ WeakAuras.ModelPaths = { }, { value = "signs", + text = "signs", children = { { value = "taurensign_alchemist.m2", + text = "taurensign_alchemist.m2", fileId = "200455", text = "taurensign_alchemist.m2", }, { value = "taurensign_armory.m2", + text = "taurensign_armory.m2", fileId = "200458", text = "taurensign_armory.m2", }, { value = "taurensign_bank.m2", + text = "taurensign_bank.m2", fileId = "200460", text = "taurensign_bank.m2", }, { value = "taurensign_blacksmith.m2", + text = "taurensign_blacksmith.m2", fileId = "200462", text = "taurensign_blacksmith.m2", }, { value = "taurensign_bows.m2", + text = "taurensign_bows.m2", fileId = "200464", text = "taurensign_bows.m2", }, { value = "taurensign_cartography.m2", + text = "taurensign_cartography.m2", fileId = "200466", text = "taurensign_cartography.m2", }, { value = "taurensign_clotharmor.m2", + text = "taurensign_clotharmor.m2", fileId = "200468", text = "taurensign_clotharmor.m2", }, { value = "taurensign_cooking.m2", + text = "taurensign_cooking.m2", fileId = "200470", text = "taurensign_cooking.m2", }, { value = "taurensign_drinks.m2", + text = "taurensign_drinks.m2", fileId = "200472", text = "taurensign_drinks.m2", }, { value = "taurensign_enchanting.m2", + text = "taurensign_enchanting.m2", fileId = "200474", text = "taurensign_enchanting.m2", }, { value = "taurensign_engineering.m2", + text = "taurensign_engineering.m2", fileId = "200476", text = "taurensign_engineering.m2", }, { value = "taurensign_firstaid.m2", + text = "taurensign_firstaid.m2", fileId = "200478", text = "taurensign_firstaid.m2", }, { value = "taurensign_fishing.m2", + text = "taurensign_fishing.m2", fileId = "200480", text = "taurensign_fishing.m2", }, { value = "taurensign_fletcher.m2", + text = "taurensign_fletcher.m2", fileId = "200482", text = "taurensign_fletcher.m2", }, { value = "taurensign_food.m2", + text = "taurensign_food.m2", fileId = "200484", text = "taurensign_food.m2", }, { value = "taurensign_general.m2", + text = "taurensign_general.m2", fileId = "200485", text = "taurensign_general.m2", }, { value = "taurensign_guns.m2", + text = "taurensign_guns.m2", fileId = "200488", text = "taurensign_guns.m2", }, { value = "taurensign_herbalist.m2", + text = "taurensign_herbalist.m2", fileId = "200490", text = "taurensign_herbalist.m2", }, { value = "taurensign_inn.m2", + text = "taurensign_inn.m2", fileId = "200492", text = "taurensign_inn.m2", }, { value = "taurensign_inscribing.m2", + text = "taurensign_inscribing.m2", fileId = "200494", text = "taurensign_inscribing.m2", }, { value = "taurensign_leatherarmor.m2", + text = "taurensign_leatherarmor.m2", fileId = "200496", text = "taurensign_leatherarmor.m2", }, { value = "taurensign_lockpicking.m2", + text = "taurensign_lockpicking.m2", fileId = "200498", text = "taurensign_lockpicking.m2", }, { value = "taurensign_maces.m2", + text = "taurensign_maces.m2", fileId = "200500", text = "taurensign_maces.m2", }, { value = "taurensign_magicshop.m2", + text = "taurensign_magicshop.m2", fileId = "200502", text = "taurensign_magicshop.m2", }, { value = "taurensign_mailarmor.m2", + text = "taurensign_mailarmor.m2", fileId = "200504", text = "taurensign_mailarmor.m2", }, { value = "taurensign_meat.m2", + text = "taurensign_meat.m2", fileId = "200506", text = "taurensign_meat.m2", }, { value = "taurensign_mining.m2", + text = "taurensign_mining.m2", fileId = "200508", text = "taurensign_mining.m2", }, { value = "taurensign_poisons.m2", + text = "taurensign_poisons.m2", fileId = "200510", text = "taurensign_poisons.m2", }, { value = "taurensign_swords.m2", + text = "taurensign_swords.m2", fileId = "200512", text = "taurensign_swords.m2", }, { value = "taurensign_tabard.m2", + text = "taurensign_tabard.m2", fileId = "200514", text = "taurensign_tabard.m2", }, { value = "taurensign_tailor.m2", + text = "taurensign_tailor.m2", fileId = "200516", text = "taurensign_tailor.m2", }, { value = "taurensign_tavern.m2", + text = "taurensign_tavern.m2", fileId = "200518", text = "taurensign_tavern.m2", }, { value = "taurensign_warharness.m2", + text = "taurensign_warharness.m2", fileId = "200520", text = "taurensign_warharness.m2", }, { value = "taurensign_weapons.m2", + text = "taurensign_weapons.m2", fileId = "200522", text = "taurensign_weapons.m2", }, { value = "taurensign_wine.m2", + text = "taurensign_wine.m2", fileId = "200524", text = "taurensign_wine.m2", }, { value = "taurensign_wyvern.m2", + text = "taurensign_wyvern.m2", fileId = "200526", text = "taurensign_wyvern.m2", }, @@ -43270,9 +51657,11 @@ WeakAuras.ModelPaths = { }, { value = "smoke", + text = "smoke", children = { { value = "taurencoloredsmoke01.m2", + text = "taurencoloredsmoke01.m2", fileId = "200527", text = "taurencoloredsmoke01.m2", }, @@ -43281,14 +51670,17 @@ WeakAuras.ModelPaths = { }, { value = "tallstridermeat", + text = "tallstridermeat", children = { { value = "tallstridermeat01.m2", + text = "tallstridermeat01.m2", fileId = "200528", text = "tallstridermeat01.m2", }, { value = "tallstridermeat02.m2", + text = "tallstridermeat02.m2", fileId = "200529", text = "tallstridermeat02.m2", }, @@ -43297,9 +51689,11 @@ WeakAuras.ModelPaths = { }, { value = "taurencanoe", + text = "taurencanoe", children = { { value = "taurencanoe.m2", + text = "taurencanoe.m2", fileId = "200532", text = "taurencanoe.m2", }, @@ -43308,9 +51702,11 @@ WeakAuras.ModelPaths = { }, { value = "taurencurtains", + text = "taurencurtains", children = { { value = "taurenbeadcurtain01.m2", + text = "taurenbeadcurtain01.m2", fileId = "200533", text = "taurenbeadcurtain01.m2", }, @@ -43319,9 +51715,11 @@ WeakAuras.ModelPaths = { }, { value = "taurenmummies", + text = "taurenmummies", children = { { value = "taurenmummy.m2", + text = "taurenmummy.m2", fileId = "200534", text = "taurenmummy.m2", }, @@ -43330,9 +51728,11 @@ WeakAuras.ModelPaths = { }, { value = "taurenplow", + text = "taurenplow", children = { { value = "taurenplow.m2", + text = "taurenplow.m2", fileId = "200535", text = "taurenplow.m2", }, @@ -43341,24 +51741,29 @@ WeakAuras.ModelPaths = { }, { value = "taurenrugs", + text = "taurenrugs", children = { { value = "taurenrug01.m2", + text = "taurenrug01.m2", fileId = "200536", text = "taurenrug01.m2", }, { value = "taurenrug02.m2", + text = "taurenrug02.m2", fileId = "200537", text = "taurenrug02.m2", }, { value = "taurenrug03.m2", + text = "taurenrug03.m2", fileId = "200538", text = "taurenrug03.m2", }, { value = "taurenrug04.m2", + text = "taurenrug04.m2", fileId = "200539", text = "taurenrug04.m2", }, @@ -43367,14 +51772,17 @@ WeakAuras.ModelPaths = { }, { value = "taurenshirts", + text = "taurenshirts", children = { { value = "taurenshirthangingblue.m2", + text = "taurenshirthangingblue.m2", fileId = "200540", text = "taurenshirthangingblue.m2", }, { value = "taurenshirthangingbrown.m2", + text = "taurenshirthangingbrown.m2", fileId = "200541", text = "taurenshirthangingbrown.m2", }, @@ -43383,9 +51791,11 @@ WeakAuras.ModelPaths = { }, { value = "taurentravois", + text = "taurentravois", children = { { value = "travois.m2", + text = "travois.m2", fileId = "200545", text = "travois.m2", }, @@ -43394,19 +51804,23 @@ WeakAuras.ModelPaths = { }, { value = "taurenwallhangings", + text = "taurenwallhangings", children = { { value = "taurenwallhanging01.m2", + text = "taurenwallhanging01.m2", fileId = "200547", text = "taurenwallhanging01.m2", }, { value = "taurenwallhanging02.m2", + text = "taurenwallhanging02.m2", fileId = "200548", text = "taurenwallhanging02.m2", }, { value = "taurenwallhanging03.m2", + text = "taurenwallhanging03.m2", fileId = "200549", text = "taurenwallhanging03.m2", }, @@ -43415,29 +51829,35 @@ WeakAuras.ModelPaths = { }, { value = "taurenwallscrolls", + text = "taurenwallscrolls", children = { { value = "taurenwallscroll01.m2", + text = "taurenwallscroll01.m2", fileId = "200551", text = "taurenwallscroll01.m2", }, { value = "taurenwallscroll01blue.m2", + text = "taurenwallscroll01blue.m2", fileId = "200552", text = "taurenwallscroll01blue.m2", }, { value = "taurenwallscroll02.m2", + text = "taurenwallscroll02.m2", fileId = "200553", text = "taurenwallscroll02.m2", }, { value = "taurenwallscroll02blue.m2", + text = "taurenwallscroll02blue.m2", fileId = "200554", text = "taurenwallscroll02blue.m2", }, { value = "taurenwallscroll03.m2", + text = "taurenwallscroll03.m2", fileId = "200555", text = "taurenwallscroll03.m2", }, @@ -43446,9 +51866,11 @@ WeakAuras.ModelPaths = { }, { value = "taurenwaterpump", + text = "taurenwaterpump", children = { { value = "waterpump.m2", + text = "waterpump.m2", fileId = "200557", text = "waterpump.m2", }, @@ -43457,19 +51879,23 @@ WeakAuras.ModelPaths = { }, { value = "taurenwindmills", + text = "taurenwindmills", children = { { value = "taurenwindmilla.m2", + text = "taurenwindmilla.m2", fileId = "200566", text = "taurenwindmilla.m2", }, { value = "taurenwindmillb.m2", + text = "taurenwindmillb.m2", fileId = "200567", text = "taurenwindmillb.m2", }, { value = "taurenwindmillc.m2", + text = "taurenwindmillc.m2", fileId = "200568", text = "taurenwindmillc.m2", }, @@ -43478,79 +51904,95 @@ WeakAuras.ModelPaths = { }, { value = "totems", + text = "totems", children = { { value = "burned_totem01.m2", + text = "burned_totem01.m2", fileId = "200571", text = "burned_totem01.m2", }, { value = "burned_totem02.m2", + text = "burned_totem02.m2", fileId = "200572", text = "burned_totem02.m2", }, { value = "grimtotem01.m2", + text = "grimtotem01.m2", fileId = "200573", text = "grimtotem01.m2", }, { value = "grimtotem02.m2", + text = "grimtotem02.m2", fileId = "200574", text = "grimtotem02.m2", }, { value = "grimtotem03.m2", + text = "grimtotem03.m2", fileId = "200575", text = "grimtotem03.m2", }, { value = "grimtotem04.m2", + text = "grimtotem04.m2", fileId = "200576", text = "grimtotem04.m2", }, { value = "taurentotem01.m2", + text = "taurentotem01.m2", fileId = "200577", text = "taurentotem01.m2", }, { value = "taurentotem02.m2", + text = "taurentotem02.m2", fileId = "200578", text = "taurentotem02.m2", }, { value = "taurentotem03.m2", + text = "taurentotem03.m2", fileId = "200579", text = "taurentotem03.m2", }, { value = "taurentotem04.m2", + text = "taurentotem04.m2", fileId = "200580", text = "taurentotem04.m2", }, { value = "taurentotem05.m2", + text = "taurentotem05.m2", fileId = "200581", text = "taurentotem05.m2", }, { value = "taurentotem06.m2", + text = "taurentotem06.m2", fileId = "200582", text = "taurentotem06.m2", }, { value = "taurentotem07.m2", + text = "taurentotem07.m2", fileId = "200583", text = "taurentotem07.m2", }, { value = "taurentotem08.m2", + text = "taurentotem08.m2", fileId = "200584", text = "taurentotem08.m2", }, { value = "taurentotem09.m2", + text = "taurentotem09.m2", fileId = "200585", text = "taurentotem09.m2", }, @@ -43559,64 +52001,77 @@ WeakAuras.ModelPaths = { }, { value = "warharnasses", + text = "warharnasses", children = { { value = "warharnessfloor01.m2", + text = "warharnessfloor01.m2", fileId = "200588", text = "warharnessfloor01.m2", }, { value = "warharnessfloor02.m2", + text = "warharnessfloor02.m2", fileId = "200589", text = "warharnessfloor02.m2", }, { value = "warharnessfloor03.m2", + text = "warharnessfloor03.m2", fileId = "200590", text = "warharnessfloor03.m2", }, { value = "warharnessfloor04.m2", + text = "warharnessfloor04.m2", fileId = "200591", text = "warharnessfloor04.m2", }, { value = "warharnesstotem01.m2", + text = "warharnesstotem01.m2", fileId = "200592", text = "warharnesstotem01.m2", }, { value = "warharnesstotem02.m2", + text = "warharnesstotem02.m2", fileId = "200593", text = "warharnesstotem02.m2", }, { value = "warharnesstotem03.m2", + text = "warharnesstotem03.m2", fileId = "200594", text = "warharnesstotem03.m2", }, { value = "warharnesstotem04.m2", + text = "warharnesstotem04.m2", fileId = "200595", text = "warharnesstotem04.m2", }, { value = "warharnesswall01.m2", + text = "warharnesswall01.m2", fileId = "200596", text = "warharnesswall01.m2", }, { value = "warharnesswall02.m2", + text = "warharnesswall02.m2", fileId = "200597", text = "warharnesswall02.m2", }, { value = "warharnesswall03.m2", + text = "warharnesswall03.m2", fileId = "200598", text = "warharnesswall03.m2", }, { value = "warharnesswall04.m2", + text = "warharnesswall04.m2", fileId = "200599", text = "warharnesswall04.m2", }, @@ -43625,14 +52080,17 @@ WeakAuras.ModelPaths = { }, { value = "watertroughs", + text = "watertroughs", children = { { value = "watertroughlarge01.m2", + text = "watertroughlarge01.m2", fileId = "200601", text = "watertroughlarge01.m2", }, { value = "watertroughsmall01.m2", + text = "watertroughsmall01.m2", fileId = "200602", text = "watertroughsmall01.m2", }, @@ -43641,44 +52099,53 @@ WeakAuras.ModelPaths = { }, { value = "weapons", + text = "weapons", children = { { value = "tauren_weaponaxe01.m2", + text = "tauren_weaponaxe01.m2", fileId = "200603", text = "tauren_weaponaxe01.m2", }, { value = "tauren_weaponhatchet01.m2", + text = "tauren_weaponhatchet01.m2", fileId = "200604", text = "tauren_weaponhatchet01.m2", }, { value = "tauren_weaponlog01.m2", + text = "tauren_weaponlog01.m2", fileId = "200605", text = "tauren_weaponlog01.m2", }, { value = "tauren_weaponlog02.m2", + text = "tauren_weaponlog02.m2", fileId = "200606", text = "tauren_weaponlog02.m2", }, { value = "tauren_weaponrack01.m2", + text = "tauren_weaponrack01.m2", fileId = "200608", text = "tauren_weaponrack01.m2", }, { value = "tauren_weaponrack02.m2", + text = "tauren_weaponrack02.m2", fileId = "200609", text = "tauren_weaponrack02.m2", }, { value = "tauren_weaponrackwrecked.m2", + text = "tauren_weaponrackwrecked.m2", fileId = "200610", text = "tauren_weaponrackwrecked.m2", }, { value = "tauren_weaponspear.m2", + text = "tauren_weaponspear.m2", fileId = "200611", text = "tauren_weaponspear.m2", }, @@ -43687,24 +52154,29 @@ WeakAuras.ModelPaths = { }, { value = "windbreaks", + text = "windbreaks", children = { { value = "taurenwindbreak01.m2", + text = "taurenwindbreak01.m2", fileId = "200613", text = "taurenwindbreak01.m2", }, { value = "taurenwindbreak02.m2", + text = "taurenwindbreak02.m2", fileId = "200614", text = "taurenwindbreak02.m2", }, { value = "taurenwindbreak03.m2", + text = "taurenwindbreak03.m2", fileId = "200615", text = "taurenwindbreak03.m2", }, { value = "taurenwindbreak04.m2", + text = "taurenwindbreak04.m2", fileId = "200616", text = "taurenwindbreak04.m2", }, @@ -43713,19 +52185,23 @@ WeakAuras.ModelPaths = { }, { value = "windmills", + text = "windmills", children = { { value = "windmillgiant01.m2", + text = "windmillgiant01.m2", fileId = "200617", text = "windmillgiant01.m2", }, { value = "windmillsmall01.m2", + text = "windmillsmall01.m2", fileId = "200618", text = "windmillsmall01.m2", }, { value = "windmilltall01.m2", + text = "windmilltall01.m2", fileId = "200619", text = "windmilltall01.m2", }, @@ -43740,15 +52216,19 @@ WeakAuras.ModelPaths = { }, { value = "troll", + text = "troll", children = { { value = "passive doodads", + text = "passive doodads", children = { { value = "mummytrolls", + text = "mummytrolls", children = { { value = "mummytroll01.m2", + text = "mummytroll01.m2", fileId = "200621", text = "mummytroll01.m2", }, @@ -43757,9 +52237,11 @@ WeakAuras.ModelPaths = { }, { value = "skultikis", + text = "skultikis", children = { { value = "skulltiki.m2", + text = "skulltiki.m2", fileId = "200623", text = "skulltiki.m2", }, @@ -43768,9 +52250,11 @@ WeakAuras.ModelPaths = { }, { value = "snakegargoyle", + text = "snakegargoyle", children = { { value = "snakegargoyle.m2", + text = "snakegargoyle.m2", fileId = "200625", text = "snakegargoyle.m2", }, @@ -43779,9 +52263,11 @@ WeakAuras.ModelPaths = { }, { value = "thrones", + text = "thrones", children = { { value = "cobrathrone01.m2", + text = "cobrathrone01.m2", fileId = "200629", text = "cobrathrone01.m2", }, @@ -43790,19 +52276,23 @@ WeakAuras.ModelPaths = { }, { value = "tikimasks", + text = "tikimasks", children = { { value = "troll_tikimask01.m2", + text = "troll_tikimask01.m2", fileId = "200633", text = "troll_tikimask01.m2", }, { value = "troll_tikimask02.m2", + text = "troll_tikimask02.m2", fileId = "200634", text = "troll_tikimask02.m2", }, { value = "troll_tikimask03.m2", + text = "troll_tikimask03.m2", fileId = "200635", text = "troll_tikimask03.m2", }, @@ -43811,9 +52301,11 @@ WeakAuras.ModelPaths = { }, { value = "trollskullpile", + text = "trollskullpile", children = { { value = "trollskullpile.m2", + text = "trollskullpile.m2", fileId = "200638", text = "trollskullpile.m2", }, @@ -43822,9 +52314,11 @@ WeakAuras.ModelPaths = { }, { value = "trolltablets", + text = "trolltablets", children = { { value = "trolltablet.m2", + text = "trolltablet.m2", fileId = "200640", text = "trolltablet.m2", }, @@ -43833,9 +52327,11 @@ WeakAuras.ModelPaths = { }, { value = "troughs", + text = "troughs", children = { { value = "trough.m2", + text = "trough.m2", fileId = "200642", text = "trough.m2", }, @@ -43850,25 +52346,31 @@ WeakAuras.ModelPaths = { }, { value = "undead", + text = "undead", children = { { value = "passive doodads", + text = "passive doodads", children = { { value = "batroost", + text = "batroost", children = { { value = "batroost.m2", + text = "batroost.m2", fileId = "200644", text = "batroost.m2", }, { value = "batroost02.m2", + text = "batroost02.m2", fileId = "200645", text = "batroost02.m2", }, { value = "batroost03.m2", + text = "batroost03.m2", fileId = "200646", text = "batroost03.m2", }, @@ -43877,14 +52379,17 @@ WeakAuras.ModelPaths = { }, { value = "bell", + text = "bell", children = { { value = "lordaeron_bell_01.m2", + text = "lordaeron_bell_01.m2", fileId = "200649", text = "lordaeron_bell_01.m2", }, { value = "lordaeron_bell_02.m2", + text = "lordaeron_bell_02.m2", fileId = "200650", text = "lordaeron_bell_02.m2", }, @@ -43893,14 +52398,17 @@ WeakAuras.ModelPaths = { }, { value = "furniture", + text = "furniture", children = { { value = "lordaeron_bench_01.m2", + text = "lordaeron_bench_01.m2", fileId = "200652", text = "lordaeron_bench_01.m2", }, { value = "lordaeron_bench_02.m2", + text = "lordaeron_bench_02.m2", fileId = "200653", text = "lordaeron_bench_02.m2", }, @@ -43909,9 +52417,11 @@ WeakAuras.ModelPaths = { }, { value = "lordaeronbrazier", + text = "lordaeronbrazier", children = { { value = "lordaeronbrazier01.m2", + text = "lordaeronbrazier01.m2", fileId = "200655", text = "lordaeronbrazier01.m2", }, @@ -43920,9 +52430,11 @@ WeakAuras.ModelPaths = { }, { value = "lordaeronrailing", + text = "lordaeronrailing", children = { { value = "thronerailing01.m2", + text = "thronerailing01.m2", fileId = "200657", text = "thronerailing01.m2", }, @@ -43931,9 +52443,11 @@ WeakAuras.ModelPaths = { }, { value = "lordaeronthrone", + text = "lordaeronthrone", children = { { value = "tyranusthrone.m2", + text = "tyranusthrone.m2", fileId = "200659", text = "tyranusthrone.m2", }, @@ -43942,24 +52456,29 @@ WeakAuras.ModelPaths = { }, { value = "lordaerontowers", + text = "lordaerontowers", children = { { value = "undercitytower01.m2", + text = "undercitytower01.m2", fileId = "200660", text = "undercitytower01.m2", }, { value = "undercitytower02.m2", + text = "undercitytower02.m2", fileId = "200661", text = "undercitytower02.m2", }, { value = "undercitytower03.m2", + text = "undercitytower03.m2", fileId = "200662", text = "undercitytower03.m2", }, { value = "undercitytower04.m2", + text = "undercitytower04.m2", fileId = "200663", text = "undercitytower04.m2", }, @@ -43968,14 +52487,17 @@ WeakAuras.ModelPaths = { }, { value = "meatwagon", + text = "meatwagon", children = { { value = "meatwagon.m2", + text = "meatwagon.m2", fileId = "200664", text = "meatwagon.m2", }, { value = "meatwagonwrecked01.m2", + text = "meatwagonwrecked01.m2", fileId = "200666", text = "meatwagonwrecked01.m2", }, @@ -43984,12 +52506,15 @@ WeakAuras.ModelPaths = { }, { value = "meatwagonhauler", + text = "meatwagonhauler", children = { { value = "meatwagonhauler.mdx", + text = "meatwagonhauler.mdx", children = { { value = "meatwagonhauler.m2", + text = "meatwagonhauler.m2", fileId = "2198535", text = "meatwagonhauler.m2", }, @@ -44001,29 +52526,35 @@ WeakAuras.ModelPaths = { }, { value = "meatwagonpieces", + text = "meatwagonpieces", children = { { value = "meatwagonbody.m2", + text = "meatwagonbody.m2", fileId = "200668", text = "meatwagonbody.m2", }, { value = "meatwagonclaw.m2", + text = "meatwagonclaw.m2", fileId = "200669", text = "meatwagonclaw.m2", }, { value = "meatwagongrill.m2", + text = "meatwagongrill.m2", fileId = "200670", text = "meatwagongrill.m2", }, { value = "meatwagonroller.m2", + text = "meatwagonroller.m2", fileId = "200671", text = "meatwagonroller.m2", }, { value = "meatwagonwheel.m2", + text = "meatwagonwheel.m2", fileId = "200672", text = "meatwagonwheel.m2", }, @@ -44032,204 +52563,245 @@ WeakAuras.ModelPaths = { }, { value = "signs", + text = "signs", children = { { value = "lordaeron_citybanner_01.m2", + text = "lordaeron_citybanner_01.m2", fileId = "200673", text = "lordaeron_citybanner_01.m2", }, { value = "lordaeron_signpost_01.m2", + text = "lordaeron_signpost_01.m2", fileId = "200674", text = "lordaeron_signpost_01.m2", }, { value = "undeadsign_alchemist.m2", + text = "undeadsign_alchemist.m2", fileId = "200678", text = "undeadsign_alchemist.m2", }, { value = "undeadsign_armory.m2", + text = "undeadsign_armory.m2", fileId = "200680", text = "undeadsign_armory.m2", }, { value = "undeadsign_axes.m2", + text = "undeadsign_axes.m2", fileId = "200682", text = "undeadsign_axes.m2", }, { value = "undeadsign_bags.m2", + text = "undeadsign_bags.m2", fileId = "200684", text = "undeadsign_bags.m2", }, { value = "undeadsign_bank.m2", + text = "undeadsign_bank.m2", fileId = "200686", text = "undeadsign_bank.m2", }, { value = "undeadsign_batrider.m2", + text = "undeadsign_batrider.m2", fileId = "200688", text = "undeadsign_batrider.m2", }, { value = "undeadsign_blacksmith.m2", + text = "undeadsign_blacksmith.m2", fileId = "200690", text = "undeadsign_blacksmith.m2", }, { value = "undeadsign_bows.m2", + text = "undeadsign_bows.m2", fileId = "200692", text = "undeadsign_bows.m2", }, { value = "undeadsign_bread.m2", + text = "undeadsign_bread.m2", fileId = "200694", text = "undeadsign_bread.m2", }, { value = "undeadsign_cartography.m2", + text = "undeadsign_cartography.m2", fileId = "200696", text = "undeadsign_cartography.m2", }, { value = "undeadsign_cheese.m2", + text = "undeadsign_cheese.m2", fileId = "200698", text = "undeadsign_cheese.m2", }, { value = "undeadsign_clotharmor.m2", + text = "undeadsign_clotharmor.m2", fileId = "200700", text = "undeadsign_clotharmor.m2", }, { value = "undeadsign_cook.m2", + text = "undeadsign_cook.m2", fileId = "200702", text = "undeadsign_cook.m2", }, { value = "undeadsign_daggers.m2", + text = "undeadsign_daggers.m2", fileId = "200704", text = "undeadsign_daggers.m2", }, { value = "undeadsign_drinks.m2", + text = "undeadsign_drinks.m2", fileId = "200706", text = "undeadsign_drinks.m2", }, { value = "undeadsign_enchanting.m2", + text = "undeadsign_enchanting.m2", fileId = "200708", text = "undeadsign_enchanting.m2", }, { value = "undeadsign_engineering.m2", + text = "undeadsign_engineering.m2", fileId = "200710", text = "undeadsign_engineering.m2", }, { value = "undeadsign_firstaid.m2", + text = "undeadsign_firstaid.m2", fileId = "200712", text = "undeadsign_firstaid.m2", }, { value = "undeadsign_fish.m2", + text = "undeadsign_fish.m2", fileId = "200714", text = "undeadsign_fish.m2", }, { value = "undeadsign_fletcher.m2", + text = "undeadsign_fletcher.m2", fileId = "200716", text = "undeadsign_fletcher.m2", }, { value = "undeadsign_general.m2", + text = "undeadsign_general.m2", fileId = "200718", text = "undeadsign_general.m2", }, { value = "undeadsign_herbalist.m2", + text = "undeadsign_herbalist.m2", fileId = "200720", text = "undeadsign_herbalist.m2", }, { value = "undeadsign_inscribing.m2", + text = "undeadsign_inscribing.m2", fileId = "200722", text = "undeadsign_inscribing.m2", }, { value = "undeadsign_leatherarmor.m2", + text = "undeadsign_leatherarmor.m2", fileId = "200724", text = "undeadsign_leatherarmor.m2", }, { value = "undeadsign_lockpicking.m2", + text = "undeadsign_lockpicking.m2", fileId = "200726", text = "undeadsign_lockpicking.m2", }, { value = "undeadsign_maces.m2", + text = "undeadsign_maces.m2", fileId = "200728", text = "undeadsign_maces.m2", }, { value = "undeadsign_magic.m2", + text = "undeadsign_magic.m2", fileId = "200730", text = "undeadsign_magic.m2", }, { value = "undeadsign_mailarmor.m2", + text = "undeadsign_mailarmor.m2", fileId = "200732", text = "undeadsign_mailarmor.m2", }, { value = "undeadsign_meat.m2", + text = "undeadsign_meat.m2", fileId = "200734", text = "undeadsign_meat.m2", }, { value = "undeadsign_miner.m2", + text = "undeadsign_miner.m2", fileId = "200736", text = "undeadsign_miner.m2", }, { value = "undeadsign_misc.m2", + text = "undeadsign_misc.m2", fileId = "200738", text = "undeadsign_misc.m2", }, { value = "undeadsign_poison.m2", + text = "undeadsign_poison.m2", fileId = "200740", text = "undeadsign_poison.m2", }, { value = "undeadsign_staves.m2", + text = "undeadsign_staves.m2", fileId = "200742", text = "undeadsign_staves.m2", }, { value = "undeadsign_tabard.m2", + text = "undeadsign_tabard.m2", fileId = "200744", text = "undeadsign_tabard.m2", }, { value = "undeadsign_tailor.m2", + text = "undeadsign_tailor.m2", fileId = "200746", text = "undeadsign_tailor.m2", }, { value = "undeadsign_tavern.m2", + text = "undeadsign_tavern.m2", fileId = "200748", text = "undeadsign_tavern.m2", }, { value = "undeadsign_weapons.m2", + text = "undeadsign_weapons.m2", fileId = "200750", text = "undeadsign_weapons.m2", }, { value = "undeadsign_winery.m2", + text = "undeadsign_winery.m2", fileId = "200752", text = "undeadsign_winery.m2", }, @@ -44238,19 +52810,23 @@ WeakAuras.ModelPaths = { }, { value = "statues", + text = "statues", children = { { value = "lordaeron_statue_01.m2", + text = "lordaeron_statue_01.m2", fileId = "200754", text = "lordaeron_statue_01.m2", }, { value = "lordaeron_statue_02.m2", + text = "lordaeron_statue_02.m2", fileId = "200755", text = "lordaeron_statue_02.m2", }, { value = "lordaeron_statue_03.m2", + text = "lordaeron_statue_03.m2", fileId = "200756", text = "lordaeron_statue_03.m2", }, @@ -44259,14 +52835,17 @@ WeakAuras.ModelPaths = { }, { value = "stonefence", + text = "stonefence", children = { { value = "undeadfencepost.m2", + text = "undeadfencepost.m2", fileId = "200758", text = "undeadfencepost.m2", }, { value = "undeadstonewroughtironfence.m2", + text = "undeadstonewroughtironfence.m2", fileId = "200761", text = "undeadstonewroughtironfence.m2", }, @@ -44275,9 +52854,11 @@ WeakAuras.ModelPaths = { }, { value = "taxiflags", + text = "taxiflags", children = { { value = "taxiflagundead.m2", + text = "taxiflagundead.m2", fileId = "200762", text = "taxiflagundead.m2", }, @@ -44286,9 +52867,11 @@ WeakAuras.ModelPaths = { }, { value = "undeadalchemytable", + text = "undeadalchemytable", children = { { value = "undead_alchemy_table.m2", + text = "undead_alchemy_table.m2", fileId = "200767", text = "undead_alchemy_table.m2", }, @@ -44297,9 +52880,11 @@ WeakAuras.ModelPaths = { }, { value = "undeadcrankwheels", + text = "undeadcrankwheels", children = { { value = "undead_crankwheel.m2", + text = "undead_crankwheel.m2", fileId = "200772", text = "undead_crankwheel.m2", }, @@ -44308,29 +52893,35 @@ WeakAuras.ModelPaths = { }, { value = "undeadhooks", + text = "undeadhooks", children = { { value = "undead_empty_hook.m2", + text = "undead_empty_hook.m2", fileId = "200775", text = "undead_empty_hook.m2", }, { value = "undeadhookarm01.m2", + text = "undeadhookarm01.m2", fileId = "200777", text = "undeadhookarm01.m2", }, { value = "undeadhookbody01.m2", + text = "undeadhookbody01.m2", fileId = "200778", text = "undeadhookbody01.m2", }, { value = "undeadhookfoot01.m2", + text = "undeadhookfoot01.m2", fileId = "200779", text = "undeadhookfoot01.m2", }, { value = "undeadhookhead01.m2", + text = "undeadhookhead01.m2", fileId = "200780", text = "undeadhookhead01.m2", }, @@ -44339,9 +52930,11 @@ WeakAuras.ModelPaths = { }, { value = "undeadmeter", + text = "undeadmeter", children = { { value = "undead_meter.m2", + text = "undead_meter.m2", fileId = "200781", text = "undead_meter.m2", }, @@ -44350,9 +52943,11 @@ WeakAuras.ModelPaths = { }, { value = "undeadoperatingtable", + text = "undeadoperatingtable", children = { { value = "undead_operation_table.m2", + text = "undead_operation_table.m2", fileId = "200782", text = "undead_operation_table.m2", }, @@ -44361,9 +52956,11 @@ WeakAuras.ModelPaths = { }, { value = "undeadtelsacoil", + text = "undeadtelsacoil", children = { { value = "undead_teslacoil.m2", + text = "undead_teslacoil.m2", fileId = "200784", text = "undead_teslacoil.m2", }, @@ -44372,9 +52969,11 @@ WeakAuras.ModelPaths = { }, { value = "undeadtoolstable", + text = "undeadtoolstable", children = { { value = "undead_tools_table.m2", + text = "undead_tools_table.m2", fileId = "200786", text = "undead_tools_table.m2", }, @@ -44383,14 +52982,17 @@ WeakAuras.ModelPaths = { }, { value = "undercity torches", + text = "undercity torches", children = { { value = "undead_torch01.m2", + text = "undead_torch01.m2", fileId = "200788", text = "undead_torch01.m2", }, { value = "undead_torch02.m2", + text = "undead_torch02.m2", fileId = "200789", text = "undead_torch02.m2", }, @@ -44399,14 +53001,17 @@ WeakAuras.ModelPaths = { }, { value = "undercitychandeliers", + text = "undercitychandeliers", children = { { value = "undeadchandelier01.m2", + text = "undeadchandelier01.m2", fileId = "200790", text = "undeadchandelier01.m2", }, { value = "undeadchandelier02.m2", + text = "undeadchandelier02.m2", fileId = "200791", text = "undeadchandelier02.m2", }, @@ -44415,14 +53020,17 @@ WeakAuras.ModelPaths = { }, { value = "undercityelevators", + text = "undercityelevators", children = { { value = "undeadelevator.m2", + text = "undeadelevator.m2", fileId = "200793", text = "undeadelevator.m2", }, { value = "undeadelevatordoor.m2", + text = "undeadelevatordoor.m2", fileId = "200794", text = "undeadelevatordoor.m2", }, @@ -44431,9 +53039,11 @@ WeakAuras.ModelPaths = { }, { value = "undercitylanterns", + text = "undercitylanterns", children = { { value = "undeadhanginglantern01.m2", + text = "undeadhanginglantern01.m2", fileId = "200795", text = "undeadhanginglantern01.m2", }, @@ -44442,14 +53052,17 @@ WeakAuras.ModelPaths = { }, { value = "undercitysignposts", + text = "undercitysignposts", children = { { value = "undercitysignpost.m2", + text = "undercitysignpost.m2", fileId = "200797", text = "undercitysignpost.m2", }, { value = "undercitysignpostpointer.m2", + text = "undercitysignpostpointer.m2", fileId = "200798", text = "undercitysignpostpointer.m2", }, @@ -44458,9 +53071,11 @@ WeakAuras.ModelPaths = { }, { value = "undercityskylight", + text = "undercityskylight", children = { { value = "undercityskylight01.m2", + text = "undercityskylight01.m2", fileId = "200800", text = "undercityskylight01.m2", }, @@ -44469,14 +53084,17 @@ WeakAuras.ModelPaths = { }, { value = "undercityslimebubbles", + text = "undercityslimebubbles", children = { { value = "undercityslimebubbles01.m2", + text = "undercityslimebubbles01.m2", fileId = "200801", text = "undercityslimebubbles01.m2", }, { value = "undercityslimebubbles02.m2", + text = "undercityslimebubbles02.m2", fileId = "200802", text = "undercityslimebubbles02.m2", }, @@ -44485,14 +53103,17 @@ WeakAuras.ModelPaths = { }, { value = "undercityslimefalls", + text = "undercityslimefalls", children = { { value = "skullspoutsplash.m2", + text = "skullspoutsplash.m2", fileId = "200803", text = "skullspoutsplash.m2", }, { value = "undercityslimefalls01.m2", + text = "undercityslimefalls01.m2", fileId = "200808", text = "undercityslimefalls01.m2", }, @@ -44501,9 +53122,11 @@ WeakAuras.ModelPaths = { }, { value = "undercityslimespouts", + text = "undercityslimespouts", children = { { value = "skullspout01.m2", + text = "skullspout01.m2", fileId = "200809", text = "skullspout01.m2", }, @@ -44512,14 +53135,17 @@ WeakAuras.ModelPaths = { }, { value = "undercityworm", + text = "undercityworm", children = { { value = "undercitymonsterbirth.m2", + text = "undercitymonsterbirth.m2", fileId = "200816", text = "undercitymonsterbirth.m2", }, { value = "undercityworm.m2", + text = "undercityworm.m2", fileId = "200817", text = "undercityworm.m2", }, @@ -44534,70 +53160,85 @@ WeakAuras.ModelPaths = { }, { value = "underwater", + text = "underwater", children = { { value = "passivedoodads", + text = "passivedoodads", children = { { value = "plants", + text = "plants", children = { { value = "plant01.m2", + text = "plant01.m2", fileId = "200819", text = "plant01.m2", }, { value = "plant02.m2", + text = "plant02.m2", fileId = "200820", text = "plant02.m2", }, { value = "plant03.m2", + text = "plant03.m2", fileId = "200821", text = "plant03.m2", }, { value = "plant04.m2", + text = "plant04.m2", fileId = "200822", text = "plant04.m2", }, { value = "plant05.m2", + text = "plant05.m2", fileId = "200823", text = "plant05.m2", }, { value = "plant06.m2", + text = "plant06.m2", fileId = "200824", text = "plant06.m2", }, { value = "plant07.m2", + text = "plant07.m2", fileId = "200825", text = "plant07.m2", }, { value = "plant08.m2", + text = "plant08.m2", fileId = "200826", text = "plant08.m2", }, { value = "plant09.m2", + text = "plant09.m2", fileId = "200827", text = "plant09.m2", }, { value = "plant10.m2", + text = "plant10.m2", fileId = "200828", text = "plant10.m2", }, { value = "seaweed01.m2", + text = "seaweed01.m2", fileId = "200829", text = "seaweed01.m2", }, { value = "seaweed02.m2", + text = "seaweed02.m2", fileId = "200830", text = "seaweed02.m2", }, @@ -44606,19 +53247,23 @@ WeakAuras.ModelPaths = { }, { value = "rocks", + text = "rocks", children = { { value = "underwaterrock01.m2", + text = "underwaterrock01.m2", fileId = "200833", text = "underwaterrock01.m2", }, { value = "underwaterrock02.m2", + text = "underwaterrock02.m2", fileId = "200834", text = "underwaterrock02.m2", }, { value = "underwaterrock03.m2", + text = "underwaterrock03.m2", fileId = "200835", text = "underwaterrock03.m2", }, @@ -44627,74 +53272,89 @@ WeakAuras.ModelPaths = { }, { value = "seaweed", + text = "seaweed", children = { { value = "genericseaweed01.m2", + text = "genericseaweed01.m2", fileId = "200836", text = "genericseaweed01.m2", }, { value = "genericseaweed02.m2", + text = "genericseaweed02.m2", fileId = "200837", text = "genericseaweed02.m2", }, { value = "genericseaweed03.m2", + text = "genericseaweed03.m2", fileId = "200838", text = "genericseaweed03.m2", }, { value = "genericseaweed04.m2", + text = "genericseaweed04.m2", fileId = "200839", text = "genericseaweed04.m2", }, { value = "genericseaweed05.m2", + text = "genericseaweed05.m2", fileId = "200840", text = "genericseaweed05.m2", }, { value = "genericseaweed06.m2", + text = "genericseaweed06.m2", fileId = "200841", text = "genericseaweed06.m2", }, { value = "genericseaweed07.m2", + text = "genericseaweed07.m2", fileId = "200842", text = "genericseaweed07.m2", }, { value = "genericseaweed08.m2", + text = "genericseaweed08.m2", fileId = "200843", text = "genericseaweed08.m2", }, { value = "genericseaweed09.m2", + text = "genericseaweed09.m2", fileId = "200844", text = "genericseaweed09.m2", }, { value = "genericseaweed10.m2", + text = "genericseaweed10.m2", fileId = "200845", text = "genericseaweed10.m2", }, { value = "genericseaweed11.m2", + text = "genericseaweed11.m2", fileId = "200846", text = "genericseaweed11.m2", }, { value = "genericseaweed12.m2", + text = "genericseaweed12.m2", fileId = "200847", text = "genericseaweed12.m2", }, { value = "genericseaweed13.m2", + text = "genericseaweed13.m2", fileId = "200848", text = "genericseaweed13.m2", }, { value = "genericseaweed14.m2", + text = "genericseaweed14.m2", fileId = "200849", text = "genericseaweed14.m2", }, @@ -44712,719 +53372,863 @@ WeakAuras.ModelPaths = { }, { value = "goober", + text = "goober", children = { { value = "darkironkegshotgun.m2", + text = "darkironkegshotgun.m2", fileId = "200862", text = "darkironkegshotgun.m2", }, { value = "g_alchemyset01.m2", + text = "g_alchemyset01.m2", fileId = "200877", text = "g_alchemyset01.m2", }, { value = "g_applebob_01.m2", + text = "g_applebob_01.m2", fileId = "200879", text = "g_applebob_01.m2", }, { value = "g_barrel.m2", + text = "g_barrel.m2", fileId = "200884", text = "g_barrel.m2", }, { value = "g_barrelexplode.m2", + text = "g_barrelexplode.m2", fileId = "200886", text = "g_barrelexplode.m2", }, { value = "g_bellship.m2", + text = "g_bellship.m2", fileId = "200891", text = "g_bellship.m2", }, { value = "g_bombfactory.m2", + text = "g_bombfactory.m2", fileId = "200897", text = "g_bombfactory.m2", }, { value = "g_bombwagon.m2", + text = "g_bombwagon.m2", fileId = "200898", text = "g_bombwagon.m2", }, { value = "g_bonfire.m2", + text = "g_bonfire.m2", fileId = "200899", text = "g_bonfire.m2", }, { value = "g_book01.m2", + text = "g_book01.m2", fileId = "200900", text = "g_book01.m2", }, { value = "g_bookopenmediumblack.m2", + text = "g_bookopenmediumblack.m2", fileId = "200910", text = "g_bookopenmediumblack.m2", }, { value = "g_bookopenmediumblue.m2", + text = "g_bookopenmediumblue.m2", fileId = "200911", text = "g_bookopenmediumblue.m2", }, { value = "g_bookopenmediumbrown.m2", + text = "g_bookopenmediumbrown.m2", fileId = "200912", text = "g_bookopenmediumbrown.m2", }, { value = "g_bookopenmediumgreen.m2", + text = "g_bookopenmediumgreen.m2", fileId = "200913", text = "g_bookopenmediumgreen.m2", }, { value = "g_bookopenmediumred.m2", + text = "g_bookopenmediumred.m2", fileId = "200914", text = "g_bookopenmediumred.m2", }, { value = "g_booktraparm.m2", + text = "g_booktraparm.m2", fileId = "200916", text = "g_booktraparm.m2", }, { value = "g_booktrapeye.m2", + text = "g_booktrapeye.m2", fileId = "200918", text = "g_booktrapeye.m2", }, { value = "g_booktrapfire.m2", + text = "g_booktrapfire.m2", fileId = "200920", text = "g_booktrapfire.m2", }, { value = "g_booktraplightevil.m2", + text = "g_booktraplightevil.m2", fileId = "200922", text = "g_booktraplightevil.m2", }, { value = "g_booktraplightgood.m2", + text = "g_booktraplightgood.m2", fileId = "200924", text = "g_booktraplightgood.m2", }, { value = "g_brazier01.m2", + text = "g_brazier01.m2", fileId = "200925", text = "g_brazier01.m2", }, { value = "g_brazierorcblue.m2", + text = "g_brazierorcblue.m2", fileId = "200927", text = "g_brazierorcblue.m2", }, { value = "g_brazierorcgreen.m2", + text = "g_brazierorcgreen.m2", fileId = "200929", text = "g_brazierorcgreen.m2", }, { value = "g_brazierorcpurple.m2", + text = "g_brazierorcpurple.m2", fileId = "200930", text = "g_brazierorcpurple.m2", }, { value = "g_brazierorcred.m2", + text = "g_brazierorcred.m2", fileId = "200932", text = "g_brazierorcred.m2", }, { value = "g_braziertroll.m2", + text = "g_braziertroll.m2", fileId = "200934", text = "g_braziertroll.m2", }, { value = "g_buttonbigred.m2", + text = "g_buttonbigred.m2", fileId = "200936", text = "g_buttonbigred.m2", }, { value = "g_cage.m2", + text = "g_cage.m2", fileId = "200937", text = "g_cage.m2", }, { value = "g_cage02.m2", + text = "g_cage02.m2", fileId = "200938", text = "g_cage02.m2", }, { value = "g_cage03.m2", + text = "g_cage03.m2", fileId = "200939", text = "g_cage03.m2", }, { value = "g_cagebase.m2", + text = "g_cagebase.m2", fileId = "200940", text = "g_cagebase.m2", }, { value = "g_cagedoorbamboo.m2", + text = "g_cagedoorbamboo.m2", fileId = "200941", text = "g_cagedoorbamboo.m2", }, { value = "g_camerashake01.m2", + text = "g_camerashake01.m2", fileId = "200943", text = "g_camerashake01.m2", }, { value = "g_camerashake02.m2", + text = "g_camerashake02.m2", fileId = "200944", text = "g_camerashake02.m2", }, { value = "g_camerashake03.m2", + text = "g_camerashake03.m2", fileId = "200945", text = "g_camerashake03.m2", }, { value = "g_candybucket_01.m2", + text = "g_candybucket_01.m2", fileId = "200946", text = "g_candybucket_01.m2", }, { value = "g_cannon01.m2", + text = "g_cannon01.m2", fileId = "200947", text = "g_cannon01.m2", }, { value = "g_cavein.m2", + text = "g_cavein.m2", fileId = "200950", text = "g_cavein.m2", }, { value = "g_chestahnqiraj.m2", + text = "g_chestahnqiraj.m2", fileId = "200952", text = "g_chestahnqiraj.m2", }, { value = "g_chesttitan.m2", + text = "g_chesttitan.m2", fileId = "200953", text = "g_chesttitan.m2", }, { value = "g_controlconsoletonk.m2", + text = "g_controlconsoletonk.m2", fileId = "200956", text = "g_controlconsoletonk.m2", }, { value = "g_controlconsolezippelin.m2", + text = "g_controlconsolezippelin.m2", fileId = "200958", text = "g_controlconsolezippelin.m2", }, { value = "g_crate01.m2", + text = "g_crate01.m2", fileId = "200960", text = "g_crate01.m2", }, { value = "g_crate02.m2", + text = "g_crate02.m2", fileId = "200961", text = "g_crate02.m2", }, { value = "g_crateanimal.m2", + text = "g_crateanimal.m2", fileId = "200963", text = "g_crateanimal.m2", }, { value = "g_dragoneggblack.m2", + text = "g_dragoneggblack.m2", fileId = "200964", text = "g_dragoneggblack.m2", }, { value = "g_dragoneggfreeze.m2", + text = "g_dragoneggfreeze.m2", fileId = "200967", text = "g_dragoneggfreeze.m2", }, { value = "g_dragoneggprismatic01.m2", + text = "g_dragoneggprismatic01.m2", fileId = "200969", text = "g_dragoneggprismatic01.m2", }, { value = "g_dwarvenmemorial.m2", + text = "g_dwarvenmemorial.m2", fileId = "200971", text = "g_dwarvenmemorial.m2", }, { value = "g_eggalien.m2", + text = "g_eggalien.m2", fileId = "200973", text = "g_eggalien.m2", }, { value = "g_eggspider.m2", + text = "g_eggspider.m2", fileId = "200974", text = "g_eggspider.m2", }, { value = "g_epicbrazierblue.m2", + text = "g_epicbrazierblue.m2", fileId = "200976", text = "g_epicbrazierblue.m2", }, { value = "g_epicbrazieryellow.m2", + text = "g_epicbrazieryellow.m2", fileId = "200977", text = "g_epicbrazieryellow.m2", }, { value = "g_essencedistiller.m2", + text = "g_essencedistiller.m2", fileId = "200979", text = "g_essencedistiller.m2", }, { value = "g_explodingballista.m2", + text = "g_explodingballista.m2", fileId = "200980", text = "g_explodingballista.m2", }, { value = "g_explosivetrap.m2", + text = "g_explosivetrap.m2", fileId = "200981", text = "g_explosivetrap.m2", }, { value = "g_firework01blue.m2", + text = "g_firework01blue.m2", fileId = "200982", text = "g_firework01blue.m2", }, { value = "g_firework01green.m2", + text = "g_firework01green.m2", fileId = "200983", text = "g_firework01green.m2", }, { value = "g_firework01purple.m2", + text = "g_firework01purple.m2", fileId = "200984", text = "g_firework01purple.m2", }, { value = "g_firework01red.m2", + text = "g_firework01red.m2", fileId = "200985", text = "g_firework01red.m2", }, { value = "g_firework01white.m2", + text = "g_firework01white.m2", fileId = "200986", text = "g_firework01white.m2", }, { value = "g_firework01yellow.m2", + text = "g_firework01yellow.m2", fileId = "200987", text = "g_firework01yellow.m2", }, { value = "g_firework02blue.m2", + text = "g_firework02blue.m2", fileId = "200988", text = "g_firework02blue.m2", }, { value = "g_firework02green.m2", + text = "g_firework02green.m2", fileId = "200989", text = "g_firework02green.m2", }, { value = "g_firework02purple.m2", + text = "g_firework02purple.m2", fileId = "200990", text = "g_firework02purple.m2", }, { value = "g_firework02red.m2", + text = "g_firework02red.m2", fileId = "200991", text = "g_firework02red.m2", }, { value = "g_firework02white.m2", + text = "g_firework02white.m2", fileId = "200992", text = "g_firework02white.m2", }, { value = "g_firework02yellow.m2", + text = "g_firework02yellow.m2", fileId = "200993", text = "g_firework02yellow.m2", }, { value = "g_firework03red.m2", + text = "g_firework03red.m2", fileId = "200994", text = "g_firework03red.m2", }, { value = "g_fireworklauncher01.m2", + text = "g_fireworklauncher01.m2", fileId = "200995", text = "g_fireworklauncher01.m2", }, { value = "g_fireworklauncher02.m2", + text = "g_fireworklauncher02.m2", fileId = "200996", text = "g_fireworklauncher02.m2", }, { value = "g_fireworktwirlysmall01gold.m2", + text = "g_fireworktwirlysmall01gold.m2", fileId = "200998", text = "g_fireworktwirlysmall01gold.m2", }, { value = "g_fishingbobber.m2", + text = "g_fishingbobber.m2", fileId = "201000", text = "g_fishingbobber.m2", }, { value = "g_fissure.m2", + text = "g_fissure.m2", fileId = "201001", text = "g_fissure.m2", }, { value = "g_flarealliance.m2", + text = "g_flarealliance.m2", fileId = "201004", text = "g_flarealliance.m2", }, { value = "g_flarehorde.m2", + text = "g_flarehorde.m2", fileId = "201005", text = "g_flarehorde.m2", }, { value = "g_flyingmachine.m2", + text = "g_flyingmachine.m2", fileId = "201006", text = "g_flyingmachine.m2", }, { value = "g_foggerpoison.m2", + text = "g_foggerpoison.m2", fileId = "201007", text = "g_foggerpoison.m2", }, { value = "g_freezingtrap.m2", + text = "g_freezingtrap.m2", fileId = "201008", text = "g_freezingtrap.m2", }, { value = "g_frosttrap.m2", + text = "g_frosttrap.m2", fileId = "201009", text = "g_frosttrap.m2", }, { value = "g_ghost_01.m2", + text = "g_ghost_01.m2", fileId = "201012", text = "g_ghost_01.m2", }, { value = "g_ghosttrap.m2", + text = "g_ghosttrap.m2", fileId = "201014", text = "g_ghosttrap.m2", }, { value = "g_ghosttrapchest.m2", + text = "g_ghosttrapchest.m2", fileId = "201015", text = "g_ghosttrapchest.m2", }, { value = "g_gnomemultibox.m2", + text = "g_gnomemultibox.m2", fileId = "201018", text = "g_gnomemultibox.m2", }, { value = "g_gnomesparklematic.m2", + text = "g_gnomesparklematic.m2", fileId = "201020", text = "g_gnomesparklematic.m2", }, { value = "g_gnometerminal.m2", + text = "g_gnometerminal.m2", fileId = "201022", text = "g_gnometerminal.m2", }, { value = "g_goblinteleporter.m2", + text = "g_goblinteleporter.m2", fileId = "201026", text = "g_goblinteleporter.m2", }, { value = "g_gongrfd.m2", + text = "g_gongrfd.m2", fileId = "201028", text = "g_gongrfd.m2", }, { value = "g_gongtroll01.m2", + text = "g_gongtroll01.m2", fileId = "201029", text = "g_gongtroll01.m2", }, { value = "g_graveburst.m2", + text = "g_graveburst.m2", fileId = "201030", text = "g_graveburst.m2", }, { value = "g_gravebursttanaris.m2", + text = "g_gravebursttanaris.m2", fileId = "201032", text = "g_gravebursttanaris.m2", }, { value = "g_hangingskeleton_01.m2", + text = "g_hangingskeleton_01.m2", fileId = "201033", text = "g_hangingskeleton_01.m2", }, { value = "g_hologrambasetanaris.m2", + text = "g_hologrambasetanaris.m2", fileId = "201039", text = "g_hologrambasetanaris.m2", }, { value = "g_hologramdwarf.m2", + text = "g_hologramdwarf.m2", fileId = "201041", text = "g_hologramdwarf.m2", }, { value = "g_hologramtrogg.m2", + text = "g_hologramtrogg.m2", fileId = "201045", text = "g_hologramtrogg.m2", }, { value = "g_holylightwell.m2", + text = "g_holylightwell.m2", fileId = "201046", text = "g_holylightwell.m2", }, { value = "g_iceblock.m2", + text = "g_iceblock.m2", fileId = "201047", text = "g_iceblock.m2", }, { value = "g_immolationtrap.m2", + text = "g_immolationtrap.m2", fileId = "201049", text = "g_immolationtrap.m2", }, { value = "g_jewelblack.m2", + text = "g_jewelblack.m2", fileId = "201053", text = "g_jewelblack.m2", }, { value = "g_jewelblue.m2", + text = "g_jewelblue.m2", fileId = "201054", text = "g_jewelblue.m2", }, { value = "g_jewelred.m2", + text = "g_jewelred.m2", fileId = "201056", text = "g_jewelred.m2", }, { value = "g_keg.m2", + text = "g_keg.m2", fileId = "201058", text = "g_keg.m2", }, { value = "g_kruskspear.m2", + text = "g_kruskspear.m2", fileId = "201060", text = "g_kruskspear.m2", }, { value = "g_levermetal.m2", + text = "g_levermetal.m2", fileId = "201061", text = "g_levermetal.m2", }, { value = "g_manarift.m2", + text = "g_manarift.m2", fileId = "201062", text = "g_manarift.m2", }, { value = "g_mausoleumseal.m2", + text = "g_mausoleumseal.m2", fileId = "201067", text = "g_mausoleumseal.m2", }, { value = "g_mausoleumsealtrigger.m2", + text = "g_mausoleumsealtrigger.m2", fileId = "201070", text = "g_mausoleumsealtrigger.m2", }, { value = "g_minecar.m2", + text = "g_minecar.m2", fileId = "201072", text = "g_minecar.m2", }, { value = "g_mortar.m2", + text = "g_mortar.m2", fileId = "201073", text = "g_mortar.m2", }, { value = "g_necropolis.m2", + text = "g_necropolis.m2", fileId = "201077", text = "g_necropolis.m2", }, { value = "g_netablet.m2", + text = "g_netablet.m2", fileId = "201080", text = "g_netablet.m2", }, { value = "g_promotion_purple.m2", + text = "g_promotion_purple.m2", fileId = "201085", text = "g_promotion_purple.m2", }, { value = "g_pulsatingplant.m2", + text = "g_pulsatingplant.m2", fileId = "201087", text = "g_pulsatingplant.m2", }, { value = "g_pumpkin_01.m2", + text = "g_pumpkin_01.m2", fileId = "201088", text = "g_pumpkin_01.m2", }, { value = "g_pumpkin_02.m2", + text = "g_pumpkin_02.m2", fileId = "201089", text = "g_pumpkin_02.m2", }, { value = "g_pumpkin_03.m2", + text = "g_pumpkin_03.m2", fileId = "201090", text = "g_pumpkin_03.m2", }, { value = "g_relicnecat.m2", + text = "g_relicnecat.m2", fileId = "201092", text = "g_relicnecat.m2", }, { value = "g_relicnecup.m2", + text = "g_relicnecup.m2", fileId = "201093", text = "g_relicnecup.m2", }, { value = "g_relicnefigurine.m2", + text = "g_relicnefigurine.m2", fileId = "201094", text = "g_relicnefigurine.m2", }, { value = "g_relicnesphere.m2", + text = "g_relicnesphere.m2", fileId = "201095", text = "g_relicnesphere.m2", }, { value = "g_ritualofdoom.m2", + text = "g_ritualofdoom.m2", fileId = "201097", text = "g_ritualofdoom.m2", }, { value = "g_runeblue01.m2", + text = "g_runeblue01.m2", fileId = "201101", text = "g_runeblue01.m2", }, { value = "g_runegroundblue01.m2", + text = "g_runegroundblue01.m2", fileId = "201103", text = "g_runegroundblue01.m2", }, { value = "g_runegroundgreen01.m2", + text = "g_runegroundgreen01.m2", fileId = "201104", text = "g_runegroundgreen01.m2", }, { value = "g_runegroundpurple01.m2", + text = "g_runegroundpurple01.m2", fileId = "201106", text = "g_runegroundpurple01.m2", }, { value = "g_scourgerunecirclecrystal.m2", + text = "g_scourgerunecirclecrystal.m2", fileId = "201111", text = "g_scourgerunecirclecrystal.m2", }, { value = "g_scroll01.m2", + text = "g_scroll01.m2", fileId = "201113", text = "g_scroll01.m2", }, { value = "g_scryingbowl.m2", + text = "g_scryingbowl.m2", fileId = "201115", text = "g_scryingbowl.m2", }, { value = "g_soundobject.m2", + text = "g_soundobject.m2", fileId = "201118", text = "g_soundobject.m2", }, { value = "g_soundportal.m2", + text = "g_soundportal.m2", fileId = "201119", text = "g_soundportal.m2", }, { value = "g_sporemushroom.m2", + text = "g_sporemushroom.m2", fileId = "201124", text = "g_sporemushroom.m2", }, { value = "g_stonesofbinding.m2", + text = "g_stonesofbinding.m2", fileId = "201125", text = "g_stonesofbinding.m2", }, { value = "g_tentburninator.m2", + text = "g_tentburninator.m2", fileId = "201127", text = "g_tentburninator.m2", }, { value = "g_torch01.m2", + text = "g_torch01.m2", fileId = "201129", text = "g_torch01.m2", }, { value = "g_torchlever.m2", + text = "g_torchlever.m2", fileId = "201130", text = "g_torchlever.m2", }, { value = "g_trapcannonfloor.m2", + text = "g_trapcannonfloor.m2", fileId = "201132", text = "g_trapcannonfloor.m2", }, { value = "g_uldamanmap.m2", + text = "g_uldamanmap.m2", fileId = "201133", text = "g_uldamanmap.m2", }, { value = "g_voodootrollforcefield.m2", + text = "g_voodootrollforcefield.m2", fileId = "201136", text = "g_voodootrollforcefield.m2", }, { value = "g_watermelon.m2", + text = "g_watermelon.m2", fileId = "201142", text = "g_watermelon.m2", }, { value = "g_witchbroom_01.m2", + text = "g_witchbroom_01.m2", fileId = "201144", text = "g_witchbroom_01.m2", }, { value = "g_witchhat_01.m2", + text = "g_witchhat_01.m2", fileId = "201145", text = "g_witchhat_01.m2", }, { value = "g_xmastree.m2", + text = "g_xmastree.m2", fileId = "201146", text = "g_xmastree.m2", }, { value = "landminealteracvalley.m2", + text = "landminealteracvalley.m2", fileId = "201156", text = "landminealteracvalley.m2", }, @@ -45433,18 +54237,23 @@ WeakAuras.ModelPaths = { }, { value = "kalimdor", + text = "kalimdor", children = { { value = "ashenvale", + text = "ashenvale", children = { { value = "activedoodads", + text = "activedoodads", children = { { value = "mannarothspear", + text = "mannarothspear", children = { { value = "ashenvalemannarothspear.m2", + text = "ashenvalemannarothspear.m2", fileId = "201190", text = "ashenvalemannarothspear.m2", }, @@ -45456,27 +54265,33 @@ WeakAuras.ModelPaths = { }, { value = "passivedoodads", + text = "passivedoodads", children = { { value = "ashenvalerocks", + text = "ashenvalerocks", children = { { value = "ashenvalerock01.m2", + text = "ashenvalerock01.m2", fileId = "201195", text = "ashenvalerock01.m2", }, { value = "ashenvalerock02.m2", + text = "ashenvalerock02.m2", fileId = "201196", text = "ashenvalerock02.m2", }, { value = "ashenvalerock03.m2", + text = "ashenvalerock03.m2", fileId = "201197", text = "ashenvalerock03.m2", }, { value = "ashenvalerock04.m2", + text = "ashenvalerock04.m2", fileId = "201198", text = "ashenvalerock04.m2", }, @@ -45485,24 +54300,29 @@ WeakAuras.ModelPaths = { }, { value = "ashenvaleroots", + text = "ashenvaleroots", children = { { value = "ashenvaleroots01.m2", + text = "ashenvaleroots01.m2", fileId = "201201", text = "ashenvaleroots01.m2", }, { value = "ashenvaleroots02.m2", + text = "ashenvaleroots02.m2", fileId = "201202", text = "ashenvaleroots02.m2", }, { value = "ashenvaleroots03.m2", + text = "ashenvaleroots03.m2", fileId = "201203", text = "ashenvaleroots03.m2", }, { value = "ashenvaleroots04.m2", + text = "ashenvaleroots04.m2", fileId = "201204", text = "ashenvaleroots04.m2", }, @@ -45511,34 +54331,41 @@ WeakAuras.ModelPaths = { }, { value = "ashenvalestumps", + text = "ashenvalestumps", children = { { value = "ashenvalestump01.m2", + text = "ashenvalestump01.m2", fileId = "201208", text = "ashenvalestump01.m2", }, { value = "ashenvalestump02.m2", + text = "ashenvalestump02.m2", fileId = "201209", text = "ashenvalestump02.m2", }, { value = "ashenvaletreestump01.m2", + text = "ashenvaletreestump01.m2", fileId = "201211", text = "ashenvaletreestump01.m2", }, { value = "ashenvaletreestump02.m2", + text = "ashenvaletreestump02.m2", fileId = "201212", text = "ashenvaletreestump02.m2", }, { value = "ashenvaletreestump03.m2", + text = "ashenvaletreestump03.m2", fileId = "201213", text = "ashenvaletreestump03.m2", }, { value = "ashenvaletreestump04.m2", + text = "ashenvaletreestump04.m2", fileId = "201214", text = "ashenvaletreestump04.m2", }, @@ -45547,14 +54374,17 @@ WeakAuras.ModelPaths = { }, { value = "ashenvaletreelogs", + text = "ashenvaletreelogs", children = { { value = "ashenvaletreelog01.m2", + text = "ashenvaletreelog01.m2", fileId = "201217", text = "ashenvaletreelog01.m2", }, { value = "ashenvaletreelog02.m2", + text = "ashenvaletreelog02.m2", fileId = "201218", text = "ashenvaletreelog02.m2", }, @@ -45563,39 +54393,47 @@ WeakAuras.ModelPaths = { }, { value = "ashenvaletrees", + text = "ashenvaletrees", children = { { value = "ashenvalecuttree01.m2", + text = "ashenvalecuttree01.m2", fileId = "201221", text = "ashenvalecuttree01.m2", }, { value = "ashenvalecuttree02.m2", + text = "ashenvalecuttree02.m2", fileId = "201222", text = "ashenvalecuttree02.m2", }, { value = "ashenvaletree01.m2", + text = "ashenvaletree01.m2", fileId = "201223", text = "ashenvaletree01.m2", }, { value = "ashenvaletree02.m2", + text = "ashenvaletree02.m2", fileId = "201224", text = "ashenvaletree02.m2", }, { value = "ashenvaletree03.m2", + text = "ashenvaletree03.m2", fileId = "201226", text = "ashenvaletree03.m2", }, { value = "ashenvaletree04.m2", + text = "ashenvaletree04.m2", fileId = "201228", text = "ashenvaletree04.m2", }, { value = "ashenvaletree05.m2", + text = "ashenvaletree05.m2", fileId = "201230", text = "ashenvaletree05.m2", }, @@ -45604,9 +54442,11 @@ WeakAuras.ModelPaths = { }, { value = "bush", + text = "bush", children = { { value = "ashenvaleplantstardust.m2", + text = "ashenvaleplantstardust.m2", fileId = "201233", text = "ashenvaleplantstardust.m2", }, @@ -45615,59 +54455,71 @@ WeakAuras.ModelPaths = { }, { value = "satyrruins", + text = "satyrruins", children = { { value = "ruinssatyraltpillar01.m2", + text = "ruinssatyraltpillar01.m2", fileId = "201235", text = "ruinssatyraltpillar01.m2", }, { value = "ruinssatyrarch.m2", + text = "ruinssatyrarch.m2", fileId = "201236", text = "ruinssatyrarch.m2", }, { value = "ruinssatyrpillar01.m2", + text = "ruinssatyrpillar01.m2", fileId = "201238", text = "ruinssatyrpillar01.m2", }, { value = "ruinssatyrpillar02.m2", + text = "ruinssatyrpillar02.m2", fileId = "201240", text = "ruinssatyrpillar02.m2", }, { value = "ruinssatyrpillar03.m2", + text = "ruinssatyrpillar03.m2", fileId = "201241", text = "ruinssatyrpillar03.m2", }, { value = "ruinssatyrwall01.m2", + text = "ruinssatyrwall01.m2", fileId = "201246", text = "ruinssatyrwall01.m2", }, { value = "ruinssatyrwall02.m2", + text = "ruinssatyrwall02.m2", fileId = "201247", text = "ruinssatyrwall02.m2", }, { value = "ruinssatyrwall03.m2", + text = "ruinssatyrwall03.m2", fileId = "201248", text = "ruinssatyrwall03.m2", }, { value = "ruinssatyrwall04.m2", + text = "ruinssatyrwall04.m2", fileId = "201249", text = "ruinssatyrwall04.m2", }, { value = "ruinssatyrwall05.m2", + text = "ruinssatyrwall05.m2", fileId = "201250", text = "ruinssatyrwall05.m2", }, { value = "ruinssatyrwall06.m2", + text = "ruinssatyrwall06.m2", fileId = "201251", text = "ruinssatyrwall06.m2", }, @@ -45676,29 +54528,35 @@ WeakAuras.ModelPaths = { }, { value = "satyrtotem", + text = "satyrtotem", children = { { value = "ashensatyrtotem01.m2", + text = "ashensatyrtotem01.m2", fileId = "201252", text = "ashensatyrtotem01.m2", }, { value = "ashensatyrtotem02.m2", + text = "ashensatyrtotem02.m2", fileId = "201253", text = "ashensatyrtotem02.m2", }, { value = "ashensatyrtotem03.m2", + text = "ashensatyrtotem03.m2", fileId = "201254", text = "ashensatyrtotem03.m2", }, { value = "ashensatyrtotem04.m2", + text = "ashensatyrtotem04.m2", fileId = "201255", text = "ashensatyrtotem04.m2", }, { value = "ashensatyrtotem05.m2", + text = "ashensatyrtotem05.m2", fileId = "201256", text = "ashensatyrtotem05.m2", }, @@ -45707,29 +54565,35 @@ WeakAuras.ModelPaths = { }, { value = "shrines", + text = "shrines", children = { { value = "corruptdryadshrine01.m2", + text = "corruptdryadshrine01.m2", fileId = "201263", text = "corruptdryadshrine01.m2", }, { value = "dryadshrine01.m2", + text = "dryadshrine01.m2", fileId = "201264", text = "dryadshrine01.m2", }, { value = "dryadshrine02.m2", + text = "dryadshrine02.m2", fileId = "201265", text = "dryadshrine02.m2", }, { value = "neshrine.m2", + text = "neshrine.m2", fileId = "201267", text = "neshrine.m2", }, { value = "neshrinesatyr.m2", + text = "neshrinesatyr.m2", fileId = "201269", text = "neshrinesatyr.m2", }, @@ -45744,15 +54608,19 @@ WeakAuras.ModelPaths = { }, { value = "azshara", + text = "azshara", children = { { value = "activedoodads", + text = "activedoodads", children = { { value = "arcanecrystal", + text = "arcanecrystal", children = { { value = "arcanecrystal.m2", + text = "arcanecrystal.m2", fileId = "201271", text = "arcanecrystal.m2", }, @@ -45761,24 +54629,29 @@ WeakAuras.ModelPaths = { }, { value = "stonetablets", + text = "stonetablets", children = { { value = "azsharastonetablet01.m2", + text = "azsharastonetablet01.m2", fileId = "201273", text = "azsharastonetablet01.m2", }, { value = "azsharastonetablet02.m2", + text = "azsharastonetablet02.m2", fileId = "201275", text = "azsharastonetablet02.m2", }, { value = "azsharastonetablet03.m2", + text = "azsharastonetablet03.m2", fileId = "201276", text = "azsharastonetablet03.m2", }, { value = "azsharastonetablet04.m2", + text = "azsharastonetablet04.m2", fileId = "201277", text = "azsharastonetablet04.m2", }, @@ -45790,22 +54663,27 @@ WeakAuras.ModelPaths = { }, { value = "passivedoodads", + text = "passivedoodads", children = { { value = "anemone", + text = "anemone", children = { { value = "anemone01.m2", + text = "anemone01.m2", fileId = "201279", text = "anemone01.m2", }, { value = "anemone02.m2", + text = "anemone02.m2", fileId = "201280", text = "anemone02.m2", }, { value = "seaurchin01.m2", + text = "seaurchin01.m2", fileId = "201281", text = "seaurchin01.m2", }, @@ -45814,9 +54692,11 @@ WeakAuras.ModelPaths = { }, { value = "barnaclerock", + text = "barnaclerock", children = { { value = "barnaclerock01.m2", + text = "barnaclerock01.m2", fileId = "201284", text = "barnaclerock01.m2", }, @@ -45825,14 +54705,17 @@ WeakAuras.ModelPaths = { }, { value = "bubbles", + text = "bubbles", children = { { value = "azsharabubble2.m2", + text = "azsharabubble2.m2", fileId = "201285", text = "azsharabubble2.m2", }, { value = "azsharabubbles.m2", + text = "azsharabubbles.m2", fileId = "201286", text = "azsharabubbles.m2", }, @@ -45841,19 +54724,23 @@ WeakAuras.ModelPaths = { }, { value = "coral", + text = "coral", children = { { value = "coral01.m2", + text = "coral01.m2", fileId = "201288", text = "coral01.m2", }, { value = "coraltree01.m2", + text = "coraltree01.m2", fileId = "201292", text = "coraltree01.m2", }, { value = "coraltree02.m2", + text = "coraltree02.m2", fileId = "201293", text = "coraltree02.m2", }, @@ -45862,9 +54749,11 @@ WeakAuras.ModelPaths = { }, { value = "debriswall", + text = "debriswall", children = { { value = "azsharadebriswall.m2", + text = "azsharadebriswall.m2", fileId = "201295", text = "azsharadebriswall.m2", }, @@ -45873,14 +54762,17 @@ WeakAuras.ModelPaths = { }, { value = "dragonstatues", + text = "dragonstatues", children = { { value = "azharadragonstatue_01.m2", + text = "azharadragonstatue_01.m2", fileId = "201299", text = "azharadragonstatue_01.m2", }, { value = "azharadragonstatue_02.m2", + text = "azharadragonstatue_02.m2", fileId = "201300", text = "azharadragonstatue_02.m2", }, @@ -45889,14 +54781,17 @@ WeakAuras.ModelPaths = { }, { value = "nagaflags", + text = "nagaflags", children = { { value = "nagaflag01.m2", + text = "nagaflag01.m2", fileId = "201302", text = "nagaflag01.m2", }, { value = "nagaflag02.m2", + text = "nagaflag02.m2", fileId = "201303", text = "nagaflag02.m2", }, @@ -45905,9 +54800,11 @@ WeakAuras.ModelPaths = { }, { value = "nagapagoda", + text = "nagapagoda", children = { { value = "nagapagoda02.m2", + text = "nagapagoda02.m2", fileId = "201304", text = "nagapagoda02.m2", }, @@ -45916,29 +54813,35 @@ WeakAuras.ModelPaths = { }, { value = "rocks", + text = "rocks", children = { { value = "azshararock01.m2", + text = "azshararock01.m2", fileId = "201305", text = "azshararock01.m2", }, { value = "azshararock02.m2", + text = "azshararock02.m2", fileId = "201306", text = "azshararock02.m2", }, { value = "azshararock03.m2", + text = "azshararock03.m2", fileId = "201307", text = "azshararock03.m2", }, { value = "azshararock04.m2", + text = "azshararock04.m2", fileId = "201308", text = "azshararock04.m2", }, { value = "azshararock05.m2", + text = "azshararock05.m2", fileId = "201309", text = "azshararock05.m2", }, @@ -45947,44 +54850,53 @@ WeakAuras.ModelPaths = { }, { value = "seashells", + text = "seashells", children = { { value = "azsharashell01.m2", + text = "azsharashell01.m2", fileId = "201310", text = "azsharashell01.m2", }, { value = "azsharashell02.m2", + text = "azsharashell02.m2", fileId = "201312", text = "azsharashell02.m2", }, { value = "azsharashell03.m2", + text = "azsharashell03.m2", fileId = "201314", text = "azsharashell03.m2", }, { value = "azsharashell04.m2", + text = "azsharashell04.m2", fileId = "201316", text = "azsharashell04.m2", }, { value = "azsharashell05.m2", + text = "azsharashell05.m2", fileId = "201318", text = "azsharashell05.m2", }, { value = "azsharashell06.m2", + text = "azsharashell06.m2", fileId = "201319", text = "azsharashell06.m2", }, { value = "azsharashell07.m2", + text = "azsharashell07.m2", fileId = "201321", text = "azsharashell07.m2", }, { value = "azsharashell08.m2", + text = "azsharashell08.m2", fileId = "201323", text = "azsharashell08.m2", }, @@ -45993,14 +54905,17 @@ WeakAuras.ModelPaths = { }, { value = "seaweed", + text = "seaweed", children = { { value = "seaweed01.m2", + text = "seaweed01.m2", fileId = "2198499", text = "seaweed01.m2", }, { value = "seaweed02.m2", + text = "seaweed02.m2", fileId = "2198548", text = "seaweed02.m2", }, @@ -46009,9 +54924,11 @@ WeakAuras.ModelPaths = { }, { value = "starfish", + text = "starfish", children = { { value = "starfish02.m2", + text = "starfish02.m2", fileId = "201331", text = "starfish02.m2", }, @@ -46020,39 +54937,47 @@ WeakAuras.ModelPaths = { }, { value = "trees", + text = "trees", children = { { value = "azr_tree01.m2", + text = "azr_tree01.m2", fileId = "201332", text = "azr_tree01.m2", }, { value = "azr_tree02.m2", + text = "azr_tree02.m2", fileId = "201333", text = "azr_tree02.m2", }, { value = "azr_tree03.m2", + text = "azr_tree03.m2", fileId = "201334", text = "azr_tree03.m2", }, { value = "azr_tree04.m2", + text = "azr_tree04.m2", fileId = "201335", text = "azr_tree04.m2", }, { value = "azr_tree05.m2", + text = "azr_tree05.m2", fileId = "201336", text = "azr_tree05.m2", }, { value = "azr_tree06.m2", + text = "azr_tree06.m2", fileId = "201337", text = "azr_tree06.m2", }, { value = "azr_tree07.m2", + text = "azr_tree07.m2", fileId = "201338", text = "azr_tree07.m2", }, @@ -46064,12 +54989,15 @@ WeakAuras.ModelPaths = { }, { value = "seaplants", + text = "seaplants", children = { { value = "anemity01_02000", + text = "anemity01_02000", children = { { value = "anemity01_02.m2", + text = "anemity01_02.m2", fileId = "201351", text = "anemity01_02.m2", }, @@ -46078,9 +55006,11 @@ WeakAuras.ModelPaths = { }, { value = "barnaclerock01_04", + text = "barnaclerock01_04", children = { { value = "barnaclerock01_04.m2", + text = "barnaclerock01_04.m2", fileId = "201352", text = "barnaclerock01_04.m2", }, @@ -46089,9 +55019,11 @@ WeakAuras.ModelPaths = { }, { value = "coral03_01", + text = "coral03_01", children = { { value = "coral03_01.m2", + text = "coral03_01.m2", fileId = "201354", text = "coral03_01.m2", }, @@ -46100,9 +55032,11 @@ WeakAuras.ModelPaths = { }, { value = "coraltree01_06", + text = "coraltree01_06", children = { { value = "coraltree01_06.m2", + text = "coraltree01_06.m2", fileId = "201355", text = "coraltree01_06.m2", }, @@ -46111,9 +55045,11 @@ WeakAuras.ModelPaths = { }, { value = "coraltree02_07", + text = "coraltree02_07", children = { { value = "coraltree02_07.m2", + text = "coraltree02_07.m2", fileId = "201356", text = "coraltree02_07.m2", }, @@ -46122,9 +55058,11 @@ WeakAuras.ModelPaths = { }, { value = "seaurchin01_05", + text = "seaurchin01_05", children = { { value = "seaurchin01_05.m2", + text = "seaurchin01_05.m2", fileId = "201357", text = "seaurchin01_05.m2", }, @@ -46133,9 +55071,11 @@ WeakAuras.ModelPaths = { }, { value = "starfish01_02", + text = "starfish01_02", children = { { value = "starfish01_02.m2", + text = "starfish01_02.m2", fileId = "201358", text = "starfish01_02.m2", }, @@ -46150,35 +55090,43 @@ WeakAuras.ModelPaths = { }, { value = "barrens", + text = "barrens", children = { { value = "passivedoodads", + text = "passivedoodads", children = { { value = "bones", + text = "bones", children = { { value = "kotobeastbone01.m2", + text = "kotobeastbone01.m2", fileId = "201363", text = "kotobeastbone01.m2", }, { value = "kotobeastbone02.m2", + text = "kotobeastbone02.m2", fileId = "201364", text = "kotobeastbone02.m2", }, { value = "kotobeastbone03.m2", + text = "kotobeastbone03.m2", fileId = "201365", text = "kotobeastbone03.m2", }, { value = "kotobeastbone04.m2", + text = "kotobeastbone04.m2", fileId = "201366", text = "kotobeastbone04.m2", }, { value = "kotobeastbone05.m2", + text = "kotobeastbone05.m2", fileId = "201367", text = "kotobeastbone05.m2", }, @@ -46187,19 +55135,23 @@ WeakAuras.ModelPaths = { }, { value = "bushes", + text = "bushes", children = { { value = "barrensbush01.m2", + text = "barrensbush01.m2", fileId = "201370", text = "barrensbush01.m2", }, { value = "barrensbush02.m2", + text = "barrensbush02.m2", fileId = "201371", text = "barrensbush02.m2", }, { value = "barrensbush03.m2", + text = "barrensbush03.m2", fileId = "201372", text = "barrensbush03.m2", }, @@ -46208,14 +55160,17 @@ WeakAuras.ModelPaths = { }, { value = "kodoeggs", + text = "kodoeggs", children = { { value = "kodoegg01.m2", + text = "kodoegg01.m2", fileId = "201375", text = "kodoegg01.m2", }, { value = "kodoegg02.m2", + text = "kodoegg02.m2", fileId = "201376", text = "kodoegg02.m2", }, @@ -46224,9 +55179,11 @@ WeakAuras.ModelPaths = { }, { value = "lampposts", + text = "lampposts", children = { { value = "barrenslamppost01.m2", + text = "barrenslamppost01.m2", fileId = "201377", text = "barrenslamppost01.m2", }, @@ -46235,9 +55192,11 @@ WeakAuras.ModelPaths = { }, { value = "mkshrine", + text = "mkshrine", children = { { value = "mkshrine.m2", + text = "mkshrine.m2", fileId = "201380", text = "mkshrine.m2", }, @@ -46246,24 +55205,29 @@ WeakAuras.ModelPaths = { }, { value = "mounds", + text = "mounds", children = { { value = "barrenstermitemound01.m2", + text = "barrenstermitemound01.m2", fileId = "201383", text = "barrenstermitemound01.m2", }, { value = "barrenstermitemound02.m2", + text = "barrenstermitemound02.m2", fileId = "201384", text = "barrenstermitemound02.m2", }, { value = "barrenstermitemound03.m2", + text = "barrenstermitemound03.m2", fileId = "201385", text = "barrenstermitemound03.m2", }, { value = "barrenstermitemound04.m2", + text = "barrenstermitemound04.m2", fileId = "201386", text = "barrenstermitemound04.m2", }, @@ -46272,14 +55236,17 @@ WeakAuras.ModelPaths = { }, { value = "raptorhuts", + text = "raptorhuts", children = { { value = "raptorhut01.m2", + text = "raptorhut01.m2", fileId = "201389", text = "raptorhut01.m2", }, { value = "raptorhut02.m2", + text = "raptorhut02.m2", fileId = "201390", text = "raptorhut02.m2", }, @@ -46288,54 +55255,65 @@ WeakAuras.ModelPaths = { }, { value = "trees", + text = "trees", children = { { value = "barrenstree01.m2", + text = "barrenstree01.m2", fileId = "201394", text = "barrenstree01.m2", }, { value = "barrenstree02.m2", + text = "barrenstree02.m2", fileId = "201396", text = "barrenstree02.m2", }, { value = "barrenstree03.m2", + text = "barrenstree03.m2", fileId = "201398", text = "barrenstree03.m2", }, { value = "barrenstree04.m2", + text = "barrenstree04.m2", fileId = "201399", text = "barrenstree04.m2", }, { value = "barrenstree05.m2", + text = "barrenstree05.m2", fileId = "201400", text = "barrenstree05.m2", }, { value = "barrenstree06.m2", + text = "barrenstree06.m2", fileId = "201402", text = "barrenstree06.m2", }, { value = "barrenstree07.m2", + text = "barrenstree07.m2", fileId = "201403", text = "barrenstree07.m2", }, { value = "barrenstree08.m2", + text = "barrenstree08.m2", fileId = "201405", text = "barrenstree08.m2", }, { value = "barrenstree09.m2", + text = "barrenstree09.m2", fileId = "201406", text = "barrenstree09.m2", }, { value = "barrenstree10.m2", + text = "barrenstree10.m2", fileId = "201407", text = "barrenstree10.m2", }, @@ -46344,24 +55322,29 @@ WeakAuras.ModelPaths = { }, { value = "wagon", + text = "wagon", children = { { value = "barrensbustedwagon.m2", + text = "barrensbustedwagon.m2", fileId = "201413", text = "barrensbustedwagon.m2", }, { value = "barrenswagon01.m2", + text = "barrenswagon01.m2", fileId = "201416", text = "barrenswagon01.m2", }, { value = "barrenswagon02.m2", + text = "barrenswagon02.m2", fileId = "201417", text = "barrenswagon02.m2", }, { value = "barrenswagon03.m2", + text = "barrenswagon03.m2", fileId = "201418", text = "barrenswagon03.m2", }, @@ -46370,9 +55353,11 @@ WeakAuras.ModelPaths = { }, { value = "waterwheel", + text = "waterwheel", children = { { value = "orc_waterwheel.m2", + text = "orc_waterwheel.m2", fileId = "201421", text = "orc_waterwheel.m2", }, @@ -46387,15 +55372,19 @@ WeakAuras.ModelPaths = { }, { value = "blackfathom", + text = "blackfathom", children = { { value = "passivedoodads", + text = "passivedoodads", children = { { value = "braziers", + text = "braziers", children = { { value = "bfd_nagabrazier.m2", + text = "bfd_nagabrazier.m2", fileId = "201422", text = "bfd_nagabrazier.m2", }, @@ -46404,19 +55393,23 @@ WeakAuras.ModelPaths = { }, { value = "furniture", + text = "furniture", children = { { value = "bfd_stonechair01.m2", + text = "bfd_stonechair01.m2", fileId = "201424", text = "bfd_stonechair01.m2", }, { value = "bfd_stonechair02.m2", + text = "bfd_stonechair02.m2", fileId = "201425", text = "bfd_stonechair02.m2", }, { value = "bfd_stonechair03.m2", + text = "bfd_stonechair03.m2", fileId = "201426", text = "bfd_stonechair03.m2", }, @@ -46425,69 +55418,83 @@ WeakAuras.ModelPaths = { }, { value = "lights", + text = "lights", children = { { value = "bfd_walllight01.m2", + text = "bfd_walllight01.m2", fileId = "201429", text = "bfd_walllight01.m2", }, { value = "bfd_walllight03.m2", + text = "bfd_walllight03.m2", fileId = "201430", text = "bfd_walllight03.m2", }, { value = "bfd_walllight04.m2", + text = "bfd_walllight04.m2", fileId = "201431", text = "bfd_walllight04.m2", }, { value = "bfd_walllight05.m2", + text = "bfd_walllight05.m2", fileId = "201432", text = "bfd_walllight05.m2", }, { value = "bfd_walllight06.m2", + text = "bfd_walllight06.m2", fileId = "201433", text = "bfd_walllight06.m2", }, { value = "bfd_walllight07.m2", + text = "bfd_walllight07.m2", fileId = "201434", text = "bfd_walllight07.m2", }, { value = "bfd_walltorch01.m2", + text = "bfd_walltorch01.m2", fileId = "201435", text = "bfd_walltorch01.m2", }, { value = "bfd_wisp01.m2", + text = "bfd_wisp01.m2", fileId = "201436", text = "bfd_wisp01.m2", }, { value = "bfd_wisplarge.m2", + text = "bfd_wisplarge.m2", fileId = "201437", text = "bfd_wisplarge.m2", }, { value = "bfd_wispmed.m2", + text = "bfd_wispmed.m2", fileId = "201438", text = "bfd_wispmed.m2", }, { value = "bfd_wispsmall.m2", + text = "bfd_wispsmall.m2", fileId = "201439", text = "bfd_wispsmall.m2", }, { value = "bfd_wispsmallgreen.m2", + text = "bfd_wispsmallgreen.m2", fileId = "201440", text = "bfd_wispsmallgreen.m2", }, { value = "bfd_wispsmallpurple.m2", + text = "bfd_wispsmallpurple.m2", fileId = "201441", text = "bfd_wispsmallpurple.m2", }, @@ -46496,34 +55503,41 @@ WeakAuras.ModelPaths = { }, { value = "pottery", + text = "pottery", children = { { value = "bfd_brokenpottery01.m2", + text = "bfd_brokenpottery01.m2", fileId = "201445", text = "bfd_brokenpottery01.m2", }, { value = "bfd_brokenpottery02.m2", + text = "bfd_brokenpottery02.m2", fileId = "201446", text = "bfd_brokenpottery02.m2", }, { value = "blackfathom_pot01.m2", + text = "blackfathom_pot01.m2", fileId = "201447", text = "blackfathom_pot01.m2", }, { value = "blackfathom_pot02.m2", + text = "blackfathom_pot02.m2", fileId = "201448", text = "blackfathom_pot02.m2", }, { value = "blackfathom_pot03.m2", + text = "blackfathom_pot03.m2", fileId = "201449", text = "blackfathom_pot03.m2", }, { value = "blackfathom_pot04.m2", + text = "blackfathom_pot04.m2", fileId = "201450", text = "blackfathom_pot04.m2", }, @@ -46532,9 +55546,11 @@ WeakAuras.ModelPaths = { }, { value = "statue", + text = "statue", children = { { value = "bfd_statuenagapriestess.m2", + text = "bfd_statuenagapriestess.m2", fileId = "201452", text = "bfd_statuenagapriestess.m2", }, @@ -46543,59 +55559,71 @@ WeakAuras.ModelPaths = { }, { value = "waterfalls", + text = "waterfalls", children = { { value = "bfd_waterfalls01.m2", + text = "bfd_waterfalls01.m2", fileId = "201455", text = "bfd_waterfalls01.m2", }, { value = "bfd_waterfalls02.m2", + text = "bfd_waterfalls02.m2", fileId = "201456", text = "bfd_waterfalls02.m2", }, { value = "bfd_waterfalls03.m2", + text = "bfd_waterfalls03.m2", fileId = "201457", text = "bfd_waterfalls03.m2", }, { value = "bfd_waterfalls04.m2", + text = "bfd_waterfalls04.m2", fileId = "201458", text = "bfd_waterfalls04.m2", }, { value = "bfd_waterfalls05.m2", + text = "bfd_waterfalls05.m2", fileId = "201459", text = "bfd_waterfalls05.m2", }, { value = "bfd_waterfalls06.m2", + text = "bfd_waterfalls06.m2", fileId = "201460", text = "bfd_waterfalls06.m2", }, { value = "bfd_waterfalls07.m2", + text = "bfd_waterfalls07.m2", fileId = "201461", text = "bfd_waterfalls07.m2", }, { value = "bfd_waterfalls08.m2", + text = "bfd_waterfalls08.m2", fileId = "201462", text = "bfd_waterfalls08.m2", }, { value = "bfd_waterfalls09.m2", + text = "bfd_waterfalls09.m2", fileId = "201463", text = "bfd_waterfalls09.m2", }, { value = "bfd_waterfalls10.m2", + text = "bfd_waterfalls10.m2", fileId = "201464", text = "bfd_waterfalls10.m2", }, { value = "bfd_waterfalls11.m2", + text = "bfd_waterfalls11.m2", fileId = "201465", text = "bfd_waterfalls11.m2", }, @@ -46610,17 +55638,21 @@ WeakAuras.ModelPaths = { }, { value = "buildings", + text = "buildings", children = { { value = "desolace", + text = "desolace", children = { { value = "centaurhorncover.m2", + text = "centaurhorncover.m2", fileId = "201468", text = "centaurhorncover.m2", }, { value = "centaurhornmouthpiece.m2", + text = "centaurhornmouthpiece.m2", fileId = "201469", text = "centaurhornmouthpiece.m2", }, @@ -46632,15 +55664,19 @@ WeakAuras.ModelPaths = { }, { value = "darkshore", + text = "darkshore", children = { { value = "activedoodads", + text = "activedoodads", children = { { value = "illidancrystal", + text = "illidancrystal", children = { { value = "illidancrystal01.m2", + text = "illidancrystal01.m2", fileId = "201472", text = "illidancrystal01.m2", }, @@ -46652,14 +55688,17 @@ WeakAuras.ModelPaths = { }, { value = "giantseaturtle", + text = "giantseaturtle", children = { { value = "giantseaturtle03.m2", + text = "giantseaturtle03.m2", fileId = "201475", text = "giantseaturtle03.m2", }, { value = "giantseaturtle04.m2", + text = "giantseaturtle04.m2", fileId = "201476", text = "giantseaturtle04.m2", }, @@ -46668,9 +55707,11 @@ WeakAuras.ModelPaths = { }, { value = "giantsnakeskulls", + text = "giantsnakeskulls", children = { { value = "snakeskullgiant.m2", + text = "snakeskullgiant.m2", fileId = "201486", text = "snakeskullgiant.m2", }, @@ -46679,19 +55720,23 @@ WeakAuras.ModelPaths = { }, { value = "giantsnakespines", + text = "giantsnakespines", children = { { value = "snakespinegiant01.m2", + text = "snakespinegiant01.m2", fileId = "201487", text = "snakespinegiant01.m2", }, { value = "snakespinegiant02.m2", + text = "snakespinegiant02.m2", fileId = "201488", text = "snakespinegiant02.m2", }, { value = "snakespinegiant03.m2", + text = "snakespinegiant03.m2", fileId = "201489", text = "snakespinegiant03.m2", }, @@ -46700,12 +55745,15 @@ WeakAuras.ModelPaths = { }, { value = "passivedoodads", + text = "passivedoodads", children = { { value = "anchors", + text = "anchors", children = { { value = "darkshoreanchor01.m2", + text = "darkshoreanchor01.m2", fileId = "201490", text = "darkshoreanchor01.m2", }, @@ -46714,9 +55762,11 @@ WeakAuras.ModelPaths = { }, { value = "boats", + text = "boats", children = { { value = "darkshoreboat.m2", + text = "darkshoreboat.m2", fileId = "201493", text = "darkshoreboat.m2", }, @@ -46725,29 +55775,35 @@ WeakAuras.ModelPaths = { }, { value = "bushes", + text = "bushes", children = { { value = "darkshorebush01.m2", + text = "darkshorebush01.m2", fileId = "201494", text = "darkshorebush01.m2", }, { value = "darkshorebush02.m2", + text = "darkshorebush02.m2", fileId = "201495", text = "darkshorebush02.m2", }, { value = "darkshorebush03.m2", + text = "darkshorebush03.m2", fileId = "201496", text = "darkshorebush03.m2", }, { value = "darkshorebush04.m2", + text = "darkshorebush04.m2", fileId = "201497", text = "darkshorebush04.m2", }, { value = "darkshorebush05.m2", + text = "darkshorebush05.m2", fileId = "201498", text = "darkshorebush05.m2", }, @@ -46756,14 +55812,17 @@ WeakAuras.ModelPaths = { }, { value = "darkshorelogs", + text = "darkshorelogs", children = { { value = "darkshorelog01.m2", + text = "darkshorelog01.m2", fileId = "201503", text = "darkshorelog01.m2", }, { value = "darkshorelog02.m2", + text = "darkshorelog02.m2", fileId = "201504", text = "darkshorelog02.m2", }, @@ -46772,44 +55831,53 @@ WeakAuras.ModelPaths = { }, { value = "darkshoretrees", + text = "darkshoretrees", children = { { value = "darkshoretree01.m2", + text = "darkshoretree01.m2", fileId = "201511", text = "darkshoretree01.m2", }, { value = "darkshoretree02.m2", + text = "darkshoretree02.m2", fileId = "201513", text = "darkshoretree02.m2", }, { value = "darkshoretree03.m2", + text = "darkshoretree03.m2", fileId = "201514", text = "darkshoretree03.m2", }, { value = "darkshoretree04.m2", + text = "darkshoretree04.m2", fileId = "201515", text = "darkshoretree04.m2", }, { value = "darkshoretree05.m2", + text = "darkshoretree05.m2", fileId = "201516", text = "darkshoretree05.m2", }, { value = "darkshoretree06.m2", + text = "darkshoretree06.m2", fileId = "201517", text = "darkshoretree06.m2", }, { value = "darkshoretree07.m2", + text = "darkshoretree07.m2", fileId = "201518", text = "darkshoretree07.m2", }, { value = "darkshoretree08.m2", + text = "darkshoretree08.m2", fileId = "201519", text = "darkshoretree08.m2", }, @@ -46818,9 +55886,11 @@ WeakAuras.ModelPaths = { }, { value = "dock", + text = "dock", children = { { value = "darkshoredock.m2", + text = "darkshoredock.m2", fileId = "201524", text = "darkshoredock.m2", }, @@ -46829,14 +55899,17 @@ WeakAuras.ModelPaths = { }, { value = "docks", + text = "docks", children = { { value = "darkshoredock01.m2", + text = "darkshoredock01.m2", fileId = "201526", text = "darkshoredock01.m2", }, { value = "darkshoredockramp01.m2", + text = "darkshoredockramp01.m2", fileId = "201527", text = "darkshoredockramp01.m2", }, @@ -46845,9 +55918,11 @@ WeakAuras.ModelPaths = { }, { value = "fallentreeroots", + text = "fallentreeroots", children = { { value = "darkshorefallentreeroots01.m2", + text = "darkshorefallentreeroots01.m2", fileId = "201528", text = "darkshorefallentreeroots01.m2", }, @@ -46856,14 +55931,17 @@ WeakAuras.ModelPaths = { }, { value = "gazeebo", + text = "gazeebo", children = { { value = "darkshoregazeebo.m2", + text = "darkshoregazeebo.m2", fileId = "201529", text = "darkshoregazeebo.m2", }, { value = "darkshoregazeeboruined01.m2", + text = "darkshoregazeeboruined01.m2", fileId = "201530", text = "darkshoregazeeboruined01.m2", }, @@ -46872,9 +55950,11 @@ WeakAuras.ModelPaths = { }, { value = "glaivemaster", + text = "glaivemaster", children = { { value = "glaivemaster.m2", + text = "glaivemaster.m2", fileId = "201531", text = "glaivemaster.m2", }, @@ -46883,14 +55963,17 @@ WeakAuras.ModelPaths = { }, { value = "glaivemasterroots", + text = "glaivemasterroots", children = { { value = "glaivemasterroots01.m2", + text = "glaivemasterroots01.m2", fileId = "201536", text = "glaivemasterroots01.m2", }, { value = "glaivemasterroots02.m2", + text = "glaivemasterroots02.m2", fileId = "201537", text = "glaivemasterroots02.m2", }, @@ -46899,14 +55982,17 @@ WeakAuras.ModelPaths = { }, { value = "glaivemastertentacles", + text = "glaivemastertentacles", children = { { value = "glaivemastertentacle.m2", + text = "glaivemastertentacle.m2", fileId = "201538", text = "glaivemastertentacle.m2", }, { value = "glaivemastertentacleend.m2", + text = "glaivemastertentacleend.m2", fileId = "201539", text = "glaivemastertentacleend.m2", }, @@ -46915,14 +56001,17 @@ WeakAuras.ModelPaths = { }, { value = "lamp", + text = "lamp", children = { { value = "darkstreetlamp.m2", + text = "darkstreetlamp.m2", fileId = "201541", text = "darkstreetlamp.m2", }, { value = "darkstreetlamp02.m2", + text = "darkstreetlamp02.m2", fileId = "201542", text = "darkstreetlamp02.m2", }, @@ -46931,19 +56020,23 @@ WeakAuras.ModelPaths = { }, { value = "moongate", + text = "moongate", children = { { value = "darkshoremoongate.m2", + text = "darkshoremoongate.m2", fileId = "201544", text = "darkshoremoongate.m2", }, { value = "darkshoremoongatebase.m2", + text = "darkshoremoongatebase.m2", fileId = "201545", text = "darkshoremoongatebase.m2", }, { value = "darkshoremoongatetop.m2", + text = "darkshoremoongatetop.m2", fileId = "201546", text = "darkshoremoongatetop.m2", }, @@ -46952,9 +56045,11 @@ WeakAuras.ModelPaths = { }, { value = "rocks", + text = "rocks", children = { { value = "darkshorerock03.m2", + text = "darkshorerock03.m2", fileId = "201548", text = "darkshorerock03.m2", }, @@ -46963,69 +56058,83 @@ WeakAuras.ModelPaths = { }, { value = "ruins", + text = "ruins", children = { { value = "darkshorerock01.m2", + text = "darkshorerock01.m2", fileId = "201551", text = "darkshorerock01.m2", }, { value = "darkshorerock02.m2", + text = "darkshorerock02.m2", fileId = "201552", text = "darkshorerock02.m2", }, { value = "darkshoreruinpillar01.m2", + text = "darkshoreruinpillar01.m2", fileId = "201553", text = "darkshoreruinpillar01.m2", }, { value = "darkshoreruinpillar02.m2", + text = "darkshoreruinpillar02.m2", fileId = "201554", text = "darkshoreruinpillar02.m2", }, { value = "darkshoreruinpillar03.m2", + text = "darkshoreruinpillar03.m2", fileId = "201555", text = "darkshoreruinpillar03.m2", }, { value = "darkshoreruinpillar04.m2", + text = "darkshoreruinpillar04.m2", fileId = "201556", text = "darkshoreruinpillar04.m2", }, { value = "darkshoreruinpillar05.m2", + text = "darkshoreruinpillar05.m2", fileId = "201557", text = "darkshoreruinpillar05.m2", }, { value = "darkshoreruinwall01.m2", + text = "darkshoreruinwall01.m2", fileId = "201558", text = "darkshoreruinwall01.m2", }, { value = "darkshoreruinwall02.m2", + text = "darkshoreruinwall02.m2", fileId = "201559", text = "darkshoreruinwall02.m2", }, { value = "darkshoreruinwall03.m2", + text = "darkshoreruinwall03.m2", fileId = "201560", text = "darkshoreruinwall03.m2", }, { value = "darkshoreruinwall04.m2", + text = "darkshoreruinwall04.m2", fileId = "201561", text = "darkshoreruinwall04.m2", }, { value = "darkshoreruinwall05.m2", + text = "darkshoreruinwall05.m2", fileId = "201562", text = "darkshoreruinwall05.m2", }, { value = "darkshoreruinwall06.m2", + text = "darkshoreruinwall06.m2", fileId = "201563", text = "darkshoreruinwall06.m2", }, @@ -47034,9 +56143,11 @@ WeakAuras.ModelPaths = { }, { value = "seamonstercarcass", + text = "seamonstercarcass", children = { { value = "darkshoreseamonster01.m2", + text = "darkshoreseamonster01.m2", fileId = "201568", text = "darkshoreseamonster01.m2", }, @@ -47045,9 +56156,11 @@ WeakAuras.ModelPaths = { }, { value = "trees", + text = "trees", children = { { value = "darkshorefallentree01.m2", + text = "darkshorefallentree01.m2", fileId = "201571", text = "darkshorefallentree01.m2", }, @@ -47059,9 +56172,11 @@ WeakAuras.ModelPaths = { }, { value = "threshadoncorpse", + text = "threshadoncorpse", children = { { value = "darkshorethreshadoncorpse.m2", + text = "darkshorethreshadoncorpse.m2", fileId = "201573", text = "darkshorethreshadoncorpse.m2", }, @@ -47073,110 +56188,133 @@ WeakAuras.ModelPaths = { }, { value = "desolace", + text = "desolace", children = { { value = "passivedoodads", + text = "passivedoodads", children = { { value = "defiledtotem01.m2", + text = "defiledtotem01.m2", fileId = "201575", text = "defiledtotem01.m2", }, { value = "defiledtotem02.m2", + text = "defiledtotem02.m2", fileId = "201576", text = "defiledtotem02.m2", }, { value = "kodogravebones", + text = "kodogravebones", children = { { value = "bannercentaur01.m2", + text = "bannercentaur01.m2", fileId = "201581", text = "bannercentaur01.m2", }, { value = "bannercentaur02.m2", + text = "bannercentaur02.m2", fileId = "201582", text = "bannercentaur02.m2", }, { value = "bannercentaur03.m2", + text = "bannercentaur03.m2", fileId = "201583", text = "bannercentaur03.m2", }, { value = "bannercentaur04.m2", + text = "bannercentaur04.m2", fileId = "201584", text = "bannercentaur04.m2", }, { value = "kodograve01.m2", + text = "kodograve01.m2", fileId = "201593", text = "kodograve01.m2", }, { value = "kodograve02.m2", + text = "kodograve02.m2", fileId = "201594", text = "kodograve02.m2", }, { value = "kodograve03.m2", + text = "kodograve03.m2", fileId = "201595", text = "kodograve03.m2", }, { value = "kodograve04.m2", + text = "kodograve04.m2", fileId = "201596", text = "kodograve04.m2", }, { value = "kodograve05.m2", + text = "kodograve05.m2", fileId = "201597", text = "kodograve05.m2", }, { value = "kodograve06.m2", + text = "kodograve06.m2", fileId = "201598", text = "kodograve06.m2", }, { value = "kodograve07.m2", + text = "kodograve07.m2", fileId = "201599", text = "kodograve07.m2", }, { value = "kodograve08.m2", + text = "kodograve08.m2", fileId = "201600", text = "kodograve08.m2", }, { value = "kodograve09.m2", + text = "kodograve09.m2", fileId = "201601", text = "kodograve09.m2", }, { value = "kodograve10.m2", + text = "kodograve10.m2", fileId = "201602", text = "kodograve10.m2", }, { value = "kodograve11.m2", + text = "kodograve11.m2", fileId = "201603", text = "kodograve11.m2", }, { value = "kodograve12.m2", + text = "kodograve12.m2", fileId = "201604", text = "kodograve12.m2", }, { value = "kodograve13.m2", + text = "kodograve13.m2", fileId = "201605", text = "kodograve13.m2", }, { value = "kodograve14.m2", + text = "kodograve14.m2", fileId = "201606", text = "kodograve14.m2", }, @@ -47185,9 +56323,11 @@ WeakAuras.ModelPaths = { }, { value = "mushrooms", + text = "mushrooms", children = { { value = "desolacemushroom.m2", + text = "desolacemushroom.m2", fileId = "201607", text = "desolacemushroom.m2", }, @@ -47196,24 +56336,29 @@ WeakAuras.ModelPaths = { }, { value = "rocks", + text = "rocks", children = { { value = "desolacerock01.m2", + text = "desolacerock01.m2", fileId = "201610", text = "desolacerock01.m2", }, { value = "desolacerock02.m2", + text = "desolacerock02.m2", fileId = "201611", text = "desolacerock02.m2", }, { value = "desolacerock03.m2", + text = "desolacerock03.m2", fileId = "201612", text = "desolacerock03.m2", }, { value = "desolacerock04.m2", + text = "desolacerock04.m2", fileId = "201613", text = "desolacerock04.m2", }, @@ -47222,19 +56367,23 @@ WeakAuras.ModelPaths = { }, { value = "spearwalls", + text = "spearwalls", children = { { value = "centaurspears01.m2", + text = "centaurspears01.m2", fileId = "201614", text = "centaurspears01.m2", }, { value = "centaurspears02.m2", + text = "centaurspears02.m2", fileId = "201615", text = "centaurspears02.m2", }, { value = "centaurspearscone.m2", + text = "centaurspearscone.m2", fileId = "201616", text = "centaurspearscone.m2", }, @@ -47249,20 +56398,25 @@ WeakAuras.ModelPaths = { }, { value = "diremaul", + text = "diremaul", children = { { value = "activedoodads", + text = "activedoodads", children = { { value = "crystalcorrupter", + text = "crystalcorrupter", children = { { value = "corruptedcrystalshard.m2", + text = "corruptedcrystalshard.m2", fileId = "201617", text = "corruptedcrystalshard.m2", }, { value = "corruptedcrystalvine.m2", + text = "corruptedcrystalvine.m2", fileId = "201619", text = "corruptedcrystalvine.m2", }, @@ -47271,34 +56425,41 @@ WeakAuras.ModelPaths = { }, { value = "doors", + text = "doors", children = { { value = "diremaulbossforcefield.m2", + text = "diremaulbossforcefield.m2", fileId = "201624", text = "diremaulbossforcefield.m2", }, { value = "diremauldoor01.m2", + text = "diremauldoor01.m2", fileId = "201626", text = "diremauldoor01.m2", }, { value = "diremauldoor02.m2", + text = "diremauldoor02.m2", fileId = "201627", text = "diremauldoor02.m2", }, { value = "diremauldoor03.m2", + text = "diremauldoor03.m2", fileId = "201629", text = "diremauldoor03.m2", }, { value = "diremauldoor04.m2", + text = "diremauldoor04.m2", fileId = "201631", text = "diremauldoor04.m2", }, { value = "diremaulsmallinstancedoor.m2", + text = "diremaulsmallinstancedoor.m2", fileId = "201634", text = "diremaulsmallinstancedoor.m2", }, @@ -47307,9 +56468,11 @@ WeakAuras.ModelPaths = { }, { value = "lightcrystal", + text = "lightcrystal", children = { { value = "diremaulcrystalgenerator.m2", + text = "diremaulcrystalgenerator.m2", fileId = "201638", text = "diremaulcrystalgenerator.m2", }, @@ -47318,19 +56481,23 @@ WeakAuras.ModelPaths = { }, { value = "nightmaresummoning", + text = "nightmaresummoning", children = { { value = "nightmarebell.m2", + text = "nightmarebell.m2", fileId = "201641", text = "nightmarebell.m2", }, { value = "nightmarecandle.m2", + text = "nightmarecandle.m2", fileId = "201642", text = "nightmarecandle.m2", }, { value = "nightmarestone.m2", + text = "nightmarestone.m2", fileId = "201643", text = "nightmarestone.m2", }, @@ -47339,29 +56506,35 @@ WeakAuras.ModelPaths = { }, { value = "warlockcircle", + text = "warlockcircle", children = { { value = "warlockmountritualcircle01.m2", + text = "warlockmountritualcircle01.m2", fileId = "201649", text = "warlockmountritualcircle01.m2", }, { value = "warlockmountritualcircle01a.m2", + text = "warlockmountritualcircle01a.m2", fileId = "201650", text = "warlockmountritualcircle01a.m2", }, { value = "warlockmountritualcircle01b.m2", + text = "warlockmountritualcircle01b.m2", fileId = "201651", text = "warlockmountritualcircle01b.m2", }, { value = "warlockmountritualcircle01c.m2", + text = "warlockmountritualcircle01c.m2", fileId = "201652", text = "warlockmountritualcircle01c.m2", }, { value = "warlockmountritualcircle01d.m2", + text = "warlockmountritualcircle01d.m2", fileId = "201653", text = "warlockmountritualcircle01d.m2", }, @@ -47373,22 +56546,27 @@ WeakAuras.ModelPaths = { }, { value = "passivedoodads", + text = "passivedoodads", children = { { value = "animalheadstatues", + text = "animalheadstatues", children = { { value = "diremaulstonebearstatue.m2", + text = "diremaulstonebearstatue.m2", fileId = "201658", text = "diremaulstonebearstatue.m2", }, { value = "diremaulstonedeerstatue.m2", + text = "diremaulstonedeerstatue.m2", fileId = "201660", text = "diremaulstonedeerstatue.m2", }, { value = "diremaulstoneowlstatue.m2", + text = "diremaulstoneowlstatue.m2", fileId = "201662", text = "diremaulstoneowlstatue.m2", }, @@ -47397,44 +56575,53 @@ WeakAuras.ModelPaths = { }, { value = "banners", + text = "banners", children = { { value = "diremaul_banner.m2", + text = "diremaul_banner.m2", fileId = "201663", text = "diremaul_banner.m2", }, { value = "diremaul_banner_post.m2", + text = "diremaul_banner_post.m2", fileId = "201664", text = "diremaul_banner_post.m2", }, { value = "diremaul_banner_tattered.m2", + text = "diremaul_banner_tattered.m2", fileId = "201665", text = "diremaul_banner_tattered.m2", }, { value = "diremaul_banner_torn01.m2", + text = "diremaul_banner_torn01.m2", fileId = "201666", text = "diremaul_banner_torn01.m2", }, { value = "diremaul_banner_torn02.m2", + text = "diremaul_banner_torn02.m2", fileId = "201667", text = "diremaul_banner_torn02.m2", }, { value = "ogrepostbanner.m2", + text = "ogrepostbanner.m2", fileId = "201670", text = "ogrepostbanner.m2", }, { value = "ogrestapledwallbanner.m2", + text = "ogrestapledwallbanner.m2", fileId = "201671", text = "ogrestapledwallbanner.m2", }, { value = "ogrestapledwallbanner02.m2", + text = "ogrestapledwallbanner02.m2", fileId = "201672", text = "ogrestapledwallbanner02.m2", }, @@ -47443,9 +56630,11 @@ WeakAuras.ModelPaths = { }, { value = "deadtrees", + text = "deadtrees", children = { { value = "brokenferalastree01.m2", + text = "brokenferalastree01.m2", fileId = "201675", text = "brokenferalastree01.m2", }, @@ -47454,24 +56643,29 @@ WeakAuras.ModelPaths = { }, { value = "goldenhighelfstatue01.m2", + text = "goldenhighelfstatue01.m2", fileId = "201679", text = "goldenhighelfstatue01.m2", }, { value = "goldenhighelfstatue02.m2", + text = "goldenhighelfstatue02.m2", fileId = "201680", text = "goldenhighelfstatue02.m2", }, { value = "goldenhighelfstatue03.m2", + text = "goldenhighelfstatue03.m2", fileId = "201681", text = "goldenhighelfstatue03.m2", }, { value = "ogrecampfires", + text = "ogrecampfires", children = { { value = "ogrecampfire01.m2", + text = "ogrecampfire01.m2", fileId = "201688", text = "ogrecampfire01.m2", }, @@ -47480,9 +56674,11 @@ WeakAuras.ModelPaths = { }, { value = "ogreladder", + text = "ogreladder", children = { { value = "diremaulogreladder01.m2", + text = "diremaulogreladder01.m2", fileId = "201689", text = "diremaulogreladder01.m2", }, @@ -47491,24 +56687,29 @@ WeakAuras.ModelPaths = { }, { value = "ogreposts", + text = "ogreposts", children = { { value = "diremaulogrepost01.m2", + text = "diremaulogrepost01.m2", fileId = "201691", text = "diremaulogrepost01.m2", }, { value = "diremaulogrepost02.m2", + text = "diremaulogrepost02.m2", fileId = "201692", text = "diremaulogrepost02.m2", }, { value = "diremaulogrepost03.m2", + text = "diremaulogrepost03.m2", fileId = "201693", text = "diremaulogrepost03.m2", }, { value = "diremaulogrepost04.m2", + text = "diremaulogrepost04.m2", fileId = "201694", text = "diremaulogrepost04.m2", }, @@ -47517,9 +56718,11 @@ WeakAuras.ModelPaths = { }, { value = "ogrescaffolding", + text = "ogrescaffolding", children = { { value = "diremaulogrescaffolding01.m2", + text = "diremaulogrescaffolding01.m2", fileId = "201696", text = "diremaulogrescaffolding01.m2", }, @@ -47528,114 +56731,137 @@ WeakAuras.ModelPaths = { }, { value = "rubble", + text = "rubble", children = { { value = "diremaulfloorrubble01.m2", + text = "diremaulfloorrubble01.m2", fileId = "201699", text = "diremaulfloorrubble01.m2", }, { value = "diremaulfloorrubble02.m2", + text = "diremaulfloorrubble02.m2", fileId = "201700", text = "diremaulfloorrubble02.m2", }, { value = "diremaulfloorrubble03.m2", + text = "diremaulfloorrubble03.m2", fileId = "201701", text = "diremaulfloorrubble03.m2", }, { value = "diremaulgroundrubble01.m2", + text = "diremaulgroundrubble01.m2", fileId = "201702", text = "diremaulgroundrubble01.m2", }, { value = "diremaulgroundrubble02.m2", + text = "diremaulgroundrubble02.m2", fileId = "201703", text = "diremaulgroundrubble02.m2", }, { value = "diremaulgroundrubble03.m2", + text = "diremaulgroundrubble03.m2", fileId = "201704", text = "diremaulgroundrubble03.m2", }, { value = "diremaulstonestatue01.m2", + text = "diremaulstonestatue01.m2", fileId = "201705", text = "diremaulstonestatue01.m2", }, { value = "diremaulstonestatue02.m2", + text = "diremaulstonestatue02.m2", fileId = "201706", text = "diremaulstonestatue02.m2", }, { value = "diremaulstonestatue03.m2", + text = "diremaulstonestatue03.m2", fileId = "201707", text = "diremaulstonestatue03.m2", }, { value = "diremaulstonestatue04.m2", + text = "diremaulstonestatue04.m2", fileId = "201708", text = "diremaulstonestatue04.m2", }, { value = "diremaultreeroot01.m2", + text = "diremaultreeroot01.m2", fileId = "201709", text = "diremaultreeroot01.m2", }, { value = "diremaultreeroot02.m2", + text = "diremaultreeroot02.m2", fileId = "201710", text = "diremaultreeroot02.m2", }, { value = "diremaultreeroot03.m2", + text = "diremaultreeroot03.m2", fileId = "201711", text = "diremaultreeroot03.m2", }, { value = "diremaultreeroot04.m2", + text = "diremaultreeroot04.m2", fileId = "201712", text = "diremaultreeroot04.m2", }, { value = "diremaultreeroot05.m2", + text = "diremaultreeroot05.m2", fileId = "201713", text = "diremaultreeroot05.m2", }, { value = "diremaultreeroot06.m2", + text = "diremaultreeroot06.m2", fileId = "201714", text = "diremaultreeroot06.m2", }, { value = "diremaultrimrubble01.m2", + text = "diremaultrimrubble01.m2", fileId = "201715", text = "diremaultrimrubble01.m2", }, { value = "diremaultrimrubble02.m2", + text = "diremaultrimrubble02.m2", fileId = "201716", text = "diremaultrimrubble02.m2", }, { value = "diremaultrimrubble03.m2", + text = "diremaultrimrubble03.m2", fileId = "201717", text = "diremaultrimrubble03.m2", }, { value = "diremaulwallrubble01.m2", + text = "diremaulwallrubble01.m2", fileId = "201718", text = "diremaulwallrubble01.m2", }, { value = "diremaulwallrubble02.m2", + text = "diremaulwallrubble02.m2", fileId = "201719", text = "diremaulwallrubble02.m2", }, { value = "diremaulwallrubble03.m2", + text = "diremaulwallrubble03.m2", fileId = "201720", text = "diremaulwallrubble03.m2", }, @@ -47644,19 +56870,23 @@ WeakAuras.ModelPaths = { }, { value = "treeplanters", + text = "treeplanters", children = { { value = "deadtreeplanterbox.m2", + text = "deadtreeplanterbox.m2", fileId = "201723", text = "deadtreeplanterbox.m2", }, { value = "deadtreeplanterbox02.m2", + text = "deadtreeplanterbox02.m2", fileId = "201724", text = "deadtreeplanterbox02.m2", }, { value = "deadtreeplanterbox03.m2", + text = "deadtreeplanterbox03.m2", fileId = "201725", text = "deadtreeplanterbox03.m2", }, @@ -47665,24 +56895,29 @@ WeakAuras.ModelPaths = { }, { value = "trees", + text = "trees", children = { { value = "gardentreecanopy.m2", + text = "gardentreecanopy.m2", fileId = "201731", text = "gardentreecanopy.m2", }, { value = "gardentreeferalas.m2", + text = "gardentreeferalas.m2", fileId = "201732", text = "gardentreeferalas.m2", }, { value = "gardentreeferalasb.m2", + text = "gardentreeferalasb.m2", fileId = "201733", text = "gardentreeferalasb.m2", }, { value = "gardentreehuge.m2", + text = "gardentreehuge.m2", fileId = "201734", text = "gardentreehuge.m2", }, @@ -47691,9 +56926,11 @@ WeakAuras.ModelPaths = { }, { value = "vortex", + text = "vortex", children = { { value = "diremaulmagicvortex.m2", + text = "diremaulmagicvortex.m2", fileId = "201741", text = "diremaulmagicvortex.m2", }, @@ -47708,15 +56945,19 @@ WeakAuras.ModelPaths = { }, { value = "dragoncave", + text = "dragoncave", children = { { value = "passivedoodads", + text = "passivedoodads", children = { { value = "artifact", + text = "artifact", children = { { value = "dragoncaveartifact.m2", + text = "dragoncaveartifact.m2", fileId = "201743", text = "dragoncaveartifact.m2", }, @@ -47725,19 +56966,23 @@ WeakAuras.ModelPaths = { }, { value = "blackdragoneggs", + text = "blackdragoneggs", children = { { value = "blackdragonegg01.m2", + text = "blackdragonegg01.m2", fileId = "201745", text = "blackdragonegg01.m2", }, { value = "blackdragonegg02.m2", + text = "blackdragonegg02.m2", fileId = "201746", text = "blackdragonegg02.m2", }, { value = "blackdragonegg03.m2", + text = "blackdragonegg03.m2", fileId = "201747", text = "blackdragonegg03.m2", }, @@ -47746,49 +56991,59 @@ WeakAuras.ModelPaths = { }, { value = "charredbodies", + text = "charredbodies", children = { { value = "charredbody01.m2", + text = "charredbody01.m2", fileId = "201752", text = "charredbody01.m2", }, { value = "charredbody02.m2", + text = "charredbody02.m2", fileId = "201753", text = "charredbody02.m2", }, { value = "charredbody03.m2", + text = "charredbody03.m2", fileId = "201754", text = "charredbody03.m2", }, { value = "charredbody04.m2", + text = "charredbody04.m2", fileId = "201755", text = "charredbody04.m2", }, { value = "charredbody05.m2", + text = "charredbody05.m2", fileId = "201756", text = "charredbody05.m2", }, { value = "charredbody06.m2", + text = "charredbody06.m2", fileId = "201757", text = "charredbody06.m2", }, { value = "charredbody07.m2", + text = "charredbody07.m2", fileId = "201758", text = "charredbody07.m2", }, { value = "dragonfirecharmark01.m2", + text = "dragonfirecharmark01.m2", fileId = "201761", text = "dragonfirecharmark01.m2", }, { value = "dragonfirecharmark02.m2", + text = "dragonfirecharmark02.m2", fileId = "201762", text = "dragonfirecharmark02.m2", }, @@ -47797,9 +57052,11 @@ WeakAuras.ModelPaths = { }, { value = "fireembers", + text = "fireembers", children = { { value = "dragoncavefireembers.m2", + text = "dragoncavefireembers.m2", fileId = "201764", text = "dragoncavefireembers.m2", }, @@ -47814,15 +57071,19 @@ WeakAuras.ModelPaths = { }, { value = "durotar", + text = "durotar", children = { { value = "passivedoodads", + text = "passivedoodads", children = { { value = "bridge", + text = "bridge", children = { { value = "taurenbridge01lantern.m2", + text = "taurenbridge01lantern.m2", fileId = "201765", text = "taurenbridge01lantern.m2", }, @@ -47831,29 +57092,35 @@ WeakAuras.ModelPaths = { }, { value = "bushes", + text = "bushes", children = { { value = "cactusapple01.m2", + text = "cactusapple01.m2", fileId = "201766", text = "cactusapple01.m2", }, { value = "durotarbush01.m2", + text = "durotarbush01.m2", fileId = "201768", text = "durotarbush01.m2", }, { value = "durotarbush02.m2", + text = "durotarbush02.m2", fileId = "201769", text = "durotarbush02.m2", }, { value = "durotarbush03.m2", + text = "durotarbush03.m2", fileId = "201770", text = "durotarbush03.m2", }, { value = "durotarbush04.m2", + text = "durotarbush04.m2", fileId = "201771", text = "durotarbush04.m2", }, @@ -47862,89 +57129,107 @@ WeakAuras.ModelPaths = { }, { value = "rocks", + text = "rocks", children = { { value = "durotarcliffrock01.m2", + text = "durotarcliffrock01.m2", fileId = "201774", text = "durotarcliffrock01.m2", }, { value = "durotarcliffrock02.m2", + text = "durotarcliffrock02.m2", fileId = "201775", text = "durotarcliffrock02.m2", }, { value = "durotarcliffrock03.m2", + text = "durotarcliffrock03.m2", fileId = "201776", text = "durotarcliffrock03.m2", }, { value = "durotarcliffrock04.m2", + text = "durotarcliffrock04.m2", fileId = "201777", text = "durotarcliffrock04.m2", }, { value = "durotarcliffrock05.m2", + text = "durotarcliffrock05.m2", fileId = "201778", text = "durotarcliffrock05.m2", }, { value = "durotarcliffrock06.m2", + text = "durotarcliffrock06.m2", fileId = "201779", text = "durotarcliffrock06.m2", }, { value = "durotarcliffrock07.m2", + text = "durotarcliffrock07.m2", fileId = "201780", text = "durotarcliffrock07.m2", }, { value = "durotarcliffrock08.m2", + text = "durotarcliffrock08.m2", fileId = "201781", text = "durotarcliffrock08.m2", }, { value = "durotarrock01.m2", + text = "durotarrock01.m2", fileId = "201783", text = "durotarrock01.m2", }, { value = "durotarrock02.m2", + text = "durotarrock02.m2", fileId = "201785", text = "durotarrock02.m2", }, { value = "durotarrock03.m2", + text = "durotarrock03.m2", fileId = "201786", text = "durotarrock03.m2", }, { value = "durotarrock04.m2", + text = "durotarrock04.m2", fileId = "201788", text = "durotarrock04.m2", }, { value = "durotarrock05.m2", + text = "durotarrock05.m2", fileId = "201789", text = "durotarrock05.m2", }, { value = "durotarrock06.m2", + text = "durotarrock06.m2", fileId = "201790", text = "durotarrock06.m2", }, { value = "durotarrock07.m2", + text = "durotarrock07.m2", fileId = "201791", text = "durotarrock07.m2", }, { value = "durotarrock08.m2", + text = "durotarrock08.m2", fileId = "201792", text = "durotarrock08.m2", }, { value = "flatrock01.m2", + text = "flatrock01.m2", fileId = "201795", text = "flatrock01.m2", }, @@ -47953,54 +57238,65 @@ WeakAuras.ModelPaths = { }, { value = "trees", + text = "trees", children = { { value = "durotarpalm01.m2", + text = "durotarpalm01.m2", fileId = "201800", text = "durotarpalm01.m2", }, { value = "durotarpalm02.m2", + text = "durotarpalm02.m2", fileId = "201801", text = "durotarpalm02.m2", }, { value = "durotarpalm03.m2", + text = "durotarpalm03.m2", fileId = "201802", text = "durotarpalm03.m2", }, { value = "durotartree01.m2", + text = "durotartree01.m2", fileId = "201803", text = "durotartree01.m2", }, { value = "durotartree02.m2", + text = "durotartree02.m2", fileId = "201804", text = "durotartree02.m2", }, { value = "durotartree03.m2", + text = "durotartree03.m2", fileId = "201805", text = "durotartree03.m2", }, { value = "durotartree04.m2", + text = "durotartree04.m2", fileId = "201806", text = "durotartree04.m2", }, { value = "durotartree05.m2", + text = "durotartree05.m2", fileId = "201807", text = "durotartree05.m2", }, { value = "durotartree06.m2", + text = "durotartree06.m2", fileId = "201808", text = "durotartree06.m2", }, { value = "durotartree08.m2", + text = "durotartree08.m2", fileId = "201809", text = "durotartree08.m2", }, @@ -48015,40 +57311,49 @@ WeakAuras.ModelPaths = { }, { value = "dustwallow", + text = "dustwallow", children = { { value = "passivedoodads", + text = "passivedoodads", children = { { value = "bushes", + text = "bushes", children = { { value = "dustwallowbush01.m2", + text = "dustwallowbush01.m2", fileId = "201811", text = "dustwallowbush01.m2", }, { value = "dustwallowbush02.m2", + text = "dustwallowbush02.m2", fileId = "201812", text = "dustwallowbush02.m2", }, { value = "dustwallowshrub01.m2", + text = "dustwallowshrub01.m2", fileId = "201813", text = "dustwallowshrub01.m2", }, { value = "dustwallowshrub02.m2", + text = "dustwallowshrub02.m2", fileId = "201814", text = "dustwallowshrub02.m2", }, { value = "dustwallowshrub03.m2", + text = "dustwallowshrub03.m2", fileId = "201815", text = "dustwallowshrub03.m2", }, { value = "dustwallowshrub04.m2", + text = "dustwallowshrub04.m2", fileId = "201816", text = "dustwallowshrub04.m2", }, @@ -48057,34 +57362,41 @@ WeakAuras.ModelPaths = { }, { value = "outposts", + text = "outposts", children = { { value = "dustwallowoutpost01.m2", + text = "dustwallowoutpost01.m2", fileId = "201817", text = "dustwallowoutpost01.m2", }, { value = "dustwallowoutpost02.m2", + text = "dustwallowoutpost02.m2", fileId = "201818", text = "dustwallowoutpost02.m2", }, { value = "dustwallowoutpost03.m2", + text = "dustwallowoutpost03.m2", fileId = "201819", text = "dustwallowoutpost03.m2", }, { value = "dustwallowoutpost04.m2", + text = "dustwallowoutpost04.m2", fileId = "201820", text = "dustwallowoutpost04.m2", }, { value = "dustwallowoutpost05.m2", + text = "dustwallowoutpost05.m2", fileId = "201821", text = "dustwallowoutpost05.m2", }, { value = "dustwallowoutpost06.m2", + text = "dustwallowoutpost06.m2", fileId = "201822", text = "dustwallowoutpost06.m2", }, @@ -48093,44 +57405,53 @@ WeakAuras.ModelPaths = { }, { value = "trees", + text = "trees", children = { { value = "dustwallowtree01.m2", + text = "dustwallowtree01.m2", fileId = "201826", text = "dustwallowtree01.m2", }, { value = "dustwallowtree02.m2", + text = "dustwallowtree02.m2", fileId = "201827", text = "dustwallowtree02.m2", }, { value = "dustwallowtree03.m2", + text = "dustwallowtree03.m2", fileId = "201828", text = "dustwallowtree03.m2", }, { value = "dustwallowtree04.m2", + text = "dustwallowtree04.m2", fileId = "201829", text = "dustwallowtree04.m2", }, { value = "dustwallowtree05.m2", + text = "dustwallowtree05.m2", fileId = "201830", text = "dustwallowtree05.m2", }, { value = "dustwallowtree06.m2", + text = "dustwallowtree06.m2", fileId = "201831", text = "dustwallowtree06.m2", }, { value = "dustwallowtree07.m2", + text = "dustwallowtree07.m2", fileId = "201832", text = "dustwallowtree07.m2", }, { value = "dustwallowtree08.m2", + text = "dustwallowtree08.m2", fileId = "201833", text = "dustwallowtree08.m2", }, @@ -48139,39 +57460,47 @@ WeakAuras.ModelPaths = { }, { value = "walls", + text = "walls", children = { { value = "duskwallowstonewall01.m2", + text = "duskwallowstonewall01.m2", fileId = "201837", text = "duskwallowstonewall01.m2", }, { value = "duskwallowstonewall02.m2", + text = "duskwallowstonewall02.m2", fileId = "201838", text = "duskwallowstonewall02.m2", }, { value = "duskwallowstonewallpost.m2", + text = "duskwallowstonewallpost.m2", fileId = "201839", text = "duskwallowstonewallpost.m2", }, { value = "dustwallowwall01.m2", + text = "dustwallowwall01.m2", fileId = "201841", text = "dustwallowwall01.m2", }, { value = "dustwallowwall02.m2", + text = "dustwallowwall02.m2", fileId = "201842", text = "dustwallowwall02.m2", }, { value = "dustwallowwall03.m2", + text = "dustwallowwall03.m2", fileId = "201843", text = "dustwallowwall03.m2", }, { value = "dustwallowwallpost.m2", + text = "dustwallowwallpost.m2", fileId = "201844", text = "dustwallowwallpost.m2", }, @@ -48186,15 +57515,19 @@ WeakAuras.ModelPaths = { }, { value = "felwood", + text = "felwood", children = { { value = "activedoodads", + text = "activedoodads", children = { { value = "illidancrystal", + text = "illidancrystal", children = { { value = "illidancrystal02.m2", + text = "illidancrystal02.m2", fileId = "201845", text = "illidancrystal02.m2", }, @@ -48206,27 +57539,33 @@ WeakAuras.ModelPaths = { }, { value = "passivedoodads", + text = "passivedoodads", children = { { value = "bush", + text = "bush", children = { { value = "felwoodbush01.m2", + text = "felwoodbush01.m2", fileId = "201847", text = "felwoodbush01.m2", }, { value = "felwoodbush02.m2", + text = "felwoodbush02.m2", fileId = "201849", text = "felwoodbush02.m2", }, { value = "felwoodbush03.m2", + text = "felwoodbush03.m2", fileId = "201851", text = "felwoodbush03.m2", }, { value = "felwoodbush04.m2", + text = "felwoodbush04.m2", fileId = "201852", text = "felwoodbush04.m2", }, @@ -48235,14 +57574,17 @@ WeakAuras.ModelPaths = { }, { value = "desolacebubbles", + text = "desolacebubbles", children = { { value = "desolacebubble01.m2", + text = "desolacebubble01.m2", fileId = "201853", text = "desolacebubble01.m2", }, { value = "desolacebubbles01.m2", + text = "desolacebubbles01.m2", fileId = "201854", text = "desolacebubbles01.m2", }, @@ -48251,14 +57593,17 @@ WeakAuras.ModelPaths = { }, { value = "felwoodbubbles", + text = "felwoodbubbles", children = { { value = "felwoodbubble01.m2", + text = "felwoodbubble01.m2", fileId = "201856", text = "felwoodbubble01.m2", }, { value = "felwoodbubbles01.m2", + text = "felwoodbubbles01.m2", fileId = "201857", text = "felwoodbubbles01.m2", }, @@ -48267,19 +57612,23 @@ WeakAuras.ModelPaths = { }, { value = "felwoodmushrooms", + text = "felwoodmushrooms", children = { { value = "felwoodmushroom01.m2", + text = "felwoodmushroom01.m2", fileId = "201859", text = "felwoodmushroom01.m2", }, { value = "felwoodmushroom02.m2", + text = "felwoodmushroom02.m2", fileId = "201860", text = "felwoodmushroom02.m2", }, { value = "felwoodmushroomanim.m2", + text = "felwoodmushroomanim.m2", fileId = "201864", text = "felwoodmushroomanim.m2", }, @@ -48288,9 +57637,11 @@ WeakAuras.ModelPaths = { }, { value = "lamp", + text = "lamp", children = { { value = "felwoodlamp01.m2", + text = "felwoodlamp01.m2", fileId = "201866", text = "felwoodlamp01.m2", }, @@ -48299,44 +57650,53 @@ WeakAuras.ModelPaths = { }, { value = "plantsquest", + text = "plantsquest", children = { { value = "nightdragon01.m2", + text = "nightdragon01.m2", fileId = "201870", text = "nightdragon01.m2", }, { value = "nightdragon02.m2", + text = "nightdragon02.m2", fileId = "201871", text = "nightdragon02.m2", }, { value = "songflower01.m2", + text = "songflower01.m2", fileId = "201872", text = "songflower01.m2", }, { value = "songflower02.m2", + text = "songflower02.m2", fileId = "201873", text = "songflower02.m2", }, { value = "whipperroot01.m2", + text = "whipperroot01.m2", fileId = "201874", text = "whipperroot01.m2", }, { value = "whipperroot02.m2", + text = "whipperroot02.m2", fileId = "201875", text = "whipperroot02.m2", }, { value = "windblossom01.m2", + text = "windblossom01.m2", fileId = "201876", text = "windblossom01.m2", }, { value = "windblossom02.m2", + text = "windblossom02.m2", fileId = "201877", text = "windblossom02.m2", }, @@ -48345,29 +57705,35 @@ WeakAuras.ModelPaths = { }, { value = "roots", + text = "roots", children = { { value = "felwoodroots01.m2", + text = "felwoodroots01.m2", fileId = "201881", text = "felwoodroots01.m2", }, { value = "felwoodroots02.m2", + text = "felwoodroots02.m2", fileId = "201882", text = "felwoodroots02.m2", }, { value = "felwoodroots03.m2", + text = "felwoodroots03.m2", fileId = "201883", text = "felwoodroots03.m2", }, { value = "felwoodroots04.m2", + text = "felwoodroots04.m2", fileId = "201884", text = "felwoodroots04.m2", }, { value = "felwoodroots05.m2", + text = "felwoodroots05.m2", fileId = "201885", text = "felwoodroots05.m2", }, @@ -48376,79 +57742,95 @@ WeakAuras.ModelPaths = { }, { value = "tree", + text = "tree", children = { { value = "felwoodtree01.m2", + text = "felwoodtree01.m2", fileId = "201900", text = "felwoodtree01.m2", }, { value = "felwoodtree02.m2", + text = "felwoodtree02.m2", fileId = "201901", text = "felwoodtree02.m2", }, { value = "felwoodtree03.m2", + text = "felwoodtree03.m2", fileId = "201902", text = "felwoodtree03.m2", }, { value = "felwoodtree04.m2", + text = "felwoodtree04.m2", fileId = "201903", text = "felwoodtree04.m2", }, { value = "felwoodtree05.m2", + text = "felwoodtree05.m2", fileId = "201904", text = "felwoodtree05.m2", }, { value = "felwoodtree06.m2", + text = "felwoodtree06.m2", fileId = "201905", text = "felwoodtree06.m2", }, { value = "felwoodtree07.m2", + text = "felwoodtree07.m2", fileId = "201906", text = "felwoodtree07.m2", }, { value = "felwoodtreeanim01.m2", + text = "felwoodtreeanim01.m2", fileId = "201908", text = "felwoodtreeanim01.m2", }, { value = "felwoodtreeanim02.m2", + text = "felwoodtreeanim02.m2", fileId = "201909", text = "felwoodtreeanim02.m2", }, { value = "felwoodtreeanim03.m2", + text = "felwoodtreeanim03.m2", fileId = "201910", text = "felwoodtreeanim03.m2", }, { value = "felwoodtreestump01.m2", + text = "felwoodtreestump01.m2", fileId = "201912", text = "felwoodtreestump01.m2", }, { value = "felwoodtreesub01.m2", + text = "felwoodtreesub01.m2", fileId = "201913", text = "felwoodtreesub01.m2", }, { value = "felwoodtreesub02.m2", + text = "felwoodtreesub02.m2", fileId = "201914", text = "felwoodtreesub02.m2", }, { value = "felwoodtreesub03.m2", + text = "felwoodtreesub03.m2", fileId = "201915", text = "felwoodtreesub03.m2", }, { value = "felwoodtreesub04.m2", + text = "felwoodtreesub04.m2", fileId = "201916", text = "felwoodtreesub04.m2", }, @@ -48457,19 +57839,23 @@ WeakAuras.ModelPaths = { }, { value = "treeeants", + text = "treeeants", children = { { value = "petrifiedtreant01.m2", + text = "petrifiedtreant01.m2", fileId = "201924", text = "petrifiedtreant01.m2", }, { value = "petrifiedtreant02.m2", + text = "petrifiedtreant02.m2", fileId = "201925", text = "petrifiedtreant02.m2", }, { value = "petrifiedtreant03.m2", + text = "petrifiedtreant03.m2", fileId = "201926", text = "petrifiedtreant03.m2", }, @@ -48478,14 +57864,17 @@ WeakAuras.ModelPaths = { }, { value = "waterfall", + text = "waterfall", children = { { value = "felrockwaterfall.m2", + text = "felrockwaterfall.m2", fileId = "201928", text = "felrockwaterfall.m2", }, { value = "felwoodtallwaterfall01.m2", + text = "felwoodtallwaterfall01.m2", fileId = "201929", text = "felwoodtallwaterfall01.m2", }, @@ -48500,15 +57889,19 @@ WeakAuras.ModelPaths = { }, { value = "feralas", + text = "feralas", children = { { value = "passivedoodads", + text = "passivedoodads", children = { { value = "fern", + text = "fern", children = { { value = "feralasferns01.m2", + text = "feralasferns01.m2", fileId = "201930", text = "feralasferns01.m2", }, @@ -48517,14 +57910,17 @@ WeakAuras.ModelPaths = { }, { value = "stones", + text = "stones", children = { { value = "feralasstone01.m2", + text = "feralasstone01.m2", fileId = "201933", text = "feralasstone01.m2", }, { value = "feralasstone02.m2", + text = "feralasstone02.m2", fileId = "201934", text = "feralasstone02.m2", }, @@ -48533,59 +57929,71 @@ WeakAuras.ModelPaths = { }, { value = "tree", + text = "tree", children = { { value = "feralastree01.m2", + text = "feralastree01.m2", fileId = "201935", text = "feralastree01.m2", }, { value = "feralastree02.m2", + text = "feralastree02.m2", fileId = "201936", text = "feralastree02.m2", }, { value = "feralastree03.m2", + text = "feralastree03.m2", fileId = "201937", text = "feralastree03.m2", }, { value = "feralastree04.m2", + text = "feralastree04.m2", fileId = "201938", text = "feralastree04.m2", }, { value = "feralastree05.m2", + text = "feralastree05.m2", fileId = "201940", text = "feralastree05.m2", }, { value = "feralastreeroots01.m2", + text = "feralastreeroots01.m2", fileId = "201942", text = "feralastreeroots01.m2", }, { value = "feralastreeroots02.m2", + text = "feralastreeroots02.m2", fileId = "201944", text = "feralastreeroots02.m2", }, { value = "feralastreeroots03.m2", + text = "feralastreeroots03.m2", fileId = "201945", text = "feralastreeroots03.m2", }, { value = "feralastreeroots04.m2", + text = "feralastreeroots04.m2", fileId = "201946", text = "feralastreeroots04.m2", }, { value = "feralastreestump01.m2", + text = "feralastreestump01.m2", fileId = "201948", text = "feralastreestump01.m2", }, { value = "feralastreestump02.m2", + text = "feralastreestump02.m2", fileId = "201949", text = "feralastreestump02.m2", }, @@ -48600,15 +58008,19 @@ WeakAuras.ModelPaths = { }, { value = "generic", + text = "generic", children = { { value = "passivedoodads", + text = "passivedoodads", children = { { value = "elevendestoryerwreckback", + text = "elevendestoryerwreckback", children = { { value = "elvendestroyerwreckback.m2", + text = "elvendestroyerwreckback.m2", fileId = "201968", text = "elvendestroyerwreckback.m2", }, @@ -48617,9 +58029,11 @@ WeakAuras.ModelPaths = { }, { value = "elevendestoryerwreckfront", + text = "elevendestoryerwreckfront", children = { { value = "elvendestroyerwreckfront.m2", + text = "elvendestroyerwreckfront.m2", fileId = "201972", text = "elvendestroyerwreckfront.m2", }, @@ -48628,9 +58042,11 @@ WeakAuras.ModelPaths = { }, { value = "elevendestoryerwrecksails", + text = "elevendestoryerwrecksails", children = { { value = "elvendestroyerwrecksails.m2", + text = "elvendestroyerwrecksails.m2", fileId = "201973", text = "elvendestroyerwrecksails.m2", }, @@ -48639,9 +58055,11 @@ WeakAuras.ModelPaths = { }, { value = "nightelfguardtower", + text = "nightelfguardtower", children = { { value = "nightelfguardtower.m2", + text = "nightelfguardtower.m2", fileId = "201982", text = "nightelfguardtower.m2", }, @@ -48656,15 +58074,19 @@ WeakAuras.ModelPaths = { }, { value = "hyjal", + text = "hyjal", children = { { value = "activedoodads", + text = "activedoodads", children = { { value = "doors", + text = "doors", children = { { value = "hyjalgate.m2", + text = "hyjalgate.m2", fileId = "201985", text = "hyjalgate.m2", }, @@ -48676,27 +58098,33 @@ WeakAuras.ModelPaths = { }, { value = "passivedoodads", + text = "passivedoodads", children = { { value = "rocks", + text = "rocks", children = { { value = "hyjalrock01.m2", + text = "hyjalrock01.m2", fileId = "201987", text = "hyjalrock01.m2", }, { value = "hyjalrock02.m2", + text = "hyjalrock02.m2", fileId = "201988", text = "hyjalrock02.m2", }, { value = "hyjalrock03.m2", + text = "hyjalrock03.m2", fileId = "201989", text = "hyjalrock03.m2", }, { value = "hyjalrock04.m2", + text = "hyjalrock04.m2", fileId = "201990", text = "hyjalrock04.m2", }, @@ -48705,9 +58133,11 @@ WeakAuras.ModelPaths = { }, { value = "theworldtree", + text = "theworldtree", children = { { value = "theworldtree.m2", + text = "theworldtree.m2", fileId = "201992", text = "theworldtree.m2", }, @@ -48716,34 +58146,41 @@ WeakAuras.ModelPaths = { }, { value = "trees", + text = "trees", children = { { value = "hyjalfallentree01.m2", + text = "hyjalfallentree01.m2", fileId = "201998", text = "hyjalfallentree01.m2", }, { value = "hyjaltree01.m2", + text = "hyjaltree01.m2", fileId = "201999", text = "hyjaltree01.m2", }, { value = "hyjaltree02.m2", + text = "hyjaltree02.m2", fileId = "202000", text = "hyjaltree02.m2", }, { value = "hyjaltree03.m2", + text = "hyjaltree03.m2", fileId = "202001", text = "hyjaltree03.m2", }, { value = "hyjaltree04.m2", + text = "hyjaltree04.m2", fileId = "202002", text = "hyjaltree04.m2", }, { value = "hyjaltree05.m2", + text = "hyjaltree05.m2", fileId = "202003", text = "hyjaltree05.m2", }, @@ -48758,15 +58195,19 @@ WeakAuras.ModelPaths = { }, { value = "kalidar", + text = "kalidar", children = { { value = "passivedoodads", + text = "passivedoodads", children = { { value = "felpinecone", + text = "felpinecone", children = { { value = "felpinecone.m2", + text = "felpinecone.m2", fileId = "202013", text = "felpinecone.m2", }, @@ -48775,14 +58216,17 @@ WeakAuras.ModelPaths = { }, { value = "furbolgtent", + text = "furbolgtent", children = { { value = "furbolgtent.m2", + text = "furbolgtent.m2", fileId = "202016", text = "furbolgtent.m2", }, { value = "furbolgtent2.m2", + text = "furbolgtent2.m2", fileId = "202017", text = "furbolgtent2.m2", }, @@ -48791,14 +58235,17 @@ WeakAuras.ModelPaths = { }, { value = "furbolgtotem", + text = "furbolgtotem", children = { { value = "furbolgtotem01.m2", + text = "furbolgtotem01.m2", fileId = "202018", text = "furbolgtotem01.m2", }, { value = "furbolgtotem02.m2", + text = "furbolgtotem02.m2", fileId = "202019", text = "furbolgtotem02.m2", }, @@ -48807,24 +58254,29 @@ WeakAuras.ModelPaths = { }, { value = "kalidarbushes", + text = "kalidarbushes", children = { { value = "kalidarbush01.m2", + text = "kalidarbush01.m2", fileId = "202021", text = "kalidarbush01.m2", }, { value = "kalidarbush02.m2", + text = "kalidarbush02.m2", fileId = "202022", text = "kalidarbush02.m2", }, { value = "kalidarbush03.m2", + text = "kalidarbush03.m2", fileId = "202023", text = "kalidarbush03.m2", }, { value = "kalidarbush04.m2", + text = "kalidarbush04.m2", fileId = "202024", text = "kalidarbush04.m2", }, @@ -48833,14 +58285,17 @@ WeakAuras.ModelPaths = { }, { value = "kalidarharpynest", + text = "kalidarharpynest", children = { { value = "kalidarnest01.m2", + text = "kalidarnest01.m2", fileId = "202029", text = "kalidarnest01.m2", }, { value = "kalidarnest02.m2", + text = "kalidarnest02.m2", fileId = "202030", text = "kalidarnest02.m2", }, @@ -48849,34 +58304,41 @@ WeakAuras.ModelPaths = { }, { value = "kalidarroots", + text = "kalidarroots", children = { { value = "kalidargiantroot01.m2", + text = "kalidargiantroot01.m2", fileId = "202034", text = "kalidargiantroot01.m2", }, { value = "kalidargiantroot02.m2", + text = "kalidargiantroot02.m2", fileId = "202035", text = "kalidargiantroot02.m2", }, { value = "kalidarroots01.m2", + text = "kalidarroots01.m2", fileId = "202038", text = "kalidarroots01.m2", }, { value = "kalidarroots02.m2", + text = "kalidarroots02.m2", fileId = "202039", text = "kalidarroots02.m2", }, { value = "kalidarroots03.m2", + text = "kalidarroots03.m2", fileId = "202040", text = "kalidarroots03.m2", }, { value = "kalidarroots04.m2", + text = "kalidarroots04.m2", fileId = "202041", text = "kalidarroots04.m2", }, @@ -48885,14 +58347,17 @@ WeakAuras.ModelPaths = { }, { value = "kalidartreelogs", + text = "kalidartreelogs", children = { { value = "kalidartreelog01.m2", + text = "kalidartreelog01.m2", fileId = "202044", text = "kalidartreelog01.m2", }, { value = "kalidartreelog02.m2", + text = "kalidartreelog02.m2", fileId = "202045", text = "kalidartreelog02.m2", }, @@ -48901,54 +58366,65 @@ WeakAuras.ModelPaths = { }, { value = "kalidartrees", + text = "kalidartrees", children = { { value = "kalidarfallentree01.m2", + text = "kalidarfallentree01.m2", fileId = "202048", text = "kalidarfallentree01.m2", }, { value = "kalidartree01.m2", + text = "kalidartree01.m2", fileId = "202050", text = "kalidartree01.m2", }, { value = "kalidartree02.m2", + text = "kalidartree02.m2", fileId = "202051", text = "kalidartree02.m2", }, { value = "kalidartree03.m2", + text = "kalidartree03.m2", fileId = "202052", text = "kalidartree03.m2", }, { value = "kalidartree04.m2", + text = "kalidartree04.m2", fileId = "202053", text = "kalidartree04.m2", }, { value = "kalidartree05.m2", + text = "kalidartree05.m2", fileId = "202054", text = "kalidartree05.m2", }, { value = "kalidartree06.m2", + text = "kalidartree06.m2", fileId = "202055", text = "kalidartree06.m2", }, { value = "kalidartree07.m2", + text = "kalidartree07.m2", fileId = "202056", text = "kalidartree07.m2", }, { value = "kalidartree08.m2", + text = "kalidartree08.m2", fileId = "202057", text = "kalidartree08.m2", }, { value = "kalidartree09.m2", + text = "kalidartree09.m2", fileId = "202058", text = "kalidartree09.m2", }, @@ -48957,14 +58433,17 @@ WeakAuras.ModelPaths = { }, { value = "kalidartreestumps", + text = "kalidartreestumps", children = { { value = "kalidartreestump01.m2", + text = "kalidartreestump01.m2", fileId = "202059", text = "kalidartreestump01.m2", }, { value = "kalidartreestump02.m2", + text = "kalidartreestump02.m2", fileId = "202060", text = "kalidartreestump02.m2", }, @@ -48973,9 +58452,11 @@ WeakAuras.ModelPaths = { }, { value = "moonwellwater", + text = "moonwellwater", children = { { value = "moowellwaterfx.m2", + text = "moowellwaterfx.m2", fileId = "202061", text = "moowellwaterfx.m2", }, @@ -48984,14 +58465,17 @@ WeakAuras.ModelPaths = { }, { value = "oracletree", + text = "oracletree", children = { { value = "oracletree.m2", + text = "oracletree.m2", fileId = "202063", text = "oracletree.m2", }, { value = "oracletreebank.m2", + text = "oracletreebank.m2", fileId = "202064", text = "oracletreebank.m2", }, @@ -49006,20 +58490,25 @@ WeakAuras.ModelPaths = { }, { value = "mauradon", + text = "mauradon", children = { { value = "activedoodads", + text = "activedoodads", children = { { value = "button", + text = "button", children = { { value = "centaurteleporter01.m2", + text = "centaurteleporter01.m2", fileId = "202071", text = "centaurteleporter01.m2", }, { value = "maraudonstaffcreator.m2", + text = "maraudonstaffcreator.m2", fileId = "202074", text = "maraudonstaffcreator.m2", }, @@ -49028,9 +58517,11 @@ WeakAuras.ModelPaths = { }, { value = "doors", + text = "doors", children = { { value = "stone_door01.m2", + text = "stone_door01.m2", fileId = "202077", text = "stone_door01.m2", }, @@ -49042,22 +58533,27 @@ WeakAuras.ModelPaths = { }, { value = "passivedoodads", + text = "passivedoodads", children = { { value = "bridgebraziers", + text = "bridgebraziers", children = { { value = "bridgebrazierblue01.m2", + text = "bridgebrazierblue01.m2", fileId = "202080", text = "bridgebrazierblue01.m2", }, { value = "bridgebraziergreen01.m2", + text = "bridgebraziergreen01.m2", fileId = "202081", text = "bridgebraziergreen01.m2", }, { value = "bridgebrazierpurple01.m2", + text = "bridgebrazierpurple01.m2", fileId = "202082", text = "bridgebrazierpurple01.m2", }, @@ -49066,9 +58562,11 @@ WeakAuras.ModelPaths = { }, { value = "centaurbraziers", + text = "centaurbraziers", children = { { value = "centaurbrazierred01.m2", + text = "centaurbrazierred01.m2", fileId = "202086", text = "centaurbrazierred01.m2", }, @@ -49077,9 +58575,11 @@ WeakAuras.ModelPaths = { }, { value = "centaurstatue", + text = "centaurstatue", children = { { value = "centaurstatue01.m2", + text = "centaurstatue01.m2", fileId = "202088", text = "centaurstatue01.m2", }, @@ -49088,69 +58588,83 @@ WeakAuras.ModelPaths = { }, { value = "corruptedplants", + text = "corruptedplants", children = { { value = "maraudoncorruptedtree01.m2", + text = "maraudoncorruptedtree01.m2", fileId = "202092", text = "maraudoncorruptedtree01.m2", }, { value = "maraudoncorruptedtree02.m2", + text = "maraudoncorruptedtree02.m2", fileId = "202093", text = "maraudoncorruptedtree02.m2", }, { value = "maraudonmushroomlight01.m2", + text = "maraudonmushroomlight01.m2", fileId = "202097", text = "maraudonmushroomlight01.m2", }, { value = "maraudonmushroomlight02.m2", + text = "maraudonmushroomlight02.m2", fileId = "202098", text = "maraudonmushroomlight02.m2", }, { value = "maraudonpuffballred.m2", + text = "maraudonpuffballred.m2", fileId = "202099", text = "maraudonpuffballred.m2", }, { value = "maraudonpuffballred02.m2", + text = "maraudonpuffballred02.m2", fileId = "202100", text = "maraudonpuffballred02.m2", }, { value = "maraudonpuffballred03.m2", + text = "maraudonpuffballred03.m2", fileId = "202101", text = "maraudonpuffballred03.m2", }, { value = "maraudonspawnertree.m2", + text = "maraudonspawnertree.m2", fileId = "202104", text = "maraudonspawnertree.m2", }, { value = "maraudonspewertree.m2", + text = "maraudonspewertree.m2", fileId = "202106", text = "maraudonspewertree.m2", }, { value = "maraudonspewertreebosscolor.m2", + text = "maraudonspewertreebosscolor.m2", fileId = "202107", text = "maraudonspewertreebosscolor.m2", }, { value = "maraudonsporetree.m2", + text = "maraudonsporetree.m2", fileId = "202109", text = "maraudonsporetree.m2", }, { value = "maraudontransitiontree01.m2", + text = "maraudontransitiontree01.m2", fileId = "202111", text = "maraudontransitiontree01.m2", }, { value = "maraudontransitiontree02.m2", + text = "maraudontransitiontree02.m2", fileId = "202112", text = "maraudontransitiontree02.m2", }, @@ -49159,114 +58673,137 @@ WeakAuras.ModelPaths = { }, { value = "crystals", + text = "crystals", children = { { value = "amethystcrystal01.m2", + text = "amethystcrystal01.m2", fileId = "202123", text = "amethystcrystal01.m2", }, { value = "amethystcrystal02.m2", + text = "amethystcrystal02.m2", fileId = "202124", text = "amethystcrystal02.m2", }, { value = "amethystcrystal03.m2", + text = "amethystcrystal03.m2", fileId = "202125", text = "amethystcrystal03.m2", }, { value = "amethystcrystal04.m2", + text = "amethystcrystal04.m2", fileId = "202126", text = "amethystcrystal04.m2", }, { value = "amethystcrystal05.m2", + text = "amethystcrystal05.m2", fileId = "202127", text = "amethystcrystal05.m2", }, { value = "amethystcrystal06.m2", + text = "amethystcrystal06.m2", fileId = "202128", text = "amethystcrystal06.m2", }, { value = "diamondcrystal01.m2", + text = "diamondcrystal01.m2", fileId = "202129", text = "diamondcrystal01.m2", }, { value = "diamondcrystal02.m2", + text = "diamondcrystal02.m2", fileId = "202130", text = "diamondcrystal02.m2", }, { value = "diamondcrystal03.m2", + text = "diamondcrystal03.m2", fileId = "202131", text = "diamondcrystal03.m2", }, { value = "diamondcrystal04.m2", + text = "diamondcrystal04.m2", fileId = "202132", text = "diamondcrystal04.m2", }, { value = "maraudoncrystalred01.m2", + text = "maraudoncrystalred01.m2", fileId = "202136", text = "maraudoncrystalred01.m2", }, { value = "rubycrystal01.m2", + text = "rubycrystal01.m2", fileId = "202140", text = "rubycrystal01.m2", }, { value = "rubycrystal02.m2", + text = "rubycrystal02.m2", fileId = "202141", text = "rubycrystal02.m2", }, { value = "rubycrystal03.m2", + text = "rubycrystal03.m2", fileId = "202142", text = "rubycrystal03.m2", }, { value = "rubycrystal04.m2", + text = "rubycrystal04.m2", fileId = "202143", text = "rubycrystal04.m2", }, { value = "rubycrystal05.m2", + text = "rubycrystal05.m2", fileId = "202144", text = "rubycrystal05.m2", }, { value = "rubycrystal06.m2", + text = "rubycrystal06.m2", fileId = "202145", text = "rubycrystal06.m2", }, { value = "rubycrystal07.m2", + text = "rubycrystal07.m2", fileId = "202146", text = "rubycrystal07.m2", }, { value = "rubycrystal08.m2", + text = "rubycrystal08.m2", fileId = "202147", text = "rubycrystal08.m2", }, { value = "rubycrystal09.m2", + text = "rubycrystal09.m2", fileId = "202148", text = "rubycrystal09.m2", }, { value = "rubycrystallarge01.m2", + text = "rubycrystallarge01.m2", fileId = "202149", text = "rubycrystallarge01.m2", }, { value = "rubycrystaltall01.m2", + text = "rubycrystaltall01.m2", fileId = "202150", text = "rubycrystaltall01.m2", }, @@ -49275,9 +58812,11 @@ WeakAuras.ModelPaths = { }, { value = "flowers", + text = "flowers", children = { { value = "maraudon_drippingflower01.m2", + text = "maraudon_drippingflower01.m2", fileId = "202154", text = "maraudon_drippingflower01.m2", }, @@ -49286,9 +58825,11 @@ WeakAuras.ModelPaths = { }, { value = "grovegravemound", + text = "grovegravemound", children = { { value = "grovegravemound01.m2", + text = "grovegravemound01.m2", fileId = "202158", text = "grovegravemound01.m2", }, @@ -49297,39 +58838,47 @@ WeakAuras.ModelPaths = { }, { value = "mauradondetail", + text = "mauradondetail", children = { { value = "maraudondetail01.m2", + text = "maraudondetail01.m2", fileId = "202164", text = "maraudondetail01.m2", }, { value = "maraudondetail02.m2", + text = "maraudondetail02.m2", fileId = "202165", text = "maraudondetail02.m2", }, { value = "maraudondetail03.m2", + text = "maraudondetail03.m2", fileId = "202166", text = "maraudondetail03.m2", }, { value = "maraudondetail04.m2", + text = "maraudondetail04.m2", fileId = "202167", text = "maraudondetail04.m2", }, { value = "maraudondetail05.m2", + text = "maraudondetail05.m2", fileId = "202168", text = "maraudondetail05.m2", }, { value = "maraudondetail06.m2", + text = "maraudondetail06.m2", fileId = "202169", text = "maraudondetail06.m2", }, { value = "maraudondetail07.m2", + text = "maraudondetail07.m2", fileId = "202170", text = "maraudondetail07.m2", }, @@ -49338,29 +58887,35 @@ WeakAuras.ModelPaths = { }, { value = "mushrooms", + text = "mushrooms", children = { { value = "maraudonmushroomspikey01.m2", + text = "maraudonmushroomspikey01.m2", fileId = "202173", text = "maraudonmushroomspikey01.m2", }, { value = "maraudonmushroomspikey02.m2", + text = "maraudonmushroomspikey02.m2", fileId = "202174", text = "maraudonmushroomspikey02.m2", }, { value = "maraudonshroom01.m2", + text = "maraudonshroom01.m2", fileId = "202176", text = "maraudonshroom01.m2", }, { value = "maraudonshroom02.m2", + text = "maraudonshroom02.m2", fileId = "202177", text = "maraudonshroom02.m2", }, { value = "maraudonshroom03.m2", + text = "maraudonshroom03.m2", fileId = "202178", text = "maraudonshroom03.m2", }, @@ -49369,14 +58924,17 @@ WeakAuras.ModelPaths = { }, { value = "pods", + text = "pods", children = { { value = "maraudonpod01.m2", + text = "maraudonpod01.m2", fileId = "202182", text = "maraudonpod01.m2", }, { value = "maraudonpod02.m2", + text = "maraudonpod02.m2", fileId = "202183", text = "maraudonpod02.m2", }, @@ -49385,39 +58943,47 @@ WeakAuras.ModelPaths = { }, { value = "roots", + text = "roots", children = { { value = "maraudonroot01.m2", + text = "maraudonroot01.m2", fileId = "202186", text = "maraudonroot01.m2", }, { value = "maraudonroot02.m2", + text = "maraudonroot02.m2", fileId = "202187", text = "maraudonroot02.m2", }, { value = "maraudonroot03.m2", + text = "maraudonroot03.m2", fileId = "202188", text = "maraudonroot03.m2", }, { value = "maraudonroot04.m2", + text = "maraudonroot04.m2", fileId = "202189", text = "maraudonroot04.m2", }, { value = "maraudonroot05.m2", + text = "maraudonroot05.m2", fileId = "202190", text = "maraudonroot05.m2", }, { value = "maraudonroot06.m2", + text = "maraudonroot06.m2", fileId = "202191", text = "maraudonroot06.m2", }, { value = "maraudonroot07.m2", + text = "maraudonroot07.m2", fileId = "202192", text = "maraudonroot07.m2", }, @@ -49426,24 +58992,29 @@ WeakAuras.ModelPaths = { }, { value = "ruinedtents", + text = "ruinedtents", children = { { value = "ruinedcentaurtent01.m2", + text = "ruinedcentaurtent01.m2", fileId = "202194", text = "ruinedcentaurtent01.m2", }, { value = "ruinedcentaurtent02.m2", + text = "ruinedcentaurtent02.m2", fileId = "202195", text = "ruinedcentaurtent02.m2", }, { value = "ruinedcentaurtent03.m2", + text = "ruinedcentaurtent03.m2", fileId = "202196", text = "ruinedcentaurtent03.m2", }, { value = "ruinedcentaurtent04.m2", + text = "ruinedcentaurtent04.m2", fileId = "202197", text = "ruinedcentaurtent04.m2", }, @@ -49452,19 +59023,23 @@ WeakAuras.ModelPaths = { }, { value = "satyrbanners", + text = "satyrbanners", children = { { value = "mrdnsatyrbanner01.m2", + text = "mrdnsatyrbanner01.m2", fileId = "202200", text = "mrdnsatyrbanner01.m2", }, { value = "mrdnsatyrbanner02.m2", + text = "mrdnsatyrbanner02.m2", fileId = "202201", text = "mrdnsatyrbanner02.m2", }, { value = "mrdnsatyrbanner03.m2", + text = "mrdnsatyrbanner03.m2", fileId = "202202", text = "mrdnsatyrbanner03.m2", }, @@ -49473,19 +59048,23 @@ WeakAuras.ModelPaths = { }, { value = "satyrfloorbraziers", + text = "satyrfloorbraziers", children = { { value = "satyrfloorbrazierblue01.m2", + text = "satyrfloorbrazierblue01.m2", fileId = "202203", text = "satyrfloorbrazierblue01.m2", }, { value = "satyrfloorbraziergreen01.m2", + text = "satyrfloorbraziergreen01.m2", fileId = "202204", text = "satyrfloorbraziergreen01.m2", }, { value = "satyrfloorbrazierpurple01.m2", + text = "satyrfloorbrazierpurple01.m2", fileId = "202205", text = "satyrfloorbrazierpurple01.m2", }, @@ -49494,34 +59073,41 @@ WeakAuras.ModelPaths = { }, { value = "satyrgraves", + text = "satyrgraves", children = { { value = "satyr_graves01.m2", + text = "satyr_graves01.m2", fileId = "202208", text = "satyr_graves01.m2", }, { value = "satyr_graves02.m2", + text = "satyr_graves02.m2", fileId = "202209", text = "satyr_graves02.m2", }, { value = "satyr_graves03.m2", + text = "satyr_graves03.m2", fileId = "202210", text = "satyr_graves03.m2", }, { value = "satyr_graves04.m2", + text = "satyr_graves04.m2", fileId = "202211", text = "satyr_graves04.m2", }, { value = "satyr_graves05.m2", + text = "satyr_graves05.m2", fileId = "202212", text = "satyr_graves05.m2", }, { value = "satyr_graves06.m2", + text = "satyr_graves06.m2", fileId = "202213", text = "satyr_graves06.m2", }, @@ -49530,19 +59116,23 @@ WeakAuras.ModelPaths = { }, { value = "satyrhangingbraziers", + text = "satyrhangingbraziers", children = { { value = "satyrhangingbrazierblue01.m2", + text = "satyrhangingbrazierblue01.m2", fileId = "202216", text = "satyrhangingbrazierblue01.m2", }, { value = "satyrhangingbrazierblue02.m2", + text = "satyrhangingbrazierblue02.m2", fileId = "202217", text = "satyrhangingbrazierblue02.m2", }, { value = "satyrhangingbrazierpurple01.m2", + text = "satyrhangingbrazierpurple01.m2", fileId = "202218", text = "satyrhangingbrazierpurple01.m2", }, @@ -49551,24 +59141,29 @@ WeakAuras.ModelPaths = { }, { value = "satyrwalls", + text = "satyrwalls", children = { { value = "satyrwall01.m2", + text = "satyrwall01.m2", fileId = "202220", text = "satyrwall01.m2", }, { value = "satyrwall02.m2", + text = "satyrwall02.m2", fileId = "202221", text = "satyrwall02.m2", }, { value = "satyrwall03.m2", + text = "satyrwall03.m2", fileId = "202222", text = "satyrwall03.m2", }, { value = "satyrwall04.m2", + text = "satyrwall04.m2", fileId = "202223", text = "satyrwall04.m2", }, @@ -49577,14 +59172,17 @@ WeakAuras.ModelPaths = { }, { value = "sporelight", + text = "sporelight", children = { { value = "sporelight01.m2", + text = "sporelight01.m2", fileId = "202225", text = "sporelight01.m2", }, { value = "sporelightyellow01.m2", + text = "sporelightyellow01.m2", fileId = "202229", text = "sporelightyellow01.m2", }, @@ -49593,9 +59191,11 @@ WeakAuras.ModelPaths = { }, { value = "spores", + text = "spores", children = { { value = "maraudonspore01.m2", + text = "maraudonspore01.m2", fileId = "202231", text = "maraudonspore01.m2", }, @@ -49604,29 +59204,35 @@ WeakAuras.ModelPaths = { }, { value = "stalactites", + text = "stalactites", children = { { value = "maraudonstalactites01.m2", + text = "maraudonstalactites01.m2", fileId = "202232", text = "maraudonstalactites01.m2", }, { value = "maraudonstalactites02.m2", + text = "maraudonstalactites02.m2", fileId = "202233", text = "maraudonstalactites02.m2", }, { value = "maraudonstalactites03.m2", + text = "maraudonstalactites03.m2", fileId = "202234", text = "maraudonstalactites03.m2", }, { value = "maraudonstalactites04.m2", + text = "maraudonstalactites04.m2", fileId = "202235", text = "maraudonstalactites04.m2", }, { value = "maraudonstalactites05.m2", + text = "maraudonstalactites05.m2", fileId = "202236", text = "maraudonstalactites05.m2", }, @@ -49635,39 +59241,47 @@ WeakAuras.ModelPaths = { }, { value = "vines", + text = "vines", children = { { value = "maraudonnastyvine01.m2", + text = "maraudonnastyvine01.m2", fileId = "202238", text = "maraudonnastyvine01.m2", }, { value = "maraudonnastyvine02.m2", + text = "maraudonnastyvine02.m2", fileId = "202239", text = "maraudonnastyvine02.m2", }, { value = "maraudonnastyvine03.m2", + text = "maraudonnastyvine03.m2", fileId = "202240", text = "maraudonnastyvine03.m2", }, { value = "maraudonnastyvine04.m2", + text = "maraudonnastyvine04.m2", fileId = "202241", text = "maraudonnastyvine04.m2", }, { value = "maraudonnastyvine05.m2", + text = "maraudonnastyvine05.m2", fileId = "202242", text = "maraudonnastyvine05.m2", }, { value = "maraudonnastyvine06.m2", + text = "maraudonnastyvine06.m2", fileId = "202243", text = "maraudonnastyvine06.m2", }, { value = "maraudonnastyvine07.m2", + text = "maraudonnastyvine07.m2", fileId = "202244", text = "maraudonnastyvine07.m2", }, @@ -49676,39 +59290,47 @@ WeakAuras.ModelPaths = { }, { value = "waterfalls", + text = "waterfalls", children = { { value = "maraudon_waterfall01.m2", + text = "maraudon_waterfall01.m2", fileId = "202246", text = "maraudon_waterfall01.m2", }, { value = "maraudon_waterfall02.m2", + text = "maraudon_waterfall02.m2", fileId = "202247", text = "maraudon_waterfall02.m2", }, { value = "maraudon_waterfall03.m2", + text = "maraudon_waterfall03.m2", fileId = "202248", text = "maraudon_waterfall03.m2", }, { value = "maraudon_waterfall04.m2", + text = "maraudon_waterfall04.m2", fileId = "202249", text = "maraudon_waterfall04.m2", }, { value = "maraudoncorruptedfalls.m2", + text = "maraudoncorruptedfalls.m2", fileId = "202251", text = "maraudoncorruptedfalls.m2", }, { value = "maraudoncorruptedfalls02.m2", + text = "maraudoncorruptedfalls02.m2", fileId = "202252", text = "maraudoncorruptedfalls02.m2", }, { value = "maraudoncorruptedfalls03.m2", + text = "maraudoncorruptedfalls03.m2", fileId = "202253", text = "maraudoncorruptedfalls03.m2", }, @@ -49723,20 +59345,25 @@ WeakAuras.ModelPaths = { }, { value = "moonglade", + text = "moonglade", children = { { value = "passivedoodads", + text = "passivedoodads", children = { { value = "druidstone", + text = "druidstone", children = { { value = "druidstone.m2", + text = "druidstone.m2", fileId = "202258", text = "druidstone.m2", }, { value = "druidstonetopless.m2", + text = "druidstonetopless.m2", fileId = "202259", text = "druidstonetopless.m2", }, @@ -49745,14 +59372,17 @@ WeakAuras.ModelPaths = { }, { value = "moongladebushes", + text = "moongladebushes", children = { { value = "moongladebush01.m2", + text = "moongladebush01.m2", fileId = "202261", text = "moongladebush01.m2", }, { value = "moongladebush02.m2", + text = "moongladebush02.m2", fileId = "202263", text = "moongladebush02.m2", }, @@ -49761,44 +59391,53 @@ WeakAuras.ModelPaths = { }, { value = "moongladetrees", + text = "moongladetrees", children = { { value = "moongladetree01.m2", + text = "moongladetree01.m2", fileId = "202271", text = "moongladetree01.m2", }, { value = "moongladetree02.m2", + text = "moongladetree02.m2", fileId = "202272", text = "moongladetree02.m2", }, { value = "moongladetree03.m2", + text = "moongladetree03.m2", fileId = "202273", text = "moongladetree03.m2", }, { value = "moongladetree04.m2", + text = "moongladetree04.m2", fileId = "202274", text = "moongladetree04.m2", }, { value = "moongladetree05.m2", + text = "moongladetree05.m2", fileId = "202275", text = "moongladetree05.m2", }, { value = "moongladetree06.m2", + text = "moongladetree06.m2", fileId = "202276", text = "moongladetree06.m2", }, { value = "moongladetree07.m2", + text = "moongladetree07.m2", fileId = "202277", text = "moongladetree07.m2", }, { value = "moongladetree08.m2", + text = "moongladetree08.m2", fileId = "202278", text = "moongladetree08.m2", }, @@ -49813,20 +59452,25 @@ WeakAuras.ModelPaths = { }, { value = "mulgore", + text = "mulgore", children = { { value = "passivedoodads", + text = "passivedoodads", children = { { value = "burnedwagons", + text = "burnedwagons", children = { { value = "burnedgypsywagon01.m2", + text = "burnedgypsywagon01.m2", fileId = "202292", text = "burnedgypsywagon01.m2", }, { value = "burnedgypsywagon02.m2", + text = "burnedgypsywagon02.m2", fileId = "202293", text = "burnedgypsywagon02.m2", }, @@ -49835,9 +59479,11 @@ WeakAuras.ModelPaths = { }, { value = "funeralpyres", + text = "funeralpyres", children = { { value = "funeralpyre01.m2", + text = "funeralpyre01.m2", fileId = "202295", text = "funeralpyre01.m2", }, @@ -49846,9 +59492,11 @@ WeakAuras.ModelPaths = { }, { value = "pinecone", + text = "pinecone", children = { { value = "pinecone.m2", + text = "pinecone.m2", fileId = "202297", text = "pinecone.m2", }, @@ -49857,9 +59505,11 @@ WeakAuras.ModelPaths = { }, { value = "rockarch", + text = "rockarch", children = { { value = "mullgorerockarch.m2", + text = "mullgorerockarch.m2", fileId = "202298", text = "mullgorerockarch.m2", }, @@ -49868,24 +59518,29 @@ WeakAuras.ModelPaths = { }, { value = "rocks", + text = "rocks", children = { { value = "mullgorerock01.m2", + text = "mullgorerock01.m2", fileId = "202300", text = "mullgorerock01.m2", }, { value = "mullgorerock02.m2", + text = "mullgorerock02.m2", fileId = "202301", text = "mullgorerock02.m2", }, { value = "mullgorerock03.m2", + text = "mullgorerock03.m2", fileId = "202302", text = "mullgorerock03.m2", }, { value = "mullgorerock04.m2", + text = "mullgorerock04.m2", fileId = "202303", text = "mullgorerock04.m2", }, @@ -49894,44 +59549,53 @@ WeakAuras.ModelPaths = { }, { value = "thorns", + text = "thorns", children = { { value = "mullgorethorn01.m2", + text = "mullgorethorn01.m2", fileId = "202305", text = "mullgorethorn01.m2", }, { value = "mullgorethorn02.m2", + text = "mullgorethorn02.m2", fileId = "202306", text = "mullgorethorn02.m2", }, { value = "mullgorethorn03.m2", + text = "mullgorethorn03.m2", fileId = "202307", text = "mullgorethorn03.m2", }, { value = "mullgorethorn04.m2", + text = "mullgorethorn04.m2", fileId = "202308", text = "mullgorethorn04.m2", }, { value = "mullgorethorn05.m2", + text = "mullgorethorn05.m2", fileId = "202309", text = "mullgorethorn05.m2", }, { value = "mullgorethorn06.m2", + text = "mullgorethorn06.m2", fileId = "202310", text = "mullgorethorn06.m2", }, { value = "mullgorethorn07.m2", + text = "mullgorethorn07.m2", fileId = "202311", text = "mullgorethorn07.m2", }, { value = "mullgorethornspike.m2", + text = "mullgorethornspike.m2", fileId = "202312", text = "mullgorethornspike.m2", }, @@ -49940,14 +59604,17 @@ WeakAuras.ModelPaths = { }, { value = "thunderbluffelevator", + text = "thunderbluffelevator", children = { { value = "elevatorcar.m2", + text = "elevatorcar.m2", fileId = "202316", text = "elevatorcar.m2", }, { value = "kodoelevatormachine.m2", + text = "kodoelevatormachine.m2", fileId = "202317", text = "kodoelevatormachine.m2", }, @@ -49956,19 +59623,23 @@ WeakAuras.ModelPaths = { }, { value = "trees", + text = "trees", children = { { value = "mullgorefallentree01.m2", + text = "mullgorefallentree01.m2", fileId = "202321", text = "mullgorefallentree01.m2", }, { value = "mullgoretree01.m2", + text = "mullgoretree01.m2", fileId = "202322", text = "mullgoretree01.m2", }, { value = "mullgoretree02.m2", + text = "mullgoretree02.m2", fileId = "202323", text = "mullgoretree02.m2", }, @@ -49983,12 +59654,15 @@ WeakAuras.ModelPaths = { }, { value = "onyxiaslair", + text = "onyxiaslair", children = { { value = "doors", + text = "doors", children = { { value = "onyxiasgate01.m2", + text = "onyxiasgate01.m2", fileId = "202324", text = "onyxiasgate01.m2", }, @@ -49997,9 +59671,11 @@ WeakAuras.ModelPaths = { }, { value = "fallingrocks", + text = "fallingrocks", children = { { value = "onyziaslairfallingrocks.m2", + text = "onyziaslairfallingrocks.m2", fileId = "202325", text = "onyziaslairfallingrocks.m2", }, @@ -50008,19 +59684,23 @@ WeakAuras.ModelPaths = { }, { value = "lavatraps", + text = "lavatraps", children = { { value = "onyziaslairlavasplash.m2", + text = "onyziaslairlavasplash.m2", fileId = "202326", text = "onyziaslairlavasplash.m2", }, { value = "onyziaslairlavatrap.m2", + text = "onyziaslairlavatrap.m2", fileId = "202327", text = "onyziaslairlavatrap.m2", }, { value = "onyziaslairlavatrapmirror.m2", + text = "onyziaslairlavatrapmirror.m2", fileId = "202328", text = "onyziaslairlavatrapmirror.m2", }, @@ -50032,15 +59712,19 @@ WeakAuras.ModelPaths = { }, { value = "orgrimmar", + text = "orgrimmar", children = { { value = "passivedoodads", + text = "passivedoodads", children = { { value = "auctionhouse", + text = "auctionhouse", children = { { value = "kl_auctionhousecollide.m2", + text = "kl_auctionhousecollide.m2", fileId = "202334", text = "kl_auctionhousecollide.m2", }, @@ -50049,9 +59733,11 @@ WeakAuras.ModelPaths = { }, { value = "doors", + text = "doors", children = { { value = "orgrimmardoor.m2", + text = "orgrimmardoor.m2", fileId = "202335", text = "orgrimmardoor.m2", }, @@ -50060,9 +59746,11 @@ WeakAuras.ModelPaths = { }, { value = "manarothtree", + text = "manarothtree", children = { { value = "manerothtree.m2", + text = "manerothtree.m2", fileId = "202344", text = "manerothtree.m2", }, @@ -50071,9 +59759,11 @@ WeakAuras.ModelPaths = { }, { value = "maptable", + text = "maptable", children = { { value = "hordemaptable.m2", + text = "hordemaptable.m2", fileId = "202348", text = "hordemaptable.m2", }, @@ -50082,14 +59772,17 @@ WeakAuras.ModelPaths = { }, { value = "onyxiatrophypost", + text = "onyxiatrophypost", children = { { value = "hordenefarianpost.m2", + text = "hordenefarianpost.m2", fileId = "202355", text = "hordenefarianpost.m2", }, { value = "hordeonyxiatrophypost.m2", + text = "hordeonyxiatrophypost.m2", fileId = "202356", text = "hordeonyxiatrophypost.m2", }, @@ -50098,19 +59791,23 @@ WeakAuras.ModelPaths = { }, { value = "orgrimmarbonfire", + text = "orgrimmarbonfire", children = { { value = "orgrimmarbonfire01.m2", + text = "orgrimmarbonfire01.m2", fileId = "202360", text = "orgrimmarbonfire01.m2", }, { value = "orgrimmarfloatingembers.m2", + text = "orgrimmarfloatingembers.m2", fileId = "202362", text = "orgrimmarfloatingembers.m2", }, { value = "orgrimmarsmokeemitter.m2", + text = "orgrimmarsmokeemitter.m2", fileId = "202363", text = "orgrimmarsmokeemitter.m2", }, @@ -50119,9 +59816,11 @@ WeakAuras.ModelPaths = { }, { value = "pentagram", + text = "pentagram", children = { { value = "orgrimmarpentagram.m2", + text = "orgrimmarpentagram.m2", fileId = "202366", text = "orgrimmarpentagram.m2", }, @@ -50130,14 +59829,17 @@ WeakAuras.ModelPaths = { }, { value = "thralls_throne.m2", + text = "thralls_throne.m2", fileId = "202367", text = "thralls_throne.m2", }, { value = "waterfalls", + text = "waterfalls", children = { { value = "orgrimmar_waterfalla.m2", + text = "orgrimmar_waterfalla.m2", fileId = "202368", text = "orgrimmar_waterfalla.m2", }, @@ -50152,35 +59854,43 @@ WeakAuras.ModelPaths = { }, { value = "razorfen", + text = "razorfen", children = { { value = "activedoodads", + text = "activedoodads", children = { { value = "razorfendoors", + text = "razorfendoors", children = { { value = "razorfendoor01.m2", + text = "razorfendoor01.m2", fileId = "202369", text = "razorfendoor01.m2", }, { value = "razorfendoor02.m2", + text = "razorfendoor02.m2", fileId = "202370", text = "razorfendoor02.m2", }, { value = "razorfendoor03.m2", + text = "razorfendoor03.m2", fileId = "202371", text = "razorfendoor03.m2", }, { value = "razorfendoor04.m2", + text = "razorfendoor04.m2", fileId = "202372", text = "razorfendoor04.m2", }, { value = "razorfendoor05.m2", + text = "razorfendoor05.m2", fileId = "202373", text = "razorfendoor05.m2", }, @@ -50195,15 +59905,19 @@ WeakAuras.ModelPaths = { }, { value = "silithidhive", + text = "silithidhive", children = { { value = "passivedoodads", + text = "passivedoodads", children = { { value = "lights", + text = "lights", children = { { value = "silithidlight02.m2", + text = "silithidlight02.m2", fileId = "202375", text = "silithidlight02.m2", }, @@ -50212,29 +59926,35 @@ WeakAuras.ModelPaths = { }, { value = "membranes", + text = "membranes", children = { { value = "exterior_arch01.m2", + text = "exterior_arch01.m2", fileId = "202376", text = "exterior_arch01.m2", }, { value = "exterior_arch02.m2", + text = "exterior_arch02.m2", fileId = "202377", text = "exterior_arch02.m2", }, { value = "silithidmembrane_01.m2", + text = "silithidmembrane_01.m2", fileId = "202380", text = "silithidmembrane_01.m2", }, { value = "silithidmembrane_02.m2", + text = "silithidmembrane_02.m2", fileId = "202381", text = "silithidmembrane_02.m2", }, { value = "silithidmembrane_03.m2", + text = "silithidmembrane_03.m2", fileId = "202382", text = "silithidmembrane_03.m2", }, @@ -50243,19 +59963,23 @@ WeakAuras.ModelPaths = { }, { value = "silithidmodels", + text = "silithidmodels", children = { { value = "silithiddragonflymodel_01.m2", + text = "silithiddragonflymodel_01.m2", fileId = "202387", text = "silithiddragonflymodel_01.m2", }, { value = "silithidlarvamodel_01.m2", + text = "silithidlarvamodel_01.m2", fileId = "202389", text = "silithidlarvamodel_01.m2", }, { value = "silithidpillbug01.m2", + text = "silithidpillbug01.m2", fileId = "202390", text = "silithidpillbug01.m2", }, @@ -50264,19 +59988,23 @@ WeakAuras.ModelPaths = { }, { value = "spikes", + text = "spikes", children = { { value = "silithidspike_01.m2", + text = "silithidspike_01.m2", fileId = "202393", text = "silithidspike_01.m2", }, { value = "silithidspike_02.m2", + text = "silithidspike_02.m2", fileId = "202394", text = "silithidspike_02.m2", }, { value = "silithidspike_03.m2", + text = "silithidspike_03.m2", fileId = "202395", text = "silithidspike_03.m2", }, @@ -50291,15 +60019,19 @@ WeakAuras.ModelPaths = { }, { value = "silithus", + text = "silithus", children = { { value = "activedoodads", + text = "activedoodads", children = { { value = "ahn_quiraj_ossiriancrystal", + text = "ahn_quiraj_ossiriancrystal", children = { { value = "ahn_quiraj_ossiriancrystal.m2", + text = "ahn_quiraj_ossiriancrystal.m2", fileId = "202396", text = "ahn_quiraj_ossiriancrystal.m2", }, @@ -50308,34 +60040,41 @@ WeakAuras.ModelPaths = { }, { value = "ahnqirajdoor", + text = "ahnqirajdoor", children = { { value = "ahn_qiraj_doorplug.m2", + text = "ahn_qiraj_doorplug.m2", fileId = "202399", text = "ahn_qiraj_doorplug.m2", }, { value = "ahn_qiraj_doorroots.m2", + text = "ahn_qiraj_doorroots.m2", fileId = "202400", text = "ahn_qiraj_doorroots.m2", }, { value = "ahn_qiraj_doorrunes.m2", + text = "ahn_qiraj_doorrunes.m2", fileId = "202401", text = "ahn_qiraj_doorrunes.m2", }, { value = "ahnqirajdoor01.m2", + text = "ahnqirajdoor01.m2", fileId = "202402", text = "ahnqirajdoor01.m2", }, { value = "ahnqirajdoor02.m2", + text = "ahnqirajdoor02.m2", fileId = "202403", text = "ahnqirajdoor02.m2", }, { value = "ahnqirajsandtrap.m2", + text = "ahnqirajsandtrap.m2", fileId = "202405", text = "ahnqirajsandtrap.m2", }, @@ -50344,9 +60083,11 @@ WeakAuras.ModelPaths = { }, { value = "egglayer", + text = "egglayer", children = { { value = "ahnqirajegglayer.m2", + text = "ahnqirajegglayer.m2", fileId = "202413", text = "ahnqirajegglayer.m2", }, @@ -50355,9 +60096,11 @@ WeakAuras.ModelPaths = { }, { value = "sandworm", + text = "sandworm", children = { { value = "sandworm_rockbase.m2", + text = "sandworm_rockbase.m2", fileId = "202417", text = "sandworm_rockbase.m2", }, @@ -50369,32 +60112,39 @@ WeakAuras.ModelPaths = { }, { value = "passivedoodads", + text = "passivedoodads", children = { { value = "ahnqiracoffins", + text = "ahnqiracoffins", children = { { value = "aq_coffinbase.m2", + text = "aq_coffinbase.m2", fileId = "202418", text = "aq_coffinbase.m2", }, { value = "aq_coffinlid01.m2", + text = "aq_coffinlid01.m2", fileId = "202419", text = "aq_coffinlid01.m2", }, { value = "aq_coffinlid02.m2", + text = "aq_coffinlid02.m2", fileId = "202420", text = "aq_coffinlid02.m2", }, { value = "aq_coffinlid03.m2", + text = "aq_coffinlid03.m2", fileId = "202421", text = "aq_coffinlid03.m2", }, { value = "aq_coffinlid04.m2", + text = "aq_coffinlid04.m2", fileId = "202422", text = "aq_coffinlid04.m2", }, @@ -50403,12 +60153,15 @@ WeakAuras.ModelPaths = { }, { value = "ahnqiraj", + text = "ahnqiraj", children = { { value = "torch", + text = "torch", children = { { value = "ahnqirajwalltorch01.m2", + text = "ahnqirajwalltorch01.m2", fileId = "202425", text = "ahnqirajwalltorch01.m2", }, @@ -50420,9 +60173,11 @@ WeakAuras.ModelPaths = { }, { value = "ahnqirajaltar", + text = "ahnqirajaltar", children = { { value = "ahnqirajalter.m2", + text = "ahnqirajalter.m2", fileId = "202429", text = "ahnqirajalter.m2", }, @@ -50431,9 +60186,11 @@ WeakAuras.ModelPaths = { }, { value = "ahnqirajglow", + text = "ahnqirajglow", children = { { value = "quirajglow.m2", + text = "quirajglow.m2", fileId = "202430", text = "quirajglow.m2", }, @@ -50442,24 +60199,29 @@ WeakAuras.ModelPaths = { }, { value = "ahnqirajsconces", + text = "ahnqirajsconces", children = { { value = "ahnqirajsconce01.m2", + text = "ahnqirajsconce01.m2", fileId = "202432", text = "ahnqirajsconce01.m2", }, { value = "ahnqirajsconce02.m2", + text = "ahnqirajsconce02.m2", fileId = "202433", text = "ahnqirajsconce02.m2", }, { value = "ahnqirajsconce03.m2", + text = "ahnqirajsconce03.m2", fileId = "202434", text = "ahnqirajsconce03.m2", }, { value = "ahnqirajsconce04.m2", + text = "ahnqirajsconce04.m2", fileId = "202435", text = "ahnqirajsconce04.m2", }, @@ -50468,19 +60230,23 @@ WeakAuras.ModelPaths = { }, { value = "ahnqirajstairs", + text = "ahnqirajstairs", children = { { value = "ahnqiraj_slab01.m2", + text = "ahnqiraj_slab01.m2", fileId = "202437", text = "ahnqiraj_slab01.m2", }, { value = "ahnqiraj_stair01.m2", + text = "ahnqiraj_stair01.m2", fileId = "202438", text = "ahnqiraj_stair01.m2", }, { value = "ahnqiraj_stair02.m2", + text = "ahnqiraj_stair02.m2", fileId = "202439", text = "ahnqiraj_stair02.m2", }, @@ -50489,19 +60255,23 @@ WeakAuras.ModelPaths = { }, { value = "ahnqirajstones", + text = "ahnqirajstones", children = { { value = "ahn_qirajbrick01.m2", + text = "ahn_qirajbrick01.m2", fileId = "202440", text = "ahn_qirajbrick01.m2", }, { value = "ahn_qirajbrick02.m2", + text = "ahn_qirajbrick02.m2", fileId = "202441", text = "ahn_qirajbrick02.m2", }, { value = "ahn_qirajobelisk.m2", + text = "ahn_qirajobelisk.m2", fileId = "202442", text = "ahn_qirajobelisk.m2", }, @@ -50510,174 +60280,209 @@ WeakAuras.ModelPaths = { }, { value = "crystals", + text = "crystals", children = { { value = "floatingpurplecrystal01.m2", + text = "floatingpurplecrystal01.m2", fileId = "202443", text = "floatingpurplecrystal01.m2", }, { value = "floatingpurplecrystalbroken01.m2", + text = "floatingpurplecrystalbroken01.m2", fileId = "202444", text = "floatingpurplecrystalbroken01.m2", }, { value = "floatingpurplecrystalbroken02.m2", + text = "floatingpurplecrystalbroken02.m2", fileId = "202445", text = "floatingpurplecrystalbroken02.m2", }, { value = "floatingpurplecrystalbroken03.m2", + text = "floatingpurplecrystalbroken03.m2", fileId = "202446", text = "floatingpurplecrystalbroken03.m2", }, { value = "floatingredcrystal01.m2", + text = "floatingredcrystal01.m2", fileId = "202447", text = "floatingredcrystal01.m2", }, { value = "floatingredcrystalbroken01.m2", + text = "floatingredcrystalbroken01.m2", fileId = "202448", text = "floatingredcrystalbroken01.m2", }, { value = "floatingredcrystalbroken02.m2", + text = "floatingredcrystalbroken02.m2", fileId = "202449", text = "floatingredcrystalbroken02.m2", }, { value = "floatingredcrystalbroken03.m2", + text = "floatingredcrystalbroken03.m2", fileId = "202450", text = "floatingredcrystalbroken03.m2", }, { value = "glyphedcrystal.m2", + text = "glyphedcrystal.m2", fileId = "202451", text = "glyphedcrystal.m2", }, { value = "silithus_commcrystal_base01.m2", + text = "silithus_commcrystal_base01.m2", fileId = "202453", text = "silithus_commcrystal_base01.m2", }, { value = "silithus_commcrystal_base02.m2", + text = "silithus_commcrystal_base02.m2", fileId = "202454", text = "silithus_commcrystal_base02.m2", }, { value = "silithus_commcrystal_base03.m2", + text = "silithus_commcrystal_base03.m2", fileId = "202455", text = "silithus_commcrystal_base03.m2", }, { value = "silithus_commnicationcrystal_01.m2", + text = "silithus_commnicationcrystal_01.m2", fileId = "202456", text = "silithus_commnicationcrystal_01.m2", }, { value = "silithus_commnicationcrystal_02.m2", + text = "silithus_commnicationcrystal_02.m2", fileId = "202457", text = "silithus_commnicationcrystal_02.m2", }, { value = "silithus_commnicationcrystal_03.m2", + text = "silithus_commnicationcrystal_03.m2", fileId = "202458", text = "silithus_commnicationcrystal_03.m2", }, { value = "silithus_crystal_clump_01.m2", + text = "silithus_crystal_clump_01.m2", fileId = "202463", text = "silithus_crystal_clump_01.m2", }, { value = "silithus_crystal_clump_02.m2", + text = "silithus_crystal_clump_02.m2", fileId = "202464", text = "silithus_crystal_clump_02.m2", }, { value = "silithus_crystal_clump_03.m2", + text = "silithus_crystal_clump_03.m2", fileId = "202465", text = "silithus_crystal_clump_03.m2", }, { value = "silithus_crystal_clump_04.m2", + text = "silithus_crystal_clump_04.m2", fileId = "202466", text = "silithus_crystal_clump_04.m2", }, { value = "silithus_crystal_formation_01.m2", + text = "silithus_crystal_formation_01.m2", fileId = "202471", text = "silithus_crystal_formation_01.m2", }, { value = "silithus_crystal_formation_02.m2", + text = "silithus_crystal_formation_02.m2", fileId = "202472", text = "silithus_crystal_formation_02.m2", }, { value = "silithus_crystal_formation_03.m2", + text = "silithus_crystal_formation_03.m2", fileId = "202473", text = "silithus_crystal_formation_03.m2", }, { value = "silithus_crystal_formation_04.m2", + text = "silithus_crystal_formation_04.m2", fileId = "202474", text = "silithus_crystal_formation_04.m2", }, { value = "silithus_crystal_masterbase.m2", + text = "silithus_crystal_masterbase.m2", fileId = "202475", text = "silithus_crystal_masterbase.m2", }, { value = "silithus_crystal_nub_01.m2", + text = "silithus_crystal_nub_01.m2", fileId = "202477", text = "silithus_crystal_nub_01.m2", }, { value = "silithus_crystal_nub_02.m2", + text = "silithus_crystal_nub_02.m2", fileId = "202478", text = "silithus_crystal_nub_02.m2", }, { value = "silithus_crystal_nub_03.m2", + text = "silithus_crystal_nub_03.m2", fileId = "202479", text = "silithus_crystal_nub_03.m2", }, { value = "silithus_crystal_nub_04.m2", + text = "silithus_crystal_nub_04.m2", fileId = "202480", text = "silithus_crystal_nub_04.m2", }, { value = "silithus_crystal_nub_05.m2", + text = "silithus_crystal_nub_05.m2", fileId = "202481", text = "silithus_crystal_nub_05.m2", }, { value = "silithus_crystal_nub_06.m2", + text = "silithus_crystal_nub_06.m2", fileId = "202482", text = "silithus_crystal_nub_06.m2", }, { value = "silithus_crystal_spike_01.m2", + text = "silithus_crystal_spike_01.m2", fileId = "202483", text = "silithus_crystal_spike_01.m2", }, { value = "silithus_crystal_spike_02.m2", + text = "silithus_crystal_spike_02.m2", fileId = "202484", text = "silithus_crystal_spike_02.m2", }, { value = "silithus_crystal_spike_03.m2", + text = "silithus_crystal_spike_03.m2", fileId = "202485", text = "silithus_crystal_spike_03.m2", }, { value = "silithus_crystal_spike_04.m2", + text = "silithus_crystal_spike_04.m2", fileId = "202486", text = "silithus_crystal_spike_04.m2", }, @@ -50686,9 +60491,11 @@ WeakAuras.ModelPaths = { }, { value = "dustdevil", + text = "dustdevil", children = { { value = "ahnqirajdustdevil.m2", + text = "ahnqirajdustdevil.m2", fileId = "202487", text = "ahnqirajdustdevil.m2", }, @@ -50697,9 +60504,11 @@ WeakAuras.ModelPaths = { }, { value = "eggs", + text = "eggs", children = { { value = "silithidegg.m2", + text = "silithidegg.m2", fileId = "202490", text = "silithidegg.m2", }, @@ -50708,59 +60517,71 @@ WeakAuras.ModelPaths = { }, { value = "elven", + text = "elven", children = { { value = "elventowerroofsilithus02.m2", + text = "elventowerroofsilithus02.m2", fileId = "202493", text = "elventowerroofsilithus02.m2", }, { value = "elventowersilithus02.m2", + text = "elventowersilithus02.m2", fileId = "202494", text = "elventowersilithus02.m2", }, { value = "elventowersilithus03.m2", + text = "elventowersilithus03.m2", fileId = "202495", text = "elventowersilithus03.m2", }, { value = "elventowersilithushorn.m2", + text = "elventowersilithushorn.m2", fileId = "202496", text = "elventowersilithushorn.m2", }, { value = "nightelfruinarchsilithus01.m2", + text = "nightelfruinarchsilithus01.m2", fileId = "202498", text = "nightelfruinarchsilithus01.m2", }, { value = "nightelfruinwallsilithus01.m2", + text = "nightelfruinwallsilithus01.m2", fileId = "202499", text = "nightelfruinwallsilithus01.m2", }, { value = "nightelfruinwallsilithus01b.m2", + text = "nightelfruinwallsilithus01b.m2", fileId = "202500", text = "nightelfruinwallsilithus01b.m2", }, { value = "nightelfruinwallsilithus02.m2", + text = "nightelfruinwallsilithus02.m2", fileId = "202501", text = "nightelfruinwallsilithus02.m2", }, { value = "nightelfruinwallsilithus03.m2", + text = "nightelfruinwallsilithus03.m2", fileId = "202502", text = "nightelfruinwallsilithus03.m2", }, { value = "nightelfruinwallsilithusrubble01.m2", + text = "nightelfruinwallsilithusrubble01.m2", fileId = "202503", text = "nightelfruinwallsilithusrubble01.m2", }, { value = "nightelfruinwallsilithusrubble02.m2", + text = "nightelfruinwallsilithusrubble02.m2", fileId = "202504", text = "nightelfruinwallsilithusrubble02.m2", }, @@ -50769,14 +60590,17 @@ WeakAuras.ModelPaths = { }, { value = "gong", + text = "gong", children = { { value = "silithidgong.m2", + text = "silithidgong.m2", fileId = "202508", text = "silithidgong.m2", }, { value = "silithidgongpodium.m2", + text = "silithidgongpodium.m2", fileId = "202509", text = "silithidgongpodium.m2", }, @@ -50785,24 +60609,29 @@ WeakAuras.ModelPaths = { }, { value = "hives", + text = "hives", children = { { value = "silithushanginghive01.m2", + text = "silithushanginghive01.m2", fileId = "202513", text = "silithushanginghive01.m2", }, { value = "smallhive01.m2", + text = "smallhive01.m2", fileId = "202515", text = "smallhive01.m2", }, { value = "smallhive02.m2", + text = "smallhive02.m2", fileId = "202516", text = "smallhive02.m2", }, { value = "smallhive03.m2", + text = "smallhive03.m2", fileId = "202517", text = "smallhive03.m2", }, @@ -50811,19 +60640,23 @@ WeakAuras.ModelPaths = { }, { value = "insectmound", + text = "insectmound", children = { { value = "silithusinsectmound01.m2", + text = "silithusinsectmound01.m2", fileId = "202519", text = "silithusinsectmound01.m2", }, { value = "silithusinsectmound02.m2", + text = "silithusinsectmound02.m2", fileId = "202520", text = "silithusinsectmound02.m2", }, { value = "silithusinsectmound03.m2", + text = "silithusinsectmound03.m2", fileId = "202521", text = "silithusinsectmound03.m2", }, @@ -50832,9 +60665,11 @@ WeakAuras.ModelPaths = { }, { value = "masterhiveswarm", + text = "masterhiveswarm", children = { { value = "masterhiveswarm.m2", + text = "masterhiveswarm.m2", fileId = "202522", text = "masterhiveswarm.m2", }, @@ -50843,19 +60678,23 @@ WeakAuras.ModelPaths = { }, { value = "mummies", + text = "mummies", children = { { value = "aq_mummy01.m2", + text = "aq_mummy01.m2", fileId = "202525", text = "aq_mummy01.m2", }, { value = "aq_mummy02.m2", + text = "aq_mummy02.m2", fileId = "202527", text = "aq_mummy02.m2", }, { value = "aq_mummy03.m2", + text = "aq_mummy03.m2", fileId = "202529", text = "aq_mummy03.m2", }, @@ -50864,9 +60703,11 @@ WeakAuras.ModelPaths = { }, { value = "obsidianstatue", + text = "obsidianstatue", children = { { value = "obsidianstatue.m2", + text = "obsidianstatue.m2", fileId = "202533", text = "obsidianstatue.m2", }, @@ -50875,19 +60716,23 @@ WeakAuras.ModelPaths = { }, { value = "pods", + text = "pods", children = { { value = "silithuspod01.m2", + text = "silithuspod01.m2", fileId = "202534", text = "silithuspod01.m2", }, { value = "silithuspod02.m2", + text = "silithuspod02.m2", fileId = "202535", text = "silithuspod02.m2", }, { value = "silithuspod03.m2", + text = "silithuspod03.m2", fileId = "202536", text = "silithuspod03.m2", }, @@ -50896,14 +60741,17 @@ WeakAuras.ModelPaths = { }, { value = "pylons", + text = "pylons", children = { { value = "silithuspylon.m2", + text = "silithuspylon.m2", fileId = "202539", text = "silithuspylon.m2", }, { value = "silithuspylonbroken.m2", + text = "silithuspylonbroken.m2", fileId = "202540", text = "silithuspylonbroken.m2", }, @@ -50912,9 +60760,11 @@ WeakAuras.ModelPaths = { }, { value = "quiraj_small_swarm", + text = "quiraj_small_swarm", children = { { value = "quiraj_small_swarm.m2", + text = "quiraj_small_swarm.m2", fileId = "202543", text = "quiraj_small_swarm.m2", }, @@ -50923,9 +60773,11 @@ WeakAuras.ModelPaths = { }, { value = "quirajbeeroomswarm", + text = "quirajbeeroomswarm", children = { { value = "quiraj_beeroom_swarm.m2", + text = "quiraj_beeroom_swarm.m2", fileId = "202545", text = "quiraj_beeroom_swarm.m2", }, @@ -50934,99 +60786,119 @@ WeakAuras.ModelPaths = { }, { value = "quirajruins", + text = "quirajruins", children = { { value = "quirajfallenwall01.m2", + text = "quirajfallenwall01.m2", fileId = "202549", text = "quirajfallenwall01.m2", }, { value = "quirajlwall01.m2", + text = "quirajlwall01.m2", fileId = "202550", text = "quirajlwall01.m2", }, { value = "quirajlwall02.m2", + text = "quirajlwall02.m2", fileId = "202551", text = "quirajlwall02.m2", }, { value = "quirajlwall03.m2", + text = "quirajlwall03.m2", fileId = "202552", text = "quirajlwall03.m2", }, { value = "quirajpillar.m2", + text = "quirajpillar.m2", fileId = "202553", text = "quirajpillar.m2", }, { value = "quirajpillarbroken.m2", + text = "quirajpillarbroken.m2", fileId = "202554", text = "quirajpillarbroken.m2", }, { value = "quirajruinblock01.m2", + text = "quirajruinblock01.m2", fileId = "202555", text = "quirajruinblock01.m2", }, { value = "quirajruinblock02.m2", + text = "quirajruinblock02.m2", fileId = "202556", text = "quirajruinblock02.m2", }, { value = "quirajruinblock03.m2", + text = "quirajruinblock03.m2", fileId = "202557", text = "quirajruinblock03.m2", }, { value = "quirajtower03roof.m2", + text = "quirajtower03roof.m2", fileId = "202558", text = "quirajtower03roof.m2", }, { value = "quirajtowerfallen.m2", + text = "quirajtowerfallen.m2", fileId = "202559", text = "quirajtowerfallen.m2", }, { value = "quirajtwall01.m2", + text = "quirajtwall01.m2", fileId = "202560", text = "quirajtwall01.m2", }, { value = "quirajtwall02.m2", + text = "quirajtwall02.m2", fileId = "202561", text = "quirajtwall02.m2", }, { value = "quirajtwall03.m2", + text = "quirajtwall03.m2", fileId = "202562", text = "quirajtwall03.m2", }, { value = "quirajtwallroof01.m2", + text = "quirajtwallroof01.m2", fileId = "202563", text = "quirajtwallroof01.m2", }, { value = "quirajtwallroof02.m2", + text = "quirajtwallroof02.m2", fileId = "202564", text = "quirajtwallroof02.m2", }, { value = "quirajwall01.m2", + text = "quirajwall01.m2", fileId = "202565", text = "quirajwall01.m2", }, { value = "quirajwall02.m2", + text = "quirajwall02.m2", fileId = "202566", text = "quirajwall02.m2", }, { value = "quirajwall03.m2", + text = "quirajwall03.m2", fileId = "202567", text = "quirajwall03.m2", }, @@ -51035,64 +60907,77 @@ WeakAuras.ModelPaths = { }, { value = "ruins", + text = "ruins", children = { { value = "silithusgate01.m2", + text = "silithusgate01.m2", fileId = "202568", text = "silithusgate01.m2", }, { value = "silithusruinsobelisk01.m2", + text = "silithusruinsobelisk01.m2", fileId = "202569", text = "silithusruinsobelisk01.m2", }, { value = "silithusruinsobelisk02.m2", + text = "silithusruinsobelisk02.m2", fileId = "202570", text = "silithusruinsobelisk02.m2", }, { value = "silithusruinsobelisk03.m2", + text = "silithusruinsobelisk03.m2", fileId = "202571", text = "silithusruinsobelisk03.m2", }, { value = "silithusruinspillar02.m2", + text = "silithusruinspillar02.m2", fileId = "202572", text = "silithusruinspillar02.m2", }, { value = "silithusruinswall01.m2", + text = "silithusruinswall01.m2", fileId = "202573", text = "silithusruinswall01.m2", }, { value = "silithusruinswall02.m2", + text = "silithusruinswall02.m2", fileId = "202574", text = "silithusruinswall02.m2", }, { value = "silithusruinswall03.m2", + text = "silithusruinswall03.m2", fileId = "202575", text = "silithusruinswall03.m2", }, { value = "silithusruinswall04.m2", + text = "silithusruinswall04.m2", fileId = "202576", text = "silithusruinswall04.m2", }, { value = "silithusruinswall05.m2", + text = "silithusruinswall05.m2", fileId = "202577", text = "silithusruinswall05.m2", }, { value = "silithusruinswall06.m2", + text = "silithusruinswall06.m2", fileId = "202578", text = "silithusruinswall06.m2", }, { value = "silithusruinswall07.m2", + text = "silithusruinswall07.m2", fileId = "202579", text = "silithusruinswall07.m2", }, @@ -51101,29 +60986,35 @@ WeakAuras.ModelPaths = { }, { value = "silithidtankhusks", + text = "silithidtankhusks", children = { { value = "silithidtankhuskabdomen.m2", + text = "silithidtankhuskabdomen.m2", fileId = "202580", text = "silithidtankhuskabdomen.m2", }, { value = "silithidtankhuskfullbody.m2", + text = "silithidtankhuskfullbody.m2", fileId = "202581", text = "silithidtankhuskfullbody.m2", }, { value = "silithidtankhuskhead.m2", + text = "silithidtankhuskhead.m2", fileId = "202582", text = "silithidtankhuskhead.m2", }, { value = "silithidtankhuskleg.m2", + text = "silithidtankhuskleg.m2", fileId = "202583", text = "silithidtankhuskleg.m2", }, { value = "silithidtankhuskthorax.m2", + text = "silithidtankhuskthorax.m2", fileId = "202584", text = "silithidtankhuskthorax.m2", }, @@ -51132,34 +61023,41 @@ WeakAuras.ModelPaths = { }, { value = "silithidwasphusks", + text = "silithidwasphusks", children = { { value = "silithidwasphuskabdomen.m2", + text = "silithidwasphuskabdomen.m2", fileId = "202587", text = "silithidwasphuskabdomen.m2", }, { value = "silithidwasphuskfullbody.m2", + text = "silithidwasphuskfullbody.m2", fileId = "202588", text = "silithidwasphuskfullbody.m2", }, { value = "silithidwasphuskhead.m2", + text = "silithidwasphuskhead.m2", fileId = "202589", text = "silithidwasphuskhead.m2", }, { value = "silithidwasphuskleg.m2", + text = "silithidwasphuskleg.m2", fileId = "202590", text = "silithidwasphuskleg.m2", }, { value = "silithidwasphuskthorax.m2", + text = "silithidwasphuskthorax.m2", fileId = "202591", text = "silithidwasphuskthorax.m2", }, { value = "silithidwasphuskwings.m2", + text = "silithidwasphuskwings.m2", fileId = "202592", text = "silithidwasphuskwings.m2", }, @@ -51168,9 +61066,11 @@ WeakAuras.ModelPaths = { }, { value = "silithusruinspillartop", + text = "silithusruinspillartop", children = { { value = "silithusruinspillartop.m2", + text = "silithusruinspillartop.m2", fileId = "202593", text = "silithusruinspillartop.m2", }, @@ -51179,14 +61079,17 @@ WeakAuras.ModelPaths = { }, { value = "twilighttablet", + text = "twilighttablet", children = { { value = "twilighttabletlower.m2", + text = "twilighttabletlower.m2", fileId = "202595", text = "twilighttabletlower.m2", }, { value = "twilighttabletupper.m2", + text = "twilighttabletupper.m2", fileId = "202596", text = "twilighttabletupper.m2", }, @@ -51195,9 +61098,11 @@ WeakAuras.ModelPaths = { }, { value = "waspswarm", + text = "waspswarm", children = { { value = "waspswarm.m2", + text = "waspswarm.m2", fileId = "202598", text = "waspswarm.m2", }, @@ -51206,24 +61111,29 @@ WeakAuras.ModelPaths = { }, { value = "waterfalls", + text = "waterfalls", children = { { value = "silithussandwaterfalllarge.m2", + text = "silithussandwaterfalllarge.m2", fileId = "202599", text = "silithussandwaterfalllarge.m2", }, { value = "silithussandwaterfallmeduim.m2", + text = "silithussandwaterfallmeduim.m2", fileId = "202600", text = "silithussandwaterfallmeduim.m2", }, { value = "silithussandwaterfallsmall.m2", + text = "silithussandwaterfallsmall.m2", fileId = "202601", text = "silithussandwaterfallsmall.m2", }, { value = "silithussandwaterfallsplash.m2", + text = "silithussandwaterfallsplash.m2", fileId = "202602", text = "silithussandwaterfallsplash.m2", }, @@ -51238,20 +61148,25 @@ WeakAuras.ModelPaths = { }, { value = "stonetalon", + text = "stonetalon", children = { { value = "activedoodads", + text = "activedoodads", children = { { value = "tree", + text = "tree", children = { { value = "g_sapling01.m2", + text = "g_sapling01.m2", fileId = "202605", text = "g_sapling01.m2", }, { value = "sapling01.m2", + text = "sapling01.m2", fileId = "202608", text = "sapling01.m2", }, @@ -51263,17 +61178,21 @@ WeakAuras.ModelPaths = { }, { value = "passivedoodads", + text = "passivedoodads", children = { { value = "harpynests", + text = "harpynests", children = { { value = "stonetalonharpysnest01.m2", + text = "stonetalonharpysnest01.m2", fileId = "202611", text = "stonetalonharpysnest01.m2", }, { value = "stonetalonharpysnest02.m2", + text = "stonetalonharpysnest02.m2", fileId = "202612", text = "stonetalonharpysnest02.m2", }, @@ -51282,9 +61201,11 @@ WeakAuras.ModelPaths = { }, { value = "rock", + text = "rock", children = { { value = "stonetalonrockoutcrop01.m2", + text = "stonetalonrockoutcrop01.m2", fileId = "202614", text = "stonetalonrockoutcrop01.m2", }, @@ -51293,14 +61214,17 @@ WeakAuras.ModelPaths = { }, { value = "tools", + text = "tools", children = { { value = "stonetalontools_crank01.m2", + text = "stonetalontools_crank01.m2", fileId = "202615", text = "stonetalontools_crank01.m2", }, { value = "stonetalontools_saw01.m2", + text = "stonetalontools_saw01.m2", fileId = "202616", text = "stonetalontools_saw01.m2", }, @@ -51309,74 +61233,89 @@ WeakAuras.ModelPaths = { }, { value = "trees", + text = "trees", children = { { value = "burntstonetree01.m2", + text = "burntstonetree01.m2", fileId = "202617", text = "burntstonetree01.m2", }, { value = "burntstonetree07.m2", + text = "burntstonetree07.m2", fileId = "202618", text = "burntstonetree07.m2", }, { value = "burntstonetree08.m2", + text = "burntstonetree08.m2", fileId = "202619", text = "burntstonetree08.m2", }, { value = "stonetree01.m2", + text = "stonetree01.m2", fileId = "202620", text = "stonetree01.m2", }, { value = "stonetree02.m2", + text = "stonetree02.m2", fileId = "202621", text = "stonetree02.m2", }, { value = "stonetree03.m2", + text = "stonetree03.m2", fileId = "202622", text = "stonetree03.m2", }, { value = "stonetree04.m2", + text = "stonetree04.m2", fileId = "202623", text = "stonetree04.m2", }, { value = "stonetree05.m2", + text = "stonetree05.m2", fileId = "202624", text = "stonetree05.m2", }, { value = "stonetree06.m2", + text = "stonetree06.m2", fileId = "202625", text = "stonetree06.m2", }, { value = "stonetree07.m2", + text = "stonetree07.m2", fileId = "202626", text = "stonetree07.m2", }, { value = "stonetree08.m2", + text = "stonetree08.m2", fileId = "202627", text = "stonetree08.m2", }, { value = "stonetreelog01.m2", + text = "stonetreelog01.m2", fileId = "202633", text = "stonetreelog01.m2", }, { value = "stonetreelog02.m2", + text = "stonetreelog02.m2", fileId = "202634", text = "stonetreelog02.m2", }, { value = "stonetreelog03.m2", + text = "stonetreelog03.m2", fileId = "202635", text = "stonetreelog03.m2", }, @@ -51385,34 +61324,41 @@ WeakAuras.ModelPaths = { }, { value = "treestumps", + text = "treestumps", children = { { value = "burntstonetreestump02.m2", + text = "burntstonetreestump02.m2", fileId = "202639", text = "burntstonetreestump02.m2", }, { value = "burntstonetreestump03.m2", + text = "burntstonetreestump03.m2", fileId = "202640", text = "burntstonetreestump03.m2", }, { value = "stonetreestump01.m2", + text = "stonetreestump01.m2", fileId = "202641", text = "stonetreestump01.m2", }, { value = "stonetreestump02.m2", + text = "stonetreestump02.m2", fileId = "202642", text = "stonetreestump02.m2", }, { value = "stonetreestump03.m2", + text = "stonetreestump03.m2", fileId = "202643", text = "stonetreestump03.m2", }, { value = "stonetreestump04.m2", + text = "stonetreestump04.m2", fileId = "202644", text = "stonetreestump04.m2", }, @@ -51421,9 +61367,11 @@ WeakAuras.ModelPaths = { }, { value = "waterwheel", + text = "waterwheel", children = { { value = "stonetalonwaterwheel.m2", + text = "stonetalonwaterwheel.m2", fileId = "202646", text = "stonetalonwaterwheel.m2", }, @@ -51432,24 +61380,29 @@ WeakAuras.ModelPaths = { }, { value = "webbedtrees", + text = "webbedtrees", children = { { value = "stonetree01_web.m2", + text = "stonetree01_web.m2", fileId = "202649", text = "stonetree01_web.m2", }, { value = "stonetree02_web.m2", + text = "stonetree02_web.m2", fileId = "202650", text = "stonetree02_web.m2", }, { value = "stonetree03_web.m2", + text = "stonetree03_web.m2", fileId = "202651", text = "stonetree03_web.m2", }, { value = "stonetree07_web.m2", + text = "stonetree07_web.m2", fileId = "202652", text = "stonetree07_web.m2", }, @@ -51464,15 +61417,19 @@ WeakAuras.ModelPaths = { }, { value = "tanaris", + text = "tanaris", children = { { value = "activedoodads", + text = "activedoodads", children = { { value = "trollgate", + text = "trollgate", children = { { value = "tanaristrollgate.m2", + text = "tanaristrollgate.m2", fileId = "202655", text = "tanaristrollgate.m2", }, @@ -51484,37 +61441,45 @@ WeakAuras.ModelPaths = { }, { value = "passivedoodads", + text = "passivedoodads", children = { { value = "cacti", + text = "cacti", children = { { value = "tanariscactus01.m2", + text = "tanariscactus01.m2", fileId = "202657", text = "tanariscactus01.m2", }, { value = "tanariscactus02.m2", + text = "tanariscactus02.m2", fileId = "202658", text = "tanariscactus02.m2", }, { value = "tanariscactus03.m2", + text = "tanariscactus03.m2", fileId = "202659", text = "tanariscactus03.m2", }, { value = "tanariscactus04.m2", + text = "tanariscactus04.m2", fileId = "202660", text = "tanariscactus04.m2", }, { value = "tanariscactus05.m2", + text = "tanariscactus05.m2", fileId = "202661", text = "tanariscactus05.m2", }, { value = "tanariscactus06.m2", + text = "tanariscactus06.m2", fileId = "202662", text = "tanariscactus06.m2", }, @@ -51523,9 +61488,11 @@ WeakAuras.ModelPaths = { }, { value = "desertholdingpen", + text = "desertholdingpen", children = { { value = "desertholdingpen.m2", + text = "desertholdingpen.m2", fileId = "202670", text = "desertholdingpen.m2", }, @@ -51534,29 +61501,35 @@ WeakAuras.ModelPaths = { }, { value = "goblin", + text = "goblin", children = { { value = "tanarisgoblinwall01.m2", + text = "tanarisgoblinwall01.m2", fileId = "202672", text = "tanarisgoblinwall01.m2", }, { value = "tanarisgoblinwall02.m2", + text = "tanarisgoblinwall02.m2", fileId = "202673", text = "tanarisgoblinwall02.m2", }, { value = "tanarisgoblinwallcurve01.m2", + text = "tanarisgoblinwallcurve01.m2", fileId = "202674", text = "tanarisgoblinwallcurve01.m2", }, { value = "tanarisgoblinwallgatebigbits.m2", + text = "tanarisgoblinwallgatebigbits.m2", fileId = "202675", text = "tanarisgoblinwallgatebigbits.m2", }, { value = "tanarisgoblinwallpost01.m2", + text = "tanarisgoblinwallpost01.m2", fileId = "202676", text = "tanarisgoblinwallpost01.m2", }, @@ -51565,39 +61538,47 @@ WeakAuras.ModelPaths = { }, { value = "rocks", + text = "rocks", children = { { value = "tanarisrock01.m2", + text = "tanarisrock01.m2", fileId = "202677", text = "tanarisrock01.m2", }, { value = "tanarisrock02.m2", + text = "tanarisrock02.m2", fileId = "202678", text = "tanarisrock02.m2", }, { value = "tanarisrock03.m2", + text = "tanarisrock03.m2", fileId = "202679", text = "tanarisrock03.m2", }, { value = "tanarisrock04.m2", + text = "tanarisrock04.m2", fileId = "202680", text = "tanarisrock04.m2", }, { value = "tanarisrock05.m2", + text = "tanarisrock05.m2", fileId = "202681", text = "tanarisrock05.m2", }, { value = "tanarisrock06.m2", + text = "tanarisrock06.m2", fileId = "202682", text = "tanarisrock06.m2", }, { value = "tanarisrock07.m2", + text = "tanarisrock07.m2", fileId = "202683", text = "tanarisrock07.m2", }, @@ -51606,9 +61587,11 @@ WeakAuras.ModelPaths = { }, { value = "watertower", + text = "watertower", children = { { value = "tanariswatertower.m2", + text = "tanariswatertower.m2", fileId = "202687", text = "tanariswatertower.m2", }, @@ -51623,20 +61606,25 @@ WeakAuras.ModelPaths = { }, { value = "thousandneedles", + text = "thousandneedles", children = { { value = "passivedoodads", + text = "passivedoodads", children = { { value = "bleachers", + text = "bleachers", children = { { value = "gnomebleachers.m2", + text = "gnomebleachers.m2", fileId = "202690", text = "gnomebleachers.m2", }, { value = "goblinbleachers.m2", + text = "goblinbleachers.m2", fileId = "202692", text = "goblinbleachers.m2", }, @@ -51645,9 +61633,11 @@ WeakAuras.ModelPaths = { }, { value = "bridge", + text = "bridge", children = { { value = "thousandneedlesbridge.m2", + text = "thousandneedlesbridge.m2", fileId = "202693", text = "thousandneedlesbridge.m2", }, @@ -51656,74 +61646,89 @@ WeakAuras.ModelPaths = { }, { value = "haybails", + text = "haybails", children = { { value = "back-stop.m2", + text = "back-stop.m2", fileId = "202694", text = "back-stop.m2", }, { value = "straightaway01.m2", + text = "straightaway01.m2", fileId = "202695", text = "straightaway01.m2", }, { value = "straightaway02.m2", + text = "straightaway02.m2", fileId = "202696", text = "straightaway02.m2", }, { value = "straightaway03.m2", + text = "straightaway03.m2", fileId = "202697", text = "straightaway03.m2", }, { value = "straightaway04.m2", + text = "straightaway04.m2", fileId = "202698", text = "straightaway04.m2", }, { value = "turn01-1.m2", + text = "turn01-1.m2", fileId = "202699", text = "turn01-1.m2", }, { value = "turn01-2.m2", + text = "turn01-2.m2", fileId = "202700", text = "turn01-2.m2", }, { value = "turn02-1.m2", + text = "turn02-1.m2", fileId = "202701", text = "turn02-1.m2", }, { value = "turn02-2.m2", + text = "turn02-2.m2", fileId = "202702", text = "turn02-2.m2", }, { value = "turn03.m2", + text = "turn03.m2", fileId = "202703", text = "turn03.m2", }, { value = "turn04.m2", + text = "turn04.m2", fileId = "202704", text = "turn04.m2", }, { value = "turn05-1.m2", + text = "turn05-1.m2", fileId = "202705", text = "turn05-1.m2", }, { value = "turn05-2.m2", + text = "turn05-2.m2", fileId = "202706", text = "turn05-2.m2", }, { value = "turn06.m2", + text = "turn06.m2", fileId = "202707", text = "turn06.m2", }, @@ -51732,9 +61737,11 @@ WeakAuras.ModelPaths = { }, { value = "racingflags", + text = "racingflags", children = { { value = "racingflag01.m2", + text = "racingflag01.m2", fileId = "202709", text = "racingflag01.m2", }, @@ -51743,99 +61750,119 @@ WeakAuras.ModelPaths = { }, { value = "rocks", + text = "rocks", children = { { value = "saltflatrock_01.m2", + text = "saltflatrock_01.m2", fileId = "202710", text = "saltflatrock_01.m2", }, { value = "saltflatrock_02.m2", + text = "saltflatrock_02.m2", fileId = "202711", text = "saltflatrock_02.m2", }, { value = "saltflatrock_03.m2", + text = "saltflatrock_03.m2", fileId = "202712", text = "saltflatrock_03.m2", }, { value = "saltflatrock_04.m2", + text = "saltflatrock_04.m2", fileId = "202713", text = "saltflatrock_04.m2", }, { value = "thousandrock01.m2", + text = "thousandrock01.m2", fileId = "202716", text = "thousandrock01.m2", }, { value = "thousandrock02.m2", + text = "thousandrock02.m2", fileId = "202718", text = "thousandrock02.m2", }, { value = "thousandrock03.m2", + text = "thousandrock03.m2", fileId = "202719", text = "thousandrock03.m2", }, { value = "thousandrock04.m2", + text = "thousandrock04.m2", fileId = "202720", text = "thousandrock04.m2", }, { value = "thousandrock05.m2", + text = "thousandrock05.m2", fileId = "202721", text = "thousandrock05.m2", }, { value = "thousandrock06.m2", + text = "thousandrock06.m2", fileId = "202722", text = "thousandrock06.m2", }, { value = "thousandrock07.m2", + text = "thousandrock07.m2", fileId = "202723", text = "thousandrock07.m2", }, { value = "thousandrock08.m2", + text = "thousandrock08.m2", fileId = "202724", text = "thousandrock08.m2", }, { value = "thousandrock09.m2", + text = "thousandrock09.m2", fileId = "202725", text = "thousandrock09.m2", }, { value = "thousandrock10.m2", + text = "thousandrock10.m2", fileId = "202726", text = "thousandrock10.m2", }, { value = "thousandrock11.m2", + text = "thousandrock11.m2", fileId = "202727", text = "thousandrock11.m2", }, { value = "thousandrock12.m2", + text = "thousandrock12.m2", fileId = "202728", text = "thousandrock12.m2", }, { value = "thousandrock13.m2", + text = "thousandrock13.m2", fileId = "202729", text = "thousandrock13.m2", }, { value = "thousandrock14.m2", + text = "thousandrock14.m2", fileId = "202730", text = "thousandrock14.m2", }, { value = "thousandrock15.m2", + text = "thousandrock15.m2", fileId = "202731", text = "thousandrock15.m2", }, @@ -51844,14 +61871,17 @@ WeakAuras.ModelPaths = { }, { value = "snakenests", + text = "snakenests", children = { { value = "snake_nest_001.m2", + text = "snake_nest_001.m2", fileId = "202733", text = "snake_nest_001.m2", }, { value = "snake_nest_002.m2", + text = "snake_nest_002.m2", fileId = "202734", text = "snake_nest_002.m2", }, @@ -51860,14 +61890,17 @@ WeakAuras.ModelPaths = { }, { value = "wyverneggs", + text = "wyverneggs", children = { { value = "wyverneggs01.m2", + text = "wyverneggs01.m2", fileId = "202737", text = "wyverneggs01.m2", }, { value = "wyverneggs02.m2", + text = "wyverneggs02.m2", fileId = "202738", text = "wyverneggs02.m2", }, @@ -51882,15 +61915,19 @@ WeakAuras.ModelPaths = { }, { value = "timbermaw", + text = "timbermaw", children = { { value = "activedoodads", + text = "activedoodads", children = { { value = "woodendoor", + text = "woodendoor", children = { { value = "timbermawwoodendoor.m2", + text = "timbermawwoodendoor.m2", fileId = "202740", text = "timbermawwoodendoor.m2", }, @@ -51902,17 +61939,21 @@ WeakAuras.ModelPaths = { }, { value = "passivedoodads", + text = "passivedoodads", children = { { value = "timbermawflowers", + text = "timbermawflowers", children = { { value = "timbermawflower01.m2", + text = "timbermawflower01.m2", fileId = "202742", text = "timbermawflower01.m2", }, { value = "timbermawflower02.m2", + text = "timbermawflower02.m2", fileId = "202744", text = "timbermawflower02.m2", }, @@ -51927,15 +61968,19 @@ WeakAuras.ModelPaths = { }, { value = "ungoro", + text = "ungoro", children = { { value = "passivedoodads", + text = "passivedoodads", children = { { value = "archway", + text = "archway", children = { { value = "ungoroarchway01.m2", + text = "ungoroarchway01.m2", fileId = "202747", text = "ungoroarchway01.m2", }, @@ -51944,49 +61989,59 @@ WeakAuras.ModelPaths = { }, { value = "crystals", + text = "crystals", children = { { value = "ungorocrystal_blue01.m2", + text = "ungorocrystal_blue01.m2", fileId = "202748", text = "ungorocrystal_blue01.m2", }, { value = "ungorocrystal_blue02.m2", + text = "ungorocrystal_blue02.m2", fileId = "202749", text = "ungorocrystal_blue02.m2", }, { value = "ungorocrystal_green01.m2", + text = "ungorocrystal_green01.m2", fileId = "202750", text = "ungorocrystal_green01.m2", }, { value = "ungorocrystal_green02.m2", + text = "ungorocrystal_green02.m2", fileId = "202751", text = "ungorocrystal_green02.m2", }, { value = "ungorocrystal_red01.m2", + text = "ungorocrystal_red01.m2", fileId = "202752", text = "ungorocrystal_red01.m2", }, { value = "ungorocrystal_red02.m2", + text = "ungorocrystal_red02.m2", fileId = "202753", text = "ungorocrystal_red02.m2", }, { value = "ungorocrystal_yellow01.m2", + text = "ungorocrystal_yellow01.m2", fileId = "202754", text = "ungorocrystal_yellow01.m2", }, { value = "ungorocrystal_yellow02.m2", + text = "ungorocrystal_yellow02.m2", fileId = "202755", text = "ungorocrystal_yellow02.m2", }, { value = "ungorocrystalpylon01.m2", + text = "ungorocrystalpylon01.m2", fileId = "202759", text = "ungorocrystalpylon01.m2", }, @@ -51995,14 +62050,17 @@ WeakAuras.ModelPaths = { }, { value = "geyser", + text = "geyser", children = { { value = "ungorogeyser01.m2", + text = "ungorogeyser01.m2", fileId = "202766", text = "ungorogeyser01.m2", }, { value = "ungorogeyser02.m2", + text = "ungorogeyser02.m2", fileId = "202767", text = "ungorogeyser02.m2", }, @@ -52011,54 +62069,65 @@ WeakAuras.ModelPaths = { }, { value = "rocks", + text = "rocks", children = { { value = "ungororock06.m2", + text = "ungororock06.m2", fileId = "202770", text = "ungororock06.m2", }, { value = "ungororock07.m2", + text = "ungororock07.m2", fileId = "202771", text = "ungororock07.m2", }, { value = "ungororock08.m2", + text = "ungororock08.m2", fileId = "202772", text = "ungororock08.m2", }, { value = "ungororock09.m2", + text = "ungororock09.m2", fileId = "202773", text = "ungororock09.m2", }, { value = "ungororock10.m2", + text = "ungororock10.m2", fileId = "202774", text = "ungororock10.m2", }, { value = "ungororock11.m2", + text = "ungororock11.m2", fileId = "202775", text = "ungororock11.m2", }, { value = "ungororock12.m2", + text = "ungororock12.m2", fileId = "202776", text = "ungororock12.m2", }, { value = "ungororock13.m2", + text = "ungororock13.m2", fileId = "202777", text = "ungororock13.m2", }, { value = "ungororock14.m2", + text = "ungororock14.m2", fileId = "202778", text = "ungororock14.m2", }, { value = "ungororock15.m2", + text = "ungororock15.m2", fileId = "202779", text = "ungororock15.m2", }, @@ -52067,9 +62136,11 @@ WeakAuras.ModelPaths = { }, { value = "threshadoncorpse", + text = "threshadoncorpse", children = { { value = "ungorothreshadoncorpse.m2", + text = "ungorothreshadoncorpse.m2", fileId = "202781", text = "ungorothreshadoncorpse.m2", }, @@ -52078,19 +62149,23 @@ WeakAuras.ModelPaths = { }, { value = "trees", + text = "trees", children = { { value = "ungorotreebite.m2", + text = "ungorotreebite.m2", fileId = "202782", text = "ungorotreebite.m2", }, { value = "ungorotreebreak.m2", + text = "ungorotreebreak.m2", fileId = "202783", text = "ungorotreebreak.m2", }, { value = "ungorotreebreak2.m2", + text = "ungorotreebreak2.m2", fileId = "202784", text = "ungorotreebreak2.m2", }, @@ -52099,9 +62174,11 @@ WeakAuras.ModelPaths = { }, { value = "trexfootprint", + text = "trexfootprint", children = { { value = "trexfootprint.m2", + text = "trexfootprint.m2", fileId = "202786", text = "trexfootprint.m2", }, @@ -52110,9 +62187,11 @@ WeakAuras.ModelPaths = { }, { value = "ungorobubbles", + text = "ungorobubbles", children = { { value = "ungoroblackbubble.m2", + text = "ungoroblackbubble.m2", fileId = "202787", text = "ungoroblackbubble.m2", }, @@ -52127,15 +62206,19 @@ WeakAuras.ModelPaths = { }, { value = "wailingcaverns", + text = "wailingcaverns", children = { { value = "passivedoodads", + text = "passivedoodads", children = { { value = "baskets", + text = "baskets", children = { { value = "wc_basket01.m2", + text = "wc_basket01.m2", fileId = "202790", text = "wc_basket01.m2", }, @@ -52144,9 +62227,11 @@ WeakAuras.ModelPaths = { }, { value = "cages", + text = "cages", children = { { value = "wc_cage01.m2", + text = "wc_cage01.m2", fileId = "202792", text = "wc_cage01.m2", }, @@ -52155,84 +62240,101 @@ WeakAuras.ModelPaths = { }, { value = "fangdruids", + text = "fangdruids", children = { { value = "wc_basinstone.m2", + text = "wc_basinstone.m2", fileId = "202794", text = "wc_basinstone.m2", }, { value = "wc_bedstone.m2", + text = "wc_bedstone.m2", fileId = "202795", text = "wc_bedstone.m2", }, { value = "wc_benchstone.m2", + text = "wc_benchstone.m2", fileId = "202796", text = "wc_benchstone.m2", }, { value = "wc_benchstone02.m2", + text = "wc_benchstone02.m2", fileId = "202797", text = "wc_benchstone02.m2", }, { value = "wc_cairn.m2", + text = "wc_cairn.m2", fileId = "202798", text = "wc_cairn.m2", }, { value = "wc_druidofthequatlcircle.m2", + text = "wc_druidofthequatlcircle.m2", fileId = "202799", text = "wc_druidofthequatlcircle.m2", }, { value = "wc_druidoftheraptorcircle.m2", + text = "wc_druidoftheraptorcircle.m2", fileId = "202800", text = "wc_druidoftheraptorcircle.m2", }, { value = "wc_druidoftheraptorclaw.m2", + text = "wc_druidoftheraptorclaw.m2", fileId = "202801", text = "wc_druidoftheraptorclaw.m2", }, { value = "wc_druidoftheraptortooth.m2", + text = "wc_druidoftheraptortooth.m2", fileId = "202802", text = "wc_druidoftheraptortooth.m2", }, { value = "wc_druidoftheserpentcircle.m2", + text = "wc_druidoftheserpentcircle.m2", fileId = "202803", text = "wc_druidoftheserpentcircle.m2", }, { value = "wc_druidoftheserpentstone.m2", + text = "wc_druidoftheserpentstone.m2", fileId = "202804", text = "wc_druidoftheserpentstone.m2", }, { value = "wc_druidoftheserpentstonehead.m2", + text = "wc_druidoftheserpentstonehead.m2", fileId = "202805", text = "wc_druidoftheserpentstonehead.m2", }, { value = "wc_druidofthethundercircle.m2", + text = "wc_druidofthethundercircle.m2", fileId = "202806", text = "wc_druidofthethundercircle.m2", }, { value = "wc_druidofthethunderspine.m2", + text = "wc_druidofthethunderspine.m2", fileId = "202807", text = "wc_druidofthethunderspine.m2", }, { value = "wc_stoolstone.m2", + text = "wc_stoolstone.m2", fileId = "202814", text = "wc_stoolstone.m2", }, { value = "wc_tablestone.m2", + text = "wc_tablestone.m2", fileId = "202815", text = "wc_tablestone.m2", }, @@ -52241,9 +62343,11 @@ WeakAuras.ModelPaths = { }, { value = "hangingheads", + text = "hangingheads", children = { { value = "wc_hanginghead01.m2", + text = "wc_hanginghead01.m2", fileId = "202818", text = "wc_hanginghead01.m2", }, @@ -52252,19 +62356,23 @@ WeakAuras.ModelPaths = { }, { value = "stickbundles", + text = "stickbundles", children = { { value = "wc_stickbundle01.m2", + text = "wc_stickbundle01.m2", fileId = "202821", text = "wc_stickbundle01.m2", }, { value = "wc_stickbundle02.m2", + text = "wc_stickbundle02.m2", fileId = "202822", text = "wc_stickbundle02.m2", }, { value = "wc_stickbundle03.m2", + text = "wc_stickbundle03.m2", fileId = "202823", text = "wc_stickbundle03.m2", }, @@ -52273,9 +62381,11 @@ WeakAuras.ModelPaths = { }, { value = "waterfalls", + text = "waterfalls", children = { { value = "wailingwaterfall01.m2", + text = "wailingwaterfall01.m2", fileId = "202824", text = "wailingwaterfall01.m2", }, @@ -52290,15 +62400,19 @@ WeakAuras.ModelPaths = { }, { value = "winterspring", + text = "winterspring", children = { { value = "activedoodads", + text = "activedoodads", children = { { value = "altar", + text = "altar", children = { { value = "winterspringaltar01.m2", + text = "winterspringaltar01.m2", fileId = "202828", text = "winterspringaltar01.m2", }, @@ -52310,12 +62424,15 @@ WeakAuras.ModelPaths = { }, { value = "passivedoodads", + text = "passivedoodads", children = { { value = "frostsaberrock", + text = "frostsaberrock", children = { { value = "winterspringfrostsaberrock.m2", + text = "winterspringfrostsaberrock.m2", fileId = "202832", text = "winterspringfrostsaberrock.m2", }, @@ -52324,19 +62441,23 @@ WeakAuras.ModelPaths = { }, { value = "frozenwaterfalls", + text = "frozenwaterfalls", children = { { value = "frozenwaterfall01.m2", + text = "frozenwaterfall01.m2", fileId = "202834", text = "frozenwaterfall01.m2", }, { value = "frozenwaterfall02.m2", + text = "frozenwaterfall02.m2", fileId = "202835", text = "frozenwaterfall02.m2", }, { value = "frozenwaterfall03.m2", + text = "frozenwaterfall03.m2", fileId = "202836", text = "frozenwaterfall03.m2", }, @@ -52345,14 +62466,17 @@ WeakAuras.ModelPaths = { }, { value = "furbolgtent", + text = "furbolgtent", children = { { value = "furbolgtentsnow.m2", + text = "furbolgtentsnow.m2", fileId = "202839", text = "furbolgtentsnow.m2", }, { value = "furbolgtentsnow2.m2", + text = "furbolgtentsnow2.m2", fileId = "202840", text = "furbolgtentsnow2.m2", }, @@ -52361,14 +62485,17 @@ WeakAuras.ModelPaths = { }, { value = "furbolgtotems", + text = "furbolgtotems", children = { { value = "furbolgtotemsnow01.m2", + text = "furbolgtotemsnow01.m2", fileId = "202841", text = "furbolgtotemsnow01.m2", }, { value = "furbolgtotemsnow02.m2", + text = "furbolgtotemsnow02.m2", fileId = "202842", text = "furbolgtotemsnow02.m2", }, @@ -52377,44 +62504,53 @@ WeakAuras.ModelPaths = { }, { value = "rocks", + text = "rocks", children = { { value = "winterspringrock01.m2", + text = "winterspringrock01.m2", fileId = "202845", text = "winterspringrock01.m2", }, { value = "winterspringrock02.m2", + text = "winterspringrock02.m2", fileId = "202846", text = "winterspringrock02.m2", }, { value = "winterspringrock03.m2", + text = "winterspringrock03.m2", fileId = "202847", text = "winterspringrock03.m2", }, { value = "winterspringrock04.m2", + text = "winterspringrock04.m2", fileId = "202848", text = "winterspringrock04.m2", }, { value = "winterspringrock05.m2", + text = "winterspringrock05.m2", fileId = "202849", text = "winterspringrock05.m2", }, { value = "winterspringrock06.m2", + text = "winterspringrock06.m2", fileId = "202850", text = "winterspringrock06.m2", }, { value = "winterspringrock07.m2", + text = "winterspringrock07.m2", fileId = "202851", text = "winterspringrock07.m2", }, { value = "winterspringrock08.m2", + text = "winterspringrock08.m2", fileId = "202852", text = "winterspringrock08.m2", }, @@ -52423,29 +62559,35 @@ WeakAuras.ModelPaths = { }, { value = "trees", + text = "trees", children = { { value = "newwinterspringmidtree01.m2", + text = "newwinterspringmidtree01.m2", fileId = "202855", text = "newwinterspringmidtree01.m2", }, { value = "newwinterspringmidtree02.m2", + text = "newwinterspringmidtree02.m2", fileId = "202856", text = "newwinterspringmidtree02.m2", }, { value = "newwinterspringtree01.m2", + text = "newwinterspringtree01.m2", fileId = "202857", text = "newwinterspringtree01.m2", }, { value = "newwinterspringtree02.m2", + text = "newwinterspringtree02.m2", fileId = "202858", text = "newwinterspringtree02.m2", }, { value = "newwinterspringtree05.m2", + text = "newwinterspringtree05.m2", fileId = "202859", text = "newwinterspringtree05.m2", }, @@ -52454,9 +62596,11 @@ WeakAuras.ModelPaths = { }, { value = "winterspringbushes", + text = "winterspringbushes", children = { { value = "winterspringbush01.m2", + text = "winterspringbush01.m2", fileId = "202868", text = "winterspringbush01.m2", }, @@ -52465,19 +62609,23 @@ WeakAuras.ModelPaths = { }, { value = "winterspringfallentrees", + text = "winterspringfallentrees", children = { { value = "winterspringfallenbranch01.m2", + text = "winterspringfallenbranch01.m2", fileId = "202872", text = "winterspringfallenbranch01.m2", }, { value = "winterspringfallentree01.m2", + text = "winterspringfallentree01.m2", fileId = "202873", text = "winterspringfallentree01.m2", }, { value = "winterspringfallentree02.m2", + text = "winterspringfallentree02.m2", fileId = "202874", text = "winterspringfallentree02.m2", }, @@ -52486,19 +62634,23 @@ WeakAuras.ModelPaths = { }, { value = "winterspringtrees", + text = "winterspringtrees", children = { { value = "winterspringtree01.m2", + text = "winterspringtree01.m2", fileId = "202876", text = "winterspringtree01.m2", }, { value = "winterspringtree02.m2", + text = "winterspringtree02.m2", fileId = "202877", text = "winterspringtree02.m2", }, { value = "winterspringtree03.m2", + text = "winterspringtree03.m2", fileId = "202878", text = "winterspringtree03.m2", }, @@ -52507,24 +62659,29 @@ WeakAuras.ModelPaths = { }, { value = "worldtreeroots", + text = "worldtreeroots", children = { { value = "winterspringworldtreeroot01.m2", + text = "winterspringworldtreeroot01.m2", fileId = "202884", text = "winterspringworldtreeroot01.m2", }, { value = "winterspringworldtreeroot02.m2", + text = "winterspringworldtreeroot02.m2", fileId = "202885", text = "winterspringworldtreeroot02.m2", }, { value = "winterspringworldtreeroot03.m2", + text = "winterspringworldtreeroot03.m2", fileId = "202886", text = "winterspringworldtreeroot03.m2", }, { value = "winterspringworldtreeroot04.m2", + text = "winterspringworldtreeroot04.m2", fileId = "202887", text = "winterspringworldtreeroot04.m2", }, @@ -52542,28 +62699,35 @@ WeakAuras.ModelPaths = { }, { value = "khazmodan", + text = "khazmodan", children = { { value = "badlands", + text = "badlands", children = { { value = "passivedoodads", + text = "passivedoodads", children = { { value = "bones", + text = "bones", children = { { value = "badlandsbones01.m2", + text = "badlandsbones01.m2", fileId = "202890", text = "badlandsbones01.m2", }, { value = "badlandsbones02.m2", + text = "badlandsbones02.m2", fileId = "202891", text = "badlandsbones02.m2", }, { value = "badlandsbones03.m2", + text = "badlandsbones03.m2", fileId = "202892", text = "badlandsbones03.m2", }, @@ -52572,54 +62736,65 @@ WeakAuras.ModelPaths = { }, { value = "bushes", + text = "bushes", children = { { value = "badlandsshrub01.m2", + text = "badlandsshrub01.m2", fileId = "202904", text = "badlandsshrub01.m2", }, { value = "badlandsshrub02.m2", + text = "badlandsshrub02.m2", fileId = "202905", text = "badlandsshrub02.m2", }, { value = "badlandsshrub03.m2", + text = "badlandsshrub03.m2", fileId = "202906", text = "badlandsshrub03.m2", }, { value = "badlandsshrub03dead.m2", + text = "badlandsshrub03dead.m2", fileId = "202907", text = "badlandsshrub03dead.m2", }, { value = "badlandsshrub04.m2", + text = "badlandsshrub04.m2", fileId = "202908", text = "badlandsshrub04.m2", }, { value = "badlandsshrub04dead.m2", + text = "badlandsshrub04dead.m2", fileId = "202909", text = "badlandsshrub04dead.m2", }, { value = "badlandsshrub05.m2", + text = "badlandsshrub05.m2", fileId = "202910", text = "badlandsshrub05.m2", }, { value = "badlandsshrub06.m2", + text = "badlandsshrub06.m2", fileId = "202911", text = "badlandsshrub06.m2", }, { value = "badlandsshrub07.m2", + text = "badlandsshrub07.m2", fileId = "202913", text = "badlandsshrub07.m2", }, { value = "badlandsshrub08.m2", + text = "badlandsshrub08.m2", fileId = "202914", text = "badlandsshrub08.m2", }, @@ -52628,54 +62803,65 @@ WeakAuras.ModelPaths = { }, { value = "cactus", + text = "cactus", children = { { value = "badlandscactus_1.m2", + text = "badlandscactus_1.m2", fileId = "202925", text = "badlandscactus_1.m2", }, { value = "badlandscactus_10.m2", + text = "badlandscactus_10.m2", fileId = "202926", text = "badlandscactus_10.m2", }, { value = "badlandscactus_2.m2", + text = "badlandscactus_2.m2", fileId = "202927", text = "badlandscactus_2.m2", }, { value = "badlandscactus_3.m2", + text = "badlandscactus_3.m2", fileId = "202928", text = "badlandscactus_3.m2", }, { value = "badlandscactus_4.m2", + text = "badlandscactus_4.m2", fileId = "202929", text = "badlandscactus_4.m2", }, { value = "badlandscactus_5.m2", + text = "badlandscactus_5.m2", fileId = "202930", text = "badlandscactus_5.m2", }, { value = "badlandscactus_6.m2", + text = "badlandscactus_6.m2", fileId = "202931", text = "badlandscactus_6.m2", }, { value = "badlandscactus_7.m2", + text = "badlandscactus_7.m2", fileId = "202932", text = "badlandscactus_7.m2", }, { value = "badlandscactus_8.m2", + text = "badlandscactus_8.m2", fileId = "202933", text = "badlandscactus_8.m2", }, { value = "badlandscactus_9.m2", + text = "badlandscactus_9.m2", fileId = "202934", text = "badlandscactus_9.m2", }, @@ -52684,9 +62870,11 @@ WeakAuras.ModelPaths = { }, { value = "questblade", + text = "questblade", children = { { value = "questbladebadlands.m2", + text = "questbladebadlands.m2", fileId = "202935", text = "questbladebadlands.m2", }, @@ -52695,44 +62883,53 @@ WeakAuras.ModelPaths = { }, { value = "rocks", + text = "rocks", children = { { value = "badlandsrock01.m2", + text = "badlandsrock01.m2", fileId = "202940", text = "badlandsrock01.m2", }, { value = "badlandsrock02.m2", + text = "badlandsrock02.m2", fileId = "202941", text = "badlandsrock02.m2", }, { value = "badlandsrock03.m2", + text = "badlandsrock03.m2", fileId = "202942", text = "badlandsrock03.m2", }, { value = "badlandsrock04.m2", + text = "badlandsrock04.m2", fileId = "202943", text = "badlandsrock04.m2", }, { value = "badlandsrock05.m2", + text = "badlandsrock05.m2", fileId = "202944", text = "badlandsrock05.m2", }, { value = "badlandsrock06.m2", + text = "badlandsrock06.m2", fileId = "202945", text = "badlandsrock06.m2", }, { value = "badlandsrock07.m2", + text = "badlandsrock07.m2", fileId = "202946", text = "badlandsrock07.m2", }, { value = "badlandsrock08.m2", + text = "badlandsrock08.m2", fileId = "202947", text = "badlandsrock08.m2", }, @@ -52741,9 +62938,11 @@ WeakAuras.ModelPaths = { }, { value = "rune", + text = "rune", children = { { value = "pentagramdirtbadlands.m2", + text = "pentagramdirtbadlands.m2", fileId = "202952", text = "pentagramdirtbadlands.m2", }, @@ -52752,9 +62951,11 @@ WeakAuras.ModelPaths = { }, { value = "skeletalking", + text = "skeletalking", children = { { value = "badlandsskeletalking.m2", + text = "badlandsskeletalking.m2", fileId = "202953", text = "badlandsskeletalking.m2", }, @@ -52763,34 +62964,41 @@ WeakAuras.ModelPaths = { }, { value = "statues", + text = "statues", children = { { value = "badlandscobrapillar01.m2", + text = "badlandscobrapillar01.m2", fileId = "202955", text = "badlandscobrapillar01.m2", }, { value = "badlandscobrapillar02.m2", + text = "badlandscobrapillar02.m2", fileId = "202956", text = "badlandscobrapillar02.m2", }, { value = "badlandscobrapillar03.m2", + text = "badlandscobrapillar03.m2", fileId = "202957", text = "badlandscobrapillar03.m2", }, { value = "badlandscobrastatue01.m2", + text = "badlandscobrastatue01.m2", fileId = "202958", text = "badlandscobrastatue01.m2", }, { value = "badlandscobrastatue02.m2", + text = "badlandscobrastatue02.m2", fileId = "202959", text = "badlandscobrastatue02.m2", }, { value = "badlandscobrastatue03.m2", + text = "badlandscobrastatue03.m2", fileId = "202960", text = "badlandscobrastatue03.m2", }, @@ -52799,79 +63007,95 @@ WeakAuras.ModelPaths = { }, { value = "trees", + text = "trees", children = { { value = "badlandscactus01.m2", + text = "badlandscactus01.m2", fileId = "202970", text = "badlandscactus01.m2", }, { value = "badlandscactus02.m2", + text = "badlandscactus02.m2", fileId = "202971", text = "badlandscactus02.m2", }, { value = "badlandscactus03.m2", + text = "badlandscactus03.m2", fileId = "202972", text = "badlandscactus03.m2", }, { value = "badlandspalmtree01.m2", + text = "badlandspalmtree01.m2", fileId = "202973", text = "badlandspalmtree01.m2", }, { value = "badlandspalmtree02.m2", + text = "badlandspalmtree02.m2", fileId = "202974", text = "badlandspalmtree02.m2", }, { value = "badlandstree01.m2", + text = "badlandstree01.m2", fileId = "202975", text = "badlandstree01.m2", }, { value = "badlandstree01dead.m2", + text = "badlandstree01dead.m2", fileId = "202976", text = "badlandstree01dead.m2", }, { value = "badlandstree01fallen.m2", + text = "badlandstree01fallen.m2", fileId = "202977", text = "badlandstree01fallen.m2", }, { value = "badlandstree02.m2", + text = "badlandstree02.m2", fileId = "202978", text = "badlandstree02.m2", }, { value = "badlandstree02dead.m2", + text = "badlandstree02dead.m2", fileId = "202979", text = "badlandstree02dead.m2", }, { value = "badlandstree02fallen.m2", + text = "badlandstree02fallen.m2", fileId = "202980", text = "badlandstree02fallen.m2", }, { value = "badlandstree03.m2", + text = "badlandstree03.m2", fileId = "202981", text = "badlandstree03.m2", }, { value = "badlandstree03dead.m2", + text = "badlandstree03dead.m2", fileId = "202982", text = "badlandstree03dead.m2", }, { value = "badlandstree04.m2", + text = "badlandstree04.m2", fileId = "202983", text = "badlandstree04.m2", }, { value = "badlandstreestump01.m2", + text = "badlandstreestump01.m2", fileId = "202984", text = "badlandstreestump01.m2", }, @@ -52880,9 +63104,11 @@ WeakAuras.ModelPaths = { }, { value = "wagon", + text = "wagon", children = { { value = "badlandssunkenwagon.m2", + text = "badlandssunkenwagon.m2", fileId = "203004", text = "badlandssunkenwagon.m2", }, @@ -52897,15 +63123,19 @@ WeakAuras.ModelPaths = { }, { value = "blackrock", + text = "blackrock", children = { { value = "activedoodads", + text = "activedoodads", children = { { value = "altarritual", + text = "altarritual", children = { { value = "blackrockaltarritual.m2", + text = "blackrockaltarritual.m2", fileId = "203006", text = "blackrockaltarritual.m2", }, @@ -52914,14 +63144,17 @@ WeakAuras.ModelPaths = { }, { value = "anvil", + text = "anvil", children = { { value = "darkironanvil.m2", + text = "darkironanvil.m2", fileId = "203010", text = "darkironanvil.m2", }, { value = "darkironforge.m2", + text = "darkironforge.m2", fileId = "203012", text = "darkironforge.m2", }, @@ -52930,9 +63163,11 @@ WeakAuras.ModelPaths = { }, { value = "arenaflag", + text = "arenaflag", children = { { value = "arenaflag.m2", + text = "arenaflag.m2", fileId = "203013", text = "arenaflag.m2", }, @@ -52941,9 +63176,11 @@ WeakAuras.ModelPaths = { }, { value = "chalice", + text = "chalice", children = { { value = "blackrockchalice.m2", + text = "blackrockchalice.m2", fileId = "203016", text = "blackrockchalice.m2", }, @@ -52952,9 +63189,11 @@ WeakAuras.ModelPaths = { }, { value = "darkironbrazier", + text = "darkironbrazier", children = { { value = "darkironbrazier.m2", + text = "darkironbrazier.m2", fileId = "203018", text = "darkironbrazier.m2", }, @@ -52963,9 +63202,11 @@ WeakAuras.ModelPaths = { }, { value = "safe", + text = "safe", children = { { value = "darkironsafe.m2", + text = "darkironsafe.m2", fileId = "203020", text = "darkironsafe.m2", }, @@ -52974,9 +63215,11 @@ WeakAuras.ModelPaths = { }, { value = "seal", + text = "seal", children = { { value = "blackrockseal.m2", + text = "blackrockseal.m2", fileId = "203022", text = "blackrockseal.m2", }, @@ -52985,14 +63228,17 @@ WeakAuras.ModelPaths = { }, { value = "statuethaurissan", + text = "statuethaurissan", children = { { value = "statuedarkironthaurissan.m2", + text = "statuedarkironthaurissan.m2", fileId = "203024", text = "statuedarkironthaurissan.m2", }, { value = "statuedarkironthaurissanhammer.m2", + text = "statuedarkironthaurissanhammer.m2", fileId = "203025", text = "statuedarkironthaurissanhammer.m2", }, @@ -53001,9 +63247,11 @@ WeakAuras.ModelPaths = { }, { value = "suppressiontrap", + text = "suppressiontrap", children = { { value = "blackrocksuppressiontrap.m2", + text = "blackrocksuppressiontrap.m2", fileId = "203027", text = "blackrocksuppressiontrap.m2", }, @@ -53012,24 +63260,29 @@ WeakAuras.ModelPaths = { }, { value = "vault", + text = "vault", children = { { value = "blackrockvaultdepositdoor01.m2", + text = "blackrockvaultdepositdoor01.m2", fileId = "203028", text = "blackrockvaultdepositdoor01.m2", }, { value = "blackrockvaultdepositdoor02.m2", + text = "blackrockvaultdepositdoor02.m2", fileId = "203029", text = "blackrockvaultdepositdoor02.m2", }, { value = "blackrockvaultsecretdoor.m2", + text = "blackrockvaultsecretdoor.m2", fileId = "203030", text = "blackrockvaultsecretdoor.m2", }, { value = "blackrockvaultspecialdoor.m2", + text = "blackrockvaultspecialdoor.m2", fileId = "203031", text = "blackrockvaultspecialdoor.m2", }, @@ -53041,12 +63294,15 @@ WeakAuras.ModelPaths = { }, { value = "passivedoodads", + text = "passivedoodads", children = { { value = "blackrockdirectionalsign", + text = "blackrockdirectionalsign", children = { { value = "blackrockdirectionalsign.m2", + text = "blackrockdirectionalsign.m2", fileId = "203033", text = "blackrockdirectionalsign.m2", }, @@ -53055,19 +63311,23 @@ WeakAuras.ModelPaths = { }, { value = "blackrocklavabubbles", + text = "blackrocklavabubbles", children = { { value = "blackrockstatuelavabubble.m2", + text = "blackrockstatuelavabubble.m2", fileId = "203035", text = "blackrockstatuelavabubble.m2", }, { value = "blackrockstatuelavabubbles.m2", + text = "blackrockstatuelavabubbles.m2", fileId = "203036", text = "blackrockstatuelavabubbles.m2", }, { value = "blackrockstatuelavasplash.m2", + text = "blackrockstatuelavasplash.m2", fileId = "203037", text = "blackrockstatuelavasplash.m2", }, @@ -53076,34 +63336,41 @@ WeakAuras.ModelPaths = { }, { value = "blackrocklavaflow", + text = "blackrocklavaflow", children = { { value = "blackrocklavafalls01.m2", + text = "blackrocklavafalls01.m2", fileId = "203040", text = "blackrocklavafalls01.m2", }, { value = "blackrocklavafalls02.m2", + text = "blackrocklavafalls02.m2", fileId = "203041", text = "blackrocklavafalls02.m2", }, { value = "blackrockmouthlava01.m2", + text = "blackrockmouthlava01.m2", fileId = "203043", text = "blackrockmouthlava01.m2", }, { value = "blackrockmouthlava02.m2", + text = "blackrockmouthlava02.m2", fileId = "203044", text = "blackrockmouthlava02.m2", }, { value = "blackrockstatuelavaflow.m2", + text = "blackrockstatuelavaflow.m2", fileId = "203045", text = "blackrockstatuelavaflow.m2", }, { value = "blackrockstatuelavaflowwide.m2", + text = "blackrockstatuelavaflowwide.m2", fileId = "203046", text = "blackrockstatuelavaflowwide.m2", }, @@ -53112,14 +63379,17 @@ WeakAuras.ModelPaths = { }, { value = "blackrockportraits", + text = "blackrockportraits", children = { { value = "bankportrait.m2", + text = "bankportrait.m2", fileId = "203050", text = "bankportrait.m2", }, { value = "bankportraitplate.m2", + text = "bankportraitplate.m2", fileId = "203051", text = "bankportraitplate.m2", }, @@ -53128,14 +63398,17 @@ WeakAuras.ModelPaths = { }, { value = "blackrockteslacoil.m2", + text = "blackrockteslacoil.m2", fileId = "203054", text = "blackrockteslacoil.m2", }, { value = "blackwingthrone", + text = "blackwingthrone", children = { { value = "blackwinglair_throne.m2", + text = "blackwinglair_throne.m2", fileId = "203055", text = "blackwinglair_throne.m2", }, @@ -53144,49 +63417,59 @@ WeakAuras.ModelPaths = { }, { value = "deathwingexperiments", + text = "deathwingexperiments", children = { { value = "blackrockbloodmachine01.m2", + text = "blackrockbloodmachine01.m2", fileId = "203057", text = "blackrockbloodmachine01.m2", }, { value = "blackrockbloodmachine02.m2", + text = "blackrockbloodmachine02.m2", fileId = "203058", text = "blackrockbloodmachine02.m2", }, { value = "blackrockbloodmachine03.m2", + text = "blackrockbloodmachine03.m2", fileId = "203059", text = "blackrockbloodmachine03.m2", }, { value = "blackrockbloodmachine04.m2", + text = "blackrockbloodmachine04.m2", fileId = "203060", text = "blackrockbloodmachine04.m2", }, { value = "blackrockbloodvile.m2", + text = "blackrockbloodvile.m2", fileId = "203061", text = "blackrockbloodvile.m2", }, { value = "hangingdragon01.m2", + text = "hangingdragon01.m2", fileId = "203069", text = "hangingdragon01.m2", }, { value = "hangingdragon02.m2", + text = "hangingdragon02.m2", fileId = "203070", text = "hangingdragon02.m2", }, { value = "wallmountedvial01.m2", + text = "wallmountedvial01.m2", fileId = "203072", text = "wallmountedvial01.m2", }, { value = "wallmountedvial02.m2", + text = "wallmountedvial02.m2", fileId = "203073", text = "wallmountedvial02.m2", }, @@ -53195,54 +63478,65 @@ WeakAuras.ModelPaths = { }, { value = "doors", + text = "doors", children = { { value = "blackrockcelldoor01.m2", + text = "blackrockcelldoor01.m2", fileId = "203074", text = "blackrockcelldoor01.m2", }, { value = "blackrockdoors01.m2", + text = "blackrockdoors01.m2", fileId = "203075", text = "blackrockdoors01.m2", }, { value = "blackrockdoorsingle.m2", + text = "blackrockdoorsingle.m2", fileId = "203076", text = "blackrockdoorsingle.m2", }, { value = "blackrockhugedoors.m2", + text = "blackrockhugedoors.m2", fileId = "203077", text = "blackrockhugedoors.m2", }, { value = "blackrockhugedoorsmechanism.m2", + text = "blackrockhugedoorsmechanism.m2", fileId = "203078", text = "blackrockhugedoorsmechanism.m2", }, { value = "blackrockhugedoorsmechanismlock.m2", + text = "blackrockhugedoorsmechanismlock.m2", fileId = "203082", text = "blackrockhugedoorsmechanismlock.m2", }, { value = "blackrockhugedoorsopendoorcollision.m2", + text = "blackrockhugedoorsopendoorcollision.m2", fileId = "203083", text = "blackrockhugedoorsopendoorcollision.m2", }, { value = "blackrockhugedoorsportcullis.m2", + text = "blackrockhugedoorsportcullis.m2", fileId = "203084", text = "blackrockhugedoorsportcullis.m2", }, { value = "blackrockirondoor01.m2", + text = "blackrockirondoor01.m2", fileId = "203086", text = "blackrockirondoor01.m2", }, { value = "darkironportcullis.m2", + text = "darkironportcullis.m2", fileId = "203087", text = "darkironportcullis.m2", }, @@ -53251,14 +63545,17 @@ WeakAuras.ModelPaths = { }, { value = "dragonkineggs", + text = "dragonkineggs", children = { { value = "dragonkinegg.m2", + text = "dragonkinegg.m2", fileId = "203089", text = "dragonkinegg.m2", }, { value = "dragonkineggbroken.m2", + text = "dragonkineggbroken.m2", fileId = "203090", text = "dragonkineggbroken.m2", }, @@ -53267,24 +63564,29 @@ WeakAuras.ModelPaths = { }, { value = "dragonkinnests", + text = "dragonkinnests", children = { { value = "dragonkinnest01.m2", + text = "dragonkinnest01.m2", fileId = "203091", text = "dragonkinnest01.m2", }, { value = "dragonkinnest02.m2", + text = "dragonkinnest02.m2", fileId = "203092", text = "dragonkinnest02.m2", }, { value = "dragonkinnest03.m2", + text = "dragonkinnest03.m2", fileId = "203093", text = "dragonkinnest03.m2", }, { value = "dragonkinnestclump01.m2", + text = "dragonkinnestclump01.m2", fileId = "203094", text = "dragonkinnestclump01.m2", }, @@ -53293,39 +63595,47 @@ WeakAuras.ModelPaths = { }, { value = "golemparts", + text = "golemparts", children = { { value = "cannongolemarm.m2", + text = "cannongolemarm.m2", fileId = "203096", text = "cannongolemarm.m2", }, { value = "cannongolembust.m2", + text = "cannongolembust.m2", fileId = "203097", text = "cannongolembust.m2", }, { value = "cannongolemcannon.m2", + text = "cannongolemcannon.m2", fileId = "203098", text = "cannongolemcannon.m2", }, { value = "cannongolemfoot.m2", + text = "cannongolemfoot.m2", fileId = "203099", text = "cannongolemfoot.m2", }, { value = "cannongolemoperationtable.m2", + text = "cannongolemoperationtable.m2", fileId = "203100", text = "cannongolemoperationtable.m2", }, { value = "cannongolemwaist.m2", + text = "cannongolemwaist.m2", fileId = "203101", text = "cannongolemwaist.m2", }, { value = "darkironoperationtableempty.m2", + text = "darkironoperationtableempty.m2", fileId = "203103", text = "darkironoperationtableempty.m2", }, @@ -53334,34 +63644,41 @@ WeakAuras.ModelPaths = { }, { value = "hooks", + text = "hooks", children = { { value = "blackrockhookarm01.m2", + text = "blackrockhookarm01.m2", fileId = "203105", text = "blackrockhookarm01.m2", }, { value = "blackrockhookbody01.m2", + text = "blackrockhookbody01.m2", fileId = "203106", text = "blackrockhookbody01.m2", }, { value = "blackrockhookcannon01.m2", + text = "blackrockhookcannon01.m2", fileId = "203107", text = "blackrockhookcannon01.m2", }, { value = "blackrockhookempty.m2", + text = "blackrockhookempty.m2", fileId = "203108", text = "blackrockhookempty.m2", }, { value = "blackrockhookfoot01.m2", + text = "blackrockhookfoot01.m2", fileId = "203109", text = "blackrockhookfoot01.m2", }, { value = "blackrockhookhead01.m2", + text = "blackrockhookhead01.m2", fileId = "203110", text = "blackrockhookhead01.m2", }, @@ -53370,9 +63687,11 @@ WeakAuras.ModelPaths = { }, { value = "museumgem", + text = "museumgem", children = { { value = "museumgem01.m2", + text = "museumgem01.m2", fileId = "203112", text = "museumgem01.m2", }, @@ -53381,9 +63700,11 @@ WeakAuras.ModelPaths = { }, { value = "warchiefshead", + text = "warchiefshead", children = { { value = "warchiefrendshead.m2", + text = "warchiefrendshead.m2", fileId = "203114", text = "warchiefrendshead.m2", }, @@ -53398,15 +63719,19 @@ WeakAuras.ModelPaths = { }, { value = "ironforge", + text = "ironforge", children = { { value = "buildings", + text = "buildings", children = { { value = "fortress01_06", + text = "fortress01_06", children = { { value = "fortress01_06.m2", + text = "fortress01_06.m2", fileId = "203116", text = "fortress01_06.m2", }, @@ -53415,9 +63740,11 @@ WeakAuras.ModelPaths = { }, { value = "fortress01_08", + text = "fortress01_08", children = { { value = "fortress01_08.m2", + text = "fortress01_08.m2", fileId = "203120", text = "fortress01_08.m2", }, @@ -53426,9 +63753,11 @@ WeakAuras.ModelPaths = { }, { value = "fortress01_09", + text = "fortress01_09", children = { { value = "fortress01_09.m2", + text = "fortress01_09.m2", fileId = "203122", text = "fortress01_09.m2", }, @@ -53437,9 +63766,11 @@ WeakAuras.ModelPaths = { }, { value = "fortress02_04", + text = "fortress02_04", children = { { value = "fortress02_04.m2", + text = "fortress02_04.m2", fileId = "203123", text = "fortress02_04.m2", }, @@ -53448,9 +63779,11 @@ WeakAuras.ModelPaths = { }, { value = "fortress02_06", + text = "fortress02_06", children = { { value = "fortress02_06.m2", + text = "fortress02_06.m2", fileId = "203124", text = "fortress02_06.m2", }, @@ -53459,9 +63792,11 @@ WeakAuras.ModelPaths = { }, { value = "fortress02_07", + text = "fortress02_07", children = { { value = "fortress02_07.m2", + text = "fortress02_07.m2", fileId = "203125", text = "fortress02_07.m2", }, @@ -53470,9 +63805,11 @@ WeakAuras.ModelPaths = { }, { value = "fortress03_03", + text = "fortress03_03", children = { { value = "fortress03_03.m2", + text = "fortress03_03.m2", fileId = "203126", text = "fortress03_03.m2", }, @@ -53481,9 +63818,11 @@ WeakAuras.ModelPaths = { }, { value = "fortress03_04a", + text = "fortress03_04a", children = { { value = "fortress03_04a.m2", + text = "fortress03_04a.m2", fileId = "203127", text = "fortress03_04a.m2", }, @@ -53492,9 +63831,11 @@ WeakAuras.ModelPaths = { }, { value = "fortress03_04b", + text = "fortress03_04b", children = { { value = "fortress03_04b.m2", + text = "fortress03_04b.m2", fileId = "203128", text = "fortress03_04b.m2", }, @@ -53503,9 +63844,11 @@ WeakAuras.ModelPaths = { }, { value = "fortress03_05", + text = "fortress03_05", children = { { value = "fortress03_05.m2", + text = "fortress03_05.m2", fileId = "203129", text = "fortress03_05.m2", }, @@ -53514,9 +63857,11 @@ WeakAuras.ModelPaths = { }, { value = "fortress03_05b", + text = "fortress03_05b", children = { { value = "fortress03_05b.m2", + text = "fortress03_05b.m2", fileId = "203130", text = "fortress03_05b.m2", }, @@ -53525,9 +63870,11 @@ WeakAuras.ModelPaths = { }, { value = "fortress04_03", + text = "fortress04_03", children = { { value = "fortress04_03.m2", + text = "fortress04_03.m2", fileId = "203131", text = "fortress04_03.m2", }, @@ -53536,9 +63883,11 @@ WeakAuras.ModelPaths = { }, { value = "fortress04_05", + text = "fortress04_05", children = { { value = "fortress04_05.m2", + text = "fortress04_05.m2", fileId = "203132", text = "fortress04_05.m2", }, @@ -53547,9 +63896,11 @@ WeakAuras.ModelPaths = { }, { value = "fortress04_06", + text = "fortress04_06", children = { { value = "fortress04_06.m2", + text = "fortress04_06.m2", fileId = "203133", text = "fortress04_06.m2", }, @@ -53558,9 +63909,11 @@ WeakAuras.ModelPaths = { }, { value = "fortress05_03", + text = "fortress05_03", children = { { value = "fortress05_03.m2", + text = "fortress05_03.m2", fileId = "203134", text = "fortress05_03.m2", }, @@ -53569,9 +63922,11 @@ WeakAuras.ModelPaths = { }, { value = "fortress05_05", + text = "fortress05_05", children = { { value = "fortress05_05.m2", + text = "fortress05_05.m2", fileId = "203135", text = "fortress05_05.m2", }, @@ -53580,9 +63935,11 @@ WeakAuras.ModelPaths = { }, { value = "runestonesnow_01", + text = "runestonesnow_01", children = { { value = "runestonesnow_01.m2", + text = "runestonesnow_01.m2", fileId = "203136", text = "runestonesnow_01.m2", }, @@ -53594,12 +63951,15 @@ WeakAuras.ModelPaths = { }, { value = "passivedoodads", + text = "passivedoodads", children = { { value = "auctionhouse", + text = "auctionhouse", children = { { value = "auctioneercollision.m2", + text = "auctioneercollision.m2", fileId = "203138", text = "auctioneercollision.m2", }, @@ -53608,24 +63968,29 @@ WeakAuras.ModelPaths = { }, { value = "banners", + text = "banners", children = { { value = "dwarfbannerblue01.m2", + text = "dwarfbannerblue01.m2", fileId = "203139", text = "dwarfbannerblue01.m2", }, { value = "dwarfbannergold01.m2", + text = "dwarfbannergold01.m2", fileId = "203140", text = "dwarfbannergold01.m2", }, { value = "dwarfbannerred01.m2", + text = "dwarfbannerred01.m2", fileId = "203141", text = "dwarfbannerred01.m2", }, { value = "dwarfbannersilver01.m2", + text = "dwarfbannersilver01.m2", fileId = "203142", text = "dwarfbannersilver01.m2", }, @@ -53634,19 +63999,23 @@ WeakAuras.ModelPaths = { }, { value = "bush", + text = "bush", children = { { value = "ironforgeangledbush01.m2", + text = "ironforgeangledbush01.m2", fileId = "203148", text = "ironforgeangledbush01.m2", }, { value = "ironforgebush01.m2", + text = "ironforgebush01.m2", fileId = "203149", text = "ironforgebush01.m2", }, { value = "ironforgesnowybush02.m2", + text = "ironforgesnowybush02.m2", fileId = "203151", text = "ironforgesnowybush02.m2", }, @@ -53655,19 +64024,23 @@ WeakAuras.ModelPaths = { }, { value = "elevators", + text = "elevators", children = { { value = "ironforgeelevator.m2", + text = "ironforgeelevator.m2", fileId = "203152", text = "ironforgeelevator.m2", }, { value = "ironforgeelevatordoor.m2", + text = "ironforgeelevatordoor.m2", fileId = "203153", text = "ironforgeelevatordoor.m2", }, { value = "ironforgehouseelevator.m2", + text = "ironforgehouseelevator.m2", fileId = "203154", text = "ironforgehouseelevator.m2", }, @@ -53676,24 +64049,29 @@ WeakAuras.ModelPaths = { }, { value = "fences", + text = "fences", children = { { value = "dunmoroghstonefence01.m2", + text = "dunmoroghstonefence01.m2", fileId = "203158", text = "dunmoroghstonefence01.m2", }, { value = "dunmoroghstonefence02.m2", + text = "dunmoroghstonefence02.m2", fileId = "203159", text = "dunmoroghstonefence02.m2", }, { value = "dunmoroghstonefence03.m2", + text = "dunmoroghstonefence03.m2", fileId = "203160", text = "dunmoroghstonefence03.m2", }, { value = "dunmoroghstonefence04.m2", + text = "dunmoroghstonefence04.m2", fileId = "203161", text = "dunmoroghstonefence04.m2", }, @@ -53702,9 +64080,11 @@ WeakAuras.ModelPaths = { }, { value = "garagemachine", + text = "garagemachine", children = { { value = "garagemachine.m2", + text = "garagemachine.m2", fileId = "203162", text = "garagemachine.m2", }, @@ -53713,37 +64093,45 @@ WeakAuras.ModelPaths = { }, { value = "gnomearea", + text = "gnomearea", children = { { value = "gnomekinggear.m2", + text = "gnomekinggear.m2", fileId = "203164", text = "gnomekinggear.m2", }, { value = "gnomekinggearsmall.m2", + text = "gnomekinggearsmall.m2", fileId = "203165", text = "gnomekinggearsmall.m2", }, { value = "gnomekingpistons.m2", + text = "gnomekingpistons.m2", fileId = "203167", text = "gnomekingpistons.m2", }, { value = "gnomekingspiralgear.m2", + text = "gnomekingspiralgear.m2", fileId = "203168", text = "gnomekingspiralgear.m2", }, { value = "gnomekingwormgear.m2", + text = "gnomekingwormgear.m2", fileId = "203169", text = "gnomekingwormgear.m2", }, { value = "vent", + text = "vent", children = { { value = "gnomereganvent.m2", + text = "gnomereganvent.m2", fileId = "203171", text = "gnomereganvent.m2", }, @@ -53755,9 +64143,11 @@ WeakAuras.ModelPaths = { }, { value = "greatforge", + text = "greatforge", children = { { value = "thegreatanvil.m2", + text = "thegreatanvil.m2", fileId = "203176", text = "thegreatanvil.m2", }, @@ -53766,9 +64156,11 @@ WeakAuras.ModelPaths = { }, { value = "hammerquest01", + text = "hammerquest01", children = { { value = "hammerquest01.m2", + text = "hammerquest01.m2", fileId = "203177", text = "hammerquest01.m2", }, @@ -53777,9 +64169,11 @@ WeakAuras.ModelPaths = { }, { value = "hotcoals", + text = "hotcoals", children = { { value = "hotcoals.m2", + text = "hotcoals.m2", fileId = "203178", text = "hotcoals.m2", }, @@ -53788,39 +64182,47 @@ WeakAuras.ModelPaths = { }, { value = "lavasteam", + text = "lavasteam", children = { { value = "forgelavaa.m2", + text = "forgelavaa.m2", fileId = "203179", text = "forgelavaa.m2", }, { value = "forgelavab.m2", + text = "forgelavab.m2", fileId = "203180", text = "forgelavab.m2", }, { value = "ironforgebellow.m2", + text = "ironforgebellow.m2", fileId = "203181", text = "ironforgebellow.m2", }, { value = "ironforgepiston.m2", + text = "ironforgepiston.m2", fileId = "203184", text = "ironforgepiston.m2", }, { value = "ironforgewheel.m2", + text = "ironforgewheel.m2", fileId = "203185", text = "ironforgewheel.m2", }, { value = "lavapots.m2", + text = "lavapots.m2", fileId = "203187", text = "lavapots.m2", }, { value = "lavasteam.m2", + text = "lavasteam.m2", fileId = "203188", text = "lavasteam.m2", }, @@ -53829,9 +64231,11 @@ WeakAuras.ModelPaths = { }, { value = "margolreaverhorn", + text = "margolreaverhorn", children = { { value = "margolreaverhorn.m2", + text = "margolreaverhorn.m2", fileId = "203190", text = "margolreaverhorn.m2", }, @@ -53840,19 +64244,23 @@ WeakAuras.ModelPaths = { }, { value = "museumexhibits", + text = "museumexhibits", children = { { value = "dwarvenglobe01.m2", + text = "dwarvenglobe01.m2", fileId = "203194", text = "dwarvenglobe01.m2", }, { value = "giantramexhibit.m2", + text = "giantramexhibit.m2", fileId = "203195", text = "giantramexhibit.m2", }, { value = "gryphonclawexhibit.m2", + text = "gryphonclawexhibit.m2", fileId = "203196", text = "gryphonclawexhibit.m2", }, @@ -53861,9 +64269,11 @@ WeakAuras.ModelPaths = { }, { value = "plaques", + text = "plaques", children = { { value = "dwarfmuseumplaque01.m2", + text = "dwarfmuseumplaque01.m2", fileId = "203198", text = "dwarfmuseumplaque01.m2", }, @@ -53872,39 +64282,47 @@ WeakAuras.ModelPaths = { }, { value = "rocks", + text = "rocks", children = { { value = "ironforgecliff01.m2", + text = "ironforgecliff01.m2", fileId = "203200", text = "ironforgecliff01.m2", }, { value = "ironforgecliff02.m2", + text = "ironforgecliff02.m2", fileId = "203201", text = "ironforgecliff02.m2", }, { value = "ironforgecliff03.m2", + text = "ironforgecliff03.m2", fileId = "203202", text = "ironforgecliff03.m2", }, { value = "ironforgecliff04.m2", + text = "ironforgecliff04.m2", fileId = "203203", text = "ironforgecliff04.m2", }, { value = "snowytowerrock01.m2", + text = "snowytowerrock01.m2", fileId = "203208", text = "snowytowerrock01.m2", }, { value = "snowytowerrock02.m2", + text = "snowytowerrock02.m2", fileId = "203209", text = "snowytowerrock02.m2", }, { value = "snowytowerrock03.m2", + text = "snowytowerrock03.m2", fileId = "203210", text = "snowytowerrock03.m2", }, @@ -53913,14 +64331,17 @@ WeakAuras.ModelPaths = { }, { value = "signposts", + text = "signposts", children = { { value = "ironforgesignpost.m2", + text = "ironforgesignpost.m2", fileId = "203213", text = "ironforgesignpost.m2", }, { value = "ironforgesignpostpointer.m2", + text = "ironforgesignpostpointer.m2", fileId = "203214", text = "ironforgesignpostpointer.m2", }, @@ -53929,19 +64350,23 @@ WeakAuras.ModelPaths = { }, { value = "slimejars", + text = "slimejars", children = { { value = "slimejar01.m2", + text = "slimejar01.m2", fileId = "203217", text = "slimejar01.m2", }, { value = "slimejar02.m2", + text = "slimejar02.m2", fileId = "203218", text = "slimejar02.m2", }, { value = "slimejar03.m2", + text = "slimejar03.m2", fileId = "203219", text = "slimejar03.m2", }, @@ -53950,9 +64375,11 @@ WeakAuras.ModelPaths = { }, { value = "statues", + text = "statues", children = { { value = "ironforgestatue_01.m2", + text = "ironforgestatue_01.m2", fileId = "203221", text = "ironforgestatue_01.m2", }, @@ -53961,44 +64388,53 @@ WeakAuras.ModelPaths = { }, { value = "steamtank", + text = "steamtank", children = { { value = "ironforgesteamtank.m2", + text = "ironforgesteamtank.m2", fileId = "203226", text = "ironforgesteamtank.m2", }, { value = "ironforgesteamtankdrag.m2", + text = "ironforgesteamtankdrag.m2", fileId = "203229", text = "ironforgesteamtankdrag.m2", }, { value = "ironforgesteamtankruined01.m2", + text = "ironforgesteamtankruined01.m2", fileId = "203230", text = "ironforgesteamtankruined01.m2", }, { value = "ironforgesteamtankwolf.m2", + text = "ironforgesteamtankwolf.m2", fileId = "203231", text = "ironforgesteamtankwolf.m2", }, { value = "ruinedsteamtankaxle01.m2", + text = "ruinedsteamtankaxle01.m2", fileId = "203232", text = "ruinedsteamtankaxle01.m2", }, { value = "ruinedsteamtankgastank01.m2", + text = "ruinedsteamtankgastank01.m2", fileId = "203233", text = "ruinedsteamtankgastank01.m2", }, { value = "ruinedsteamtankgear01.m2", + text = "ruinedsteamtankgear01.m2", fileId = "203234", text = "ruinedsteamtankgear01.m2", }, { value = "ruinedsteamtankwheel01.m2", + text = "ruinedsteamtankwheel01.m2", fileId = "203235", text = "ruinedsteamtankwheel01.m2", }, @@ -54007,9 +64443,11 @@ WeakAuras.ModelPaths = { }, { value = "throne", + text = "throne", children = { { value = "dwarventhrone01.m2", + text = "dwarventhrone01.m2", fileId = "203241", text = "dwarventhrone01.m2", }, @@ -54018,9 +64456,11 @@ WeakAuras.ModelPaths = { }, { value = "throneroom", + text = "throneroom", children = { { value = "ironforgecrystalroof.m2", + text = "ironforgecrystalroof.m2", fileId = "203245", text = "ironforgecrystalroof.m2", }, @@ -54029,114 +64469,137 @@ WeakAuras.ModelPaths = { }, { value = "trees", + text = "trees", children = { { value = "ironforgepine01.m2", + text = "ironforgepine01.m2", fileId = "203255", text = "ironforgepine01.m2", }, { value = "ironforgepine02.m2", + text = "ironforgepine02.m2", fileId = "203256", text = "ironforgepine02.m2", }, { value = "ironforgesnowtree01.m2", + text = "ironforgesnowtree01.m2", fileId = "203257", text = "ironforgesnowtree01.m2", }, { value = "ironforgetree01.m2", + text = "ironforgetree01.m2", fileId = "203259", text = "ironforgetree01.m2", }, { value = "ironforgetree02.m2", + text = "ironforgetree02.m2", fileId = "203260", text = "ironforgetree02.m2", }, { value = "ironforgetree03.m2", + text = "ironforgetree03.m2", fileId = "203261", text = "ironforgetree03.m2", }, { value = "ironforgetree04.m2", + text = "ironforgetree04.m2", fileId = "203262", text = "ironforgetree04.m2", }, { value = "ironstump01.m2", + text = "ironstump01.m2", fileId = "203265", text = "ironstump01.m2", }, { value = "ironstump02.m2", + text = "ironstump02.m2", fileId = "203266", text = "ironstump02.m2", }, { value = "ironstump03.m2", + text = "ironstump03.m2", fileId = "203268", text = "ironstump03.m2", }, { value = "ironstump04.m2", + text = "ironstump04.m2", fileId = "203269", text = "ironstump04.m2", }, { value = "ironstump05.m2", + text = "ironstump05.m2", fileId = "203270", text = "ironstump05.m2", }, { value = "wintermidtree01.m2", + text = "wintermidtree01.m2", fileId = "203276", text = "wintermidtree01.m2", }, { value = "wintermidtree02.m2", + text = "wintermidtree02.m2", fileId = "203277", text = "wintermidtree02.m2", }, { value = "wintermidtree03.m2", + text = "wintermidtree03.m2", fileId = "203278", text = "wintermidtree03.m2", }, { value = "wintersmalltree01.m2", + text = "wintersmalltree01.m2", fileId = "203279", text = "wintersmalltree01.m2", }, { value = "wintersmalltree02.m2", + text = "wintersmalltree02.m2", fileId = "203280", text = "wintersmalltree02.m2", }, { value = "wintertree01.m2", + text = "wintertree01.m2", fileId = "203285", text = "wintertree01.m2", }, { value = "wintertree02.m2", + text = "wintertree02.m2", fileId = "203286", text = "wintertree02.m2", }, { value = "wintertree03.m2", + text = "wintertree03.m2", fileId = "203287", text = "wintertree03.m2", }, { value = "wintertree04.m2", + text = "wintertree04.m2", fileId = "203288", text = "wintertree04.m2", }, { value = "wintertree05.m2", + text = "wintertree05.m2", fileId = "203290", text = "wintertree05.m2", }, @@ -54151,40 +64614,49 @@ WeakAuras.ModelPaths = { }, { value = "lochmodan", + text = "lochmodan", children = { { value = "passivedoodads", + text = "passivedoodads", children = { { value = "bushes", + text = "bushes", children = { { value = "lochmodanshrub01.m2", + text = "lochmodanshrub01.m2", fileId = "203296", text = "lochmodanshrub01.m2", }, { value = "lochmodanshrub02.m2", + text = "lochmodanshrub02.m2", fileId = "203297", text = "lochmodanshrub02.m2", }, { value = "lochmodanshrub03.m2", + text = "lochmodanshrub03.m2", fileId = "203299", text = "lochmodanshrub03.m2", }, { value = "lochmodanshrub04.m2", + text = "lochmodanshrub04.m2", fileId = "203300", text = "lochmodanshrub04.m2", }, { value = "lochmodanshrub06.m2", + text = "lochmodanshrub06.m2", fileId = "203301", text = "lochmodanshrub06.m2", }, { value = "lochmodanshurb05.m2", + text = "lochmodanshurb05.m2", fileId = "203302", text = "lochmodanshurb05.m2", }, @@ -54193,9 +64665,11 @@ WeakAuras.ModelPaths = { }, { value = "dam", + text = "dam", children = { { value = "testdam01.m2", + text = "testdam01.m2", fileId = "203305", text = "testdam01.m2", }, @@ -54204,44 +64678,53 @@ WeakAuras.ModelPaths = { }, { value = "fences", + text = "fences", children = { { value = "lochmodanstonefence01.m2", + text = "lochmodanstonefence01.m2", fileId = "203307", text = "lochmodanstonefence01.m2", }, { value = "lochmodanstonefence02.m2", + text = "lochmodanstonefence02.m2", fileId = "203308", text = "lochmodanstonefence02.m2", }, { value = "lochmodanstonefence03.m2", + text = "lochmodanstonefence03.m2", fileId = "203309", text = "lochmodanstonefence03.m2", }, { value = "lochmodanstonefence04.m2", + text = "lochmodanstonefence04.m2", fileId = "203310", text = "lochmodanstonefence04.m2", }, { value = "lochmodanwoodfence01.m2", + text = "lochmodanwoodfence01.m2", fileId = "203311", text = "lochmodanwoodfence01.m2", }, { value = "lochmodanwoodfence02.m2", + text = "lochmodanwoodfence02.m2", fileId = "203312", text = "lochmodanwoodfence02.m2", }, { value = "lochmodanwoodfence03.m2", + text = "lochmodanwoodfence03.m2", fileId = "203313", text = "lochmodanwoodfence03.m2", }, { value = "lochmodanwoodfence04.m2", + text = "lochmodanwoodfence04.m2", fileId = "203314", text = "lochmodanwoodfence04.m2", }, @@ -54250,24 +64733,29 @@ WeakAuras.ModelPaths = { }, { value = "grass", + text = "grass", children = { { value = "lochtallgrass01.m2", + text = "lochtallgrass01.m2", fileId = "203316", text = "lochtallgrass01.m2", }, { value = "lochtallgrass02.m2", + text = "lochtallgrass02.m2", fileId = "203317", text = "lochtallgrass02.m2", }, { value = "lochtallgrass03.m2", + text = "lochtallgrass03.m2", fileId = "203318", text = "lochtallgrass03.m2", }, { value = "lochtallgrass04.m2", + text = "lochtallgrass04.m2", fileId = "203319", text = "lochtallgrass04.m2", }, @@ -54276,9 +64764,11 @@ WeakAuras.ModelPaths = { }, { value = "logs", + text = "logs", children = { { value = "lochlog01.m2", + text = "lochlog01.m2", fileId = "203320", text = "lochlog01.m2", }, @@ -54287,79 +64777,95 @@ WeakAuras.ModelPaths = { }, { value = "titanruins", + text = "titanruins", children = { { value = "titanruinsarch01.m2", + text = "titanruinsarch01.m2", fileId = "203323", text = "titanruinsarch01.m2", }, { value = "titanruinsarch02.m2", + text = "titanruinsarch02.m2", fileId = "203324", text = "titanruinsarch02.m2", }, { value = "titanruinsblock01.m2", + text = "titanruinsblock01.m2", fileId = "203325", text = "titanruinsblock01.m2", }, { value = "titanruinsblock02.m2", + text = "titanruinsblock02.m2", fileId = "203326", text = "titanruinsblock02.m2", }, { value = "titanruinshead01.m2", + text = "titanruinshead01.m2", fileId = "203327", text = "titanruinshead01.m2", }, { value = "titanruinspillar01.m2", + text = "titanruinspillar01.m2", fileId = "203328", text = "titanruinspillar01.m2", }, { value = "titanruinspillar02.m2", + text = "titanruinspillar02.m2", fileId = "203329", text = "titanruinspillar02.m2", }, { value = "titanruinspillar03.m2", + text = "titanruinspillar03.m2", fileId = "203330", text = "titanruinspillar03.m2", }, { value = "titanruinspillar04.m2", + text = "titanruinspillar04.m2", fileId = "203331", text = "titanruinspillar04.m2", }, { value = "titanruinspillar05.m2", + text = "titanruinspillar05.m2", fileId = "203332", text = "titanruinspillar05.m2", }, { value = "titanruinswall01.m2", + text = "titanruinswall01.m2", fileId = "203333", text = "titanruinswall01.m2", }, { value = "titanruinswall02.m2", + text = "titanruinswall02.m2", fileId = "203334", text = "titanruinswall02.m2", }, { value = "titanruinswall03.m2", + text = "titanruinswall03.m2", fileId = "203335", text = "titanruinswall03.m2", }, { value = "titanruinswall04.m2", + text = "titanruinswall04.m2", fileId = "203336", text = "titanruinswall04.m2", }, { value = "titanruinswall05.m2", + text = "titanruinswall05.m2", fileId = "203337", text = "titanruinswall05.m2", }, @@ -54368,84 +64874,101 @@ WeakAuras.ModelPaths = { }, { value = "trees", + text = "trees", children = { { value = "lochmodanfallentree01.m2", + text = "lochmodanfallentree01.m2", fileId = "203343", text = "lochmodanfallentree01.m2", }, { value = "lochmodantree01.m2", + text = "lochmodantree01.m2", fileId = "203347", text = "lochmodantree01.m2", }, { value = "lochmodantree02.m2", + text = "lochmodantree02.m2", fileId = "203348", text = "lochmodantree02.m2", }, { value = "lochmodantree03.m2", + text = "lochmodantree03.m2", fileId = "203349", text = "lochmodantree03.m2", }, { value = "lochmodantree04.m2", + text = "lochmodantree04.m2", fileId = "203350", text = "lochmodantree04.m2", }, { value = "lochmodantree05.m2", + text = "lochmodantree05.m2", fileId = "203351", text = "lochmodantree05.m2", }, { value = "lochmodantree06.m2", + text = "lochmodantree06.m2", fileId = "203352", text = "lochmodantree06.m2", }, { value = "lochmodantree07.m2", + text = "lochmodantree07.m2", fileId = "203353", text = "lochmodantree07.m2", }, { value = "lochmodantree08.m2", + text = "lochmodantree08.m2", fileId = "203354", text = "lochmodantree08.m2", }, { value = "lochmodantree09.m2", + text = "lochmodantree09.m2", fileId = "203355", text = "lochmodantree09.m2", }, { value = "lochmodantreelog01.m2", + text = "lochmodantreelog01.m2", fileId = "203356", text = "lochmodantreelog01.m2", }, { value = "lochmodantreestump01.m2", + text = "lochmodantreestump01.m2", fileId = "203357", text = "lochmodantreestump01.m2", }, { value = "lochmodantreestump02.m2", + text = "lochmodantreestump02.m2", fileId = "203359", text = "lochmodantreestump02.m2", }, { value = "lochtallgrass05.m2", + text = "lochtallgrass05.m2", fileId = "203362", text = "lochtallgrass05.m2", }, { value = "lochtallgrass06.m2", + text = "lochtallgrass06.m2", fileId = "203363", text = "lochtallgrass06.m2", }, { value = "lochtallgrass07.m2", + text = "lochtallgrass07.m2", fileId = "203364", text = "lochtallgrass07.m2", }, @@ -54460,15 +64983,19 @@ WeakAuras.ModelPaths = { }, { value = "uldaman", + text = "uldaman", children = { { value = "activedoodads", + text = "activedoodads", children = { { value = "altar", + text = "altar", children = { { value = "stonekeeperaltar.m2", + text = "stonekeeperaltar.m2", fileId = "203368", text = "stonekeeperaltar.m2", }, @@ -54480,27 +65007,33 @@ WeakAuras.ModelPaths = { }, { value = "passivedoodads", + text = "passivedoodads", children = { { value = "banners", + text = "banners", children = { { value = "banner01.m2", + text = "banner01.m2", fileId = "203370", text = "banner01.m2", }, { value = "banner02.m2", + text = "banner02.m2", fileId = "203372", text = "banner02.m2", }, { value = "bannerruined01.m2", + text = "bannerruined01.m2", fileId = "203373", text = "bannerruined01.m2", }, { value = "bannerruined02.m2", + text = "bannerruined02.m2", fileId = "203374", text = "bannerruined02.m2", }, @@ -54509,29 +65042,35 @@ WeakAuras.ModelPaths = { }, { value = "benches", + text = "benches", children = { { value = "uldamanbench01.m2", + text = "uldamanbench01.m2", fileId = "203376", text = "uldamanbench01.m2", }, { value = "uldamanbench02.m2", + text = "uldamanbench02.m2", fileId = "203377", text = "uldamanbench02.m2", }, { value = "uldamanbenchbroken01.m2", + text = "uldamanbenchbroken01.m2", fileId = "203378", text = "uldamanbenchbroken01.m2", }, { value = "uldamanbenchruined01.m2", + text = "uldamanbenchruined01.m2", fileId = "203380", text = "uldamanbenchruined01.m2", }, { value = "uldamanbenchruined02.m2", + text = "uldamanbenchruined02.m2", fileId = "203381", text = "uldamanbenchruined02.m2", }, @@ -54540,29 +65079,35 @@ WeakAuras.ModelPaths = { }, { value = "books", + text = "books", children = { { value = "uldamanbook01.m2", + text = "uldamanbook01.m2", fileId = "203385", text = "uldamanbook01.m2", }, { value = "uldamanbook02.m2", + text = "uldamanbook02.m2", fileId = "203386", text = "uldamanbook02.m2", }, { value = "uldamanbook03.m2", + text = "uldamanbook03.m2", fileId = "203387", text = "uldamanbook03.m2", }, { value = "uldamanbookbroken01.m2", + text = "uldamanbookbroken01.m2", fileId = "203388", text = "uldamanbookbroken01.m2", }, { value = "uldamanbookbroken02.m2", + text = "uldamanbookbroken02.m2", fileId = "203389", text = "uldamanbookbroken02.m2", }, @@ -54571,24 +65116,29 @@ WeakAuras.ModelPaths = { }, { value = "bookshelves", + text = "bookshelves", children = { { value = "uldamanbookshelf.m2", + text = "uldamanbookshelf.m2", fileId = "203392", text = "uldamanbookshelf.m2", }, { value = "uldamanbookshelf01.m2", + text = "uldamanbookshelf01.m2", fileId = "203393", text = "uldamanbookshelf01.m2", }, { value = "uldamanbookshelfbroken.m2", + text = "uldamanbookshelfbroken.m2", fileId = "203394", text = "uldamanbookshelfbroken.m2", }, { value = "uldamanbookshelfbroken01.m2", + text = "uldamanbookshelfbroken01.m2", fileId = "203395", text = "uldamanbookshelfbroken01.m2", }, @@ -54597,14 +65147,17 @@ WeakAuras.ModelPaths = { }, { value = "braziers", + text = "braziers", children = { { value = "uldamanbrazier01.m2", + text = "uldamanbrazier01.m2", fileId = "203397", text = "uldamanbrazier01.m2", }, { value = "uldamanbrazierbroken01.m2", + text = "uldamanbrazierbroken01.m2", fileId = "203398", text = "uldamanbrazierbroken01.m2", }, @@ -54613,19 +65166,23 @@ WeakAuras.ModelPaths = { }, { value = "debris", + text = "debris", children = { { value = "uldamanscrolldebris01.m2", + text = "uldamanscrolldebris01.m2", fileId = "203400", text = "uldamanscrolldebris01.m2", }, { value = "uldamanscrolldebris02.m2", + text = "uldamanscrolldebris02.m2", fileId = "203401", text = "uldamanscrolldebris02.m2", }, { value = "uldamanscrolldebris03.m2", + text = "uldamanscrolldebris03.m2", fileId = "203402", text = "uldamanscrolldebris03.m2", }, @@ -54634,49 +65191,59 @@ WeakAuras.ModelPaths = { }, { value = "lamps", + text = "lamps", children = { { value = "uldamanlamp.m2", + text = "uldamanlamp.m2", fileId = "203403", text = "uldamanlamp.m2", }, { value = "uldamanlampandpost.m2", + text = "uldamanlampandpost.m2", fileId = "203404", text = "uldamanlampandpost.m2", }, { value = "uldamanlampandpostbusted01.m2", + text = "uldamanlampandpostbusted01.m2", fileId = "203405", text = "uldamanlampandpostbusted01.m2", }, { value = "uldamanlampandpostbusted02.m2", + text = "uldamanlampandpostbusted02.m2", fileId = "203406", text = "uldamanlampandpostbusted02.m2", }, { value = "uldamanlampandpostbusted03.m2", + text = "uldamanlampandpostbusted03.m2", fileId = "203407", text = "uldamanlampandpostbusted03.m2", }, { value = "uldamanlampandpostbusted04.m2", + text = "uldamanlampandpostbusted04.m2", fileId = "203408", text = "uldamanlampandpostbusted04.m2", }, { value = "uldamanlampbroken.m2", + text = "uldamanlampbroken.m2", fileId = "203409", text = "uldamanlampbroken.m2", }, { value = "uldamanlampfallen.m2", + text = "uldamanlampfallen.m2", fileId = "203410", text = "uldamanlampfallen.m2", }, { value = "uldamanlantern.m2", + text = "uldamanlantern.m2", fileId = "203413", text = "uldamanlantern.m2", }, @@ -54685,24 +65252,29 @@ WeakAuras.ModelPaths = { }, { value = "paintings", + text = "paintings", children = { { value = "painting01.m2", + text = "painting01.m2", fileId = "203415", text = "painting01.m2", }, { value = "painting02.m2", + text = "painting02.m2", fileId = "203417", text = "painting02.m2", }, { value = "paintingruined01.m2", + text = "paintingruined01.m2", fileId = "203418", text = "paintingruined01.m2", }, { value = "paintingruined02.m2", + text = "paintingruined02.m2", fileId = "203419", text = "paintingruined02.m2", }, @@ -54711,9 +65283,11 @@ WeakAuras.ModelPaths = { }, { value = "platinumdisk", + text = "platinumdisk", children = { { value = "platinumdisk.m2", + text = "platinumdisk.m2", fileId = "203420", text = "platinumdisk.m2", }, @@ -54722,34 +65296,41 @@ WeakAuras.ModelPaths = { }, { value = "pots", + text = "pots", children = { { value = "uldamanpot01.m2", + text = "uldamanpot01.m2", fileId = "203422", text = "uldamanpot01.m2", }, { value = "uldamanpot02.m2", + text = "uldamanpot02.m2", fileId = "203423", text = "uldamanpot02.m2", }, { value = "uldamanpot03.m2", + text = "uldamanpot03.m2", fileId = "203424", text = "uldamanpot03.m2", }, { value = "uldamanpotbroken01.m2", + text = "uldamanpotbroken01.m2", fileId = "203425", text = "uldamanpotbroken01.m2", }, { value = "uldamanpotbroken02.m2", + text = "uldamanpotbroken02.m2", fileId = "203426", text = "uldamanpotbroken02.m2", }, { value = "uldamanpotbroken03.m2", + text = "uldamanpotbroken03.m2", fileId = "203427", text = "uldamanpotbroken03.m2", }, @@ -54758,24 +65339,29 @@ WeakAuras.ModelPaths = { }, { value = "scrolls", + text = "scrolls", children = { { value = "uldamanscroll01.m2", + text = "uldamanscroll01.m2", fileId = "203429", text = "uldamanscroll01.m2", }, { value = "uldamanscroll02.m2", + text = "uldamanscroll02.m2", fileId = "203430", text = "uldamanscroll02.m2", }, { value = "uldamanscroll03.m2", + text = "uldamanscroll03.m2", fileId = "203431", text = "uldamanscroll03.m2", }, { value = "uldamanscrollclasp.m2", + text = "uldamanscrollclasp.m2", fileId = "203432", text = "uldamanscrollclasp.m2", }, @@ -54784,14 +65370,17 @@ WeakAuras.ModelPaths = { }, { value = "signs", + text = "signs", children = { { value = "uldamanstreetsign.m2", + text = "uldamanstreetsign.m2", fileId = "203434", text = "uldamanstreetsign.m2", }, { value = "uldamanstreetsignbusted.m2", + text = "uldamanstreetsignbusted.m2", fileId = "203435", text = "uldamanstreetsignbusted.m2", }, @@ -54800,39 +65389,47 @@ WeakAuras.ModelPaths = { }, { value = "statues", + text = "statues", children = { { value = "uldamandwarfstatue.m2", + text = "uldamandwarfstatue.m2", fileId = "203439", text = "uldamandwarfstatue.m2", }, { value = "uldamanmountaingiantstatue.m2", + text = "uldamanmountaingiantstatue.m2", fileId = "203440", text = "uldamanmountaingiantstatue.m2", }, { value = "uldamanseagiantstatue.m2", + text = "uldamanseagiantstatue.m2", fileId = "203441", text = "uldamanseagiantstatue.m2", }, { value = "uldamanstonegiantstatue.m2", + text = "uldamanstonegiantstatue.m2", fileId = "203442", text = "uldamanstonegiantstatue.m2", }, { value = "uldamantaurenstatue.m2", + text = "uldamantaurenstatue.m2", fileId = "203443", text = "uldamantaurenstatue.m2", }, { value = "uldamantroglodytestatue.m2", + text = "uldamantroglodytestatue.m2", fileId = "203445", text = "uldamantroglodytestatue.m2", }, { value = "uldamantrollstatue.m2", + text = "uldamantrollstatue.m2", fileId = "203446", text = "uldamantrollstatue.m2", }, @@ -54841,9 +65438,11 @@ WeakAuras.ModelPaths = { }, { value = "stonekeeper", + text = "stonekeeper", children = { { value = "stonekeeperdead01.m2", + text = "stonekeeperdead01.m2", fileId = "203449", text = "stonekeeperdead01.m2", }, @@ -54852,24 +65451,29 @@ WeakAuras.ModelPaths = { }, { value = "tables", + text = "tables", children = { { value = "uldamantable01.m2", + text = "uldamantable01.m2", fileId = "203452", text = "uldamantable01.m2", }, { value = "uldamantablebroken01.m2", + text = "uldamantablebroken01.m2", fileId = "203453", text = "uldamantablebroken01.m2", }, { value = "uldamantablenew.m2", + text = "uldamantablenew.m2", fileId = "203454", text = "uldamantablenew.m2", }, { value = "uldamantableruined.m2", + text = "uldamantableruined.m2", fileId = "203455", text = "uldamantableruined.m2", }, @@ -54878,24 +65482,29 @@ WeakAuras.ModelPaths = { }, { value = "tapestries", + text = "tapestries", children = { { value = "tapestry01.m2", + text = "tapestry01.m2", fileId = "203457", text = "tapestry01.m2", }, { value = "tapestry02.m2", + text = "tapestry02.m2", fileId = "203460", text = "tapestry02.m2", }, { value = "tapestryruined01.m2", + text = "tapestryruined01.m2", fileId = "203462", text = "tapestryruined01.m2", }, { value = "tapestryruined02.m2", + text = "tapestryruined02.m2", fileId = "203463", text = "tapestryruined02.m2", }, @@ -54904,19 +65513,23 @@ WeakAuras.ModelPaths = { }, { value = "titanstatues", + text = "titanstatues", children = { { value = "libertystatue.m2", + text = "libertystatue.m2", fileId = "203467", text = "libertystatue.m2", }, { value = "titanentrancestatue.m2", + text = "titanentrancestatue.m2", fileId = "203468", text = "titanentrancestatue.m2", }, { value = "titanfemalestatue.m2", + text = "titanfemalestatue.m2", fileId = "203469", text = "titanfemalestatue.m2", }, @@ -54931,15 +65544,19 @@ WeakAuras.ModelPaths = { }, { value = "wetlands", + text = "wetlands", children = { { value = "passivedoodads", + text = "passivedoodads", children = { { value = "blackrockbanners", + text = "blackrockbanners", children = { { value = "blackrockclanbanner01.m2", + text = "blackrockclanbanner01.m2", fileId = "203471", text = "blackrockclanbanner01.m2", }, @@ -54948,104 +65565,125 @@ WeakAuras.ModelPaths = { }, { value = "bushes", + text = "bushes", children = { { value = "wetlandgrass01.m2", + text = "wetlandgrass01.m2", fileId = "203479", text = "wetlandgrass01.m2", }, { value = "wetlandgrass02.m2", + text = "wetlandgrass02.m2", fileId = "203480", text = "wetlandgrass02.m2", }, { value = "wetlandgrass03.m2", + text = "wetlandgrass03.m2", fileId = "203481", text = "wetlandgrass03.m2", }, { value = "wetlandgrass04.m2", + text = "wetlandgrass04.m2", fileId = "203482", text = "wetlandgrass04.m2", }, { value = "wetlandgrass05.m2", + text = "wetlandgrass05.m2", fileId = "203483", text = "wetlandgrass05.m2", }, { value = "wetlandshrub01.m2", + text = "wetlandshrub01.m2", fileId = "203484", text = "wetlandshrub01.m2", }, { value = "wetlandshrub02.m2", + text = "wetlandshrub02.m2", fileId = "203485", text = "wetlandshrub02.m2", }, { value = "wetlandshrub03.m2", + text = "wetlandshrub03.m2", fileId = "203486", text = "wetlandshrub03.m2", }, { value = "wetlandshrub04.m2", + text = "wetlandshrub04.m2", fileId = "203487", text = "wetlandshrub04.m2", }, { value = "wetlandshrub05.m2", + text = "wetlandshrub05.m2", fileId = "203488", text = "wetlandshrub05.m2", }, { value = "wetlandshrub06.m2", + text = "wetlandshrub06.m2", fileId = "203489", text = "wetlandshrub06.m2", }, { value = "wetlandshrub07.m2", + text = "wetlandshrub07.m2", fileId = "203490", text = "wetlandshrub07.m2", }, { value = "wetlandshrub08.m2", + text = "wetlandshrub08.m2", fileId = "203491", text = "wetlandshrub08.m2", }, { value = "wetlandshrub09.m2", + text = "wetlandshrub09.m2", fileId = "203492", text = "wetlandshrub09.m2", }, { value = "wetlandsshrub04.m2", + text = "wetlandsshrub04.m2", fileId = "203493", text = "wetlandsshrub04.m2", }, { value = "wetlandsshrub05.m2", + text = "wetlandsshrub05.m2", fileId = "203494", text = "wetlandsshrub05.m2", }, { value = "wetlandsshrub06.m2", + text = "wetlandsshrub06.m2", fileId = "203495", text = "wetlandsshrub06.m2", }, { value = "wetlandsshrub07.m2", + text = "wetlandsshrub07.m2", fileId = "203496", text = "wetlandsshrub07.m2", }, { value = "wetlandsshurb08.m2", + text = "wetlandsshurb08.m2", fileId = "203498", text = "wetlandsshurb08.m2", }, { value = "wetlandsshurb09.m2", + text = "wetlandsshurb09.m2", fileId = "203499", text = "wetlandsshurb09.m2", }, @@ -55054,44 +65692,53 @@ WeakAuras.ModelPaths = { }, { value = "dragonbones", + text = "dragonbones", children = { { value = "dragonbonesbody.m2", + text = "dragonbonesbody.m2", fileId = "203501", text = "dragonbonesbody.m2", }, { value = "dragonbonesbody_nocollision.m2", + text = "dragonbonesbody_nocollision.m2", fileId = "203502", text = "dragonbonesbody_nocollision.m2", }, { value = "dragonbonesleftwing.m2", + text = "dragonbonesleftwing.m2", fileId = "203503", text = "dragonbonesleftwing.m2", }, { value = "dragonbonesleftwing_nocollision.m2", + text = "dragonbonesleftwing_nocollision.m2", fileId = "203504", text = "dragonbonesleftwing_nocollision.m2", }, { value = "dragonbonesrightwing.m2", + text = "dragonbonesrightwing.m2", fileId = "203505", text = "dragonbonesrightwing.m2", }, { value = "dragonbonesrightwing_nocollision.m2", + text = "dragonbonesrightwing_nocollision.m2", fileId = "203506", text = "dragonbonesrightwing_nocollision.m2", }, { value = "dragonbonesskull.m2", + text = "dragonbonesskull.m2", fileId = "203507", text = "dragonbonesskull.m2", }, { value = "dragonbonesskull_nocollision.m2", + text = "dragonbonesskull_nocollision.m2", fileId = "203508", text = "dragonbonesskull_nocollision.m2", }, @@ -55100,14 +65747,17 @@ WeakAuras.ModelPaths = { }, { value = "dragoneggs", + text = "dragoneggs", children = { { value = "dragonegg01.m2", + text = "dragonegg01.m2", fileId = "203510", text = "dragonegg01.m2", }, { value = "dragonegg02.m2", + text = "dragonegg02.m2", fileId = "203512", text = "dragonegg02.m2", }, @@ -55116,19 +65766,23 @@ WeakAuras.ModelPaths = { }, { value = "dragonmawgates", + text = "dragonmawgates", children = { { value = "dragonmawbanner.m2", + text = "dragonmawbanner.m2", fileId = "203513", text = "dragonmawbanner.m2", }, { value = "dragonmawgate.m2", + text = "dragonmawgate.m2", fileId = "203515", text = "dragonmawgate.m2", }, { value = "dragonmawwall.m2", + text = "dragonmawwall.m2", fileId = "203518", text = "dragonmawwall.m2", }, @@ -55137,14 +65791,17 @@ WeakAuras.ModelPaths = { }, { value = "dwarfbones", + text = "dwarfbones", children = { { value = "dwarvebone01.m2", + text = "dwarvebone01.m2", fileId = "203521", text = "dwarvebone01.m2", }, { value = "dwarvebone02.m2", + text = "dwarvebone02.m2", fileId = "203522", text = "dwarvebone02.m2", }, @@ -55153,9 +65810,11 @@ WeakAuras.ModelPaths = { }, { value = "raptorbones", + text = "raptorbones", children = { { value = "raptorbone01.m2", + text = "raptorbone01.m2", fileId = "203523", text = "raptorbone01.m2", }, @@ -55164,14 +65823,17 @@ WeakAuras.ModelPaths = { }, { value = "totem", + text = "totem", children = { { value = "dragontotem01.m2", + text = "dragontotem01.m2", fileId = "203524", text = "dragontotem01.m2", }, { value = "dragontotem02.m2", + text = "dragontotem02.m2", fileId = "203525", text = "dragontotem02.m2", }, @@ -55180,64 +65842,77 @@ WeakAuras.ModelPaths = { }, { value = "trees", + text = "trees", children = { { value = "wetlandsnest01.m2", + text = "wetlandsnest01.m2", fileId = "203531", text = "wetlandsnest01.m2", }, { value = "wetlandsnest02.m2", + text = "wetlandsnest02.m2", fileId = "203532", text = "wetlandsnest02.m2", }, { value = "wetlandstree04.m2", + text = "wetlandstree04.m2", fileId = "203533", text = "wetlandstree04.m2", }, { value = "wetlandstreestump01.m2", + text = "wetlandstreestump01.m2", fileId = "203539", text = "wetlandstreestump01.m2", }, { value = "wetlandstreestump02.m2", + text = "wetlandstreestump02.m2", fileId = "203540", text = "wetlandstreestump02.m2", }, { value = "wetlandstreestump03.m2", + text = "wetlandstreestump03.m2", fileId = "203541", text = "wetlandstreestump03.m2", }, { value = "wetlandtree01.m2", + text = "wetlandtree01.m2", fileId = "203543", text = "wetlandtree01.m2", }, { value = "wetlandtree02.m2", + text = "wetlandtree02.m2", fileId = "203544", text = "wetlandtree02.m2", }, { value = "wetlandtree03.m2", + text = "wetlandtree03.m2", fileId = "203545", text = "wetlandtree03.m2", }, { value = "wetlandtree04.m2", + text = "wetlandtree04.m2", fileId = "203546", text = "wetlandtree04.m2", }, { value = "wetlandtree05.m2", + text = "wetlandtree05.m2", fileId = "203547", text = "wetlandtree05.m2", }, { value = "wetlandtree06.m2", + text = "wetlandtree06.m2", fileId = "203548", text = "wetlandtree06.m2", }, @@ -55246,24 +65921,29 @@ WeakAuras.ModelPaths = { }, { value = "wetlandswagons", + text = "wetlandswagons", children = { { value = "wetlandswagon01.m2", + text = "wetlandswagon01.m2", fileId = "203553", text = "wetlandswagon01.m2", }, { value = "wetlandswagon02.m2", + text = "wetlandswagon02.m2", fileId = "203554", text = "wetlandswagon02.m2", }, { value = "wetlandswagon03.m2", + text = "wetlandswagon03.m2", fileId = "203555", text = "wetlandswagon03.m2", }, { value = "wetlandswagonnest.m2", + text = "wetlandswagonnest.m2", fileId = "203557", text = "wetlandswagonnest.m2", }, @@ -55281,33 +65961,41 @@ WeakAuras.ModelPaths = { }, { value = "lordaeron", + text = "lordaeron", children = { { value = "aeriepeaks", + text = "aeriepeaks", children = { { value = "passivedoodads", + text = "passivedoodads", children = { { value = "boulders", + text = "boulders", children = { { value = "aerieboulder01.m2", + text = "aerieboulder01.m2", fileId = "203558", text = "aerieboulder01.m2", }, { value = "aerieboulder02.m2", + text = "aerieboulder02.m2", fileId = "203559", text = "aerieboulder02.m2", }, { value = "aerieboulder03.m2", + text = "aerieboulder03.m2", fileId = "203560", text = "aerieboulder03.m2", }, { value = "aerieboulder04.m2", + text = "aerieboulder04.m2", fileId = "203561", text = "aerieboulder04.m2", }, @@ -55316,14 +66004,17 @@ WeakAuras.ModelPaths = { }, { value = "bushes", + text = "bushes", children = { { value = "aeriepeaksbush01.m2", + text = "aeriepeaksbush01.m2", fileId = "203565", text = "aeriepeaksbush01.m2", }, { value = "aeriepeaksbush02.m2", + text = "aeriepeaksbush02.m2", fileId = "203566", text = "aeriepeaksbush02.m2", }, @@ -55332,9 +66023,11 @@ WeakAuras.ModelPaths = { }, { value = "cliff", + text = "cliff", children = { { value = "aeriepeaksrockoutcrop01.m2", + text = "aeriepeaksrockoutcrop01.m2", fileId = "203569", text = "aeriepeaksrockoutcrop01.m2", }, @@ -55343,39 +66036,47 @@ WeakAuras.ModelPaths = { }, { value = "griffondoodads", + text = "griffondoodads", children = { { value = "griffonmemorialfetish01.m2", + text = "griffonmemorialfetish01.m2", fileId = "203573", text = "griffonmemorialfetish01.m2", }, { value = "griffonmemorialfetish02.m2", + text = "griffonmemorialfetish02.m2", fileId = "203574", text = "griffonmemorialfetish02.m2", }, { value = "griffonmemorialfetish03.m2", + text = "griffonmemorialfetish03.m2", fileId = "203575", text = "griffonmemorialfetish03.m2", }, { value = "griffonmemorialfetish04.m2", + text = "griffonmemorialfetish04.m2", fileId = "203576", text = "griffonmemorialfetish04.m2", }, { value = "griffonmemorialtree01.m2", + text = "griffonmemorialtree01.m2", fileId = "203577", text = "griffonmemorialtree01.m2", }, { value = "griffonmemorialtree02.m2", + text = "griffonmemorialtree02.m2", fileId = "203578", text = "griffonmemorialtree02.m2", }, { value = "griffonmemorialtree03.m2", + text = "griffonmemorialtree03.m2", fileId = "203579", text = "griffonmemorialtree03.m2", }, @@ -55384,44 +66085,53 @@ WeakAuras.ModelPaths = { }, { value = "trees", + text = "trees", children = { { value = "aeriepeaksfir01.m2", + text = "aeriepeaksfir01.m2", fileId = "203580", text = "aeriepeaksfir01.m2", }, { value = "aeriepeaksfir02.m2", + text = "aeriepeaksfir02.m2", fileId = "203583", text = "aeriepeaksfir02.m2", }, { value = "aeriepeaksstump01.m2", + text = "aeriepeaksstump01.m2", fileId = "203584", text = "aeriepeaksstump01.m2", }, { value = "aerietree01.m2", + text = "aerietree01.m2", fileId = "203587", text = "aerietree01.m2", }, { value = "aerietree02.m2", + text = "aerietree02.m2", fileId = "203588", text = "aerietree02.m2", }, { value = "aerietree03.m2", + text = "aerietree03.m2", fileId = "203589", text = "aerietree03.m2", }, { value = "aerietree04.m2", + text = "aerietree04.m2", fileId = "203590", text = "aerietree04.m2", }, { value = "aerietree05.m2", + text = "aerietree05.m2", fileId = "203591", text = "aerietree05.m2", }, @@ -55436,25 +66146,31 @@ WeakAuras.ModelPaths = { }, { value = "alteracmountains", + text = "alteracmountains", children = { { value = "passivedoodads", + text = "passivedoodads", children = { { value = "bushes", + text = "bushes", children = { { value = "alteracshrub01.m2", + text = "alteracshrub01.m2", fileId = "203595", text = "alteracshrub01.m2", }, { value = "alteracshrub02.m2", + text = "alteracshrub02.m2", fileId = "203596", text = "alteracshrub02.m2", }, { value = "alteracshrub03.m2", + text = "alteracshrub03.m2", fileId = "203597", text = "alteracshrub03.m2", }, @@ -55463,9 +66179,11 @@ WeakAuras.ModelPaths = { }, { value = "dalaran", + text = "dalaran", children = { { value = "dalarandome.m2", + text = "dalarandome.m2", fileId = "203598", text = "dalarandome.m2", }, @@ -55474,24 +66192,29 @@ WeakAuras.ModelPaths = { }, { value = "fruitbuckets", + text = "fruitbuckets", children = { { value = "alteracfruitbucket01.m2", + text = "alteracfruitbucket01.m2", fileId = "203602", text = "alteracfruitbucket01.m2", }, { value = "alteracfruitbucket02.m2", + text = "alteracfruitbucket02.m2", fileId = "203603", text = "alteracfruitbucket02.m2", }, { value = "alteracfruitbucket03.m2", + text = "alteracfruitbucket03.m2", fileId = "203604", text = "alteracfruitbucket03.m2", }, { value = "alteracfruitbucket04.m2", + text = "alteracfruitbucket04.m2", fileId = "203605", text = "alteracfruitbucket04.m2", }, @@ -55500,9 +66223,11 @@ WeakAuras.ModelPaths = { }, { value = "ladders", + text = "ladders", children = { { value = "alteracladder01.m2", + text = "alteracladder01.m2", fileId = "203607", text = "alteracladder01.m2", }, @@ -55511,9 +66236,11 @@ WeakAuras.ModelPaths = { }, { value = "opengraves", + text = "opengraves", children = { { value = "alteracopengrave01.m2", + text = "alteracopengrave01.m2", fileId = "203608", text = "alteracopengrave01.m2", }, @@ -55522,29 +66249,35 @@ WeakAuras.ModelPaths = { }, { value = "rocks", + text = "rocks", children = { { value = "alteracboulder01.m2", + text = "alteracboulder01.m2", fileId = "203611", text = "alteracboulder01.m2", }, { value = "alteracboulder02.m2", + text = "alteracboulder02.m2", fileId = "203612", text = "alteracboulder02.m2", }, { value = "alteracboulder03.m2", + text = "alteracboulder03.m2", fileId = "203613", text = "alteracboulder03.m2", }, { value = "alteracboulder04.m2", + text = "alteracboulder04.m2", fileId = "203614", text = "alteracboulder04.m2", }, { value = "alteracboulder05.m2", + text = "alteracboulder05.m2", fileId = "203615", text = "alteracboulder05.m2", }, @@ -55553,44 +66286,53 @@ WeakAuras.ModelPaths = { }, { value = "trees", + text = "trees", children = { { value = "alteractree01.m2", + text = "alteractree01.m2", fileId = "203617", text = "alteractree01.m2", }, { value = "alteractree02.m2", + text = "alteractree02.m2", fileId = "203618", text = "alteractree02.m2", }, { value = "alteractree03.m2", + text = "alteractree03.m2", fileId = "203619", text = "alteractree03.m2", }, { value = "alteractree04.m2", + text = "alteractree04.m2", fileId = "203620", text = "alteractree04.m2", }, { value = "alteractree06.m2", + text = "alteractree06.m2", fileId = "203621", text = "alteractree06.m2", }, { value = "alteractree07.m2", + text = "alteractree07.m2", fileId = "203622", text = "alteractree07.m2", }, { value = "alteractree08.m2", + text = "alteractree08.m2", fileId = "203623", text = "alteractree08.m2", }, { value = "alteractree09.m2", + text = "alteractree09.m2", fileId = "203624", text = "alteractree09.m2", }, @@ -55599,9 +66341,11 @@ WeakAuras.ModelPaths = { }, { value = "watertower", + text = "watertower", children = { { value = "alteracwatertower.m2", + text = "alteracwatertower.m2", fileId = "203634", text = "alteracwatertower.m2", }, @@ -55616,15 +66360,19 @@ WeakAuras.ModelPaths = { }, { value = "arathi", + text = "arathi", children = { { value = "activedoodads", + text = "activedoodads", children = { { value = "bramblestaff", + text = "bramblestaff", children = { { value = "bramblestaff.m2", + text = "bramblestaff.m2", fileId = "203636", text = "bramblestaff.m2", }, @@ -55636,27 +66384,33 @@ WeakAuras.ModelPaths = { }, { value = "passivedoodads", + text = "passivedoodads", children = { { value = "boardwalk", + text = "boardwalk", children = { { value = "arathiboardwalk01.m2", + text = "arathiboardwalk01.m2", fileId = "203639", text = "arathiboardwalk01.m2", }, { value = "arathiboardwalk02.m2", + text = "arathiboardwalk02.m2", fileId = "203640", text = "arathiboardwalk02.m2", }, { value = "arathiboardwalk03.m2", + text = "arathiboardwalk03.m2", fileId = "203641", text = "arathiboardwalk03.m2", }, { value = "arathiboardwalk04.m2", + text = "arathiboardwalk04.m2", fileId = "203642", text = "arathiboardwalk04.m2", }, @@ -55665,34 +66419,41 @@ WeakAuras.ModelPaths = { }, { value = "bushes", + text = "bushes", children = { { value = "arathiplant01.m2", + text = "arathiplant01.m2", fileId = "203643", text = "arathiplant01.m2", }, { value = "arathiplant02.m2", + text = "arathiplant02.m2", fileId = "203645", text = "arathiplant02.m2", }, { value = "arathiplant03.m2", + text = "arathiplant03.m2", fileId = "203646", text = "arathiplant03.m2", }, { value = "arathiplant04.m2", + text = "arathiplant04.m2", fileId = "203647", text = "arathiplant04.m2", }, { value = "arathiplant05.m2", + text = "arathiplant05.m2", fileId = "203650", text = "arathiplant05.m2", }, { value = "arathiplant06.m2", + text = "arathiplant06.m2", fileId = "203652", text = "arathiplant06.m2", }, @@ -55701,14 +66462,17 @@ WeakAuras.ModelPaths = { }, { value = "farmhouses", + text = "farmhouses", children = { { value = "arathifarmhouse01.m2", + text = "arathifarmhouse01.m2", fileId = "203656", text = "arathifarmhouse01.m2", }, { value = "arathifarmhouse02.m2", + text = "arathifarmhouse02.m2", fileId = "203657", text = "arathifarmhouse02.m2", }, @@ -55717,14 +66481,17 @@ WeakAuras.ModelPaths = { }, { value = "impalingstonecorpses", + text = "impalingstonecorpses", children = { { value = "impalingstone_corpse_01.m2", + text = "impalingstone_corpse_01.m2", fileId = "203660", text = "impalingstone_corpse_01.m2", }, { value = "impalingstone_corpse_02.m2", + text = "impalingstone_corpse_02.m2", fileId = "203661", text = "impalingstone_corpse_02.m2", }, @@ -55733,9 +66500,11 @@ WeakAuras.ModelPaths = { }, { value = "impalingstones", + text = "impalingstones", children = { { value = "impalingstone02.m2", + text = "impalingstone02.m2", fileId = "203663", text = "impalingstone02.m2", }, @@ -55744,79 +66513,95 @@ WeakAuras.ModelPaths = { }, { value = "rocks", + text = "rocks", children = { { value = "arathiflatrock01.m2", + text = "arathiflatrock01.m2", fileId = "203666", text = "arathiflatrock01.m2", }, { value = "arathirock01.m2", + text = "arathirock01.m2", fileId = "203668", text = "arathirock01.m2", }, { value = "arathirock02.m2", + text = "arathirock02.m2", fileId = "203669", text = "arathirock02.m2", }, { value = "arathirock03.m2", + text = "arathirock03.m2", fileId = "203671", text = "arathirock03.m2", }, { value = "arathirock04.m2", + text = "arathirock04.m2", fileId = "203672", text = "arathirock04.m2", }, { value = "arathirock05.m2", + text = "arathirock05.m2", fileId = "203673", text = "arathirock05.m2", }, { value = "arathirock06.m2", + text = "arathirock06.m2", fileId = "203674", text = "arathirock06.m2", }, { value = "arathirock07.m2", + text = "arathirock07.m2", fileId = "203675", text = "arathirock07.m2", }, { value = "arathirock08.m2", + text = "arathirock08.m2", fileId = "203676", text = "arathirock08.m2", }, { value = "arathirock09.m2", + text = "arathirock09.m2", fileId = "203677", text = "arathirock09.m2", }, { value = "arathirock10.m2", + text = "arathirock10.m2", fileId = "203678", text = "arathirock10.m2", }, { value = "arathirock11.m2", + text = "arathirock11.m2", fileId = "203679", text = "arathirock11.m2", }, { value = "arathirock12.m2", + text = "arathirock12.m2", fileId = "203680", text = "arathirock12.m2", }, { value = "arathirock13.m2", + text = "arathirock13.m2", fileId = "203681", text = "arathirock13.m2", }, { value = "arathirock14.m2", + text = "arathirock14.m2", fileId = "203682", text = "arathirock14.m2", }, @@ -55825,64 +66610,77 @@ WeakAuras.ModelPaths = { }, { value = "trees", + text = "trees", children = { { value = "arathistump01.m2", + text = "arathistump01.m2", fileId = "203684", text = "arathistump01.m2", }, { value = "arathistump02.m2", + text = "arathistump02.m2", fileId = "203686", text = "arathistump02.m2", }, { value = "arathistump03.m2", + text = "arathistump03.m2", fileId = "203687", text = "arathistump03.m2", }, { value = "arathitree01.m2", + text = "arathitree01.m2", fileId = "203688", text = "arathitree01.m2", }, { value = "arathitree02.m2", + text = "arathitree02.m2", fileId = "203689", text = "arathitree02.m2", }, { value = "arathitree03.m2", + text = "arathitree03.m2", fileId = "203690", text = "arathitree03.m2", }, { value = "arathitree04.m2", + text = "arathitree04.m2", fileId = "203691", text = "arathitree04.m2", }, { value = "arathitree05.m2", + text = "arathitree05.m2", fileId = "203692", text = "arathitree05.m2", }, { value = "arathitree_dead_001.m2", + text = "arathitree_dead_001.m2", fileId = "203693", text = "arathitree_dead_001.m2", }, { value = "arathitree_dead_002.m2", + text = "arathitree_dead_002.m2", fileId = "203694", text = "arathitree_dead_002.m2", }, { value = "arathitree_dead_003.m2", + text = "arathitree_dead_003.m2", fileId = "203695", text = "arathitree_dead_003.m2", }, { value = "arathitree_dead_004.m2", + text = "arathitree_dead_004.m2", fileId = "203696", text = "arathitree_dead_004.m2", }, @@ -55897,30 +66695,37 @@ WeakAuras.ModelPaths = { }, { value = "plagueland", + text = "plagueland", children = { { value = "activedoodads", + text = "activedoodads", children = { { value = "dolly", + text = "dolly", children = { { value = "infesteddollyhead.m2", + text = "infesteddollyhead.m2", fileId = "203711", text = "infesteddollyhead.m2", }, { value = "infesteddollyleftside.m2", + text = "infesteddollyleftside.m2", fileId = "203712", text = "infesteddollyleftside.m2", }, { value = "infesteddollyrightside.m2", + text = "infesteddollyrightside.m2", fileId = "203713", text = "infesteddollyrightside.m2", }, { value = "infesteddollywhole.m2", + text = "infesteddollywhole.m2", fileId = "203714", text = "infesteddollywhole.m2", }, @@ -55929,9 +66734,11 @@ WeakAuras.ModelPaths = { }, { value = "outhouse", + text = "outhouse", children = { { value = "outhousetrapped.m2", + text = "outhousetrapped.m2", fileId = "203715", text = "outhousetrapped.m2", }, @@ -55943,12 +66750,15 @@ WeakAuras.ModelPaths = { }, { value = "passivedoodads", + text = "passivedoodads", children = { { value = "arcoftriumph", + text = "arcoftriumph", children = { { value = "arcoftriumphplagued01.m2", + text = "arcoftriumphplagued01.m2", fileId = "203718", text = "arcoftriumphplagued01.m2", }, @@ -55957,9 +66767,11 @@ WeakAuras.ModelPaths = { }, { value = "banners", + text = "banners", children = { { value = "plaugelandsbanner01.m2", + text = "plaugelandsbanner01.m2", fileId = "203720", text = "plaugelandsbanner01.m2", }, @@ -55968,9 +66780,11 @@ WeakAuras.ModelPaths = { }, { value = "bloodofheroes", + text = "bloodofheroes", children = { { value = "bloodofheroes.m2", + text = "bloodofheroes.m2", fileId = "203722", text = "bloodofheroes.m2", }, @@ -55979,19 +66793,23 @@ WeakAuras.ModelPaths = { }, { value = "bonespikes", + text = "bonespikes", children = { { value = "bonespike_01.m2", + text = "bonespike_01.m2", fileId = "203723", text = "bonespike_01.m2", }, { value = "bonespike_02.m2", + text = "bonespike_02.m2", fileId = "203724", text = "bonespike_02.m2", }, { value = "bonespike_03.m2", + text = "bonespike_03.m2", fileId = "203725", text = "bonespike_03.m2", }, @@ -56000,9 +66818,11 @@ WeakAuras.ModelPaths = { }, { value = "bonewalls", + text = "bonewalls", children = { { value = "bonewall_01.m2", + text = "bonewall_01.m2", fileId = "203726", text = "bonewall_01.m2", }, @@ -56011,24 +66831,29 @@ WeakAuras.ModelPaths = { }, { value = "bushes", + text = "bushes", children = { { value = "plaguelandwesternbush01.m2", + text = "plaguelandwesternbush01.m2", fileId = "203731", text = "plaguelandwesternbush01.m2", }, { value = "plaguelandwesternbush02.m2", + text = "plaguelandwesternbush02.m2", fileId = "203732", text = "plaguelandwesternbush02.m2", }, { value = "plaguelandwesternbush03.m2", + text = "plaguelandwesternbush03.m2", fileId = "203733", text = "plaguelandwesternbush03.m2", }, { value = "plaguelandwesternbush04.m2", + text = "plaguelandwesternbush04.m2", fileId = "203734", text = "plaguelandwesternbush04.m2", }, @@ -56037,9 +66862,11 @@ WeakAuras.ModelPaths = { }, { value = "cages", + text = "cages", children = { { value = "plaugelandscage01.m2", + text = "plaugelandscage01.m2", fileId = "203737", text = "plaugelandscage01.m2", }, @@ -56048,9 +66875,11 @@ WeakAuras.ModelPaths = { }, { value = "forsakenbanner", + text = "forsakenbanner", children = { { value = "forsakenbanner01.m2", + text = "forsakenbanner01.m2", fileId = "203742", text = "forsakenbanner01.m2", }, @@ -56059,14 +66888,17 @@ WeakAuras.ModelPaths = { }, { value = "hangingscourge", + text = "hangingscourge", children = { { value = "scourgebodyhangingfemale01.m2", + text = "scourgebodyhangingfemale01.m2", fileId = "203745", text = "scourgebodyhangingfemale01.m2", }, { value = "scourgebodyhangingfemale02.m2", + text = "scourgebodyhangingfemale02.m2", fileId = "203746", text = "scourgebodyhangingfemale02.m2", }, @@ -56075,9 +66907,11 @@ WeakAuras.ModelPaths = { }, { value = "haystacks", + text = "haystacks", children = { { value = "plaguelandhaystack.m2", + text = "plaguelandhaystack.m2", fileId = "203748", text = "plaguelandhaystack.m2", }, @@ -56086,9 +66920,11 @@ WeakAuras.ModelPaths = { }, { value = "plaguecauldron", + text = "plaguecauldron", children = { { value = "plaguecauldron.m2", + text = "plaguecauldron.m2", fileId = "203749", text = "plaguecauldron.m2", }, @@ -56097,9 +66933,11 @@ WeakAuras.ModelPaths = { }, { value = "plaguedchariot", + text = "plaguedchariot", children = { { value = "plaguechariot.m2", + text = "plaguechariot.m2", fileId = "203752", text = "plaguechariot.m2", }, @@ -56108,14 +66946,17 @@ WeakAuras.ModelPaths = { }, { value = "plaguedwagons", + text = "plaguedwagons", children = { { value = "plaguewagon.m2", + text = "plaguewagon.m2", fileId = "203754", text = "plaguewagon.m2", }, { value = "plaguewagon02.m2", + text = "plaguewagon02.m2", fileId = "203755", text = "plaguewagon02.m2", }, @@ -56124,44 +66965,53 @@ WeakAuras.ModelPaths = { }, { value = "plants", + text = "plants", children = { { value = "plaguelandfern01.m2", + text = "plaguelandfern01.m2", fileId = "203759", text = "plaguelandfern01.m2", }, { value = "plaguelandfern02.m2", + text = "plaguelandfern02.m2", fileId = "203760", text = "plaguelandfern02.m2", }, { value = "plaguelandfern03.m2", + text = "plaguelandfern03.m2", fileId = "203761", text = "plaguelandfern03.m2", }, { value = "plaguelandfern04.m2", + text = "plaguelandfern04.m2", fileId = "203762", text = "plaguelandfern04.m2", }, { value = "plaguelandpuffs01.m2", + text = "plaguelandpuffs01.m2", fileId = "203765", text = "plaguelandpuffs01.m2", }, { value = "plaguelandpuffs02.m2", + text = "plaguelandpuffs02.m2", fileId = "203766", text = "plaguelandpuffs02.m2", }, { value = "plaguelandpuffs03.m2", + text = "plaguelandpuffs03.m2", fileId = "203767", text = "plaguelandpuffs03.m2", }, { value = "plaguelandpuffs04.m2", + text = "plaguelandpuffs04.m2", fileId = "203768", text = "plaguelandpuffs04.m2", }, @@ -56170,44 +67020,53 @@ WeakAuras.ModelPaths = { }, { value = "rocks", + text = "rocks", children = { { value = "plaguelandrock01.m2", + text = "plaguelandrock01.m2", fileId = "203773", text = "plaguelandrock01.m2", }, { value = "plaguelandrock02.m2", + text = "plaguelandrock02.m2", fileId = "203774", text = "plaguelandrock02.m2", }, { value = "plaguelandrock03.m2", + text = "plaguelandrock03.m2", fileId = "203775", text = "plaguelandrock03.m2", }, { value = "plaguelandrock04.m2", + text = "plaguelandrock04.m2", fileId = "203776", text = "plaguelandrock04.m2", }, { value = "plaguelandrock05.m2", + text = "plaguelandrock05.m2", fileId = "203777", text = "plaguelandrock05.m2", }, { value = "plaguelandrock06.m2", + text = "plaguelandrock06.m2", fileId = "203778", text = "plaguelandrock06.m2", }, { value = "plaguelandrock07.m2", + text = "plaguelandrock07.m2", fileId = "203779", text = "plaguelandrock07.m2", }, { value = "plaguelandrock08.m2", + text = "plaguelandrock08.m2", fileId = "203780", text = "plaguelandrock08.m2", }, @@ -56216,9 +67075,11 @@ WeakAuras.ModelPaths = { }, { value = "treebarrier", + text = "treebarrier", children = { { value = "treebarrier01.m2", + text = "treebarrier01.m2", fileId = "203781", text = "treebarrier01.m2", }, @@ -56227,114 +67088,137 @@ WeakAuras.ModelPaths = { }, { value = "trees", + text = "trees", children = { { value = "plaguedfallentree01.m2", + text = "plaguedfallentree01.m2", fileId = "203783", text = "plaguedfallentree01.m2", }, { value = "plaguelandmushroom01.m2", + text = "plaguelandmushroom01.m2", fileId = "203788", text = "plaguelandmushroom01.m2", }, { value = "plaguelandmushroom02.m2", + text = "plaguelandmushroom02.m2", fileId = "203789", text = "plaguelandmushroom02.m2", }, { value = "plaguelandmushroom03.m2", + text = "plaguelandmushroom03.m2", fileId = "203790", text = "plaguelandmushroom03.m2", }, { value = "plaguelandmushroom04.m2", + text = "plaguelandmushroom04.m2", fileId = "203791", text = "plaguelandmushroom04.m2", }, { value = "plaguelandstump01.m2", + text = "plaguelandstump01.m2", fileId = "203793", text = "plaguelandstump01.m2", }, { value = "plaguelandstump02.m2", + text = "plaguelandstump02.m2", fileId = "203795", text = "plaguelandstump02.m2", }, { value = "plaguelandstump03.m2", + text = "plaguelandstump03.m2", fileId = "203796", text = "plaguelandstump03.m2", }, { value = "plaguelandstump04.m2", + text = "plaguelandstump04.m2", fileId = "203797", text = "plaguelandstump04.m2", }, { value = "plaguelandtree01.m2", + text = "plaguelandtree01.m2", fileId = "203798", text = "plaguelandtree01.m2", }, { value = "plaguelandtree02.m2", + text = "plaguelandtree02.m2", fileId = "203799", text = "plaguelandtree02.m2", }, { value = "plaguelandtree03.m2", + text = "plaguelandtree03.m2", fileId = "203800", text = "plaguelandtree03.m2", }, { value = "plaguelandtree04.m2", + text = "plaguelandtree04.m2", fileId = "203801", text = "plaguelandtree04.m2", }, { value = "plaguelandtree05.m2", + text = "plaguelandtree05.m2", fileId = "203802", text = "plaguelandtree05.m2", }, { value = "plaguelandtree06.m2", + text = "plaguelandtree06.m2", fileId = "203803", text = "plaguelandtree06.m2", }, { value = "plaguelandtree07.m2", + text = "plaguelandtree07.m2", fileId = "203804", text = "plaguelandtree07.m2", }, { value = "plaguelandtree08.m2", + text = "plaguelandtree08.m2", fileId = "203805", text = "plaguelandtree08.m2", }, { value = "plaguelandtree09.m2", + text = "plaguelandtree09.m2", fileId = "203806", text = "plaguelandtree09.m2", }, { value = "plaguelandtree10.m2", + text = "plaguelandtree10.m2", fileId = "203807", text = "plaguelandtree10.m2", }, { value = "plaguelandtree11.m2", + text = "plaguelandtree11.m2", fileId = "203808", text = "plaguelandtree11.m2", }, { value = "plaguelandtree12.m2", + text = "plaguelandtree12.m2", fileId = "203809", text = "plaguelandtree12.m2", }, { value = "plaguelandtree13.m2", + text = "plaguelandtree13.m2", fileId = "203810", text = "plaguelandtree13.m2", }, @@ -56343,9 +67227,11 @@ WeakAuras.ModelPaths = { }, { value = "walls", + text = "walls", children = { { value = "undeadwall_01.m2", + text = "undeadwall_01.m2", fileId = "203831", text = "undeadwall_01.m2", }, @@ -56360,25 +67246,31 @@ WeakAuras.ModelPaths = { }, { value = "scholomance", + text = "scholomance", children = { { value = "passivedoodads", + text = "passivedoodads", children = { { value = "bookshelves", + text = "bookshelves", children = { { value = "scholme_bookshelf.m2", + text = "scholme_bookshelf.m2", fileId = "203836", text = "scholme_bookshelf.m2", }, { value = "scholme_bookshelflarge.m2", + text = "scholme_bookshelflarge.m2", fileId = "203837", text = "scholme_bookshelflarge.m2", }, { value = "scholme_bookshelfsmall.m2", + text = "scholme_bookshelfsmall.m2", fileId = "203838", text = "scholme_bookshelfsmall.m2", }, @@ -56387,19 +67279,23 @@ WeakAuras.ModelPaths = { }, { value = "brazier", + text = "brazier", children = { { value = "scholomancebrazier01green.m2", + text = "scholomancebrazier01green.m2", fileId = "203841", text = "scholomancebrazier01green.m2", }, { value = "scholomancebrazier01orange.m2", + text = "scholomancebrazier01orange.m2", fileId = "203843", text = "scholomancebrazier01orange.m2", }, { value = "scholomancebrazier01purple.m2", + text = "scholomancebrazier01purple.m2", fileId = "203845", text = "scholomancebrazier01purple.m2", }, @@ -56408,104 +67304,125 @@ WeakAuras.ModelPaths = { }, { value = "candles", + text = "candles", children = { { value = "floorcandlescorner01.m2", + text = "floorcandlescorner01.m2", fileId = "203847", text = "floorcandlescorner01.m2", }, { value = "floorcandlescorner01green.m2", + text = "floorcandlescorner01green.m2", fileId = "203848", text = "floorcandlescorner01green.m2", }, { value = "floorcandlescorner01red.m2", + text = "floorcandlescorner01red.m2", fileId = "203849", text = "floorcandlescorner01red.m2", }, { value = "floorcandlesstraight02.m2", + text = "floorcandlesstraight02.m2", fileId = "203850", text = "floorcandlesstraight02.m2", }, { value = "floorcandlesstraight02green.m2", + text = "floorcandlesstraight02green.m2", fileId = "203851", text = "floorcandlesstraight02green.m2", }, { value = "floorcandlesstraight02red.m2", + text = "floorcandlesstraight02red.m2", fileId = "203852", text = "floorcandlesstraight02red.m2", }, { value = "floorcandlesstraight04.m2", + text = "floorcandlesstraight04.m2", fileId = "203853", text = "floorcandlesstraight04.m2", }, { value = "floorcandlesstraight04green.m2", + text = "floorcandlesstraight04green.m2", fileId = "203854", text = "floorcandlesstraight04green.m2", }, { value = "floorcandlesstraight04red.m2", + text = "floorcandlesstraight04red.m2", fileId = "203855", text = "floorcandlesstraight04red.m2", }, { value = "scholme_candelabra.m2", + text = "scholme_candelabra.m2", fileId = "203861", text = "scholme_candelabra.m2", }, { value = "scholme_candelabra02.m2", + text = "scholme_candelabra02.m2", fileId = "203862", text = "scholme_candelabra02.m2", }, { value = "scholme_candelabra03.m2", + text = "scholme_candelabra03.m2", fileId = "203863", text = "scholme_candelabra03.m2", }, { value = "scholme_greencandelabra.m2", + text = "scholme_greencandelabra.m2", fileId = "203864", text = "scholme_greencandelabra.m2", }, { value = "scholme_greencandelabra02.m2", + text = "scholme_greencandelabra02.m2", fileId = "203865", text = "scholme_greencandelabra02.m2", }, { value = "scholme_greencandelabra03.m2", + text = "scholme_greencandelabra03.m2", fileId = "203866", text = "scholme_greencandelabra03.m2", }, { value = "scholme_greenrug.m2", + text = "scholme_greenrug.m2", fileId = "203867", text = "scholme_greenrug.m2", }, { value = "scholme_purplerug.m2", + text = "scholme_purplerug.m2", fileId = "203868", text = "scholme_purplerug.m2", }, { value = "scholme_redcandelabra.m2", + text = "scholme_redcandelabra.m2", fileId = "203869", text = "scholme_redcandelabra.m2", }, { value = "scholme_redcandelabra02.m2", + text = "scholme_redcandelabra02.m2", fileId = "203870", text = "scholme_redcandelabra02.m2", }, { value = "scholme_redcandelabra03.m2", + text = "scholme_redcandelabra03.m2", fileId = "203871", text = "scholme_redcandelabra03.m2", }, @@ -56514,19 +67431,23 @@ WeakAuras.ModelPaths = { }, { value = "cauldrons", + text = "cauldrons", children = { { value = "greenbubblingcauldron.m2", + text = "greenbubblingcauldron.m2", fileId = "203881", text = "greenbubblingcauldron.m2", }, { value = "redbubblingcauldron.m2", + text = "redbubblingcauldron.m2", fileId = "203883", text = "redbubblingcauldron.m2", }, { value = "yellowbubblingcauldron.m2", + text = "yellowbubblingcauldron.m2", fileId = "203886", text = "yellowbubblingcauldron.m2", }, @@ -56535,9 +67456,11 @@ WeakAuras.ModelPaths = { }, { value = "chandelier", + text = "chandelier", children = { { value = "scholme_chandelier.m2", + text = "scholme_chandelier.m2", fileId = "203889", text = "scholme_chandelier.m2", }, @@ -56546,9 +67469,11 @@ WeakAuras.ModelPaths = { }, { value = "crystalball", + text = "crystalball", children = { { value = "scholomancecrystalball01.m2", + text = "scholomancecrystalball01.m2", fileId = "203892", text = "scholomancecrystalball01.m2", }, @@ -56557,9 +67482,11 @@ WeakAuras.ModelPaths = { }, { value = "diseasedpumpkin", + text = "diseasedpumpkin", children = { { value = "diseasedpumpkin.m2", + text = "diseasedpumpkin.m2", fileId = "203894", text = "diseasedpumpkin.m2", }, @@ -56568,9 +67495,11 @@ WeakAuras.ModelPaths = { }, { value = "operationtables", + text = "operationtables", children = { { value = "creepyoperationtable01.m2", + text = "creepyoperationtable01.m2", fileId = "203895", text = "creepyoperationtable01.m2", }, @@ -56579,9 +67508,11 @@ WeakAuras.ModelPaths = { }, { value = "rugs", + text = "rugs", children = { { value = "scholme_logorug.m2", + text = "scholme_logorug.m2", fileId = "203898", text = "scholme_logorug.m2", }, @@ -56590,9 +67521,11 @@ WeakAuras.ModelPaths = { }, { value = "smoke", + text = "smoke", children = { { value = "scholomancesmoke01.m2", + text = "scholomancesmoke01.m2", fileId = "203899", text = "scholomancesmoke01.m2", }, @@ -56601,9 +67534,11 @@ WeakAuras.ModelPaths = { }, { value = "stonelogo", + text = "stonelogo", children = { { value = "scholme_stonelogo.m2", + text = "scholme_stonelogo.m2", fileId = "203901", text = "scholme_stonelogo.m2", }, @@ -56612,29 +67547,35 @@ WeakAuras.ModelPaths = { }, { value = "tapestries", + text = "tapestries", children = { { value = "scholme_logo.m2", + text = "scholme_logo.m2", fileId = "203906", text = "scholme_logo.m2", }, { value = "scholme_tapestryanim.m2", + text = "scholme_tapestryanim.m2", fileId = "203907", text = "scholme_tapestryanim.m2", }, { value = "scholme_tapestryrune.m2", + text = "scholme_tapestryrune.m2", fileId = "203908", text = "scholme_tapestryrune.m2", }, { value = "scholme_tapestryskull.m2", + text = "scholme_tapestryskull.m2", fileId = "203909", text = "scholme_tapestryskull.m2", }, { value = "scholme_tapestryweb.m2", + text = "scholme_tapestryweb.m2", fileId = "203910", text = "scholme_tapestryweb.m2", }, @@ -56643,19 +67584,23 @@ WeakAuras.ModelPaths = { }, { value = "testingtubes", + text = "testingtubes", children = { { value = "empty_testing_jar.m2", + text = "empty_testing_jar.m2", fileId = "203911", text = "empty_testing_jar.m2", }, { value = "ghoul_in_a_jar.m2", + text = "ghoul_in_a_jar.m2", fileId = "203912", text = "ghoul_in_a_jar.m2", }, { value = "skeleton_in_a_jar.m2", + text = "skeleton_in_a_jar.m2", fileId = "203913", text = "skeleton_in_a_jar.m2", }, @@ -56670,15 +67615,19 @@ WeakAuras.ModelPaths = { }, { value = "silverpine", + text = "silverpine", children = { { value = "passivedoodads", + text = "passivedoodads", children = { { value = "boardwalks", + text = "boardwalks", children = { { value = "silverpineboardwalk01.m2", + text = "silverpineboardwalk01.m2", fileId = "203965", text = "silverpineboardwalk01.m2", }, @@ -56687,19 +67636,23 @@ WeakAuras.ModelPaths = { }, { value = "bushes", + text = "bushes", children = { { value = "silverpinebush01.m2", + text = "silverpinebush01.m2", fileId = "203967", text = "silverpinebush01.m2", }, { value = "silverpinebush02.m2", + text = "silverpinebush02.m2", fileId = "203969", text = "silverpinebush02.m2", }, { value = "silverpinebush03.m2", + text = "silverpinebush03.m2", fileId = "203971", text = "silverpinebush03.m2", }, @@ -56708,14 +67661,17 @@ WeakAuras.ModelPaths = { }, { value = "docks", + text = "docks", children = { { value = "silverpinedocks01.m2", + text = "silverpinedocks01.m2", fileId = "203973", text = "silverpinedocks01.m2", }, { value = "silverpinedocks02.m2", + text = "silverpinedocks02.m2", fileId = "203974", text = "silverpinedocks02.m2", }, @@ -56724,14 +67680,17 @@ WeakAuras.ModelPaths = { }, { value = "shadowfanggates", + text = "shadowfanggates", children = { { value = "shadowfanggate01.m2", + text = "shadowfanggate01.m2", fileId = "203975", text = "shadowfanggate01.m2", }, { value = "shadowfanggate02.m2", + text = "shadowfanggate02.m2", fileId = "203976", text = "shadowfanggate02.m2", }, @@ -56740,34 +67699,41 @@ WeakAuras.ModelPaths = { }, { value = "trees", + text = "trees", children = { { value = "silverpinetree01.m2", + text = "silverpinetree01.m2", fileId = "203977", text = "silverpinetree01.m2", }, { value = "silverpinetree01fallen.m2", + text = "silverpinetree01fallen.m2", fileId = "203978", text = "silverpinetree01fallen.m2", }, { value = "silverpinetree02.m2", + text = "silverpinetree02.m2", fileId = "203979", text = "silverpinetree02.m2", }, { value = "silverpinetree02fallen.m2", + text = "silverpinetree02fallen.m2", fileId = "203981", text = "silverpinetree02fallen.m2", }, { value = "silverpinetree03.m2", + text = "silverpinetree03.m2", fileId = "203982", text = "silverpinetree03.m2", }, { value = "silverpinetree04.m2", + text = "silverpinetree04.m2", fileId = "203983", text = "silverpinetree04.m2", }, @@ -56776,14 +67742,17 @@ WeakAuras.ModelPaths = { }, { value = "treestumps", + text = "treestumps", children = { { value = "silverpinetreestump01.m2", + text = "silverpinetreestump01.m2", fileId = "203985", text = "silverpinetreestump01.m2", }, { value = "silverpinetreestump02.m2", + text = "silverpinetreestump02.m2", fileId = "203986", text = "silverpinetreestump02.m2", }, @@ -56798,75 +67767,91 @@ WeakAuras.ModelPaths = { }, { value = "stratholme", + text = "stratholme", children = { { value = "activedoodads", + text = "activedoodads", children = { { value = "doors", + text = "doors", children = { { value = "frostwyrm_waterfall.m2", + text = "frostwyrm_waterfall.m2", fileId = "203987", text = "frostwyrm_waterfall.m2", }, { value = "largeportcullis.m2", + text = "largeportcullis.m2", fileId = "203989", text = "largeportcullis.m2", }, { value = "nox_door_abom.m2", + text = "nox_door_abom.m2", fileId = "203990", text = "nox_door_abom.m2", }, { value = "nox_door_abom_mini.m2", + text = "nox_door_abom_mini.m2", fileId = "203991", text = "nox_door_abom_mini.m2", }, { value = "nox_door_deathknight.m2", + text = "nox_door_deathknight.m2", fileId = "203992", text = "nox_door_deathknight.m2", }, { value = "nox_door_plague.m2", + text = "nox_door_plague.m2", fileId = "203993", text = "nox_door_plague.m2", }, { value = "nox_door_portcullis.m2", + text = "nox_door_portcullis.m2", fileId = "203994", text = "nox_door_portcullis.m2", }, { value = "nox_door_slime.m2", + text = "nox_door_slime.m2", fileId = "203995", text = "nox_door_slime.m2", }, { value = "nox_door_spider.m2", + text = "nox_door_spider.m2", fileId = "203996", text = "nox_door_spider.m2", }, { value = "nox_door_web_boss.m2", + text = "nox_door_web_boss.m2", fileId = "203997", text = "nox_door_web_boss.m2", }, { value = "nox_door_web_large.m2", + text = "nox_door_web_large.m2", fileId = "203998", text = "nox_door_web_large.m2", }, { value = "smallportcullis.m2", + text = "smallportcullis.m2", fileId = "204004", text = "smallportcullis.m2", }, { value = "zigguratdoor.m2", + text = "zigguratdoor.m2", fileId = "204005", text = "zigguratdoor.m2", }, @@ -56875,9 +67860,11 @@ WeakAuras.ModelPaths = { }, { value = "furnace", + text = "furnace", children = { { value = "furnace_skull01.m2", + text = "furnace_skull01.m2", fileId = "204006", text = "furnace_skull01.m2", }, @@ -56886,9 +67873,11 @@ WeakAuras.ModelPaths = { }, { value = "gates", + text = "gates", children = { { value = "deathknight_gate01.m2", + text = "deathknight_gate01.m2", fileId = "204007", text = "deathknight_gate01.m2", }, @@ -56897,9 +67886,11 @@ WeakAuras.ModelPaths = { }, { value = "postboxdestroyed", + text = "postboxdestroyed", children = { { value = "stratholmepostboxruined.m2", + text = "stratholmepostboxruined.m2", fileId = "204011", text = "stratholmepostboxruined.m2", }, @@ -56908,9 +67899,11 @@ WeakAuras.ModelPaths = { }, { value = "sporetrap", + text = "sporetrap", children = { { value = "plaguewingsporetrap.m2", + text = "plaguewingsporetrap.m2", fileId = "204013", text = "plaguewingsporetrap.m2", }, @@ -56919,9 +67912,11 @@ WeakAuras.ModelPaths = { }, { value = "tesla", + text = "tesla", children = { { value = "nox_tesla.m2", + text = "nox_tesla.m2", fileId = "204019", text = "nox_tesla.m2", }, @@ -56933,12 +67928,15 @@ WeakAuras.ModelPaths = { }, { value = "passivedoodads", + text = "passivedoodads", children = { { value = "anvil", + text = "anvil", children = { { value = "nox_anvil.m2", + text = "nox_anvil.m2", fileId = "204024", text = "nox_anvil.m2", }, @@ -56947,109 +67945,131 @@ WeakAuras.ModelPaths = { }, { value = "fx", + text = "fx", children = { { value = "blackcitadel_exteriorslimefalls.m2", + text = "blackcitadel_exteriorslimefalls.m2", fileId = "204026", text = "blackcitadel_exteriorslimefalls.m2", }, { value = "kelthuzad_window_portal.m2", + text = "kelthuzad_window_portal.m2", fileId = "204031", text = "kelthuzad_window_portal.m2", }, { value = "naxxramas_frostwyrm_birth.m2", + text = "naxxramas_frostwyrm_birth.m2", fileId = "204038", text = "naxxramas_frostwyrm_birth.m2", }, { value = "nox_portal_bottom.m2", + text = "nox_portal_bottom.m2", fileId = "204040", text = "nox_portal_bottom.m2", }, { value = "nox_portal_orange.m2", + text = "nox_portal_orange.m2", fileId = "204041", text = "nox_portal_orange.m2", }, { value = "nox_portal_orange_bossroom.m2", + text = "nox_portal_orange_bossroom.m2", fileId = "204042", text = "nox_portal_orange_bossroom.m2", }, { value = "nox_portal_orange_bossroom_eye.m2", + text = "nox_portal_orange_bossroom_eye.m2", fileId = "204043", text = "nox_portal_orange_bossroom_eye.m2", }, { value = "nox_portal_purple.m2", + text = "nox_portal_purple.m2", fileId = "204044", text = "nox_portal_purple.m2", }, { value = "nox_portal_purple_bossroom.m2", + text = "nox_portal_purple_bossroom.m2", fileId = "204045", text = "nox_portal_purple_bossroom.m2", }, { value = "nox_portal_purple_bossroom_eye.m2", + text = "nox_portal_purple_bossroom_eye.m2", fileId = "204046", text = "nox_portal_purple_bossroom_eye.m2", }, { value = "nox_portal_red.m2", + text = "nox_portal_red.m2", fileId = "204047", text = "nox_portal_red.m2", }, { value = "nox_portal_red_bossroom.m2", + text = "nox_portal_red_bossroom.m2", fileId = "204048", text = "nox_portal_red_bossroom.m2", }, { value = "nox_portal_red_bossroom_eye.m2", + text = "nox_portal_red_bossroom_eye.m2", fileId = "204049", text = "nox_portal_red_bossroom_eye.m2", }, { value = "nox_portal_top.m2", + text = "nox_portal_top.m2", fileId = "204050", text = "nox_portal_top.m2", }, { value = "nox_portal_yellow.m2", + text = "nox_portal_yellow.m2", fileId = "204051", text = "nox_portal_yellow.m2", }, { value = "nox_portal_yellow_bossroom.m2", + text = "nox_portal_yellow_bossroom.m2", fileId = "204052", text = "nox_portal_yellow_bossroom.m2", }, { value = "nox_portal_yellow_bossroom_eye.m2", + text = "nox_portal_yellow_bossroom_eye.m2", fileId = "204053", text = "nox_portal_yellow_bossroom_eye.m2", }, { value = "stratholmefiresmokeemberm.m2", + text = "stratholmefiresmokeemberm.m2", fileId = "204055", text = "stratholmefiresmokeemberm.m2", }, { value = "stratholmefiresmokeembers.m2", + text = "stratholmefiresmokeembers.m2", fileId = "204056", text = "stratholmefiresmokeembers.m2", }, { value = "stratholmefloatingembers.m2", + text = "stratholmefloatingembers.m2", fileId = "204057", text = "stratholmefloatingembers.m2", }, { value = "stratholmesmokeemitter.m2", + text = "stratholmesmokeemitter.m2", fileId = "204058", text = "stratholmesmokeemitter.m2", }, @@ -57058,9 +68078,11 @@ WeakAuras.ModelPaths = { }, { value = "naxxramasslimefalls", + text = "naxxramasslimefalls", children = { { value = "naxxramas_frostwyrm_slimefall.m2", + text = "naxxramas_frostwyrm_slimefall.m2", fileId = "204059", text = "naxxramas_frostwyrm_slimefall.m2", }, @@ -57069,19 +68091,23 @@ WeakAuras.ModelPaths = { }, { value = "signs", + text = "signs", children = { { value = "ruinedsign01.m2", + text = "ruinedsign01.m2", fileId = "204061", text = "ruinedsign01.m2", }, { value = "ruinedsign02.m2", + text = "ruinedsign02.m2", fileId = "204062", text = "ruinedsign02.m2", }, { value = "ruinedsign03.m2", + text = "ruinedsign03.m2", fileId = "204063", text = "ruinedsign03.m2", }, @@ -57090,9 +68116,11 @@ WeakAuras.ModelPaths = { }, { value = "throne", + text = "throne", children = { { value = "kelthuzad_throne.m2", + text = "kelthuzad_throne.m2", fileId = "204065", text = "kelthuzad_throne.m2", }, @@ -57101,34 +68129,41 @@ WeakAuras.ModelPaths = { }, { value = "webs", + text = "webs", children = { { value = "bossweb_doodad01.m2", + text = "bossweb_doodad01.m2", fileId = "204068", text = "bossweb_doodad01.m2", }, { value = "bossweb_doodad02.m2", + text = "bossweb_doodad02.m2", fileId = "204069", text = "bossweb_doodad02.m2", }, { value = "hallwayweb_doodad01.m2", + text = "hallwayweb_doodad01.m2", fileId = "204070", text = "hallwayweb_doodad01.m2", }, { value = "hallwayweb_doodad02.m2", + text = "hallwayweb_doodad02.m2", fileId = "204071", text = "hallwayweb_doodad02.m2", }, { value = "hallwayweb_doodad03.m2", + text = "hallwayweb_doodad03.m2", fileId = "204072", text = "hallwayweb_doodad03.m2", }, { value = "rampweb_doodad01.m2", + text = "rampweb_doodad01.m2", fileId = "204073", text = "rampweb_doodad01.m2", }, @@ -57137,9 +68172,11 @@ WeakAuras.ModelPaths = { }, { value = "window", + text = "window", children = { { value = "nox_window01.m2", + text = "nox_window01.m2", fileId = "204075", text = "nox_window01.m2", }, @@ -57154,15 +68191,19 @@ WeakAuras.ModelPaths = { }, { value = "tirisfalglade", + text = "tirisfalglade", children = { { value = "passivedoodads", + text = "passivedoodads", children = { { value = "arcoftriumph", + text = "arcoftriumph", children = { { value = "arcoftriumph01.m2", + text = "arcoftriumph01.m2", fileId = "204076", text = "arcoftriumph01.m2", }, @@ -57171,9 +68212,11 @@ WeakAuras.ModelPaths = { }, { value = "barricade", + text = "barricade", children = { { value = "tirisfallbarricade.m2", + text = "tirisfallbarricade.m2", fileId = "204080", text = "tirisfallbarricade.m2", }, @@ -57182,14 +68225,17 @@ WeakAuras.ModelPaths = { }, { value = "boardwalk", + text = "boardwalk", children = { { value = "tirisfallboardwalk01.m2", + text = "tirisfallboardwalk01.m2", fileId = "204084", text = "tirisfallboardwalk01.m2", }, { value = "tirisfallboardwalk02.m2", + text = "tirisfallboardwalk02.m2", fileId = "204085", text = "tirisfallboardwalk02.m2", }, @@ -57198,29 +68244,35 @@ WeakAuras.ModelPaths = { }, { value = "bodies", + text = "bodies", children = { { value = "bodyshrouded.m2", + text = "bodyshrouded.m2", fileId = "204086", text = "bodyshrouded.m2", }, { value = "massgrave.m2", + text = "massgrave.m2", fileId = "204090", text = "massgrave.m2", }, { value = "scourgebodyhanging01.m2", + text = "scourgebodyhanging01.m2", fileId = "204091", text = "scourgebodyhanging01.m2", }, { value = "scourgebodyhanging02.m2", + text = "scourgebodyhanging02.m2", fileId = "204092", text = "scourgebodyhanging02.m2", }, { value = "scourgebodyhanging03.m2", + text = "scourgebodyhanging03.m2", fileId = "204093", text = "scourgebodyhanging03.m2", }, @@ -57229,19 +68281,23 @@ WeakAuras.ModelPaths = { }, { value = "bushes", + text = "bushes", children = { { value = "tirisfallbush01.m2", + text = "tirisfallbush01.m2", fileId = "204097", text = "tirisfallbush01.m2", }, { value = "tirisfallgladebush03.m2", + text = "tirisfallgladebush03.m2", fileId = "204098", text = "tirisfallgladebush03.m2", }, { value = "tirisfallgladebush04.m2", + text = "tirisfallgladebush04.m2", fileId = "204099", text = "tirisfallgladebush04.m2", }, @@ -57250,9 +68306,11 @@ WeakAuras.ModelPaths = { }, { value = "doomweed", + text = "doomweed", children = { { value = "doomweed01.m2", + text = "doomweed01.m2", fileId = "204101", text = "doomweed01.m2", }, @@ -57261,9 +68319,11 @@ WeakAuras.ModelPaths = { }, { value = "gloomweed", + text = "gloomweed", children = { { value = "gloomweed01.m2", + text = "gloomweed01.m2", fileId = "204103", text = "gloomweed01.m2", }, @@ -57272,44 +68332,53 @@ WeakAuras.ModelPaths = { }, { value = "graves", + text = "graves", children = { { value = "brillcoffins.m2", + text = "brillcoffins.m2", fileId = "204104", text = "brillcoffins.m2", }, { value = "brillgraves01.m2", + text = "brillgraves01.m2", fileId = "204105", text = "brillgraves01.m2", }, { value = "brillgraves02.m2", + text = "brillgraves02.m2", fileId = "204106", text = "brillgraves02.m2", }, { value = "brillgraves03.m2", + text = "brillgraves03.m2", fileId = "204107", text = "brillgraves03.m2", }, { value = "brillgraves04.m2", + text = "brillgraves04.m2", fileId = "204108", text = "brillgraves04.m2", }, { value = "tirisfallgravedirtmound01.m2", + text = "tirisfallgravedirtmound01.m2", fileId = "204112", text = "tirisfallgravedirtmound01.m2", }, { value = "tirisfallgravedirtmound02.m2", + text = "tirisfallgravedirtmound02.m2", fileId = "204113", text = "tirisfallgravedirtmound02.m2", }, { value = "tirisfallopengrave01.m2", + text = "tirisfallopengrave01.m2", fileId = "204114", text = "tirisfallopengrave01.m2", }, @@ -57318,39 +68387,47 @@ WeakAuras.ModelPaths = { }, { value = "outposts", + text = "outposts", children = { { value = "tirisfalloutpost01.m2", + text = "tirisfalloutpost01.m2", fileId = "204116", text = "tirisfalloutpost01.m2", }, { value = "tirisfalloutpost02.m2", + text = "tirisfalloutpost02.m2", fileId = "204117", text = "tirisfalloutpost02.m2", }, { value = "tirisfalloutpost03.m2", + text = "tirisfalloutpost03.m2", fileId = "204118", text = "tirisfalloutpost03.m2", }, { value = "tirisfalloutpost04.m2", + text = "tirisfalloutpost04.m2", fileId = "204119", text = "tirisfalloutpost04.m2", }, { value = "tirisfalloutpost05.m2", + text = "tirisfalloutpost05.m2", fileId = "204120", text = "tirisfalloutpost05.m2", }, { value = "tirisfalloutpost06.m2", + text = "tirisfalloutpost06.m2", fileId = "204121", text = "tirisfalloutpost06.m2", }, { value = "tirisfalloutpost07.m2", + text = "tirisfalloutpost07.m2", fileId = "204122", text = "tirisfalloutpost07.m2", }, @@ -57359,69 +68436,83 @@ WeakAuras.ModelPaths = { }, { value = "trees", + text = "trees", children = { { value = "tirisfalgladetree01.m2", + text = "tirisfalgladetree01.m2", fileId = "204124", text = "tirisfalgladetree01.m2", }, { value = "tirisfallfallentree01.m2", + text = "tirisfallfallentree01.m2", fileId = "204125", text = "tirisfallfallentree01.m2", }, { value = "tirisfallfallentree02.m2", + text = "tirisfallfallentree02.m2", fileId = "204126", text = "tirisfallfallentree02.m2", }, { value = "tirisfallfallentree03.m2", + text = "tirisfallfallentree03.m2", fileId = "204127", text = "tirisfallfallentree03.m2", }, { value = "tirisfallfallentree04.m2", + text = "tirisfallfallentree04.m2", fileId = "204128", text = "tirisfallfallentree04.m2", }, { value = "tirisfallgladecanopytree02.m2", + text = "tirisfallgladecanopytree02.m2", fileId = "204129", text = "tirisfallgladecanopytree02.m2", }, { value = "tirisfallgladecanopytree03.m2", + text = "tirisfallgladecanopytree03.m2", fileId = "204130", text = "tirisfallgladecanopytree03.m2", }, { value = "tirisfallgladecanopytree04.m2", + text = "tirisfallgladecanopytree04.m2", fileId = "204131", text = "tirisfallgladecanopytree04.m2", }, { value = "tirisfallgladecanopytree05.m2", + text = "tirisfallgladecanopytree05.m2", fileId = "204132", text = "tirisfallgladecanopytree05.m2", }, { value = "tirisfallgladecanopytree06.m2", + text = "tirisfallgladecanopytree06.m2", fileId = "204133", text = "tirisfallgladecanopytree06.m2", }, { value = "tirisfallgladecanopytree07.m2", + text = "tirisfallgladecanopytree07.m2", fileId = "204134", text = "tirisfallgladecanopytree07.m2", }, { value = "tirisfalltreestump01.m2", + text = "tirisfalltreestump01.m2", fileId = "204135", text = "tirisfalltreestump01.m2", }, { value = "tirisfalltreestump02.m2", + text = "tirisfalltreestump02.m2", fileId = "204136", text = "tirisfalltreestump02.m2", }, @@ -57430,9 +68521,11 @@ WeakAuras.ModelPaths = { }, { value = "uthershrine", + text = "uthershrine", children = { { value = "uthershrinepedestal.m2", + text = "uthershrinepedestal.m2", fileId = "204142", text = "uthershrinepedestal.m2", }, @@ -57441,9 +68534,11 @@ WeakAuras.ModelPaths = { }, { value = "windmill", + text = "windmill", children = { { value = "tirisfallwindmill.m2", + text = "tirisfallwindmill.m2", fileId = "204144", text = "tirisfallwindmill.m2", }, @@ -57461,2372 +68556,2847 @@ WeakAuras.ModelPaths = { }, { value = "nodxt", + text = "nodxt", children = { { value = "detail", + text = "detail", children = { { value = "apkbus01.m2", + text = "apkbus01.m2", fileId = "218550", text = "apkbus01.m2", }, { value = "apkbus02.m2", + text = "apkbus02.m2", fileId = "218551", text = "apkbus02.m2", }, { value = "apkbus03.m2", + text = "apkbus03.m2", fileId = "218552", text = "apkbus03.m2", }, { value = "apkbus04.m2", + text = "apkbus04.m2", fileId = "218553", text = "apkbus04.m2", }, { value = "apkbus05.m2", + text = "apkbus05.m2", fileId = "218554", text = "apkbus05.m2", }, { value = "apkflo01.m2", + text = "apkflo01.m2", fileId = "218555", text = "apkflo01.m2", }, { value = "apkflo02.m2", + text = "apkflo02.m2", fileId = "218556", text = "apkflo02.m2", }, { value = "apkflo03.m2", + text = "apkflo03.m2", fileId = "218557", text = "apkflo03.m2", }, { value = "apkgra01.m2", + text = "apkgra01.m2", fileId = "218558", text = "apkgra01.m2", }, { value = "apkgra02.m2", + text = "apkgra02.m2", fileId = "218559", text = "apkgra02.m2", }, { value = "apkgra03.m2", + text = "apkgra03.m2", fileId = "218560", text = "apkgra03.m2", }, { value = "apkgra04.m2", + text = "apkgra04.m2", fileId = "218561", text = "apkgra04.m2", }, { value = "arhbus01.m2", + text = "arhbus01.m2", fileId = "218563", text = "arhbus01.m2", }, { value = "arhbus02.m2", + text = "arhbus02.m2", fileId = "218564", text = "arhbus02.m2", }, { value = "arhflo01.m2", + text = "arhflo01.m2", fileId = "218565", text = "arhflo01.m2", }, { value = "arhflo02.m2", + text = "arhflo02.m2", fileId = "218566", text = "arhflo02.m2", }, { value = "arhflo03.m2", + text = "arhflo03.m2", fileId = "218567", text = "arhflo03.m2", }, { value = "arhflo04.m2", + text = "arhflo04.m2", fileId = "218568", text = "arhflo04.m2", }, { value = "arhflo05.m2", + text = "arhflo05.m2", fileId = "218569", text = "arhflo05.m2", }, { value = "arhgra01.m2", + text = "arhgra01.m2", fileId = "218570", text = "arhgra01.m2", }, { value = "arhgra02.m2", + text = "arhgra02.m2", fileId = "218571", text = "arhgra02.m2", }, { value = "arhgra03.m2", + text = "arhgra03.m2", fileId = "218572", text = "arhgra03.m2", }, { value = "arhroc01.m2", + text = "arhroc01.m2", fileId = "218573", text = "arhroc01.m2", }, { value = "arhroc02.m2", + text = "arhroc02.m2", fileId = "218574", text = "arhroc02.m2", }, { value = "arhwet01.m2", + text = "arhwet01.m2", fileId = "218575", text = "arhwet01.m2", }, { value = "arhwet02.m2", + text = "arhwet02.m2", fileId = "218576", text = "arhwet02.m2", }, { value = "atcbus01.m2", + text = "atcbus01.m2", fileId = "218577", text = "atcbus01.m2", }, { value = "atcbus02.m2", + text = "atcbus02.m2", fileId = "218578", text = "atcbus02.m2", }, { value = "atcbus03.m2", + text = "atcbus03.m2", fileId = "218579", text = "atcbus03.m2", }, { value = "atcbus04.m2", + text = "atcbus04.m2", fileId = "218580", text = "atcbus04.m2", }, { value = "atcbus05.m2", + text = "atcbus05.m2", fileId = "218581", text = "atcbus05.m2", }, { value = "atcflo01.m2", + text = "atcflo01.m2", fileId = "218582", text = "atcflo01.m2", }, { value = "atcflo02.m2", + text = "atcflo02.m2", fileId = "218583", text = "atcflo02.m2", }, { value = "atcflo03.m2", + text = "atcflo03.m2", fileId = "218584", text = "atcflo03.m2", }, { value = "atcgra01.m2", + text = "atcgra01.m2", fileId = "218585", text = "atcgra01.m2", }, { value = "atcgra02.m2", + text = "atcgra02.m2", fileId = "218586", text = "atcgra02.m2", }, { value = "atcgra03.m2", + text = "atcgra03.m2", fileId = "218587", text = "atcgra03.m2", }, { value = "atcgra04.m2", + text = "atcgra04.m2", fileId = "218588", text = "atcgra04.m2", }, { value = "azhbus01.m2", + text = "azhbus01.m2", fileId = "218589", text = "azhbus01.m2", }, { value = "azhbus02.m2", + text = "azhbus02.m2", fileId = "218590", text = "azhbus02.m2", }, { value = "azhbus03.m2", + text = "azhbus03.m2", fileId = "218591", text = "azhbus03.m2", }, { value = "azhbus04.m2", + text = "azhbus04.m2", fileId = "218592", text = "azhbus04.m2", }, { value = "azhbus05.m2", + text = "azhbus05.m2", fileId = "218593", text = "azhbus05.m2", }, { value = "azhbus06.m2", + text = "azhbus06.m2", fileId = "218594", text = "azhbus06.m2", }, { value = "azhbus07.m2", + text = "azhbus07.m2", fileId = "218595", text = "azhbus07.m2", }, { value = "azhbus08.m2", + text = "azhbus08.m2", fileId = "218596", text = "azhbus08.m2", }, { value = "azhgra01.m2", + text = "azhgra01.m2", fileId = "218597", text = "azhgra01.m2", }, { value = "azhgra02.m2", + text = "azhgra02.m2", fileId = "218598", text = "azhgra02.m2", }, { value = "azhshel01.m2", + text = "azhshel01.m2", fileId = "218599", text = "azhshel01.m2", }, { value = "azhshel02.m2", + text = "azhshel02.m2", fileId = "218600", text = "azhshel02.m2", }, { value = "azhshel03.m2", + text = "azhshel03.m2", fileId = "218601", text = "azhshel03.m2", }, { value = "badbus01.m2", + text = "badbus01.m2", fileId = "218603", text = "badbus01.m2", }, { value = "badbus02.m2", + text = "badbus02.m2", fileId = "218604", text = "badbus02.m2", }, { value = "badbus03.m2", + text = "badbus03.m2", fileId = "218605", text = "badbus03.m2", }, { value = "badbus04.m2", + text = "badbus04.m2", fileId = "218606", text = "badbus04.m2", }, { value = "badbus05.m2", + text = "badbus05.m2", fileId = "218607", text = "badbus05.m2", }, { value = "badbus06.m2", + text = "badbus06.m2", fileId = "218608", text = "badbus06.m2", }, { value = "badbus07.m2", + text = "badbus07.m2", fileId = "218609", text = "badbus07.m2", }, { value = "badbus08.m2", + text = "badbus08.m2", fileId = "218610", text = "badbus08.m2", }, { value = "badgra01.m2", + text = "badgra01.m2", fileId = "218611", text = "badgra01.m2", }, { value = "badgra02.m2", + text = "badgra02.m2", fileId = "218612", text = "badgra02.m2", }, { value = "badroc01.m2", + text = "badroc01.m2", fileId = "218614", text = "badroc01.m2", }, { value = "badroc02.m2", + text = "badroc02.m2", fileId = "218615", text = "badroc02.m2", }, { value = "badroc03.m2", + text = "badroc03.m2", fileId = "218616", text = "badroc03.m2", }, { value = "barbus01.m2", + text = "barbus01.m2", fileId = "218617", text = "barbus01.m2", }, { value = "barbus02.m2", + text = "barbus02.m2", fileId = "218618", text = "barbus02.m2", }, { value = "barbus03.m2", + text = "barbus03.m2", fileId = "218619", text = "barbus03.m2", }, { value = "barbus04.m2", + text = "barbus04.m2", fileId = "218620", text = "barbus04.m2", }, { value = "bargra01.m2", + text = "bargra01.m2", fileId = "218621", text = "bargra01.m2", }, { value = "bargra02.m2", + text = "bargra02.m2", fileId = "218622", text = "bargra02.m2", }, { value = "bargra03.m2", + text = "bargra03.m2", fileId = "218623", text = "bargra03.m2", }, { value = "bargra04.m2", + text = "bargra04.m2", fileId = "218624", text = "bargra04.m2", }, { value = "bargra05.m2", + text = "bargra05.m2", fileId = "218625", text = "bargra05.m2", }, { value = "bargra06.m2", + text = "bargra06.m2", fileId = "218626", text = "bargra06.m2", }, { value = "bargra07.m2", + text = "bargra07.m2", fileId = "218627", text = "bargra07.m2", }, { value = "bargra08.m2", + text = "bargra08.m2", fileId = "218628", text = "bargra08.m2", }, { value = "barroc01.m2", + text = "barroc01.m2", fileId = "218630", text = "barroc01.m2", }, { value = "barroc02.m2", + text = "barroc02.m2", fileId = "218631", text = "barroc02.m2", }, { value = "barroc03.m2", + text = "barroc03.m2", fileId = "218632", text = "barroc03.m2", }, { value = "barroc04.m2", + text = "barroc04.m2", fileId = "218633", text = "barroc04.m2", }, { value = "barroc05.m2", + text = "barroc05.m2", fileId = "218634", text = "barroc05.m2", }, { value = "barroc06.m2", + text = "barroc06.m2", fileId = "218635", text = "barroc06.m2", }, { value = "blaroc01.m2", + text = "blaroc01.m2", fileId = "218637", text = "blaroc01.m2", }, { value = "blaroc02.m2", + text = "blaroc02.m2", fileId = "218638", text = "blaroc02.m2", }, { value = "blaroc03.m2", + text = "blaroc03.m2", fileId = "218639", text = "blaroc03.m2", }, { value = "blaroc04.m2", + text = "blaroc04.m2", fileId = "218640", text = "blaroc04.m2", }, { value = "blaroc05.m2", + text = "blaroc05.m2", fileId = "218641", text = "blaroc05.m2", }, { value = "blaroc06.m2", + text = "blaroc06.m2", fileId = "218642", text = "blaroc06.m2", }, { value = "blaroc07.m2", + text = "blaroc07.m2", fileId = "218643", text = "blaroc07.m2", }, { value = "blaroc08.m2", + text = "blaroc08.m2", fileId = "218644", text = "blaroc08.m2", }, { value = "blaroc09.m2", + text = "blaroc09.m2", fileId = "218645", text = "blaroc09.m2", }, { value = "blaroc10.m2", + text = "blaroc10.m2", fileId = "218646", text = "blaroc10.m2", }, { value = "blaroc11.m2", + text = "blaroc11.m2", fileId = "218647", text = "blaroc11.m2", }, { value = "blaroc12.m2", + text = "blaroc12.m2", fileId = "218648", text = "blaroc12.m2", }, { value = "blaroc13.m2", + text = "blaroc13.m2", fileId = "218649", text = "blaroc13.m2", }, { value = "bllbus01.m2", + text = "bllbus01.m2", fileId = "218651", text = "bllbus01.m2", }, { value = "bllroc01.m2", + text = "bllroc01.m2", fileId = "218652", text = "bllroc01.m2", }, { value = "bllroc02.m2", + text = "bllroc02.m2", fileId = "218653", text = "bllroc02.m2", }, { value = "bllroc03.m2", + text = "bllroc03.m2", fileId = "218654", text = "bllroc03.m2", }, { value = "bllroc04.m2", + text = "bllroc04.m2", fileId = "218655", text = "bllroc04.m2", }, { value = "bllroc05.m2", + text = "bllroc05.m2", fileId = "218656", text = "bllroc05.m2", }, { value = "bllroc06.m2", + text = "bllroc06.m2", fileId = "218657", text = "bllroc06.m2", }, { value = "bllroc07.m2", + text = "bllroc07.m2", fileId = "218658", text = "bllroc07.m2", }, { value = "bllroc08.m2", + text = "bllroc08.m2", fileId = "218659", text = "bllroc08.m2", }, { value = "bstbra01.m2", + text = "bstbra01.m2", fileId = "218673", text = "bstbra01.m2", }, { value = "bstbra02.m2", + text = "bstbra02.m2", fileId = "218674", text = "bstbra02.m2", }, { value = "bstbra03.m2", + text = "bstbra03.m2", fileId = "218675", text = "bstbra03.m2", }, { value = "bstbra04.m2", + text = "bstbra04.m2", fileId = "218676", text = "bstbra04.m2", }, { value = "bstbra05.m2", + text = "bstbra05.m2", fileId = "218677", text = "bstbra05.m2", }, { value = "bstbra06.m2", + text = "bstbra06.m2", fileId = "218678", text = "bstbra06.m2", }, { value = "bstbra07.m2", + text = "bstbra07.m2", fileId = "218679", text = "bstbra07.m2", }, { value = "bstbra08.m2", + text = "bstbra08.m2", fileId = "218680", text = "bstbra08.m2", }, { value = "bstroc01.m2", + text = "bstroc01.m2", fileId = "218681", text = "bstroc01.m2", }, { value = "bstroc02.m2", + text = "bstroc02.m2", fileId = "218682", text = "bstroc02.m2", }, { value = "bstroc03.m2", + text = "bstroc03.m2", fileId = "218683", text = "bstroc03.m2", }, { value = "bstroc04.m2", + text = "bstroc04.m2", fileId = "218684", text = "bstroc04.m2", }, { value = "bstroc05.m2", + text = "bstroc05.m2", fileId = "218685", text = "bstroc05.m2", }, { value = "drkbus01.m2", + text = "drkbus01.m2", fileId = "218708", text = "drkbus01.m2", }, { value = "drkbus02.m2", + text = "drkbus02.m2", fileId = "218709", text = "drkbus02.m2", }, { value = "drkbus03.m2", + text = "drkbus03.m2", fileId = "218710", text = "drkbus03.m2", }, { value = "drkbus04.m2", + text = "drkbus04.m2", fileId = "218711", text = "drkbus04.m2", }, { value = "drkbus05.m2", + text = "drkbus05.m2", fileId = "218712", text = "drkbus05.m2", }, { value = "drkbus06.m2", + text = "drkbus06.m2", fileId = "218713", text = "drkbus06.m2", }, { value = "drkbus07.m2", + text = "drkbus07.m2", fileId = "218714", text = "drkbus07.m2", }, { value = "drkgra01.m2", + text = "drkgra01.m2", fileId = "218715", text = "drkgra01.m2", }, { value = "drkgra02.m2", + text = "drkgra02.m2", fileId = "218716", text = "drkgra02.m2", }, { value = "drkgra03.m2", + text = "drkgra03.m2", fileId = "218717", text = "drkgra03.m2", }, { value = "drkgra04.m2", + text = "drkgra04.m2", fileId = "218718", text = "drkgra04.m2", }, { value = "drkgra05.m2", + text = "drkgra05.m2", fileId = "218719", text = "drkgra05.m2", }, { value = "drkgra06.m2", + text = "drkgra06.m2", fileId = "218720", text = "drkgra06.m2", }, { value = "dskflo01.m2", + text = "dskflo01.m2", fileId = "218721", text = "dskflo01.m2", }, { value = "dskflo02.m2", + text = "dskflo02.m2", fileId = "218722", text = "dskflo02.m2", }, { value = "dskgra01.m2", + text = "dskgra01.m2", fileId = "218723", text = "dskgra01.m2", }, { value = "dskgra02.m2", + text = "dskgra02.m2", fileId = "218724", text = "dskgra02.m2", }, { value = "dskgra03.m2", + text = "dskgra03.m2", fileId = "218725", text = "dskgra03.m2", }, { value = "dskgra04.m2", + text = "dskgra04.m2", fileId = "218726", text = "dskgra04.m2", }, { value = "dskgra05.m2", + text = "dskgra05.m2", fileId = "218727", text = "dskgra05.m2", }, { value = "dskgra06.m2", + text = "dskgra06.m2", fileId = "218728", text = "dskgra06.m2", }, { value = "dslbon01.m2", + text = "dslbon01.m2", fileId = "218729", text = "dslbon01.m2", }, { value = "dslbon02.m2", + text = "dslbon02.m2", fileId = "218730", text = "dslbon02.m2", }, { value = "dslbon03.m2", + text = "dslbon03.m2", fileId = "218731", text = "dslbon03.m2", }, { value = "dslbon04.m2", + text = "dslbon04.m2", fileId = "218732", text = "dslbon04.m2", }, { value = "dslbon05.m2", + text = "dslbon05.m2", fileId = "218733", text = "dslbon05.m2", }, { value = "dslbon06.m2", + text = "dslbon06.m2", fileId = "218734", text = "dslbon06.m2", }, { value = "dslbon07.m2", + text = "dslbon07.m2", fileId = "218735", text = "dslbon07.m2", }, { value = "dslbon08.m2", + text = "dslbon08.m2", fileId = "218736", text = "dslbon08.m2", }, { value = "dslroc01.m2", + text = "dslroc01.m2", fileId = "218737", text = "dslroc01.m2", }, { value = "dslroc02.m2", + text = "dslroc02.m2", fileId = "218738", text = "dslroc02.m2", }, { value = "dunbra01.m2", + text = "dunbra01.m2", fileId = "218739", text = "dunbra01.m2", }, { value = "dunbra02.m2", + text = "dunbra02.m2", fileId = "218740", text = "dunbra02.m2", }, { value = "dunbra03.m2", + text = "dunbra03.m2", fileId = "218741", text = "dunbra03.m2", }, { value = "dunbra04.m2", + text = "dunbra04.m2", fileId = "218742", text = "dunbra04.m2", }, { value = "dunbus01.m2", + text = "dunbus01.m2", fileId = "218743", text = "dunbus01.m2", }, { value = "dunbus02.m2", + text = "dunbus02.m2", fileId = "218744", text = "dunbus02.m2", }, { value = "dunbus03.m2", + text = "dunbus03.m2", fileId = "218745", text = "dunbus03.m2", }, { value = "dungra01.m2", + text = "dungra01.m2", fileId = "218746", text = "dungra01.m2", }, { value = "dungra02.m2", + text = "dungra02.m2", fileId = "218747", text = "dungra02.m2", }, { value = "dungra03.m2", + text = "dungra03.m2", fileId = "218748", text = "dungra03.m2", }, { value = "dungra04.m2", + text = "dungra04.m2", fileId = "218749", text = "dungra04.m2", }, { value = "dunroc01.m2", + text = "dunroc01.m2", fileId = "218750", text = "dunroc01.m2", }, { value = "dunroc02.m2", + text = "dunroc02.m2", fileId = "218751", text = "dunroc02.m2", }, { value = "durbus01.m2", + text = "durbus01.m2", fileId = "218752", text = "durbus01.m2", }, { value = "durbus02.m2", + text = "durbus02.m2", fileId = "218753", text = "durbus02.m2", }, { value = "durbus03.m2", + text = "durbus03.m2", fileId = "218754", text = "durbus03.m2", }, { value = "durbus04.m2", + text = "durbus04.m2", fileId = "218755", text = "durbus04.m2", }, { value = "durbus05.m2", + text = "durbus05.m2", fileId = "218756", text = "durbus05.m2", }, { value = "durbus06.m2", + text = "durbus06.m2", fileId = "218757", text = "durbus06.m2", }, { value = "durgra01.m2", + text = "durgra01.m2", fileId = "218758", text = "durgra01.m2", }, { value = "durgra02.m2", + text = "durgra02.m2", fileId = "218759", text = "durgra02.m2", }, { value = "durgra03.m2", + text = "durgra03.m2", fileId = "218760", text = "durgra03.m2", }, { value = "duribu01.m2", + text = "duribu01.m2", fileId = "218761", text = "duribu01.m2", }, { value = "duribu02.m2", + text = "duribu02.m2", fileId = "218762", text = "duribu02.m2", }, { value = "duribu03.m2", + text = "duribu03.m2", fileId = "218763", text = "duribu03.m2", }, { value = "durifl01.m2", + text = "durifl01.m2", fileId = "218764", text = "durifl01.m2", }, { value = "durifl02.m2", + text = "durifl02.m2", fileId = "218765", text = "durifl02.m2", }, { value = "durifl03.m2", + text = "durifl03.m2", fileId = "218766", text = "durifl03.m2", }, { value = "durifl04.m2", + text = "durifl04.m2", fileId = "218767", text = "durifl04.m2", }, { value = "durifl05.m2", + text = "durifl05.m2", fileId = "218768", text = "durifl05.m2", }, { value = "durigr01.m2", + text = "durigr01.m2", fileId = "218769", text = "durigr01.m2", }, { value = "durigr02.m2", + text = "durigr02.m2", fileId = "218770", text = "durigr02.m2", }, { value = "durigr03.m2", + text = "durigr03.m2", fileId = "218771", text = "durigr03.m2", }, { value = "durigr04.m2", + text = "durigr04.m2", fileId = "218772", text = "durigr04.m2", }, { value = "duriro01.m2", + text = "duriro01.m2", fileId = "218773", text = "duriro01.m2", }, { value = "duriro02.m2", + text = "duriro02.m2", fileId = "218774", text = "duriro02.m2", }, { value = "durroc01.m2", + text = "durroc01.m2", fileId = "218776", text = "durroc01.m2", }, { value = "durroc02.m2", + text = "durroc02.m2", fileId = "218777", text = "durroc02.m2", }, { value = "durroc03.m2", + text = "durroc03.m2", fileId = "218778", text = "durroc03.m2", }, { value = "durroc04.m2", + text = "durroc04.m2", fileId = "218779", text = "durroc04.m2", }, { value = "dwmbus01.m2", + text = "dwmbus01.m2", fileId = "218782", text = "dwmbus01.m2", }, { value = "dwmbus02.m2", + text = "dwmbus02.m2", fileId = "218783", text = "dwmbus02.m2", }, { value = "dwmbus03.m2", + text = "dwmbus03.m2", fileId = "218784", text = "dwmbus03.m2", }, { value = "dwmbus04.m2", + text = "dwmbus04.m2", fileId = "218785", text = "dwmbus04.m2", }, { value = "dwmbus05.m2", + text = "dwmbus05.m2", fileId = "218786", text = "dwmbus05.m2", }, { value = "dwmgra01.m2", + text = "dwmgra01.m2", fileId = "218787", text = "dwmgra01.m2", }, { value = "dwmgra02.m2", + text = "dwmgra02.m2", fileId = "218788", text = "dwmgra02.m2", }, { value = "dwmgra03.m2", + text = "dwmgra03.m2", fileId = "218789", text = "dwmgra03.m2", }, { value = "dwmgra04.m2", + text = "dwmgra04.m2", fileId = "218790", text = "dwmgra04.m2", }, { value = "dwmgra05.m2", + text = "dwmgra05.m2", fileId = "218791", text = "dwmgra05.m2", }, { value = "dwmgra06.m2", + text = "dwmgra06.m2", fileId = "218792", text = "dwmgra06.m2", }, { value = "dwmroc01.m2", + text = "dwmroc01.m2", fileId = "218793", text = "dwmroc01.m2", }, { value = "dwmroc02.m2", + text = "dwmroc02.m2", fileId = "218794", text = "dwmroc02.m2", }, { value = "dwpbra01.m2", + text = "dwpbra01.m2", fileId = "218795", text = "dwpbra01.m2", }, { value = "dwpbra02.m2", + text = "dwpbra02.m2", fileId = "218796", text = "dwpbra02.m2", }, { value = "dwpbra03.m2", + text = "dwpbra03.m2", fileId = "218797", text = "dwpbra03.m2", }, { value = "dwpgra01.m2", + text = "dwpgra01.m2", fileId = "218798", text = "dwpgra01.m2", }, { value = "dwpgra02.m2", + text = "dwpgra02.m2", fileId = "218799", text = "dwpgra02.m2", }, { value = "dwpgra03.m2", + text = "dwpgra03.m2", fileId = "218800", text = "dwpgra03.m2", }, { value = "dwproc01.m2", + text = "dwproc01.m2", fileId = "218801", text = "dwproc01.m2", }, { value = "dwproc02.m2", + text = "dwproc02.m2", fileId = "218802", text = "dwproc02.m2", }, { value = "dwproc03.m2", + text = "dwproc03.m2", fileId = "218803", text = "dwproc03.m2", }, { value = "dwpwea01.m2", + text = "dwpwea01.m2", fileId = "218804", text = "dwpwea01.m2", }, { value = "dwpwea02.m2", + text = "dwpwea02.m2", fileId = "218805", text = "dwpwea02.m2", }, { value = "dwpwea03.m2", + text = "dwpwea03.m2", fileId = "218806", text = "dwpwea03.m2", }, { value = "dwpwea04.m2", + text = "dwpwea04.m2", fileId = "218807", text = "dwpwea04.m2", }, { value = "elwflo01.m2", + text = "elwflo01.m2", fileId = "218809", text = "elwflo01.m2", }, { value = "elwflo02.m2", + text = "elwflo02.m2", fileId = "218810", text = "elwflo02.m2", }, { value = "elwflo03.m2", + text = "elwflo03.m2", fileId = "218811", text = "elwflo03.m2", }, { value = "elwgra01.m2", + text = "elwgra01.m2", fileId = "218812", text = "elwgra01.m2", }, { value = "elwgra02.m2", + text = "elwgra02.m2", fileId = "218813", text = "elwgra02.m2", }, { value = "elwgra03.m2", + text = "elwgra03.m2", fileId = "218814", text = "elwgra03.m2", }, { value = "elwgra04.m2", + text = "elwgra04.m2", fileId = "218815", text = "elwgra04.m2", }, { value = "elwgra05.m2", + text = "elwgra05.m2", fileId = "218816", text = "elwgra05.m2", }, { value = "elwgra06.m2", + text = "elwgra06.m2", fileId = "218817", text = "elwgra06.m2", }, { value = "elwgra07.m2", + text = "elwgra07.m2", fileId = "218818", text = "elwgra07.m2", }, { value = "elwgra08.m2", + text = "elwgra08.m2", fileId = "218819", text = "elwgra08.m2", }, { value = "elwroc01.m2", + text = "elwroc01.m2", fileId = "218820", text = "elwroc01.m2", }, { value = "elwroc02.m2", + text = "elwroc02.m2", fileId = "218821", text = "elwroc02.m2", }, { value = "emdcre01.m2", + text = "emdcre01.m2", fileId = "218822", text = "emdcre01.m2", }, { value = "emdcre02.m2", + text = "emdcre02.m2", fileId = "218823", text = "emdcre02.m2", }, { value = "emdcre03.m2", + text = "emdcre03.m2", fileId = "218824", text = "emdcre03.m2", }, { value = "emdcre04.m2", + text = "emdcre04.m2", fileId = "218825", text = "emdcre04.m2", }, { value = "emdcre05.m2", + text = "emdcre05.m2", fileId = "218826", text = "emdcre05.m2", }, { value = "emdcre06.m2", + text = "emdcre06.m2", fileId = "218827", text = "emdcre06.m2", }, { value = "emdflo01.m2", + text = "emdflo01.m2", fileId = "218828", text = "emdflo01.m2", }, { value = "emdflo02.m2", + text = "emdflo02.m2", fileId = "218829", text = "emdflo02.m2", }, { value = "emdgra01.m2", + text = "emdgra01.m2", fileId = "218830", text = "emdgra01.m2", }, { value = "emdgra02.m2", + text = "emdgra02.m2", fileId = "218831", text = "emdgra02.m2", }, { value = "emdgra03.m2", + text = "emdgra03.m2", fileId = "218832", text = "emdgra03.m2", }, { value = "emdgra04.m2", + text = "emdgra04.m2", fileId = "218833", text = "emdgra04.m2", }, { value = "emdgra05.m2", + text = "emdgra05.m2", fileId = "218834", text = "emdgra05.m2", }, { value = "emdgra06.m2", + text = "emdgra06.m2", fileId = "218835", text = "emdgra06.m2", }, { value = "eplbon01.m2", + text = "eplbon01.m2", fileId = "218838", text = "eplbon01.m2", }, { value = "eplbon02.m2", + text = "eplbon02.m2", fileId = "218839", text = "eplbon02.m2", }, { value = "eplbon03.m2", + text = "eplbon03.m2", fileId = "218840", text = "eplbon03.m2", }, { value = "eplbon04.m2", + text = "eplbon04.m2", fileId = "218841", text = "eplbon04.m2", }, { value = "eplbon05.m2", + text = "eplbon05.m2", fileId = "218842", text = "eplbon05.m2", }, { value = "eplbon06.m2", + text = "eplbon06.m2", fileId = "218843", text = "eplbon06.m2", }, { value = "eplbus01.m2", + text = "eplbus01.m2", fileId = "218844", text = "eplbus01.m2", }, { value = "eplbus02.m2", + text = "eplbus02.m2", fileId = "218845", text = "eplbus02.m2", }, { value = "eplbus03.m2", + text = "eplbus03.m2", fileId = "218846", text = "eplbus03.m2", }, { value = "eplbus04.m2", + text = "eplbus04.m2", fileId = "218847", text = "eplbus04.m2", }, { value = "eplbus05.m2", + text = "eplbus05.m2", fileId = "218848", text = "eplbus05.m2", }, { value = "eplbus06.m2", + text = "eplbus06.m2", fileId = "218849", text = "eplbus06.m2", }, { value = "eplbus07.m2", + text = "eplbus07.m2", fileId = "218850", text = "eplbus07.m2", }, { value = "eplgra01.m2", + text = "eplgra01.m2", fileId = "218851", text = "eplgra01.m2", }, { value = "eplgra02.m2", + text = "eplgra02.m2", fileId = "218852", text = "eplgra02.m2", }, { value = "eplgra03.m2", + text = "eplgra03.m2", fileId = "218853", text = "eplgra03.m2", }, { value = "eplmus01.m2", + text = "eplmus01.m2", fileId = "218854", text = "eplmus01.m2", }, { value = "eplmus02.m2", + text = "eplmus02.m2", fileId = "218855", text = "eplmus02.m2", }, { value = "felbus01.m2", + text = "felbus01.m2", fileId = "218856", text = "felbus01.m2", }, { value = "felbus02.m2", + text = "felbus02.m2", fileId = "218857", text = "felbus02.m2", }, { value = "felbus03.m2", + text = "felbus03.m2", fileId = "218858", text = "felbus03.m2", }, { value = "felbus04.m2", + text = "felbus04.m2", fileId = "218859", text = "felbus04.m2", }, { value = "felflo01.m2", + text = "felflo01.m2", fileId = "218860", text = "felflo01.m2", }, { value = "felflo02.m2", + text = "felflo02.m2", fileId = "218861", text = "felflo02.m2", }, { value = "felgra01.m2", + text = "felgra01.m2", fileId = "218862", text = "felgra01.m2", }, { value = "felgra02.m2", + text = "felgra02.m2", fileId = "218863", text = "felgra02.m2", }, { value = "felgra03.m2", + text = "felgra03.m2", fileId = "218864", text = "felgra03.m2", }, { value = "felgra04.m2", + text = "felgra04.m2", fileId = "218865", text = "felgra04.m2", }, { value = "hyjbus01.m2", + text = "hyjbus01.m2", fileId = "218899", text = "hyjbus01.m2", }, { value = "hyjbus02.m2", + text = "hyjbus02.m2", fileId = "218900", text = "hyjbus02.m2", }, { value = "hyjbus03.m2", + text = "hyjbus03.m2", fileId = "218901", text = "hyjbus03.m2", }, { value = "hyjbus04.m2", + text = "hyjbus04.m2", fileId = "218902", text = "hyjbus04.m2", }, { value = "hyjbus05.m2", + text = "hyjbus05.m2", fileId = "218903", text = "hyjbus05.m2", }, { value = "hyjgra01.m2", + text = "hyjgra01.m2", fileId = "218904", text = "hyjgra01.m2", }, { value = "hyjgra02.m2", + text = "hyjgra02.m2", fileId = "218905", text = "hyjgra02.m2", }, { value = "hyjgra03.m2", + text = "hyjgra03.m2", fileId = "218906", text = "hyjgra03.m2", }, { value = "kalbus01.m2", + text = "kalbus01.m2", fileId = "218917", text = "kalbus01.m2", }, { value = "kalbus02.m2", + text = "kalbus02.m2", fileId = "218918", text = "kalbus02.m2", }, { value = "kalbus03.m2", + text = "kalbus03.m2", fileId = "218919", text = "kalbus03.m2", }, { value = "kalbus04.m2", + text = "kalbus04.m2", fileId = "218920", text = "kalbus04.m2", }, { value = "kalflo01.m2", + text = "kalflo01.m2", fileId = "218921", text = "kalflo01.m2", }, { value = "kalflo02.m2", + text = "kalflo02.m2", fileId = "218922", text = "kalflo02.m2", }, { value = "kalflo03.m2", + text = "kalflo03.m2", fileId = "218923", text = "kalflo03.m2", }, { value = "kalflo04.m2", + text = "kalflo04.m2", fileId = "218924", text = "kalflo04.m2", }, { value = "kalgra01.m2", + text = "kalgra01.m2", fileId = "218925", text = "kalgra01.m2", }, { value = "kalgra02.m2", + text = "kalgra02.m2", fileId = "218926", text = "kalgra02.m2", }, { value = "kalgra03.m2", + text = "kalgra03.m2", fileId = "218927", text = "kalgra03.m2", }, { value = "kalgra04.m2", + text = "kalgra04.m2", fileId = "218928", text = "kalgra04.m2", }, { value = "kalgra05.m2", + text = "kalgra05.m2", fileId = "218929", text = "kalgra05.m2", }, { value = "lakgra01.m2", + text = "lakgra01.m2", fileId = "218932", text = "lakgra01.m2", }, { value = "lakgra02.m2", + text = "lakgra02.m2", fileId = "218933", text = "lakgra02.m2", }, { value = "lakgra03.m2", + text = "lakgra03.m2", fileId = "218934", text = "lakgra03.m2", }, { value = "lakgra04.m2", + text = "lakgra04.m2", fileId = "218935", text = "lakgra04.m2", }, { value = "lakgra05.m2", + text = "lakgra05.m2", fileId = "218936", text = "lakgra05.m2", }, { value = "lakgra06.m2", + text = "lakgra06.m2", fileId = "218937", text = "lakgra06.m2", }, { value = "lakgra07.m2", + text = "lakgra07.m2", fileId = "218938", text = "lakgra07.m2", }, { value = "lchbus01.m2", + text = "lchbus01.m2", fileId = "218939", text = "lchbus01.m2", }, { value = "lchflo01.m2", + text = "lchflo01.m2", fileId = "218940", text = "lchflo01.m2", }, { value = "lchflo02.m2", + text = "lchflo02.m2", fileId = "218941", text = "lchflo02.m2", }, { value = "lchflo03.m2", + text = "lchflo03.m2", fileId = "218942", text = "lchflo03.m2", }, { value = "lchflo04.m2", + text = "lchflo04.m2", fileId = "218943", text = "lchflo04.m2", }, { value = "lchflo05.m2", + text = "lchflo05.m2", fileId = "218944", text = "lchflo05.m2", }, { value = "lchflo06.m2", + text = "lchflo06.m2", fileId = "218945", text = "lchflo06.m2", }, { value = "lchflo07.m2", + text = "lchflo07.m2", fileId = "218946", text = "lchflo07.m2", }, { value = "lchflo08.m2", + text = "lchflo08.m2", fileId = "218947", text = "lchflo08.m2", }, { value = "lchflo09.m2", + text = "lchflo09.m2", fileId = "218948", text = "lchflo09.m2", }, { value = "lchgra01.m2", + text = "lchgra01.m2", fileId = "218949", text = "lchgra01.m2", }, { value = "lchgra02.m2", + text = "lchgra02.m2", fileId = "218950", text = "lchgra02.m2", }, { value = "lchgra03.m2", + text = "lchgra03.m2", fileId = "218951", text = "lchgra03.m2", }, { value = "lchroc01.m2", + text = "lchroc01.m2", fileId = "218952", text = "lchroc01.m2", }, { value = "lchroc02.m2", + text = "lchroc02.m2", fileId = "218953", text = "lchroc02.m2", }, { value = "lchroc03.m2", + text = "lchroc03.m2", fileId = "218954", text = "lchroc03.m2", }, { value = "lchroc04.m2", + text = "lchroc04.m2", fileId = "218955", text = "lchroc04.m2", }, { value = "mulbus01.m2", + text = "mulbus01.m2", fileId = "218957", text = "mulbus01.m2", }, { value = "mulbus02.m2", + text = "mulbus02.m2", fileId = "218958", text = "mulbus02.m2", }, { value = "mulbus03.m2", + text = "mulbus03.m2", fileId = "218959", text = "mulbus03.m2", }, { value = "mulbus04.m2", + text = "mulbus04.m2", fileId = "218960", text = "mulbus04.m2", }, { value = "mulflo01.m2", + text = "mulflo01.m2", fileId = "218961", text = "mulflo01.m2", }, { value = "mulgra01.m2", + text = "mulgra01.m2", fileId = "218962", text = "mulgra01.m2", }, { value = "mulgra02.m2", + text = "mulgra02.m2", fileId = "218963", text = "mulgra02.m2", }, { value = "mulgra03.m2", + text = "mulgra03.m2", fileId = "218964", text = "mulgra03.m2", }, { value = "mulgra04.m2", + text = "mulgra04.m2", fileId = "218965", text = "mulgra04.m2", }, { value = "mulgra05.m2", + text = "mulgra05.m2", fileId = "218966", text = "mulgra05.m2", }, { value = "mulgra06.m2", + text = "mulgra06.m2", fileId = "218967", text = "mulgra06.m2", }, { value = "mulroc01.m2", + text = "mulroc01.m2", fileId = "218969", text = "mulroc01.m2", }, { value = "mulroc02.m2", + text = "mulroc02.m2", fileId = "218970", text = "mulroc02.m2", }, { value = "plaguelandsfun01.m2", + text = "plaguelandsfun01.m2", fileId = "218984", text = "plaguelandsfun01.m2", }, { value = "plaguelandsfun02.m2", + text = "plaguelandsfun02.m2", fileId = "218985", text = "plaguelandsfun02.m2", }, { value = "plaguelandsgra01.m2", + text = "plaguelandsgra01.m2", fileId = "218986", text = "plaguelandsgra01.m2", }, { value = "plaguelandsgra02.m2", + text = "plaguelandsgra02.m2", fileId = "218987", text = "plaguelandsgra02.m2", }, { value = "plaguelandsmus01.m2", + text = "plaguelandsmus01.m2", fileId = "218988", text = "plaguelandsmus01.m2", }, { value = "plaguelandsmus02.m2", + text = "plaguelandsmus02.m2", fileId = "218989", text = "plaguelandsmus02.m2", }, { value = "plaguelandspla01.m2", + text = "plaguelandspla01.m2", fileId = "218990", text = "plaguelandspla01.m2", }, { value = "plaguelandspla02.m2", + text = "plaguelandspla02.m2", fileId = "218991", text = "plaguelandspla02.m2", }, { value = "plaguelandsroc01.m2", + text = "plaguelandsroc01.m2", fileId = "218992", text = "plaguelandsroc01.m2", }, { value = "plaguelandsspo01.m2", + text = "plaguelandsspo01.m2", fileId = "218993", text = "plaguelandsspo01.m2", }, { value = "redbus01.m2", + text = "redbus01.m2", fileId = "218994", text = "redbus01.m2", }, { value = "redbus02.m2", + text = "redbus02.m2", fileId = "218995", text = "redbus02.m2", }, { value = "redbus03.m2", + text = "redbus03.m2", fileId = "218996", text = "redbus03.m2", }, { value = "redflo01.m2", + text = "redflo01.m2", fileId = "218997", text = "redflo01.m2", }, { value = "redflo02.m2", + text = "redflo02.m2", fileId = "218998", text = "redflo02.m2", }, { value = "redflo03.m2", + text = "redflo03.m2", fileId = "218999", text = "redflo03.m2", }, { value = "redflo04.m2", + text = "redflo04.m2", fileId = "219000", text = "redflo04.m2", }, { value = "redgra01.m2", + text = "redgra01.m2", fileId = "219001", text = "redgra01.m2", }, { value = "redgra02.m2", + text = "redgra02.m2", fileId = "219002", text = "redgra02.m2", }, { value = "redroc01.m2", + text = "redroc01.m2", fileId = "219004", text = "redroc01.m2", }, { value = "redroc02.m2", + text = "redroc02.m2", fileId = "219005", text = "redroc02.m2", }, { value = "sivbus01.m2", + text = "sivbus01.m2", fileId = "219018", text = "sivbus01.m2", }, { value = "sivbus02.m2", + text = "sivbus02.m2", fileId = "219019", text = "sivbus02.m2", }, { value = "sivcon01.m2", + text = "sivcon01.m2", fileId = "219020", text = "sivcon01.m2", }, { value = "sivcon02.m2", + text = "sivcon02.m2", fileId = "219021", text = "sivcon02.m2", }, { value = "sivflo01.m2", + text = "sivflo01.m2", fileId = "219022", text = "sivflo01.m2", }, { value = "sivflo02.m2", + text = "sivflo02.m2", fileId = "219023", text = "sivflo02.m2", }, { value = "sivflo03.m2", + text = "sivflo03.m2", fileId = "219024", text = "sivflo03.m2", }, { value = "sivgra01.m2", + text = "sivgra01.m2", fileId = "219025", text = "sivgra01.m2", }, { value = "sivroc01.m2", + text = "sivroc01.m2", fileId = "219026", text = "sivroc01.m2", }, { value = "sivroc02.m2", + text = "sivroc02.m2", fileId = "219027", text = "sivroc02.m2", }, { value = "sivsap01.m2", + text = "sivsap01.m2", fileId = "219028", text = "sivsap01.m2", }, { value = "sivtho01.m2", + text = "sivtho01.m2", fileId = "219029", text = "sivtho01.m2", }, { value = "sivtho02.m2", + text = "sivtho02.m2", fileId = "219030", text = "sivtho02.m2", }, { value = "sivtho03.m2", + text = "sivtho03.m2", fileId = "219031", text = "sivtho03.m2", }, { value = "sivtho04.m2", + text = "sivtho04.m2", fileId = "219032", text = "sivtho04.m2", }, { value = "sivtho05.m2", + text = "sivtho05.m2", fileId = "219033", text = "sivtho05.m2", }, { value = "sivvin01.m2", + text = "sivvin01.m2", fileId = "219034", text = "sivvin01.m2", }, { value = "sosbus01.m2", + text = "sosbus01.m2", fileId = "219051", text = "sosbus01.m2", }, { value = "sosbus02.m2", + text = "sosbus02.m2", fileId = "219052", text = "sosbus02.m2", }, { value = "sosbus03.m2", + text = "sosbus03.m2", fileId = "219053", text = "sosbus03.m2", }, { value = "sosbus04.m2", + text = "sosbus04.m2", fileId = "219054", text = "sosbus04.m2", }, { value = "sosbus05.m2", + text = "sosbus05.m2", fileId = "219055", text = "sosbus05.m2", }, { value = "sosflo01.m2", + text = "sosflo01.m2", fileId = "219056", text = "sosflo01.m2", }, { value = "sosflo02.m2", + text = "sosflo02.m2", fileId = "219057", text = "sosflo02.m2", }, { value = "sosflo03.m2", + text = "sosflo03.m2", fileId = "219058", text = "sosflo03.m2", }, { value = "sosgra01.m2", + text = "sosgra01.m2", fileId = "219059", text = "sosgra01.m2", }, { value = "sosgra02.m2", + text = "sosgra02.m2", fileId = "219060", text = "sosgra02.m2", }, { value = "sosgra03.m2", + text = "sosgra03.m2", fileId = "219061", text = "sosgra03.m2", }, { value = "sosgra04.m2", + text = "sosgra04.m2", fileId = "219062", text = "sosgra04.m2", }, { value = "sosgra05.m2", + text = "sosgra05.m2", fileId = "219063", text = "sosgra05.m2", }, { value = "sosgra06.m2", + text = "sosgra06.m2", fileId = "219064", text = "sosgra06.m2", }, { value = "sosgra07.m2", + text = "sosgra07.m2", fileId = "219065", text = "sosgra07.m2", }, { value = "stlbus01.m2", + text = "stlbus01.m2", fileId = "219066", text = "stlbus01.m2", }, { value = "stlbus02.m2", + text = "stlbus02.m2", fileId = "219067", text = "stlbus02.m2", }, { value = "stlbus03.m2", + text = "stlbus03.m2", fileId = "219068", text = "stlbus03.m2", }, { value = "stlflo01.m2", + text = "stlflo01.m2", fileId = "219069", text = "stlflo01.m2", }, { value = "stlflo02.m2", + text = "stlflo02.m2", fileId = "219070", text = "stlflo02.m2", }, { value = "stlflo03.m2", + text = "stlflo03.m2", fileId = "219071", text = "stlflo03.m2", }, { value = "stlflo04.m2", + text = "stlflo04.m2", fileId = "219072", text = "stlflo04.m2", }, { value = "stlflo05.m2", + text = "stlflo05.m2", fileId = "219073", text = "stlflo05.m2", }, { value = "stlgra01.m2", + text = "stlgra01.m2", fileId = "219074", text = "stlgra01.m2", }, { value = "stlgra02.m2", + text = "stlgra02.m2", fileId = "219075", text = "stlgra02.m2", }, { value = "stlgra03.m2", + text = "stlgra03.m2", fileId = "219076", text = "stlgra03.m2", }, { value = "stlroc01.m2", + text = "stlroc01.m2", fileId = "219077", text = "stlroc01.m2", }, { value = "stlroc02.m2", + text = "stlroc02.m2", fileId = "219078", text = "stlroc02.m2", }, { value = "stmbra01.m2", + text = "stmbra01.m2", fileId = "219079", text = "stmbra01.m2", }, { value = "stmbra02.m2", + text = "stmbra02.m2", fileId = "219080", text = "stmbra02.m2", }, { value = "stmbra03.m2", + text = "stmbra03.m2", fileId = "219081", text = "stmbra03.m2", }, { value = "stmbra04.m2", + text = "stmbra04.m2", fileId = "219082", text = "stmbra04.m2", }, { value = "stmgra01.m2", + text = "stmgra01.m2", fileId = "219083", text = "stmgra01.m2", }, { value = "stmgra02.m2", + text = "stmgra02.m2", fileId = "219084", text = "stmgra02.m2", }, { value = "stmgra03.m2", + text = "stmgra03.m2", fileId = "219085", text = "stmgra03.m2", }, { value = "stmgra04.m2", + text = "stmgra04.m2", fileId = "219086", text = "stmgra04.m2", }, { value = "stmgra05.m2", + text = "stmgra05.m2", fileId = "219087", text = "stmgra05.m2", }, { value = "tifbus01.m2", + text = "tifbus01.m2", fileId = "219093", text = "tifbus01.m2", }, { value = "tifbus02.m2", + text = "tifbus02.m2", fileId = "219094", text = "tifbus02.m2", }, { value = "tifcon01.m2", + text = "tifcon01.m2", fileId = "219095", text = "tifcon01.m2", }, { value = "tifcon02.m2", + text = "tifcon02.m2", fileId = "219096", text = "tifcon02.m2", }, { value = "tifgra01.m2", + text = "tifgra01.m2", fileId = "219097", text = "tifgra01.m2", }, { value = "tifpla01.m2", + text = "tifpla01.m2", fileId = "219098", text = "tifpla01.m2", }, { value = "tifroc01.m2", + text = "tifroc01.m2", fileId = "219099", text = "tifroc01.m2", }, { value = "tifroc02.m2", + text = "tifroc02.m2", fileId = "219100", text = "tifroc02.m2", }, { value = "tifsap01.m2", + text = "tifsap01.m2", fileId = "219101", text = "tifsap01.m2", }, { value = "tifshl01.m2", + text = "tifshl01.m2", fileId = "219102", text = "tifshl01.m2", }, { value = "tifshl02.m2", + text = "tifshl02.m2", fileId = "219103", text = "tifshl02.m2", }, { value = "tifshl03.m2", + text = "tifshl03.m2", fileId = "219104", text = "tifshl03.m2", }, { value = "tiftho01.m2", + text = "tiftho01.m2", fileId = "219105", text = "tiftho01.m2", }, { value = "tiftho02.m2", + text = "tiftho02.m2", fileId = "219106", text = "tiftho02.m2", }, { value = "tiftho03.m2", + text = "tiftho03.m2", fileId = "219107", text = "tiftho03.m2", }, { value = "tiftho04.m2", + text = "tiftho04.m2", fileId = "219108", text = "tiftho04.m2", }, { value = "ungbun01.m2", + text = "ungbun01.m2", fileId = "219124", text = "ungbun01.m2", }, { value = "ungbun02.m2", + text = "ungbun02.m2", fileId = "219125", text = "ungbun02.m2", }, { value = "ungbun03.m2", + text = "ungbun03.m2", fileId = "219126", text = "ungbun03.m2", }, { value = "ungflo01.m2", + text = "ungflo01.m2", fileId = "219127", text = "ungflo01.m2", }, { value = "ungflo02.m2", + text = "ungflo02.m2", fileId = "219128", text = "ungflo02.m2", }, { value = "unggra01.m2", + text = "unggra01.m2", fileId = "219129", text = "unggra01.m2", }, { value = "unggra02.m2", + text = "unggra02.m2", fileId = "219130", text = "unggra02.m2", }, { value = "unggra03.m2", + text = "unggra03.m2", fileId = "219131", text = "unggra03.m2", }, { value = "unggra04.m2", + text = "unggra04.m2", fileId = "219132", text = "unggra04.m2", }, { value = "unggra05.m2", + text = "unggra05.m2", fileId = "219133", text = "unggra05.m2", }, { value = "unggra06.m2", + text = "unggra06.m2", fileId = "219134", text = "unggra06.m2", }, { value = "unggra07.m2", + text = "unggra07.m2", fileId = "219135", text = "unggra07.m2", }, { value = "unggra08.m2", + text = "unggra08.m2", fileId = "219136", text = "unggra08.m2", }, { value = "unwcor01.m2", + text = "unwcor01.m2", fileId = "219138", text = "unwcor01.m2", }, { value = "unwcor02.m2", + text = "unwcor02.m2", fileId = "219139", text = "unwcor02.m2", }, { value = "unwcor03.m2", + text = "unwcor03.m2", fileId = "219140", text = "unwcor03.m2", }, { value = "unwcor04.m2", + text = "unwcor04.m2", fileId = "219141", text = "unwcor04.m2", }, { value = "unwcor05.m2", + text = "unwcor05.m2", fileId = "219142", text = "unwcor05.m2", }, { value = "unwcor06.m2", + text = "unwcor06.m2", fileId = "219143", text = "unwcor06.m2", }, { value = "unwcor07.m2", + text = "unwcor07.m2", fileId = "219144", text = "unwcor07.m2", }, { value = "unwcor08.m2", + text = "unwcor08.m2", fileId = "219145", text = "unwcor08.m2", }, { value = "unwcor09.m2", + text = "unwcor09.m2", fileId = "219146", text = "unwcor09.m2", }, { value = "unwgra01.m2", + text = "unwgra01.m2", fileId = "219147", text = "unwgra01.m2", }, { value = "unwgra02.m2", + text = "unwgra02.m2", fileId = "219148", text = "unwgra02.m2", }, { value = "unwgra03.m2", + text = "unwgra03.m2", fileId = "219149", text = "unwgra03.m2", }, { value = "unwshl01.m2", + text = "unwshl01.m2", fileId = "219150", text = "unwshl01.m2", }, { value = "unwshl02.m2", + text = "unwshl02.m2", fileId = "219151", text = "unwshl02.m2", }, { value = "wesbus01.m2", + text = "wesbus01.m2", fileId = "219152", text = "wesbus01.m2", }, { value = "wesbus02.m2", + text = "wesbus02.m2", fileId = "219153", text = "wesbus02.m2", }, { value = "wesbus03.m2", + text = "wesbus03.m2", fileId = "219154", text = "wesbus03.m2", }, { value = "wesflo01.m2", + text = "wesflo01.m2", fileId = "219155", text = "wesflo01.m2", }, { value = "wesgra01.m2", + text = "wesgra01.m2", fileId = "219156", text = "wesgra01.m2", }, { value = "wesgra02.m2", + text = "wesgra02.m2", fileId = "219157", text = "wesgra02.m2", }, { value = "wesgra03.m2", + text = "wesgra03.m2", fileId = "219158", text = "wesgra03.m2", }, { value = "wesgra04.m2", + text = "wesgra04.m2", fileId = "219159", text = "wesgra04.m2", }, { value = "wesroc01.m2", + text = "wesroc01.m2", fileId = "219160", text = "wesroc01.m2", }, { value = "wesroc02.m2", + text = "wesroc02.m2", fileId = "219161", text = "wesroc02.m2", }, { value = "wesshe01.m2", + text = "wesshe01.m2", fileId = "219162", text = "wesshe01.m2", }, { value = "wesshe02.m2", + text = "wesshe02.m2", fileId = "219163", text = "wesshe02.m2", }, { value = "wesshe03.m2", + text = "wesshe03.m2", fileId = "219164", text = "wesshe03.m2", }, { value = "weswea01.m2", + text = "weswea01.m2", fileId = "219166", text = "weswea01.m2", }, { value = "weswea02.m2", + text = "weswea02.m2", fileId = "219167", text = "weswea02.m2", }, { value = "weswea03.m2", + text = "weswea03.m2", fileId = "219168", text = "weswea03.m2", }, { value = "weswea04.m2", + text = "weswea04.m2", fileId = "219169", text = "weswea04.m2", }, { value = "wetbus01.m2", + text = "wetbus01.m2", fileId = "219170", text = "wetbus01.m2", }, { value = "wetbus02.m2", + text = "wetbus02.m2", fileId = "219171", text = "wetbus02.m2", }, { value = "wetbus03.m2", + text = "wetbus03.m2", fileId = "219172", text = "wetbus03.m2", }, { value = "wetflo01.m2", + text = "wetflo01.m2", fileId = "219173", text = "wetflo01.m2", }, { value = "wetflo02.m2", + text = "wetflo02.m2", fileId = "219174", text = "wetflo02.m2", }, { value = "wetflo03.m2", + text = "wetflo03.m2", fileId = "219175", text = "wetflo03.m2", }, { value = "wetflo04.m2", + text = "wetflo04.m2", fileId = "219176", text = "wetflo04.m2", }, { value = "wetflo05.m2", + text = "wetflo05.m2", fileId = "219177", text = "wetflo05.m2", }, { value = "wetgra01.m2", + text = "wetgra01.m2", fileId = "219178", text = "wetgra01.m2", }, { value = "wetgra02.m2", + text = "wetgra02.m2", fileId = "219179", text = "wetgra02.m2", }, { value = "wetgra03.m2", + text = "wetgra03.m2", fileId = "219180", text = "wetgra03.m2", }, @@ -59835,70 +71405,85 @@ WeakAuras.ModelPaths = { }, { value = "generic", + text = "generic", children = { { value = "passivedoodads", + text = "passivedoodads", children = { { value = "volumetriclights", + text = "volumetriclights", children = { { value = "ahnqiraj_lightshaft.m2", + text = "ahnqiraj_lightshaft.m2", fileId = "219204", text = "ahnqiraj_lightshaft.m2", }, { value = "cot_lightshafta.m2", + text = "cot_lightshafta.m2", fileId = "219205", text = "cot_lightshafta.m2", }, { value = "darnassislightshaft.m2", + text = "darnassislightshaft.m2", fileId = "219207", text = "darnassislightshaft.m2", }, { value = "karazahndiningrays.m2", + text = "karazahndiningrays.m2", fileId = "219209", text = "karazahndiningrays.m2", }, { value = "ld_lightshaft01.m2", + text = "ld_lightshaft01.m2", fileId = "219210", text = "ld_lightshaft01.m2", }, { value = "ld_lightshaft02.m2", + text = "ld_lightshaft02.m2", fileId = "219211", text = "ld_lightshaft02.m2", }, { value = "lightshafta.m2", + text = "lightshafta.m2", fileId = "219220", text = "lightshafta.m2", }, { value = "lightshaftb.m2", + text = "lightshaftb.m2", fileId = "219221", text = "lightshaftb.m2", }, { value = "lightshaftc.m2", + text = "lightshaftc.m2", fileId = "219222", text = "lightshaftc.m2", }, { value = "lightshaftthorns.m2", + text = "lightshaftthorns.m2", fileId = "219224", text = "lightshaftthorns.m2", }, { value = "st_lightshaft.m2", + text = "st_lightshaft.m2", fileId = "219225", text = "st_lightshaft.m2", }, { value = "uthershrinelightbeam.m2", + text = "uthershrinelightbeam.m2", fileId = "219226", text = "uthershrinelightbeam.m2", }, @@ -59916,25 +71501,31 @@ WeakAuras.ModelPaths = { }, { value = "outland", + text = "outland", children = { { value = "passivedoodads", + text = "passivedoodads", children = { { value = "bladethrower", + text = "bladethrower", children = { { value = "bladethrowerruined01.m2", + text = "bladethrowerruined01.m2", fileId = "219227", text = "bladethrowerruined01.m2", }, { value = "orcblade.m2", + text = "orcblade.m2", fileId = "219229", text = "orcblade.m2", }, { value = "orcbladethrower.m2", + text = "orcbladethrower.m2", fileId = "219230", text = "orcbladethrower.m2", }, @@ -59943,14 +71534,17 @@ WeakAuras.ModelPaths = { }, { value = "caltrop01.m2", + text = "caltrop01.m2", fileId = "219236", text = "caltrop01.m2", }, { value = "campfire", + text = "campfire", children = { { value = "outlanddeadcampfire.m2", + text = "outlanddeadcampfire.m2", fileId = "219237", text = "outlanddeadcampfire.m2", }, @@ -59959,9 +71553,11 @@ WeakAuras.ModelPaths = { }, { value = "dam", + text = "dam", children = { { value = "outland_bone_dam.m2", + text = "outland_bone_dam.m2", fileId = "219239", text = "outland_bone_dam.m2", }, @@ -59970,9 +71566,11 @@ WeakAuras.ModelPaths = { }, { value = "deaddemon", + text = "deaddemon", children = { { value = "outland_dead_demon.m2", + text = "outland_dead_demon.m2", fileId = "219241", text = "outland_dead_demon.m2", }, @@ -59981,9 +71579,11 @@ WeakAuras.ModelPaths = { }, { value = "floatingrubble", + text = "floatingrubble", children = { { value = "outlandtowerfloatingrubble.m2", + text = "outlandtowerfloatingrubble.m2", fileId = "219245", text = "outlandtowerfloatingrubble.m2", }, @@ -59992,9 +71592,11 @@ WeakAuras.ModelPaths = { }, { value = "hangingcrystals", + text = "hangingcrystals", children = { { value = "outlandhangingcrystal01.m2", + text = "outlandhangingcrystal01.m2", fileId = "219248", text = "outlandhangingcrystal01.m2", }, @@ -60003,9 +71605,11 @@ WeakAuras.ModelPaths = { }, { value = "monument", + text = "monument", children = { { value = "outlandmonolith.m2", + text = "outlandmonolith.m2", fileId = "219250", text = "outlandmonolith.m2", }, @@ -60014,24 +71618,29 @@ WeakAuras.ModelPaths = { }, { value = "mushrooms", + text = "mushrooms", children = { { value = "outland_big_shroom01.m2", + text = "outland_big_shroom01.m2", fileId = "219254", text = "outland_big_shroom01.m2", }, { value = "outland_big_shroom02.m2", + text = "outland_big_shroom02.m2", fileId = "219255", text = "outland_big_shroom02.m2", }, { value = "outland_floating_shroom01.m2", + text = "outland_floating_shroom01.m2", fileId = "219256", text = "outland_floating_shroom01.m2", }, { value = "outland_floating_shroom02.m2", + text = "outland_floating_shroom02.m2", fileId = "219257", text = "outland_floating_shroom02.m2", }, @@ -60040,34 +71649,41 @@ WeakAuras.ModelPaths = { }, { value = "plants", + text = "plants", children = { { value = "outlandplant01.m2", + text = "outlandplant01.m2", fileId = "219264", text = "outlandplant01.m2", }, { value = "outlandplant02.m2", + text = "outlandplant02.m2", fileId = "219265", text = "outlandplant02.m2", }, { value = "outlandplant03.m2", + text = "outlandplant03.m2", fileId = "219266", text = "outlandplant03.m2", }, { value = "outlandplant04.m2", + text = "outlandplant04.m2", fileId = "219267", text = "outlandplant04.m2", }, { value = "outlandplant05.m2", + text = "outlandplant05.m2", fileId = "219268", text = "outlandplant05.m2", }, { value = "outlandplant06.m2", + text = "outlandplant06.m2", fileId = "219269", text = "outlandplant06.m2", }, @@ -60076,94 +71692,113 @@ WeakAuras.ModelPaths = { }, { value = "rocks", + text = "rocks", children = { { value = "floatingrocklarge01.m2", + text = "floatingrocklarge01.m2", fileId = "219276", text = "floatingrocklarge01.m2", }, { value = "floatingrocklarge02.m2", + text = "floatingrocklarge02.m2", fileId = "219277", text = "floatingrocklarge02.m2", }, { value = "floatingrocklarge03.m2", + text = "floatingrocklarge03.m2", fileId = "219278", text = "floatingrocklarge03.m2", }, { value = "floatingrockmedium01.m2", + text = "floatingrockmedium01.m2", fileId = "219279", text = "floatingrockmedium01.m2", }, { value = "floatingrockmedium02.m2", + text = "floatingrockmedium02.m2", fileId = "219280", text = "floatingrockmedium02.m2", }, { value = "floatingrockmedium03.m2", + text = "floatingrockmedium03.m2", fileId = "219281", text = "floatingrockmedium03.m2", }, { value = "floatingrocksmall01.m2", + text = "floatingrocksmall01.m2", fileId = "219282", text = "floatingrocksmall01.m2", }, { value = "floatingrocksmall02.m2", + text = "floatingrocksmall02.m2", fileId = "219283", text = "floatingrocksmall02.m2", }, { value = "floatingrocksmall03.m2", + text = "floatingrocksmall03.m2", fileId = "219284", text = "floatingrocksmall03.m2", }, { value = "outlandalienrock01.m2", + text = "outlandalienrock01.m2", fileId = "219286", text = "outlandalienrock01.m2", }, { value = "outlandalienrock02.m2", + text = "outlandalienrock02.m2", fileId = "219287", text = "outlandalienrock02.m2", }, { value = "outlandalienrock03.m2", + text = "outlandalienrock03.m2", fileId = "219288", text = "outlandalienrock03.m2", }, { value = "outlandalienrock04.m2", + text = "outlandalienrock04.m2", fileId = "219289", text = "outlandalienrock04.m2", }, { value = "outlandalienrock05.m2", + text = "outlandalienrock05.m2", fileId = "219290", text = "outlandalienrock05.m2", }, { value = "outlandspookyrock01.m2", + text = "outlandspookyrock01.m2", fileId = "219291", text = "outlandspookyrock01.m2", }, { value = "outlandspookyrock02.m2", + text = "outlandspookyrock02.m2", fileId = "219292", text = "outlandspookyrock02.m2", }, { value = "outlandspookyrock03.m2", + text = "outlandspookyrock03.m2", fileId = "219293", text = "outlandspookyrock03.m2", }, { value = "outlandspookyrock04.m2", + text = "outlandspookyrock04.m2", fileId = "219294", text = "outlandspookyrock04.m2", }, @@ -60172,19 +71807,23 @@ WeakAuras.ModelPaths = { }, { value = "roots", + text = "roots", children = { { value = "outlandroot01.m2", + text = "outlandroot01.m2", fileId = "219299", text = "outlandroot01.m2", }, { value = "outlandroot02.m2", + text = "outlandroot02.m2", fileId = "219300", text = "outlandroot02.m2", }, { value = "outlandroot03.m2", + text = "outlandroot03.m2", fileId = "219301", text = "outlandroot03.m2", }, @@ -60193,29 +71832,35 @@ WeakAuras.ModelPaths = { }, { value = "rubble", + text = "rubble", children = { { value = "outlandrubble01.m2", + text = "outlandrubble01.m2", fileId = "219303", text = "outlandrubble01.m2", }, { value = "outlandrubble02.m2", + text = "outlandrubble02.m2", fileId = "219304", text = "outlandrubble02.m2", }, { value = "outlandrubble03.m2", + text = "outlandrubble03.m2", fileId = "219305", text = "outlandrubble03.m2", }, { value = "outlandrubble04.m2", + text = "outlandrubble04.m2", fileId = "219306", text = "outlandrubble04.m2", }, { value = "outlandrubble05.m2", + text = "outlandrubble05.m2", fileId = "219307", text = "outlandrubble05.m2", }, @@ -60224,9 +71869,11 @@ WeakAuras.ModelPaths = { }, { value = "skybox", + text = "skybox", children = { { value = "outlandskybox.m2", + text = "outlandskybox.m2", fileId = "219309", text = "outlandskybox.m2", }, @@ -60235,19 +71882,23 @@ WeakAuras.ModelPaths = { }, { value = "tankparts", + text = "tankparts", children = { { value = "humantankcannon.m2", + text = "humantankcannon.m2", fileId = "219313", text = "humantankcannon.m2", }, { value = "humantanktower.m2", + text = "humantanktower.m2", fileId = "219314", text = "humantanktower.m2", }, { value = "humantankwheel.m2", + text = "humantankwheel.m2", fileId = "219315", text = "humantankwheel.m2", }, @@ -60256,39 +71907,47 @@ WeakAuras.ModelPaths = { }, { value = "thorns", + text = "thorns", children = { { value = "outlandthorn01.m2", + text = "outlandthorn01.m2", fileId = "219318", text = "outlandthorn01.m2", }, { value = "outlandthorn02.m2", + text = "outlandthorn02.m2", fileId = "219319", text = "outlandthorn02.m2", }, { value = "outlandthorn03.m2", + text = "outlandthorn03.m2", fileId = "219320", text = "outlandthorn03.m2", }, { value = "outlandthorn04.m2", + text = "outlandthorn04.m2", fileId = "219321", text = "outlandthorn04.m2", }, { value = "outlandthorn05.m2", + text = "outlandthorn05.m2", fileId = "219322", text = "outlandthorn05.m2", }, { value = "outlandthorn06.m2", + text = "outlandthorn06.m2", fileId = "219323", text = "outlandthorn06.m2", }, { value = "outlandthorn07.m2", + text = "outlandthorn07.m2", fileId = "219324", text = "outlandthorn07.m2", }, @@ -60297,119 +71956,143 @@ WeakAuras.ModelPaths = { }, { value = "trees", + text = "trees", children = { { value = "outlandaloetree01.m2", + text = "outlandaloetree01.m2", fileId = "219330", text = "outlandaloetree01.m2", }, { value = "outlandaloetree02.m2", + text = "outlandaloetree02.m2", fileId = "219331", text = "outlandaloetree02.m2", }, { value = "outlandaloetree03.m2", + text = "outlandaloetree03.m2", fileId = "219332", text = "outlandaloetree03.m2", }, { value = "outlandburnttree01.m2", + text = "outlandburnttree01.m2", fileId = "219333", text = "outlandburnttree01.m2", }, { value = "outlandburnttree02.m2", + text = "outlandburnttree02.m2", fileId = "219334", text = "outlandburnttree02.m2", }, { value = "outlandburnttree03.m2", + text = "outlandburnttree03.m2", fileId = "219335", text = "outlandburnttree03.m2", }, { value = "outlandburnttree04.m2", + text = "outlandburnttree04.m2", fileId = "219336", text = "outlandburnttree04.m2", }, { value = "outlandfloatingtree01.m2", + text = "outlandfloatingtree01.m2", fileId = "219337", text = "outlandfloatingtree01.m2", }, { value = "outlandfloatingtree02.m2", + text = "outlandfloatingtree02.m2", fileId = "219338", text = "outlandfloatingtree02.m2", }, { value = "outlandfloatingtree03.m2", + text = "outlandfloatingtree03.m2", fileId = "219339", text = "outlandfloatingtree03.m2", }, { value = "outlandtreestump01.m2", + text = "outlandtreestump01.m2", fileId = "219341", text = "outlandtreestump01.m2", }, { value = "outlandtreestump02.m2", + text = "outlandtreestump02.m2", fileId = "219342", text = "outlandtreestump02.m2", }, { value = "outlandtreestump03.m2", + text = "outlandtreestump03.m2", fileId = "219343", text = "outlandtreestump03.m2", }, { value = "outlandumbrellatree01.m2", + text = "outlandumbrellatree01.m2", fileId = "219344", text = "outlandumbrellatree01.m2", }, { value = "outlandumbrellatree02.m2", + text = "outlandumbrellatree02.m2", fileId = "219345", text = "outlandumbrellatree02.m2", }, { value = "outlandumbrellatree03.m2", + text = "outlandumbrellatree03.m2", fileId = "219346", text = "outlandumbrellatree03.m2", }, { value = "outlandumbrellatree04.m2", + text = "outlandumbrellatree04.m2", fileId = "219347", text = "outlandumbrellatree04.m2", }, { value = "outlandumbrellatree05.m2", + text = "outlandumbrellatree05.m2", fileId = "219348", text = "outlandumbrellatree05.m2", }, { value = "outlandumbrellatree06.m2", + text = "outlandumbrellatree06.m2", fileId = "219349", text = "outlandumbrellatree06.m2", }, { value = "outlandumbrellatree07.m2", + text = "outlandumbrellatree07.m2", fileId = "219350", text = "outlandumbrellatree07.m2", }, { value = "outlandumbrellatree08.m2", + text = "outlandumbrellatree08.m2", fileId = "219351", text = "outlandumbrellatree08.m2", }, { value = "outlandumbrellatree09.m2", + text = "outlandumbrellatree09.m2", fileId = "219352", text = "outlandumbrellatree09.m2", }, { value = "outlandumbrellatree10.m2", + text = "outlandumbrellatree10.m2", fileId = "219353", text = "outlandumbrellatree10.m2", }, @@ -60424,34 +72107,41 @@ WeakAuras.ModelPaths = { }, { value = "scale", + text = "scale", children = { { value = "1000x1000.m2", + text = "1000x1000.m2", fileId = "219356", text = "1000x1000.m2", }, { value = "100x100.m2", + text = "100x100.m2", fileId = "219357", text = "100x100.m2", }, { value = "250x250.m2", + text = "250x250.m2", fileId = "219361", text = "250x250.m2", }, { value = "500x500.m2", + text = "500x500.m2", fileId = "219362", text = "500x500.m2", }, { value = "50x50.m2", + text = "50x50.m2", fileId = "219363", text = "50x50.m2", }, { value = "humanmalescale.m2", + text = "humanmalescale.m2", fileId = "219368", text = "humanmalescale.m2", }, @@ -60460,12 +72150,15 @@ WeakAuras.ModelPaths = { }, { value = "skillactivated", + text = "skillactivated", children = { { value = "containers", + text = "containers", children = { { value = "treasurechest01.m2", + text = "treasurechest01.m2", fileId = "219372", text = "treasurechest01.m2", }, @@ -60474,94 +72167,113 @@ WeakAuras.ModelPaths = { }, { value = "tradeskillenablers", + text = "tradeskillenablers", children = { { value = "blacksmithforge.m2", + text = "blacksmithforge.m2", fileId = "219378", text = "blacksmithforge.m2", }, { value = "engineering_autolathe_01.m2", + text = "engineering_autolathe_01.m2", fileId = "219382", text = "engineering_autolathe_01.m2", }, { value = "tradeskill_alchemyset_01.m2", + text = "tradeskill_alchemyset_01.m2", fileId = "219399", text = "tradeskill_alchemyset_01.m2", }, { value = "tradeskill_alchemyset_02.m2", + text = "tradeskill_alchemyset_02.m2", fileId = "219400", text = "tradeskill_alchemyset_02.m2", }, { value = "tradeskill_alchemyset_03.m2", + text = "tradeskill_alchemyset_03.m2", fileId = "219401", text = "tradeskill_alchemyset_03.m2", }, { value = "tradeskill_anvil_01.m2", + text = "tradeskill_anvil_01.m2", fileId = "219402", text = "tradeskill_anvil_01.m2", }, { value = "tradeskill_anvil_02.m2", + text = "tradeskill_anvil_02.m2", fileId = "219403", text = "tradeskill_anvil_02.m2", }, { value = "tradeskill_fishschool_01.m2", + text = "tradeskill_fishschool_01.m2", fileId = "219404", text = "tradeskill_fishschool_01.m2", }, { value = "tradeskill_fishschool_02.m2", + text = "tradeskill_fishschool_02.m2", fileId = "219405", text = "tradeskill_fishschool_02.m2", }, { value = "tradeskill_fishschool_03.m2", + text = "tradeskill_fishschool_03.m2", fileId = "219406", text = "tradeskill_fishschool_03.m2", }, { value = "tradeskill_fishschool_eelsyellow.m2", + text = "tradeskill_fishschool_eelsyellow.m2", fileId = "219407", text = "tradeskill_fishschool_eelsyellow.m2", }, { value = "tradeskill_fishschool_elementalfire.m2", + text = "tradeskill_fishschool_elementalfire.m2", fileId = "219408", text = "tradeskill_fishschool_elementalfire.m2", }, { value = "tradeskill_fishschool_elementalwater.m2", + text = "tradeskill_fishschool_elementalwater.m2", fileId = "219409", text = "tradeskill_fishschool_elementalwater.m2", }, { value = "tradeskill_fishschool_oil.m2", + text = "tradeskill_fishschool_oil.m2", fileId = "219410", text = "tradeskill_fishschool_oil.m2", }, { value = "tradeskill_fishschool_shipwreck.m2", + text = "tradeskill_fishschool_shipwreck.m2", fileId = "219411", text = "tradeskill_fishschool_shipwreck.m2", }, { value = "tradeskill_forge_01.m2", + text = "tradeskill_forge_01.m2", fileId = "219412", text = "tradeskill_forge_01.m2", }, { value = "tradeskill_forge_02.m2", + text = "tradeskill_forge_02.m2", fileId = "219413", text = "tradeskill_forge_02.m2", }, { value = "tradeskill_forge_03.m2", + text = "tradeskill_forge_03.m2", fileId = "219414", text = "tradeskill_forge_03.m2", }, @@ -60570,234 +72282,281 @@ WeakAuras.ModelPaths = { }, { value = "tradeskillnodes", + text = "tradeskillnodes", children = { { value = "bush_arthastears.m2", + text = "bush_arthastears.m2", fileId = "219436", text = "bush_arthastears.m2", }, { value = "bush_blacklotus.m2", + text = "bush_blacklotus.m2", fileId = "219437", text = "bush_blacklotus.m2", }, { value = "bush_blindweed.m2", + text = "bush_blindweed.m2", fileId = "219438", text = "bush_blindweed.m2", }, { value = "bush_bruiseweed01.m2", + text = "bush_bruiseweed01.m2", fileId = "219440", text = "bush_bruiseweed01.m2", }, { value = "bush_crownroyal01.m2", + text = "bush_crownroyal01.m2", fileId = "219443", text = "bush_crownroyal01.m2", }, { value = "bush_dreamfoil.m2", + text = "bush_dreamfoil.m2", fileId = "219444", text = "bush_dreamfoil.m2", }, { value = "bush_fadeleaf01.m2", + text = "bush_fadeleaf01.m2", fileId = "219449", text = "bush_fadeleaf01.m2", }, { value = "bush_firebloom.m2", + text = "bush_firebloom.m2", fileId = "219452", text = "bush_firebloom.m2", }, { value = "bush_goldthorn01.m2", + text = "bush_goldthorn01.m2", fileId = "219462", text = "bush_goldthorn01.m2", }, { value = "bush_gravemoss01.m2", + text = "bush_gravemoss01.m2", fileId = "219463", text = "bush_gravemoss01.m2", }, { value = "bush_gromsblood.m2", + text = "bush_gromsblood.m2", fileId = "219464", text = "bush_gromsblood.m2", }, { value = "bush_icecap.m2", + text = "bush_icecap.m2", fileId = "219465", text = "bush_icecap.m2", }, { value = "bush_khadgarswhisker01.m2", + text = "bush_khadgarswhisker01.m2", fileId = "219468", text = "bush_khadgarswhisker01.m2", }, { value = "bush_liferoot01.m2", + text = "bush_liferoot01.m2", fileId = "219469", text = "bush_liferoot01.m2", }, { value = "bush_magebloom01.m2", + text = "bush_magebloom01.m2", fileId = "219470", text = "bush_magebloom01.m2", }, { value = "bush_mountainsilversage.m2", + text = "bush_mountainsilversage.m2", fileId = "219473", text = "bush_mountainsilversage.m2", }, { value = "bush_mushroom01.m2", + text = "bush_mushroom01.m2", fileId = "219474", text = "bush_mushroom01.m2", }, { value = "bush_mushroom02.m2", + text = "bush_mushroom02.m2", fileId = "219475", text = "bush_mushroom02.m2", }, { value = "bush_mushroom03.m2", + text = "bush_mushroom03.m2", fileId = "219476", text = "bush_mushroom03.m2", }, { value = "bush_peacebloom01.m2", + text = "bush_peacebloom01.m2", fileId = "219481", text = "bush_peacebloom01.m2", }, { value = "bush_plaguebloom.m2", + text = "bush_plaguebloom.m2", fileId = "219482", text = "bush_plaguebloom.m2", }, { value = "bush_purplelotus.m2", + text = "bush_purplelotus.m2", fileId = "219483", text = "bush_purplelotus.m2", }, { value = "bush_sansam.m2", + text = "bush_sansam.m2", fileId = "219486", text = "bush_sansam.m2", }, { value = "bush_silverleaf01.m2", + text = "bush_silverleaf01.m2", fileId = "219487", text = "bush_silverleaf01.m2", }, { value = "bush_snakebloom01.m2", + text = "bush_snakebloom01.m2", fileId = "219488", text = "bush_snakebloom01.m2", }, { value = "bush_snakeroot.m2", + text = "bush_snakeroot.m2", fileId = "219489", text = "bush_snakeroot.m2", }, { value = "bush_stardust.m2", + text = "bush_stardust.m2", fileId = "219493", text = "bush_stardust.m2", }, { value = "bush_steelbloom01.m2", + text = "bush_steelbloom01.m2", fileId = "219494", text = "bush_steelbloom01.m2", }, { value = "bush_stranglekelp01.m2", + text = "bush_stranglekelp01.m2", fileId = "219495", text = "bush_stranglekelp01.m2", }, { value = "bush_sungrass.m2", + text = "bush_sungrass.m2", fileId = "219496", text = "bush_sungrass.m2", }, { value = "bush_swiftthistle01.m2", + text = "bush_swiftthistle01.m2", fileId = "219497", text = "bush_swiftthistle01.m2", }, { value = "bush_thornroot01.m2", + text = "bush_thornroot01.m2", fileId = "219502", text = "bush_thornroot01.m2", }, { value = "bush_wintersbite01.m2", + text = "bush_wintersbite01.m2", fileId = "219507", text = "bush_wintersbite01.m2", }, { value = "copper_miningnode_01.m2", + text = "copper_miningnode_01.m2", fileId = "219514", text = "copper_miningnode_01.m2", }, { value = "gold_miningnode_01.m2", + text = "gold_miningnode_01.m2", fileId = "219524", text = "gold_miningnode_01.m2", }, { value = "goldthorn_01.m2", + text = "goldthorn_01.m2", fileId = "219526", text = "goldthorn_01.m2", }, { value = "incendicite_miningnode_01.m2", + text = "incendicite_miningnode_01.m2", fileId = "219531", text = "incendicite_miningnode_01.m2", }, { value = "iron_miningnode_01.m2", + text = "iron_miningnode_01.m2", fileId = "219532", text = "iron_miningnode_01.m2", }, { value = "mithril_miningnode_01.m2", + text = "mithril_miningnode_01.m2", fileId = "219541", text = "mithril_miningnode_01.m2", }, { value = "obsidian_miningnode_01.m2", + text = "obsidian_miningnode_01.m2", fileId = "219544", text = "obsidian_miningnode_01.m2", }, { value = "richthorium_miningnode_01.m2", + text = "richthorium_miningnode_01.m2", fileId = "219550", text = "richthorium_miningnode_01.m2", }, { value = "silithid_miningnode_01.m2", + text = "silithid_miningnode_01.m2", fileId = "219553", text = "silithid_miningnode_01.m2", }, { value = "stranglekelp_01.m2", + text = "stranglekelp_01.m2", fileId = "219562", text = "stranglekelp_01.m2", }, { value = "thorium_miningnode_01.m2", + text = "thorium_miningnode_01.m2", fileId = "219566", text = "thorium_miningnode_01.m2", }, { value = "tin_miningnode_01.m2", + text = "tin_miningnode_01.m2", fileId = "219568", text = "tin_miningnode_01.m2", }, { value = "truesilver_miningnode_01.m2", + text = "truesilver_miningnode_01.m2", fileId = "219569", text = "truesilver_miningnode_01.m2", }, @@ -60809,15 +72568,19 @@ WeakAuras.ModelPaths = { }, { value = "wmo", + text = "wmo", children = { { value = "outland", + text = "outland", children = { { value = "darkportal", + text = "darkportal", children = { { value = "darkportalanim01.m2", + text = "darkportalanim01.m2", fileId = "219757", text = "darkportalanim01.m2", }, diff --git a/WeakAurasOptions/AceGUI-Widgets/AceGUIWidget-WeakAurasDisplayButton.lua b/WeakAurasOptions/AceGUI-Widgets/AceGUIWidget-WeakAurasDisplayButton.lua index 59d45acc46..4fa6c6feaf 100644 --- a/WeakAurasOptions/AceGUI-Widgets/AceGUIWidget-WeakAurasDisplayButton.lua +++ b/WeakAurasOptions/AceGUI-Widgets/AceGUIWidget-WeakAurasDisplayButton.lua @@ -774,12 +774,12 @@ local methods = { OptionsPrivate.Private.PauseAllDynamicGroups(); if(self.view.func() == 2) then - for index, childId in ipairs(data.controlledChildren) do - WeakAuras.GetDisplayButton(childId):PriorityHide(2); + for child in OptionsPrivate.Private.TraverseAllChildren(data) do + WeakAuras.GetDisplayButton(child.id):PriorityHide(2); end else - for index, childId in ipairs(data.controlledChildren) do - WeakAuras.GetDisplayButton(childId):PriorityShow(2); + for child in OptionsPrivate.Private.TraverseAllChildren(data) do + WeakAuras.GetDisplayButton(child.id):PriorityShow(2); end end @@ -788,8 +788,8 @@ local methods = { function self.callbacks.ViewTest() local none, all = true, true; - for index, childId in ipairs(data.controlledChildren) do - local childButton = WeakAuras.GetDisplayButton(childId); + for child in OptionsPrivate.Private.TraverseAllChildren(data) do + local childButton = WeakAuras.GetDisplayButton(child.id); if(childButton) then if(childButton:GetVisibility() ~= 2) then all = false; @@ -820,13 +820,6 @@ local methods = { end end - function self.callbacks.OnUpdateClick() - local _,_,updateData = self:HasUpdate() - if updateData then - WeakAuras.Import(updateData.encoded, self.data) - end - end - function self.callbacks.OnRenameAction(newid) if (WeakAuras.IsImporting()) then return end; local oldid = data.id; @@ -854,44 +847,17 @@ local methods = { end end - function self.callbacks.wagoStopIgnoreAll(_, skipUpdateIcon) - self.data.ignoreWagoUpdate = nil - self.data.skipWagoUpdate = nil - if not skipUpdateIcon then - self:RefreshUpdate("wagoStopIgnoreAll") - end - end - - function self.callbacks.wagoIgnoreAll(_, skipUpdateIcon) - self.data.ignoreWagoUpdate = true - if not skipUpdateIcon then - self:RefreshUpdate("wagoIgnoreAll") - end - end - - function self.callbacks.wagoStopIgnoreNext(_, skipUpdateIcon) - self.data.skipWagoUpdate = nil - if not skipUpdateIcon then - self:RefreshUpdate("wagoStopIgnoreNext") - end - end - - function self.callbacks.wagoIgnoreNext(_, skipUpdateIcon) - self.data.skipWagoUpdate = self.update.version - if not skipUpdateIcon then - self:RefreshUpdate("wagoIgnoreNext") + self.frame:SetScript("OnEnter", function() + if(OptionsPrivate.IsPickedMultiple() and OptionsPrivate.IsDisplayPicked(self.frame.id)) then + Show_Long_Tooltip(self.frame, OptionsPrivate.MultipleDisplayTooltipDesc()); + else + if not self.grouping then + self:SetNormalTooltip(); + end + Show_Long_Tooltip(self.frame, self.frame.description); end - end - - self.frame.terribleCodeOrganizationHackTable = {}; - - function self.frame.terribleCodeOrganizationHackTable.IsGroupingOrCopying() - return self.grouping; - end - - function self.frame.terribleCodeOrganizationHackTable.SetNormalTooltip() - self:SetNormalTooltip(); - end + end); + self.frame:SetScript("OnLeave", Hide_Tooltip); local copyEntries = {}; tinsert(copyEntries, clipboard.copyEverythingEntry); @@ -961,15 +927,6 @@ local methods = { func = function() OptionsPrivate.ExportToTable(data.id) end }); - if WeakAurasCompanion then - tinsert(self.menu, { - text = '|TInterface\\OptionsFrame\\UI-OptionsFrame-NewFeatureIcon:0|t' .. L["Wago Update"], - notCheckable = true, - hasArrow = true, - menuList = { } - }); - end - tinsert(self.menu, { text = " ", notClickable = true, @@ -1028,22 +985,6 @@ local methods = { self.upgroup:SetScript("OnClick", self.callbacks.OnUpGroupClick); self.downgroup:SetScript("OnClick", self.callbacks.OnDownGroupClick); - if WeakAurasCompanion then - local hasUpdate, _, updateData = self:HasUpdate() - if hasUpdate then - self.update.hasUpdate = hasUpdate - self.update.version = updateData.wagoVersion - local showVersion = self.data.semver or self.data.version or 0 - local showCompanionVersion = updateData.wagoSemver or updateData.wagoVersion - self.update.title = L["Update %s by %s"]:format(updateData.name, updateData.author) - self.update.desc = L["From version %s to version %s"]:format(showVersion, showCompanionVersion) - if updateData.versionNote then - self.update.desc = ("%s\n\n%s"):format(self.update.desc, updateData.versionNote) - end - self.update:SetScript("OnClick", self.callbacks.OnUpdateClick); - end - end - if data.parent then local parentData = WeakAuras.GetData(data.parent); local index; @@ -1067,21 +1008,29 @@ local methods = { local data = self.data; local namestable = {}; if(data.controlledChildren) then - for index, childId in pairs(data.controlledChildren) do - tinsert(namestable, {" ", childId}); + namestable[1] = ""; + local function addChildrenNames(data, indent) + for index, childId in pairs(data.controlledChildren) do + tinsert(namestable, indent .. childId); + local childData = WeakAuras.GetData(childId) + if (childData.controlledChildren) then + addChildrenNames(childData, indent .. " ") + end + end end + addChildrenNames(data, " ") if (#namestable > 30) then local size = #namestable; namestable[26] = {" ", "[...]"}; - namestable[27] = {L[string.format(L["%s total auras"], #data.controlledChildren)], " " } + namestable[27] = {L[string.format(L["%s total auras"], #namestable)], " " } for i = 28, size do namestable[i] = nil; end end - if(#namestable > 0) then - namestable[1][1] = L["Children:"]; + if(#namestable > 1) then + namestable[1] = L["Children:"]; else namestable[1] = L["No Children"]; end @@ -1366,13 +1315,20 @@ local methods = { ["SetGroup"] = function(self, group) self.frame.dgroup = group; if(group) then + local depth = 0 + while(group) do + depth = depth + 1 + group = WeakAuras.GetData(group).parent + end + self.offset:SetWidth(depth * 8 + 1) self.icon:SetPoint("LEFT", self.ungroup, "RIGHT"); - self.background:SetPoint("LEFT", self.ungroup, "RIGHT"); + self.background:SetPoint("LEFT", self.offset, "RIGHT"); self.ungroup:Show(); self.group:Hide(); self.upgroup:Show(); self.downgroup:Show(); else + self.offset:SetWidth(1) self.icon:SetPoint("LEFT", self.frame, "LEFT"); self.background:SetPoint("LEFT", self.frame, "LEFT"); self.ungroup:Hide(); @@ -1442,98 +1398,6 @@ local methods = { self:Collapse(); end end, - ["ShowGroupUpdate"] = function(self) - if self.groupUpdate and self.groupUpdate.disabled then - self.groupUpdate:Show() - self.groupUpdate.disabled = false - end - end, - ["HideGroupUpdate"] = function(self) - if self.groupUpdate and not self.groupUpdate.disabled then - self.groupUpdate:Hide() - self.groupUpdate.disabled = true - end - end, - ["RefreshUpdateMenu"] = function(self) - local pos - for k, menu in pairs(self.menu) do - if menu.text and menu.text:find(L["Wago Update"]) then - pos = k - break - end - end - if pos then - local wagoMenu = self.menu[pos].menuList - for i=1,#wagoMenu do tremove(wagoMenu, 1) end - tinsert(wagoMenu, { - text = self.data.ignoreWagoUpdate and L["Stop ignoring Updates"] or L["Ignore all Updates"], - notCheckable = true, - func = self.data.ignoreWagoUpdate and self.callbacks.wagoStopIgnoreAll or self.callbacks.wagoIgnoreAll - }) - if not self.data.ignoreWagoUpdate and self.update.hasUpdate then - if self.data.skipWagoUpdate and self.update.version == self.data.skipWagoUpdate then - tinsert(wagoMenu, { - text = L["Don't skip this Version"], - notCheckable = true, - func = self.callbacks.wagoStopIgnoreNext - }); - else - tinsert(wagoMenu, { - text = L["Skip this Version"], - notCheckable = true, - func = self.callbacks.wagoIgnoreNext - }); - tinsert(wagoMenu, { - text = " ", - notClickable = true, - notCheckable = true, - }); - tinsert(wagoMenu, { - text = L["Update this Aura"], - notCheckable = true, - func = self.callbacks.OnUpdateClick - }); - end - end - end - end, - ["ShowUpdateIcon"] = function(self) - if self.update and self.update.disabled then - self.update:Show() - self.update:Enable() - self.updateLogo:Show() - self.update.disabled = false - end - end, - ["HideUpdateIcon"] = function(self) - if self.update and not self.update.disabled then - self.update:Hide() - self.update:Disable() - self.updateLogo:Hide() - self.update.disabled = true - end - end, - ["HasUpdate"] = function(self) - local CompanionData = WeakAurasCompanion and WeakAurasCompanion.WeakAuras or WeakAurasCompanion - if not (CompanionData and CompanionData.uids and CompanionData.ids) or self.data.ignoreWagoUpdate then return end - local slug = self.data.uid and CompanionData.uids[self.data.uid] or CompanionData.ids[self.data.id] - if slug then - local updateData = CompanionData.slugs and CompanionData.slugs[slug] - if updateData then - if not (self.data.skipWagoUpdate and self.data.skipWagoUpdate == updateData.wagoVersion) then - if not self.data.version or tonumber(updateData.wagoVersion) > tonumber(self.data.version) then - -- got update - return true, false, updateData, slug - end - else - -- version skip flag - return true, true, updateData, slug - end - end - end - -- no addon, or no data, or ignore flag - return false, false, nil, nil - end, ["UpdateWarning"] = function(self) local icon, title, warningText = OptionsPrivate.Private.AuraWarnings.FormatWarnings(self.data.uid) if warningText then @@ -1553,50 +1417,6 @@ local methods = { self.warning:Hide() end end, - ["RefreshUpdate"] = function(self, actionFunc) - if self.data.parent then - -- is in a group - local parentButton = WeakAuras.GetDisplayButton(self.data.parent) - if parentButton then - parentButton:RefreshUpdate(actionFunc) - end - else - -- is top level - local hasUpdate, skipVersion, _, slug = self:HasUpdate() - self:RefreshUpdateMenu() - if hasUpdate and not skipVersion then - self:ShowUpdateIcon() - else - self:HideUpdateIcon() - end - if self.data.controlledChildren then - -- is a group - local hasUpdate, skipVersion, _, slug = self:HasUpdate() - local showGroupUpdateIcon = false - for childIndex, childId in pairs(self.data.controlledChildren) do - local childButton = WeakAuras.GetDisplayButton(childId); - if childButton then - if actionFunc then - childButton.callbacks[actionFunc](nil, true) - end - childButton:RefreshUpdateMenu() - local childHasUpdate, childSkipVersion, _, childSlug = childButton:HasUpdate() - if childHasUpdate and slug ~= childSlug and not childSkipVersion then - showGroupUpdateIcon = true - childButton:ShowUpdateIcon() - else - childButton:HideUpdateIcon() - end - end - end - if showGroupUpdateIcon then - self:ShowGroupUpdate() - else - self:HideGroupUpdate() - end - end - end - end, ["SetGroupOrder"] = function(self, order, max) if(order == 1) then self:DisableUpGroup(); @@ -1797,6 +1617,13 @@ local function Constructor() button.dgroup = nil; button.data = {}; + local offset = CreateFrame("Frame", nil, button) + button.offset = offset + offset:SetPoint("TOP", button, "TOP"); + offset:SetPoint("BOTTOM", button, "BOTTOM"); + offset:SetPoint("LEFT", button, "LEFT"); + offset:SetWidth(1) + local background = button:CreateTexture(nil, "BACKGROUND"); button.background = background; background:SetTexture("Interface\\BUTTONS\\UI-Listbox-Highlight2.blp"); @@ -1804,14 +1631,14 @@ local function Constructor() background:SetVertexColor(0.5, 0.5, 0.5, 0.25); background:SetPoint("TOP", button, "TOP"); background:SetPoint("BOTTOM", button, "BOTTOM"); - background:SetPoint("LEFT", button, "LEFT"); + background:SetPoint("LEFT", button, "LEFT") background:SetPoint("RIGHT", button, "RIGHT"); local icon = button:CreateTexture(nil, "OVERLAY"); button.icon = icon; icon:SetWidth(32); icon:SetHeight(32); - icon:SetPoint("LEFT", button, "LEFT"); + icon:SetPoint("LEFT", offset, "RIGHT"); local title = button:CreateFontString(nil, "OVERLAY", "GameFontNormal"); button.title = title; @@ -1823,18 +1650,6 @@ local function Constructor() button.description = {}; - button:SetScript("OnEnter", function() - if(OptionsPrivate.IsPickedMultiple() and OptionsPrivate.IsDisplayPicked(button.id)) then - Show_Long_Tooltip(button, OptionsPrivate.MultipleDisplayTooltipDesc()); - else - if not(button.terribleCodeOrganizationHackTable.IsGroupingOrCopying()) then - button.terribleCodeOrganizationHackTable.SetNormalTooltip(); - end - Show_Long_Tooltip(button, button.description); - end - end); - button:SetScript("OnLeave", Hide_Tooltip); - local view = CreateFrame("BUTTON", nil, button); button.view = view; view:SetWidth(16); @@ -1958,7 +1773,7 @@ local function Constructor() button.ungroup = ungroup; ungroup:SetWidth(11); ungroup:SetHeight(11); - ungroup:SetPoint("LEFT", button, "LEFT", 0, 0); + ungroup:SetPoint("LEFT", offset, "RIGHT", 0, 0); local ungrouptexture = group:CreateTexture(nil, "OVERLAY"); ungrouptexture:SetTexture("Interface\\MoneyFrame\\Arrow-Left-Down.blp"); ungrouptexture:SetTexCoord(0.5, 0, 0.5, 1, 1, 0, 1, 1); @@ -1973,7 +1788,7 @@ local function Constructor() button.upgroup = upgroup; upgroup:SetWidth(11); upgroup:SetHeight(11); - upgroup:SetPoint("TOPLEFT", button, "TOPLEFT", 0, 0); + upgroup:SetPoint("TOPLEFT", offset, "TOPRIGHT", 0, 0); local upgrouptexture = group:CreateTexture(nil, "OVERLAY"); upgroup.texture = upgrouptexture; upgrouptexture:SetTexture("Interface\\MoneyFrame\\Arrow-Left-Down.blp"); @@ -1990,7 +1805,7 @@ local function Constructor() button.downgroup = downgroup; downgroup:SetWidth(11); downgroup:SetHeight(11); - downgroup:SetPoint("BOTTOMLEFT", button, "BOTTOMLEFT", 0, 0); + downgroup:SetPoint("BOTTOMLEFT", offset, "BOTTOMRIGHT", 0, 0); local downgrouptexture = group:CreateTexture(nil, "OVERLAY"); downgroup.texture = downgrouptexture; downgrouptexture:SetTexture("Interface\\MoneyFrame\\Arrow-Left-Down.blp"); @@ -2019,67 +1834,6 @@ local function Constructor() expand:SetScript("OnEnter", function() Show_Tooltip(button, expand.title, expand.desc) end); expand:SetScript("OnLeave", Hide_Tooltip); - local update, updateLogo - local groupUpdate - if WeakAurasCompanion then - update = CreateFrame("BUTTON", nil, button); - button.update = update - update.disabled = true - update.func = function() end - update:SetNormalTexture([[Interface\AddOns\WeakAuras\Media\Textures\wagoupdate_refresh.tga]]) - update:Disable() - update:SetWidth(24) - update:SetHeight(24) - update:SetPoint("RIGHT", button, "RIGHT", -35, 0) - update.title = "" - update.desc = "" - update.hasUpdate = false - update.version = nil - update.menuDisabled = true - - -- Add logo - updateLogo = CreateFrame("Frame", nil, button) - button.updateLogo = updateLogo - local tex = updateLogo:CreateTexture(nil, "OVERLAY") - tex:SetTexture([[Interface\AddOns\WeakAuras\Media\Textures\wagoupdate_logo.tga]]) - tex:SetAllPoints() - updateLogo:SetSize(24,24) - updateLogo:SetPoint("CENTER",update) - - -- Animation On Hover - local animGroup = update:CreateAnimationGroup() - update.animGroup = animGroup - local animRotate = animGroup:CreateAnimation("rotation") - animRotate:SetDegrees(-360) - animRotate:SetDuration(1) - animRotate:SetSmoothing("OUT") - - animGroup:SetScript("OnFinished",function() if (MouseIsOver(update)) then animGroup:Play() end end) - update:SetScript("OnEnter", function() - animGroup:Play() - Show_Tooltip(button, update.title, update.desc) - end); - update:SetScript("OnLeave", Hide_Tooltip) - update:Hide() - updateLogo:Hide() - - -- Update in group icon - groupUpdate = CreateFrame("Frame", nil, button) - button.groupUpdate = groupUpdate - local gTex = groupUpdate:CreateTexture(nil, "OVERLAY") - gTex:SetTexture([[Interface\AddOns\WeakAuras\Media\Textures\wagoupdate_logo.tga]]) - gTex:SetAllPoints() - groupUpdate:SetSize(16, 16) - groupUpdate:SetPoint("BOTTOM", button, "BOTTOM") - groupUpdate:SetPoint("LEFT", icon, "RIGHT", 20, 0) - groupUpdate.disabled = true - groupUpdate.title = L["Update in Group"] - groupUpdate.desc = L["Group contains updates from Wago"] - groupUpdate:SetScript("OnEnter", function() Show_Tooltip(button, groupUpdate.title, groupUpdate.desc) end) - groupUpdate:SetScript("OnLeave", Hide_Tooltip) - groupUpdate:Hide() - end - local warning = CreateFrame("BUTTON", nil, button); button.warning = warning warning:SetWidth(16) @@ -2101,11 +1855,9 @@ local function Constructor() loaded = loaded, background = background, expand = expand, - update = update, warning = warning, - groupUpdate = groupUpdate, - updateLogo = updateLogo, - type = Type + type = Type, + offset = offset } for method, func in pairs(methods) do widget[method] = func diff --git a/WeakAurasOptions/AceGUI-Widgets/AceGUIWidget-WeakAurasPendingInstallButton.lua b/WeakAurasOptions/AceGUI-Widgets/AceGUIWidget-WeakAurasPendingInstallButton.lua new file mode 100644 index 0000000000..377381e501 --- /dev/null +++ b/WeakAurasOptions/AceGUI-Widgets/AceGUIWidget-WeakAurasPendingInstallButton.lua @@ -0,0 +1,250 @@ +if not WeakAuras.IsCorrectVersion() then + return +end + +local AddonName, OptionsPrivate = ... +local L = WeakAuras.L + +local pairs, next, type, unpack = pairs, next, type, unpack + +local Type, Version = "WeakAurasPendingInstallButton", 1 +local AceGUI = LibStub and LibStub("AceGUI-3.0", true) + +if not AceGUI or (AceGUI:GetWidgetVersion(Type) or 0) >= Version then + return +end + +--[[----------------------------------------------------------------------------- +Methods +-------------------------------------------------------------------------------]] +local methods = { + ["OnAcquire"] = function(self) + self:SetWidth(1000) + self:SetHeight(32) + self.hasThumbnail = false + end, + ["Initialize"] = function(self, id, companionData) + self.callbacks = {} + self.id = id + self.companionData = companionData + + function self.callbacks.OnUpdateClick() + WeakAuras.Import(self.companionData.encoded) + end + + self:SetTitle(self.companionData.name) + self.update:SetScript("OnClick", self.callbacks.OnUpdateClick) + local data = OptionsPrivate.Private.StringToTable(self.companionData.encoded, true) + self.data = data.d + self.frame:EnableKeyboard(false) + self:Enable() + self.frame:Hide() + end, + ["SetLogo"] = function(self, path) + self.frame.updateLogo.tex:SetTexture(path) + end, + ["SetRefreshLogo"] = function(self, path) + self.frame.update:SetNormalTexture(path) + end, + ["Disable"] = function(self) + self.background:Hide() + self.frame:Disable() + end, + ["Enable"] = function(self) + self.background:Show() + self.frame:Enable() + self.update:Show() + self.update:Enable() + self.updateLogo:Show() + self:UpdateThumbnail() + end, + ["OnRelease"] = function(self) + self:ReleaseThumbnail() + self:Enable() + self.title:Show() + self.frame:SetScript("OnEnter", nil) + self.frame:SetScript("OnLeave", nil) + self.frame:SetScript("OnClick", nil) + self.frame:ClearAllPoints() + self.frame:Hide() + self.frame = nil + self.data = nil + end, + ["SetTitle"] = function(self, title) + self.titletext = title + self.title:SetText(title) + end, + ["SetClick"] = function(self, func) + self.frame:SetScript("OnClick", func) + end, + ["UpdateThumbnail"] = function(self) + if not self.hasThumbnail then + return + end + + if self.data.regionType ~= self.thumbnailType then + self:ReleaseThumbnail() + self:AcquireThumbnail() + else + local option = WeakAuras.regionOptions[self.thumbnailType] + if option and option.modifyThumbnail then + option.modifyThumbnail(self.frame, self.thumbnail, self.data) + end + end + end, + ["ReleaseThumbnail"] = function(self) + if not self.hasThumbnail then + return + end + self.hasThumbnail = false + + if self.thumbnail then + local regionType = self.thumbnailType + local option = WeakAuras.regionOptions[regionType] + if self.thumbnail.icon then + self.thumbnail.icon:SetDesaturated(false) + end + option.releaseThumbnail(self.thumbnail) + self.thumbnail = nil + end + end, + ["AcquireThumbnail"] = function(self) + if self.hasThumbnail then + return + end + + if not self.data then + return + end + + self.hasThumbnail = true + + local button = self.frame + local regionType = self.data.regionType + self.thumbnailType = regionType + + local option = WeakAuras.regionOptions[regionType] + if option and option.acquireThumbnail then + self.thumbnail = option.acquireThumbnail(button, self.data) + if self.thumbnail.icon then + self.thumbnail.icon:SetDesaturated(true) + end + self:SetIcon(self.thumbnail) + else + self:SetIcon("Interface\\Icons\\INV_Misc_QuestionMark") + end + end, + ["SetIcon"] = function(self, icon) + self.orgIcon = icon + if (type(icon) == "string" or type(icon) == "number") then + self.icon:SetTexture(icon) + self.icon:Show() + if (self.iconRegion and self.iconRegion.Hide) then + self.iconRegion:Hide() + end + else + self.iconRegion = icon + icon:SetAllPoints(self.icon) + icon:SetParent(self.frame) + icon:Show() + self.iconRegion:Show() + self.icon:Hide() + end + end, +} + +--[[----------------------------------------------------------------------------- +Constructor +-------------------------------------------------------------------------------]] + +local function Constructor() + local name = "WeakAurasPendingUpdateButton" .. AceGUI:GetNextWidgetNum(Type) + local button = CreateFrame("BUTTON", name, UIParent) + button:SetHeight(32) + button:SetWidth(1000) + button.data = {} + + local background = button:CreateTexture(nil, "BACKGROUND") + button.background = background + background:SetTexture("Interface\\BUTTONS\\UI-Listbox-Highlight2.blp") + background:SetBlendMode("ADD") + background:SetVertexColor(0.5, 1, 0.5, 0.3) + background:SetPoint("TOP", button, "TOP") + background:SetPoint("BOTTOM", button, "BOTTOM") + background:SetPoint("LEFT", button, "LEFT") + background:SetPoint("RIGHT", button, "RIGHT") + + local icon = button:CreateTexture(nil, "OVERLAY") + button.icon = icon + icon:SetWidth(32) + icon:SetHeight(32) + icon:SetPoint("LEFT", button, "LEFT") + + local title = button:CreateFontString(nil, "OVERLAY", "GameFontNormal") + button.title = title + title:SetHeight(14) + title:SetJustifyH("LEFT") + title:SetPoint("TOPLEFT", icon, "TOPRIGHT", 2, 0) + title:SetPoint("BOTTOMRIGHT", button, "BOTTOMRIGHT") + title:SetVertexColor(0.6, 0.6, 0.6) + + button.description = {} + + local update = CreateFrame("BUTTON", nil, button) + button.update = update + update.disabled = true + update.func = function() + end + update:SetNormalTexture([[Interface\AddOns\WeakAuras\Media\Textures\wagoupdate_refresh.tga]]) + update:Disable() + update:SetWidth(24) + update:SetHeight(24) + update:SetPoint("RIGHT", button, "RIGHT", -2, 0) + + -- Add logo + local updateLogo = CreateFrame("Frame", nil, button) + button.updateLogo = updateLogo + local tex = updateLogo:CreateTexture(nil, "OVERLAY") + tex:SetTexture([[Interface\AddOns\WeakAuras\Media\Textures\wagoupdate_logo.tga]]) + tex:SetAllPoints() + updateLogo.tex = tex + updateLogo:SetSize(24, 24) + updateLogo:SetPoint("CENTER", update) + + -- Animation On Hover + local animGroup = update:CreateAnimationGroup() + update.animGroup = animGroup + + local animRotate = animGroup:CreateAnimation("rotation") + animRotate:SetDegrees(-360) + animRotate:SetDuration(1) + animRotate:SetSmoothing("OUT") + animGroup:SetScript("OnFinished", function() + if (MouseIsOver(update)) then + animGroup:Play() + end + end) + update:SetScript("OnEnter", function() + animGroup:Play() + end) + update:Hide() + updateLogo:Hide() + + local widget = { + frame = button, + title = title, + icon = icon, + background = background, + update = update, + updateLogo = updateLogo, + type = Type, + } + + for method, func in pairs(methods) do + widget[method] = func + end + + return AceGUI:RegisterAsWidget(widget) +end + +AceGUI:RegisterWidgetType(Type, Constructor, Version) diff --git a/WeakAurasOptions/AceGUI-Widgets/AceGUIWidget-WeakAurasPendingUpdateButton.lua b/WeakAurasOptions/AceGUI-Widgets/AceGUIWidget-WeakAurasPendingUpdateButton.lua index 9e9ec44b39..44599290bd 100644 --- a/WeakAurasOptions/AceGUI-Widgets/AceGUIWidget-WeakAurasPendingUpdateButton.lua +++ b/WeakAurasOptions/AceGUI-Widgets/AceGUIWidget-WeakAurasPendingUpdateButton.lua @@ -18,13 +18,28 @@ local function Hide_Tooltip() GameTooltip:Hide() end -local function Show_Tooltip(owner, line1, line2) - GameTooltip:SetOwner(owner, "ANCHOR_NONE") - GameTooltip:SetPoint("LEFT", owner, "RIGHT") - GameTooltip:ClearLines() - GameTooltip:AddLine(line1) - GameTooltip:AddLine(line2, 1, 1, 1, 1) - GameTooltip:Show() +local function Show_Long_Tooltip(owner, description) + GameTooltip:SetOwner(owner, "ANCHOR_NONE"); + GameTooltip:SetPoint("LEFT", owner, "RIGHT"); + GameTooltip:ClearLines(); + local line = 1; + for i,v in pairs(description) do + if(type(v) == "string") then + if(line > 1) then + GameTooltip:AddLine(v, 1, 1, 1, 1); + else + GameTooltip:AddLine(v); + end + elseif(type(v) == "table") then + if(i == 1) then + GameTooltip:AddDoubleLine(v[1], v[2]..(v[3] and (" |T"..v[3]..":12:12:0:0:64:64:4:60:4:60|t") or "")); + else + GameTooltip:AddDoubleLine(v[1], v[2]..(v[3] and (" |T"..v[3]..":12:12:0:0:64:64:4:60:4:60|t") or ""), 1, 1, 1, 1, 1, 1, 1, 1); + end + end + line = line + 1; + end + GameTooltip:Show(); end --[[----------------------------------------------------------------------------- @@ -40,6 +55,8 @@ local methods = { self.callbacks = {} self.id = id self.companionData = companionData + self.linkedAuras = {} + self.linkedChildren = {} function self.callbacks.OnUpdateClick() WeakAuras.Import(self.companionData.encoded) @@ -52,6 +69,53 @@ local methods = { self.frame:EnableKeyboard(false) self:Enable() self.frame:Hide() + + self.menu = {} + + self.frame:SetScript("OnMouseUp", function() + Hide_Tooltip() + self:SetMenu() + EasyMenu(self.menu, WeakAuras_DropDownMenu, self.frame, 0, 0, "MENU") + end) + + self.frame:SetScript("OnEnter", function() + self:SetNormalTooltip() + Show_Long_Tooltip(self.frame, self.frame.description) + end) + self.frame:SetScript("OnLeave", Hide_Tooltip) + end, + ["SetMenu"] = function(self) + wipe(self.menu) + for auraId in pairs(self.linkedAuras) do + if not self.linkedChildren[auraId] then + tinsert(self.menu, + { + text = auraId, + notCheckable = true, + hasArrow = true, + menuList = { + { + text = L["Update"], + notCheckable = true, + func = function() + local auraData = WeakAuras.GetData(auraId) + if auraData then + WeakAuras.Import(self.companionData.encoded, auraData) + end + end + }, + { + text = L["Ignore updates"], + notCheckable = true, + func = function() + StaticPopup_Show("WEAKAURAS_CONFIRM_IGNORE_UPDATES", "", "", auraId) + end + } + } + } + ) + end + end end, ["SetLogo"] = function(self, path) self.frame.updateLogo.tex:SetTexture(path) @@ -83,6 +147,48 @@ local methods = { self.frame = nil self.data = nil end, + ["SetNormalTooltip"] = function(self) + local data = self.data; + local namestable = {}; + + local hasDescription = data.desc and data.desc ~= ""; + local hasUrl = data.url and data.url ~= ""; + local hasVersion = (data.semver and data.semver ~= "") or (data.version and data.version ~= ""); + local hasVersionNote = self.companionData.versionNote and self.companionData.versionNote ~= "" + + if(hasDescription or hasUrl or hasVersion or hasVersionNote) then + tinsert(namestable, " ") + end + + if hasVersionNote then + tinsert(namestable, "|cFFFFD100"..self.companionData.versionNote) + tinsert(namestable, " ") + end + + for auraId in pairs(self.linkedAuras) do + if not self.linkedChildren[auraId] then + tinsert(namestable, "|cFFFFD100" .. L["Linked aura: "] .. auraId .. "|r") + end + end + tinsert(namestable, " ") + + if(hasDescription) then + tinsert(namestable, "|cFFFFD100"..data.desc) + end + + if (hasUrl) then + tinsert(namestable, "|cFFFFD100" .. data.url .. "|r") + end + + if (hasVersion) then + tinsert(namestable, "|cFFFFD100" .. L["Version: "] .. (data.semver or data.version) .. "|r") + end + + self:SetDescription({self.companionData.name or self.data.id, self.companionData.author or ""}, unpack(namestable)) + end, + ["SetDescription"] = function(self, ...) + self.frame.description = {...}; + end, ["SetTitle"] = function(self, title) self.titletext = title self.title:SetText(title) @@ -90,6 +196,16 @@ local methods = { ["SetClick"] = function(self, func) self.frame:SetScript("OnClick", func) end, + ["ResetLinkedAuras"] = function(self) + wipe(self.linkedAuras) + wipe(self.linkedChildren) + end, + ["MarkLinkedAura"] = function(self, auraId) + self.linkedAuras[auraId] = true + end, + ["MarkLinkedChildren"] = function(self, auraId) + self.linkedChildren[auraId] = true + end, ["UpdateThumbnail"] = function(self) if not self.hasThumbnail then return @@ -114,6 +230,9 @@ local methods = { if self.thumbnail then local regionType = self.thumbnailType local option = WeakAuras.regionOptions[regionType] + if self.thumbnail.icon then + self.thumbnail.icon:SetDesaturated(false) + end option.releaseThumbnail(self.thumbnail) self.thumbnail = nil end @@ -136,6 +255,9 @@ local methods = { local option = WeakAuras.regionOptions[regionType] if option and option.acquireThumbnail then self.thumbnail = option.acquireThumbnail(button, self.data) + if self.thumbnail.icon then + self.thumbnail.icon:SetDesaturated(true) + end self:SetIcon(self.thumbnail) else self:SetIcon("Interface\\Icons\\INV_Misc_QuestionMark") @@ -157,65 +279,6 @@ local methods = { self.iconRegion:Show() self.icon:Hide() end - self.thumbnail.icon:SetDesaturated(true) - end, - ["OverrideIcon"] = function(self) - self.icon:SetTexture("Interface\\Addons\\WeakAuras\\Media\\Textures\\icon.blp") - self.icon:Show() - if (self.iconRegion and self.iconRegion.Hide) then - self.iconRegion:Hide() - end - end, - ["RestoreIcon"] = function(self) - self:SetIcon(self.orgIcon) - end, - ["Expand"] = function(self, reloadTooltip) - self.expand:Enable() - OptionsPrivate.SetCollapsed(self.data.id, "displayButton", "", false) - self.expand:SetNormalTexture("Interface\\BUTTONS\\UI-MinusButton-Up.blp") - self.expand:SetPushedTexture("Interface\\BUTTONS\\UI-MinusButton-Down.blp") - self.expand.title = L["Collapse"] - self.expand.desc = L["Hide this group's children"] - self.expand:SetScript("OnClick", function() - self:Collapse(true) - end) - self.expand.func() - if reloadTooltip then - Hide_Tooltip() - Show_Tooltip(self.frame, self.expand.title, self.expand.desc) - end - end, - ["Collapse"] = function(self, reloadTooltip) - self.expand:Enable() - OptionsPrivate.SetCollapsed(self.data.id, "displayButton", "", true) - self.expand:SetNormalTexture("Interface\\BUTTONS\\UI-PlusButton-Up.blp") - self.expand:SetPushedTexture("Interface\\BUTTONS\\UI-PlusButton-Down.blp") - self.expand.title = L["Expand"] - self.expand.desc = L["Show this group's children"] - self.expand:SetScript("OnClick", function() - self:Expand(true) - end) - self.expand.func() - end, - ["SetOnExpandCollapse"] = function(self, func) - self.expand.func = func - end, - ["GetExpanded"] = function(self) - return not OptionsPrivate.IsCollapsed(self.id, "displayButton", "", true) - end, - ["DisableExpand"] = function(self) - self.expand:Disable() - self.expand.disabled = true - self.expand.expanded = false - self.expand:SetNormalTexture("Interface\\BUTTONS\\UI-PlusButton-Disabled.blp") - end, - ["EnableExpand"] = function(self) - self.expand.disabled = false - if (self:GetExpanded()) then - self:Expand() - else - self:Collapse() - end end, } @@ -234,7 +297,7 @@ local function Constructor() button.background = background background:SetTexture("Interface\\BUTTONS\\UI-Listbox-Highlight2.blp") background:SetBlendMode("ADD") - background:SetVertexColor(0.5, 1, 0.5, 0.3) + background:SetVertexColor(0.88, 0.88, 0, 0.3) background:SetPoint("TOP", button, "TOP") background:SetPoint("BOTTOM", button, "BOTTOM") background:SetPoint("LEFT", button, "LEFT") diff --git a/WeakAurasOptions/DisplayOptions.lua b/WeakAurasOptions/DisplayOptions.lua index 8777364fe5..1c1d9e4f6c 100644 --- a/WeakAurasOptions/DisplayOptions.lua +++ b/WeakAurasOptions/DisplayOptions.lua @@ -206,33 +206,32 @@ function OptionsPrivate.GetDisplayOptions(data) local supportedSubRegions = {} local hasSubElements = false - for index, childId in ipairs(data.controlledChildren) do - local childData = WeakAuras.GetData(childId); - if childData and not handledRegionTypes[childData.regionType] then - handledRegionTypes[childData.regionType] = true; - if regionOptions[childData.regionType] then - allOptions = union(allOptions, regionOptions[childData.regionType].create(id, data)); + for child in OptionsPrivate.Private.TraverseLeafs(data) do + if child and not handledRegionTypes[child.regionType] then + handledRegionTypes[child.regionType] = true; + if regionOptions[child.regionType] then + allOptions = union(allOptions, regionOptions[child.regionType].create(id, data)); else unsupportedCount = unsupportedCount + 1 allOptions["__unsupported" .. unsupportedCount] = { - __title = "|cFFFFFF00" .. childData.regionType, + __title = "|cFFFFFF00" .. child.regionType, __order = 1, warning = { type = "description", - name = L["Regions of type \"%s\" are not supported."]:format(childData.regionType), + name = L["Regions of type \"%s\" are not supported."]:format(child.regionType), order = 1 }, } end for subRegionName, subRegionType in pairs(OptionsPrivate.Private.subRegionTypes) do - if subRegionType.supports(childData.regionType) then + if subRegionType.supports(child.regionType) then supportedSubRegions[subRegionName] = true end end end - if childData.subRegions then + if child.subRegions then local subIndex = {} - for index, subRegionData in ipairs(childData.subRegions) do + for index, subRegionData in ipairs(child.subRegions) do local subRegionType = subRegionData.type local alreadyHandled = handledSubRegionTypes[index] and handledSubRegionTypes[index][subRegionType] if OptionsPrivate.Private.subRegionOptions[subRegionType] and not alreadyHandled then diff --git a/WeakAurasOptions/InformationOptions.lua b/WeakAurasOptions/InformationOptions.lua index 4ea0084c7a..a3f76563c4 100644 --- a/WeakAurasOptions/InformationOptions.lua +++ b/WeakAurasOptions/InformationOptions.lua @@ -47,23 +47,16 @@ function OptionsPrivate.GetInformationOptions(data) local sameURL = true local commonURL local desc = "" - if not isTmpGroup then - commonURL = data.url - if data.url then - desc = "|cFFE0E000"..data.id..": |r".. data.url .. "\n" + + local traverseForUrl = isTmpGroup and OptionsPrivate.Private.TraverseAllChildren or OptionsPrivate.Private.TraverseAll + for child in traverseForUrl(data) do + if child.url then + desc = desc .. "|cFFE0E000"..child.id..": |r"..child.url .. "\n" end - end - if data.controlledChildren then - for _, childId in ipairs(data.controlledChildren) do - local childData = WeakAuras.GetData(childId) - if childData.url then - desc = desc .. "|cFFE0E000"..childData.id..": |r"..childData.url .. "\n" - end - if not commonURL then - commonURL = childData.url or "" - elseif childData.url ~= commonURL then - sameURL = false - end + if not commonURL then + commonURL = child.url or "" + elseif child.url ~= commonURL then + sameURL = false end end @@ -72,26 +65,15 @@ function OptionsPrivate.GetInformationOptions(data) name = sameURL and L["URL"] or "|cFF4080FF" .. L["URL"], width = WeakAuras.doubleWidth, get = function() - if data.controlledChildren then - return sameURL and commonURL or "" - else - return data.url - end + return sameURL and commonURL or "" end, set = function(info, v) - if data.controlledChildren then - for _, childId in ipairs(data.controlledChildren) do - local childData = WeakAuras.GetData(childId) - childData.url = v - WeakAuras.Add(childData) - OptionsPrivate.ClearOptions(childData.id) - end + for child in traverseForUrl(data) do + child.url = v + WeakAuras.Add(child) + OptionsPrivate.ClearOptions(child.id) end - if not isTmpGroup then - data.url = v - WeakAuras.Add(data) - end WeakAuras.ClearAndUpdateOptions(data.id) end, desc = sameURL and "" or desc, @@ -177,7 +159,7 @@ function OptionsPrivate.GetInformationOptions(data) local properties = { ignoreOptionsEventErrors = { - name = L["Ignore Lua Errors on OPTIONS event"] + name = L["Ignore Lua Errors on OPTIONS event"], }, groupOffset = { name = L["Offset by 1px"], @@ -200,23 +182,7 @@ function OptionsPrivate.GetInformationOptions(data) } for property, propertyData in pairs(properties) do - if not propertyData.onParent and data.controlledChildren then - for _, childId in ipairs(data.controlledChildren) do - local childData = WeakAuras.GetData(childId) - if not propertyData.regionType or propertyData.regionType == childData.regionType then - mergedDesc[property] = (mergedDesc[property] or "") .. "|cFFE0E000"..childData.id..": |r".. (childData.information[property] and "true" or "false") .. "\n" - if common[property] == nil then - if childData.information[property] ~= nil then - common[property] = childData.information[property] - else - common[property] = false - end - elseif childData.information[property] ~= common[property] then - same[property] = false - end - end - end - else + if propertyData.onParent then if not isTmpGroup and (not propertyData.regionType or propertyData.regionType == data.regionType) then if data.information[property] ~= nil then common[property] = data.information[property] @@ -224,6 +190,24 @@ function OptionsPrivate.GetInformationOptions(data) common[property] = false end end + else + for child in OptionsPrivate.Private.TraverseLeafsOrAura(data) do + if not propertyData.regionType or propertyData.regionType == child.regionType then + local effectiveProperty = child.information[property] + if effectiveProperty == nil then + effectiveProperty = false + end + + mergedDesc[property] = (mergedDesc[property] or "") .. "|cFFE0E000" .. child.id .. ": |r" + .. (effectiveProperty and "true" or "false") .. "\n" + + if common[property] == nil then + common[property] = effectiveProperty + elseif effectiveProperty ~= common[property] then + same[property] = false + end + end + end end if common[property] ~= nil then @@ -232,26 +216,25 @@ function OptionsPrivate.GetInformationOptions(data) name = same[property] and propertyData.name or "|cFF4080FF" .. propertyData.name, width = WeakAuras.doubleWidth, get = function() - if not propertyData.onParent and data.controlledChildren then - return same[property] and common[property] or false - else + if propertyData.onParent then return data.information[property] + else + return same[property] and common[property] or false end end, set = function(info, v) - if not propertyData.onParent and data.controlledChildren then - for _, childId in ipairs(data.controlledChildren) do - local childData = WeakAuras.GetData(childId) - if not propertyData.regionType or propertyData.regionType == childData.regionType then - childData.information[property] = v - WeakAuras.Add(childData) - OptionsPrivate.ClearOptions(childData.id) - end - end - else + if propertyData.onParent then data.information[property] = v WeakAuras.Add(data) OptionsPrivate.ClearOptions(data.id) + else + for child in OptionsPrivate.Private.TraverseLeafsOrAura(data) do + if not propertyData.regionType or propertyData.regionType == child.regionType then + child.information[property] = v + WeakAuras.Add(child) + OptionsPrivate.ClearOptions(child.id) + end + end end WeakAuras.ClearAndUpdateOptions(data.id) end, diff --git a/WeakAurasOptions/LoadOptions.lua b/WeakAurasOptions/LoadOptions.lua index cf8851afe7..ea70d09f02 100644 --- a/WeakAurasOptions/LoadOptions.lua +++ b/WeakAurasOptions/LoadOptions.lua @@ -37,7 +37,7 @@ local function CorrectSpellName(input) else return nil; end - elseif (WeakAuras.IsClassic() or WeakAuras.IsBC()) and input then + elseif (WeakAuras.IsClassic() or WeakAuras.IsBCC()) and input then local name, _, _, _, _, _, spellId = GetSpellInfo(input) if spellId then return spellId @@ -559,7 +559,7 @@ function OptionsPrivate.ConstructOptions(prototype, data, startorder, triggernum return nil; end elseif(arg.type == "spell") then - local useExactSpellId = (arg.showExactOption and trigger["use_exact_"..realname]) or arg.forceExactOption + local useExactSpellId = (arg.showExactOption and trigger["use_exact_"..realname]) if(trigger["use_"..realname]) then if (trigger[realname] and trigger[realname] ~= "") then if useExactSpellId then diff --git a/WeakAurasOptions/OptionsFrames/MoverSizer.lua b/WeakAurasOptions/OptionsFrames/MoverSizer.lua index 1582379152..3bbc44bbc3 100644 --- a/WeakAurasOptions/OptionsFrames/MoverSizer.lua +++ b/WeakAurasOptions/OptionsFrames/MoverSizer.lua @@ -393,8 +393,8 @@ local function BuildAlignLines(mover) tinsert(y, (region:GetBottom() or 0) * scale) else local centerX, centerY = region:GetCenter() - tinsert(x, centerX or 0 * scale) - tinsert(y, centerY or 0 * scale) + tinsert(x, (centerX or 0) * scale) + tinsert(y, (centerY or 0) * scale) end end end diff --git a/WeakAurasOptions/OptionsFrames/OptionsFrame.lua b/WeakAurasOptions/OptionsFrames/OptionsFrame.lua index 2efe8498a2..9d632b0621 100644 --- a/WeakAurasOptions/OptionsFrames/OptionsFrame.lua +++ b/WeakAurasOptions/OptionsFrames/OptionsFrame.lua @@ -706,27 +706,53 @@ function OptionsPrivate.CreateFrame() frame.addonsButton = addonsButton end - local pendingImportButton = AceGUI:Create("WeakAurasLoadedHeaderButton") - pendingImportButton:SetText(L["Ready to Import"]) - pendingImportButton:Disable() - pendingImportButton:EnableExpand() + -- Ready to Install section + local pendingInstallButton = AceGUI:Create("WeakAurasLoadedHeaderButton") + pendingInstallButton:SetText(L["Ready for Install"]) + pendingInstallButton:Disable() + pendingInstallButton:EnableExpand() + pendingInstallButton.frame.view:Hide() if odb.pendingImportCollapse then - pendingImportButton:Collapse() + pendingInstallButton:Collapse() else - pendingImportButton:Expand() + pendingInstallButton:Expand() end - pendingImportButton:SetOnExpandCollapse(function() - if pendingImportButton:GetExpanded() then + pendingInstallButton:SetOnExpandCollapse(function() + if pendingInstallButton:GetExpanded() then odb.pendingImportCollapse = nil else odb.pendingImportCollapse = true end WeakAuras.SortDisplayButtons() end) - pendingImportButton:SetExpandDescription(L["Expand all Pending Import"]) - pendingImportButton:SetCollapseDescription(L["Collapse all Pending Import"]) - frame.pendingImportButton = pendingImportButton + pendingInstallButton:SetExpandDescription(L["Expand all pending Import"]) + pendingInstallButton:SetCollapseDescription(L["Collapse all pending Import"]) + frame.pendingInstallButton = pendingInstallButton + + -- Ready for update section + local pendingUpdateButton = AceGUI:Create("WeakAurasLoadedHeaderButton") + pendingUpdateButton:SetText(L["Ready for Update"]) + pendingUpdateButton:Disable() + pendingUpdateButton:EnableExpand() + pendingUpdateButton.frame.view:Hide() + if odb.pendingUpdateCollapse then + pendingUpdateButton:Collapse() + else + pendingUpdateButton:Expand() + end + pendingUpdateButton:SetOnExpandCollapse(function() + if pendingUpdateButton:GetExpanded() then + odb.pendingUpdateCollapse = nil + else + odb.pendingUpdateCollapse = true + end + WeakAuras.SortDisplayButtons() + end) + pendingUpdateButton:SetExpandDescription(L["Expand all pending Import"]) + pendingUpdateButton:SetCollapseDescription(L["Collapse all pending Import"]) + frame.pendingUpdateButton = pendingUpdateButton + -- Loaded section local loadedButton = AceGUI:Create("WeakAurasLoadedHeaderButton") loadedButton:SetText(L["Loaded"]) loadedButton:Disable() @@ -786,6 +812,7 @@ function OptionsPrivate.CreateFrame() loadedButton:SetViewDescription(L["Toggle the visibility of all loaded displays"]) frame.loadedButton = loadedButton + -- Not Loaded section local unloadedButton = AceGUI:Create("WeakAurasLoadedHeaderButton") unloadedButton:SetText(L["Not Loaded"]) unloadedButton:Disable() @@ -854,8 +881,8 @@ function OptionsPrivate.CreateFrame() if data and data.parent then frame:ClearOptions(data.parent) end - for _, tmpId in ipairs(tempGroup.controlledChildren) do - if (id == tmpId) then + for child in OptionsPrivate.Private.TraverseAllChildren(tempGroup) do + if (id == child.id) then frame:ClearOptions(tempGroup.id) end end @@ -1248,10 +1275,8 @@ function OptionsPrivate.CreateFrame() self.buttonsScroll:SetScrollPos(yOffset, yOffset - 32) end - if data.controlledChildren then - for index, childId in pairs(data.controlledChildren) do - displayButtons[childId]:PriorityShow(1) - end + for child in OptionsPrivate.Private.TraverseAllChildren(data) do + displayButtons[child.id]:PriorityShow(1) end if data.controlledChildren and #data.controlledChildren == 0 then @@ -1302,15 +1327,13 @@ function OptionsPrivate.CreateFrame() end frame.PickDisplayBatch = function(self, batchSelection) + local alreadySelected = {} + for child in OptionsPrivate.Private.TraverseAllChildren(tempGroup) do + alreadySelected[child.id] = true + end + for index, id in ipairs(batchSelection) do - local alreadySelected = false - for _, v in pairs(tempGroup.controlledChildren) do - if v == id then - alreadySelected = true - break - end - end - if not alreadySelected then + if not alreadySelected[id] then displayButtons[id]:Pick() tinsert(tempGroup.controlledChildren, id) end diff --git a/WeakAurasOptions/OptionsFrames/TextEditor.lua b/WeakAurasOptions/OptionsFrames/TextEditor.lua index 4d50e87b49..d68abdde0c 100644 --- a/WeakAurasOptions/OptionsFrames/TextEditor.lua +++ b/WeakAurasOptions/OptionsFrames/TextEditor.lua @@ -664,32 +664,34 @@ local function ConstructTextEditor(frame) self.oldOnTextChanged(...) end ) - if (data.controlledChildren and not setOnParent) then + + if setOnParent then + editor:SetText(OptionsPrivate.Private.ValueFromPath(data, path) or "") + else local singleText local sameTexts = true local combinedText = "" - for index, childId in pairs(data.controlledChildren) do - local childData = WeakAuras.GetData(childId) + for child in OptionsPrivate.Private.TraverseLeafsOrAura(data) do local text if multipath then - text = path[childId] and OptionsPrivate.Private.ValueFromPath(childData, path[childId]) + text = path[child.id] and OptionsPrivate.Private.ValueFromPath(child, path[child.id]) else - text = OptionsPrivate.Private.ValueFromPath(childData, path) + text = OptionsPrivate.Private.ValueFromPath(child, path) end if text then if not (singleText) then singleText = text else - if not (singleText == text) then + if singleText ~= text then sameTexts = false end end - if not (combinedText == "") then + if combinedText ~= "" then combinedText = combinedText .. "\n\n" end combinedText = - combinedText .. L["-- Do not remove this comment, it is part of this trigger: "] .. childId .. "\n" + combinedText .. L["-- Do not remove this comment, it is part of this aura: "] .. child.id .. "\n" combinedText = combinedText .. (text or "") end end @@ -700,8 +702,6 @@ local function ConstructTextEditor(frame) editor:SetText(combinedText) editor.combinedText = true end - else - editor:SetText(OptionsPrivate.Private.ValueFromPath(data, path) or "") end editor:SetFocus() end @@ -719,7 +719,7 @@ local function ConstructTextEditor(frame) local currentPos, id, startIdLine, startId, endId, endIdLine while (true) do startIdLine, startId = - string.find(input, L["-- Do not remove this comment, it is part of this trigger: "], currentPos, true) + string.find(input, L["-- Do not remove this comment, it is part of this aura: "], currentPos, true) if (not startId) then break end @@ -751,31 +751,21 @@ local function ConstructTextEditor(frame) end function group.Close(self) - if (self.data.controlledChildren and not self.setOnParent) then - local textById = editor.combinedText and extractTexts(editor:GetText(), self.data.controlledChildren) - for index, childId in pairs(self.data.controlledChildren) do - local text = editor.combinedText and (textById[childId] or "") or editor:GetText() - local childData = WeakAuras.GetData(childId) - OptionsPrivate.Private.ValueToPath(childData, self.multipath and self.path[childId] or self.path, text) - WeakAuras.Add(childData) - end - else + if self.setOnParent then OptionsPrivate.Private.ValueToPath(self.data, self.path, editor:GetText()) WeakAuras.Add(self.data) - end - if (self.reloadOptions) then - if (self.data.controlledChildren) then - for index, childId in pairs(self.data.controlledChildren) do - WeakAuras.ClearAndUpdateOptions(childId) - end - WeakAuras.ClearAndUpdateOptions(self.data.id) - else - WeakAuras.ClearAndUpdateOptions(self.data.id) - end else - WeakAuras.ClearAndUpdateOptions(self.data.id) + local textById = editor.combinedText and extractTexts(editor:GetText(), self.data.controlledChildren) + for child in OptionsPrivate.Private.TraverseLeafsOrAura(self.data) do + local text = editor.combinedText and (textById[child.id] or "") or editor:GetText() + OptionsPrivate.Private.ValueToPath(child, self.multipath and self.path[child.id] or self.path, text) + WeakAuras.Add(child) + OptionsPrivate.ClearOptions(child.id) + end end + WeakAuras.ClearAndUpdateOptions(self.data.id) + editor.editBox:SetScript("OnTextChanged", self.oldOnTextChanged) editor:ClearFocus() frame.window = "default" diff --git a/WeakAurasOptions/RegionOptions/Text.lua b/WeakAurasOptions/RegionOptions/Text.lua index de3dbfcdde..5b329d05a7 100644 --- a/WeakAurasOptions/RegionOptions/Text.lua +++ b/WeakAurasOptions/RegionOptions/Text.lua @@ -289,22 +289,20 @@ local function createOptions(id, data) options["displayText_format_" .. key] = option end - if data.controlledChildren then - for index, childId in pairs(data.controlledChildren) do - local childData = WeakAuras.GetData(childId) - local get = function(key) - return childData["displayText_format_" .. key] - end - local input = childData.displayText - OptionsPrivate.AddTextFormatOption(input, true, get, addOption, hidden, setHidden, index, #data.controlledChildren) - end - else + local total, index = 0, 1 + for child in OptionsPrivate.Private.TraverseLeafsOrAura(data) do + total = total + 1 + end + + for child in OptionsPrivate.Private.TraverseLeafsOrAura(data) do local get = function(key) - return data["displayText_format_" .. key] + return child["displayText_format_" .. key] end - local input = data.displayText - OptionsPrivate.AddTextFormatOption(input, true, get, addOption, hidden, setHidden) + local input = child.displayText + OptionsPrivate.AddTextFormatOption(input, true, get, addOption, hidden, setHidden, index, total) + index = index + 1 end + addOption("footer", { type = "description", name = "", diff --git a/WeakAurasOptions/SubRegionOptions/Glow.lua b/WeakAurasOptions/SubRegionOptions/Glow.lua index 8e1459c74f..650015364e 100644 --- a/WeakAurasOptions/SubRegionOptions/Glow.lua +++ b/WeakAurasOptions/SubRegionOptions/Glow.lua @@ -231,7 +231,7 @@ local function createOptions(parentData, data, index, subIndex) hidden = function() return hiddenGlowExtra() or data.glowType ~= "Pixel" end, }, - glow_anchor = { + glow_expand_anchor = { type = "description", name = "", order = 20, diff --git a/WeakAurasOptions/WeakAurasOptions.lua b/WeakAurasOptions/WeakAurasOptions.lua index a169a7ac25..18e8c45150 100644 --- a/WeakAurasOptions/WeakAurasOptions.lua +++ b/WeakAurasOptions/WeakAurasOptions.lua @@ -419,6 +419,26 @@ StaticPopupDialogs["WEAKAURAS_CONFIRM_DELETE"] = { preferredindex = STATICPOPUP_NUMDIALOGS, } +StaticPopupDialogs["WEAKAURAS_CONFIRM_IGNORE_UPDATES"] = { + text = L["Do you want to ignore all future updates for this aura"], + button1 = L["Yes"], + button2 = L["Cancel"], + OnAccept = function(self) + if self.data then + local auraData = WeakAuras.GetData(self.data) + if auraData then + for child in OptionsPrivate.Private.TraverseAll(auraData) do + child.ignoreWagoUpdate = true + end + end + WeakAuras.SortDisplayButtons(nil, true) + end + end, + OnCancel = function(self) end, + whileDead = true, + preferredindex = STATICPOPUP_NUMDIALOGS, +} + function OptionsPrivate.ConfirmDelete(toDelete, parents) if toDelete then local warningForm = L["You are about to delete %d aura(s). |cFFFF0000This cannot be undone!|r Would you like to continue?"] @@ -626,8 +646,9 @@ local function LayoutDisplayButtons(msg) --if(frame.addonsButton) then -- frame.buttonsScroll:AddChild(frame.addonsButton); --end - if WeakAurasCompanion and WeakAurasCompanion.stash and next(WeakAurasCompanion.stash) then - frame.buttonsScroll:AddChild(frame.pendingImportButton); + if WeakAurasCompanion then + frame.buttonsScroll:AddChild(frame.pendingInstallButton); + frame.buttonsScroll:AddChild(frame.pendingUpdateButton); end frame.buttonsScroll:AddChild(frame.loadedButton); frame.buttonsScroll:AddChild(frame.unloadedButton); @@ -665,10 +686,6 @@ local function LayoutDisplayButtons(msg) if(OptionsPrivate.Private.loaded[id] ~= nil) then button:PriorityShow(1); end - if WeakAurasCompanion and not button.data.parent then - -- initialize update icons on top level buttons - button:RefreshUpdate() - end end end OptionsPrivate.Private.ResumeAllDynamicGroups(); @@ -875,6 +892,7 @@ end local previousFilter; local pendingUpdateButtons = {} +local pendingInstallButtons = {} function WeakAuras.SortDisplayButtons(filter, overrideReset, id) if (OptionsPrivate.Private.IsOptionsProcessingPaused()) then return; @@ -893,38 +911,117 @@ function WeakAuras.SortDisplayButtons(filter, overrideReset, id) wipe(frame.buttonsScroll.children); - local pendingImportButtonShown = false + local pendingInstallButtonShown = false local CompanionData = WeakAurasCompanion and WeakAurasCompanion.WeakAuras or WeakAurasCompanion if CompanionData and CompanionData.stash then for id, companionData in pairs(CompanionData.stash) do - if not pendingImportButtonShown then - tinsert(frame.buttonsScroll.children, frame.pendingImportButton) - pendingImportButtonShown = true + if not pendingInstallButtonShown then + tinsert(frame.buttonsScroll.children, frame.pendingInstallButton) + pendingInstallButtonShown = true end - if frame.pendingImportButton:GetExpanded() then - if not(pendingUpdateButtons[id]) then - pendingUpdateButtons[id] = AceGUI:Create("WeakAurasPendingUpdateButton") - pendingUpdateButtons[id]:Initialize(id, companionData) + local child = pendingInstallButtons[id] + if frame.pendingInstallButton:GetExpanded() then + if not child then + child = AceGUI:Create("WeakAurasPendingInstallButton") + pendingInstallButtons[id] = child + child:Initialize(id, companionData) if companionData.logo then - pendingUpdateButtons[id]:SetLogo(companionData.logo) + child:SetLogo(companionData.logo) end if companionData.refreshLogo then - pendingUpdateButtons[id]:SetRefreshLogo(companionData.refreshLogo) + child:SetRefreshLogo(companionData.refreshLogo) end + child.frame:Show() + child:AcquireThumbnail() + frame.buttonsScroll:AddChild(child) end - pendingUpdateButtons[id].frame:Show() - pendingUpdateButtons[id]:AcquireThumbnail() - frame.buttonsScroll:AddChild(pendingUpdateButtons[id]) - elseif pendingUpdateButtons[id] then - pendingUpdateButtons[id].frame:Hide() - if pendingUpdateButtons[id].ReleaseThumbnail then - pendingUpdateButtons[id]:ReleaseThumbnail() + if not child.frame:IsShown() then + child.frame:Show() + child:AcquireThumbnail() + end + tinsert(frame.buttonsScroll.children, child) + elseif child then + child.frame:Hide() + if child.ReleaseThumbnail then + child:ReleaseThumbnail() end end end end - if not pendingImportButtonShown and frame.pendingImportButton then - frame.pendingImportButton.frame:Hide() + if not pendingInstallButtonShown and frame.pendingInstallButton then + frame.pendingInstallButton.frame:Hide() + end + + local pendingUpdateButtonShown = false + if CompanionData then + local buttonsShown = {} + for _, button in pairs(pendingUpdateButtons) do + button:ResetLinkedAuras() + end + for id, aura in pairs(WeakAurasSaved.displays) do + if not aura.ignoreWagoUpdate and aura.url and aura.url ~= "" then + local slug, version = aura.url:match("wago.io/([^/]+)/([0-9]+)") + if not slug and not version then + slug = aura.url:match("wago.io/([^/]+)$") + version = 1 + end + if slug and version then + local auraData = CompanionData.slugs and CompanionData.slugs[slug] + if auraData and auraData.wagoVersion then + if tonumber(auraData.wagoVersion) > tonumber(version) then + -- there is an update for this aura + if not pendingUpdateButtonShown then + tinsert(frame.buttonsScroll.children, frame.pendingUpdateButton) + pendingUpdateButtonShown = true + end + if frame.pendingUpdateButton:GetExpanded() then + local child = pendingUpdateButtons[slug] + if not child then + child = AceGUI:Create("WeakAurasPendingUpdateButton") + pendingUpdateButtons[slug] = child + child:Initialize(slug, auraData) + if auraData.logo then + child:SetLogo(auraData.logo) + end + if auraData.refreshLogo then + child:SetRefreshLogo(auraData.refreshLogo) + end + child.frame:Show() + child:AcquireThumbnail() + frame.buttonsScroll:AddChild(child) + end + if not child.frame:IsShown() then + child.frame:Show() + child:AcquireThumbnail() + end + if not buttonsShown[slug] then + tinsert(frame.buttonsScroll.children, child) + buttonsShown[slug] = true + end + child:MarkLinkedAura(id) + for childData in OptionsPrivate.Private.TraverseAllChildren(aura) do + child:MarkLinkedChildren(childData.id) + end + end + end + end + end + end + end + -- hide all buttons not marked as shown + for slug, button in pairs(pendingUpdateButtons) do + if not buttonsShown[slug] then + if button and button.frame:IsShown() then + button.frame:Hide() + if button.ReleaseThumbnail then + button:ReleaseThumbnail() + end + end + end + end + end + if not pendingUpdateButtonShown and frame.pendingUpdateButton then + frame.pendingUpdateButton.frame:Hide() end tinsert(frame.buttonsScroll.children, frame.loadedButton); @@ -1302,9 +1399,6 @@ function WeakAuras.UpdateDisplayButton(data) local button = displayButtons[id]; if (button) then button:UpdateThumbnail() - if WeakAurasCompanion and button:IsGroup() then - button:RefreshUpdate() - end end end @@ -1611,7 +1705,6 @@ function OptionsPrivate.DuplicateCollapseData(id, namespace, path) local tmp = collapsedOptions[id][namespace] local lastKey = tremove(path) for _, key in ipairs(path) do - print(" key: ", key) tmp[key] = tmp[key] or {} tmp = tmp[key] end diff --git a/WeakAurasTemplates/TriggerTemplates.lua b/WeakAurasTemplates/TriggerTemplates.lua index ffae752f56..0732701b13 100644 --- a/WeakAurasTemplates/TriggerTemplates.lua +++ b/WeakAurasTemplates/TriggerTemplates.lua @@ -133,6 +133,10 @@ local checks = { enchantMissing = { variable = "enchanted", value = 0 + }, + queued = { + variable = "show", + value = 1, } } @@ -192,6 +196,10 @@ local function GenericGlow(conditions, trigger, regionType, check) end end +local function isQueuedGlow(conditions, trigger, regionType) + GenericGlow(conditions, trigger, regionType, checks.queued) +end + local function isBuffedGlow(conditions, trigger, regionType) GenericGlow(conditions, trigger, regionType, checks.buffedAuraFound) end @@ -390,7 +398,6 @@ local function createOverlayGlowTrigger(triggers, position, item) }; end - local function createWeaponEnchantTrigger(triggers, position, item, showOn) triggers[position] = { trigger = { @@ -404,6 +411,21 @@ local function createWeaponEnchantTrigger(triggers, position, item, showOn) } end +local function createQueuedActionTrigger(triggers, position, item) + triggers[position] = { + trigger = { + type = WeakAuras.GetTriggerCategoryFor("Queued Action"), + event = "Queued Action", + spellName = item.spell + } + } +end + +local function createAbilityAndQueuedActionTrigger(triggers, item) + createAbilityTrigger(triggers, 1, item, "showAlways"); + createQueuedActionTrigger(triggers, 2, item); +end + local function createAbilityAndDurationTrigger(triggers, item) createDurationTrigger(triggers, 1, item); createAbilityTrigger(triggers, 2, item, "showAlways"); @@ -743,6 +765,19 @@ local function subTypesFor(item, regionType) data = dataGlow }); end + elseif (item.queued) then + tinsert(types, { + icon = icon.glow, + title = L["Show Cooldown and Action Queued"], + description = L["Highlight while action is queued."], + createTriggers = createAbilityAndQueuedActionTrigger, + createConditions = function(conditions, item, regionType) + insufficientResourcesBlue(conditions, 1, regionType); + isOnCdGrey(conditions, 1, regionType); + isQueuedGlow(conditions, 2, regionType); + end, + data = dataGlow + }); elseif (item.buff) then tinsert(types, { icon = icon.glow,