diff --git a/CHANGELOG.md b/CHANGELOG.md
index 7807422..f603da3 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,29 @@
All notable changes to MetaHunt will be documented in this file.
+## [1.3.0] - 2026-03-19
+
+
+### Added
+- Added a **3D Model Viewer** to the Hunter Book Beast Lore inspector panel. Clicking a beast in the list shows its in-game model.
+- Added a standalone **3D Model Viewer** that is shown when cliking the model of a beast in the Beast lore. The model is rotatable with the mouse, and you can browse all models of the same pet family and shows all other beasts that share the same skin, with one-click to jump to any of them in the Beast Lore.
+- Added a **Family icon** column to the Beast Lore list, replacing the text family name with the pet family icon for a more compact view.
+- Added an **Attack Speed (AS)** column to the Beast Lore list.
+- Added `displayId` and `skinId` fields to **all ~1000 beasts** in the MetaHunt datastore. `displayId` was scraped from the Turtle WoW DB, and `skinId` derived from it following an extraction on MPQ game files. This is what powers the model viewer and skin-grouping.
+- Added per-family icons to all 19 pet families in the family data table.
+- Added missing food types (`raw meat`, `raw fish`) to all pet families that accept `meat` or `fish` respectively (sourced from MPQ data).
+- Added **Profile Management** panel (Options → Profiles): save the current addon configuration as a named profile and instantly load it on any character. Profiles cover all module settings (ICU, Chronometer, AutoBuy, AutoQuest, SmartAmmo, Feed-O-Matic, zButtons layout) and per-character module enabled/disabled states.
+- Added automatic per-character **config snapshots** saved on every logout (`CharName-RealmName`), visible in the "Copy from Character" section — import any character's snapshot as a loadable profile in one click.
+
+
+### Fixed
+- Fixed the pet feeding counter never incrementing: `MTH_FEED_Trace` was a no-op stub and `FOM_CORE_ATTEMPT_TRACKING_ENABLED` was `false`; both are now active.
+- Fixed `FOM_AddFood` not clearing a food from `FOM_RemovedFoods` when the item belongs to the base diet list, which permanently banned it even after an explicit `/fom add`.
+- Wired `FOM_ClearItemBans` into the `/fom add` command path: explicitly re-adding a food now clears it from `FOM_RemovedFoods`, FOM quarantine, and core exceptions in one step.
+- Removed debug messages forgotten when releasing 1.2.
+- Fixed SmartAmmo + **Quiver castbar conflict**: Quiver's castbar was disappearing when both addons were active. Root cause: MetaHunt SmartAmmo was re-installing its hooks every 0.5 seconds, constantly bumping Quiver off the top of the hook chain. Fixed by removing the repeated re-hook and adding a guard that only installs once (or when no other addon is on top).
+
+
## [1.2.0] - 2026-03-10
### Added
diff --git a/MetaHunt.toc b/MetaHunt.toc
index cea76fc..f5da2b1 100644
--- a/MetaHunt.toc
+++ b/MetaHunt.toc
@@ -1,5 +1,5 @@
## Interface: 11200
-## Version: 1.2.0
+## Version: 1.3.0
## Title: MetaHunt - |cff00ff00Hunter
## Author: Metasploit and his Copilot ;)
## Notes: Unified addon suite for huntards making old addons compatible with TurtleWoW, and adding an arsenal of never seen Hunter's utilities.
@@ -35,6 +35,8 @@ data\ds-minimap-sizes.lua
data\ds-unit-coords.lua
data\ds-creature-coords.lua
data\ds-beasts-families.lua
+data\ds-beasts-families-dbc.lua
+data\ds-beasts-skins.lua
data\ds-pet-spells.lua
data\ds-pet-spells-trainer.lua
data\ds-racial.lua
diff --git a/api/constants.lua b/api/constants.lua
index 93da6aa..df3eb41 100644
--- a/api/constants.lua
+++ b/api/constants.lua
@@ -1,5 +1,5 @@
MTH_CONST = MTH_CONST or {}
-MTH_CONST.version = MTH_CONST.version or "1.2.0"
+MTH_CONST.version = MTH_CONST.version or "1.3.0"
MTH_CONST.WEAPON_TYPES = {
BOWS = "Bows",
diff --git a/api/core-feed-tracking.lua b/api/core-feed-tracking.lua
index f15689a..c80bf09 100644
--- a/api/core-feed-tracking.lua
+++ b/api/core-feed-tracking.lua
@@ -15,6 +15,7 @@ local MTH_FEED_TrackerFrame = nil
local MTH_FEED_ActiveCoreAttemptId = nil
local MTH_FEED_BootstrapFrame = nil
local MTH_FEED_NameToItemCache = {}
+local MTH_FEED_InvalidateDietMapCache
local MTH_FEED_HARDCODED_LEVEL_RULES = {
{ minPetLevel = 1, minFoodLevel = 1 },
@@ -28,7 +29,10 @@ local MTH_FEED_HARDCODED_LEVEL_RULES = {
MTH_FEED_TRACE = false
local function MTH_FEED_Trace(message)
- return
+ if not MTH_FEED_TRACE then return end
+ if type(DEFAULT_CHAT_FRAME) == "table" and DEFAULT_CHAT_FRAME.AddMessage then
+ DEFAULT_CHAT_FRAME:AddMessage("|cff88aaff[MTH-FeedTrack]|r " .. tostring(message))
+ end
end
local function MTH_FEED_Now()
@@ -636,6 +640,7 @@ end
function MTH_FEED_ReinstallCoreTracking()
local ok = MTH_FEED_InstallCoreHooks()
+ MTH_FEED_EnsureTrackerFrame()
return ok and true or false
end
@@ -852,7 +857,7 @@ end
local MTH_FEED_DietMapCache = nil
-local function MTH_FEED_InvalidateDietMapCache()
+MTH_FEED_InvalidateDietMapCache = function()
MTH_FEED_DietMapCache = nil
end
@@ -1457,6 +1462,30 @@ function MTH_FEED_GetSessionFeedCount(petId)
return tonumber(MTH_FEED_Runtime.sessionFeedsByPetId[petKey]) or 0
end
+function MTH_FEED_DebugSessionFeeds()
+ local pet = MTH_FEED_GetCurrentPetContext()
+ local petId = pet and pet.petId or "(none)"
+ local count = MTH_FEED_GetSessionFeedCount(petId)
+ local hookOk = MTH_FEED_IsCoreHookInstalled()
+ local frameOk = MTH_FEED_TrackerFrame ~= nil
+ local activeId = tostring(MTH_FEED_ActiveCoreAttemptId or "nil")
+ if type(DEFAULT_CHAT_FRAME) == "table" and DEFAULT_CHAT_FRAME.AddMessage then
+ DEFAULT_CHAT_FRAME:AddMessage("|cff88aaff[MTH-FeedTrack]|r petId=" .. tostring(petId)
+ .. " feeds=" .. tostring(count)
+ .. " hookOk=" .. tostring(hookOk)
+ .. " frameOk=" .. tostring(frameOk)
+ .. " activeAttempt=" .. activeId)
+ local anyFeeds = false
+ for k, v in pairs(MTH_FEED_Runtime.sessionFeedsByPetId) do
+ anyFeeds = true
+ DEFAULT_CHAT_FRAME:AddMessage("|cff88aaff[MTH-FeedTrack]|r session petId='" .. tostring(k) .. "' count=" .. tostring(v))
+ end
+ if not anyFeeds then
+ DEFAULT_CHAT_FRAME:AddMessage("|cff88aaff[MTH-FeedTrack]|r (no session feeds recorded)")
+ end
+ end
+end
+
function MTH_FEED_RecordUnknownFoodCandidate(payload)
local store = MTH_FEED_EnsureStore()
local itemId = payload and tonumber(payload.itemId) or nil
diff --git a/api/core-framework.lua b/api/core-framework.lua
index b4a8cee..ec823d1 100644
--- a/api/core-framework.lua
+++ b/api/core-framework.lua
@@ -1,5 +1,5 @@
MTH = MTH or {
- version = "1.2.0",
+ version = "1.3.0",
name = "MetaHunt",
modules = {},
config = {},
diff --git a/api/debug-frame.lua b/api/debug-frame.lua
index 42cbb51..ecea3ff 100644
--- a/api/debug-frame.lua
+++ b/api/debug-frame.lua
@@ -373,9 +373,6 @@ eventFrame:SetScript("OnEvent", function()
end
MTH_DF_InstallHooks()
MTH_DebugFrame:Initialize()
- if MTH and MTH.Print then
- local mode = MTH_DF_IsGlobalCaptureEnabled() and "legacy-global" or "safe-local"
- MTH:Print("=== MetaHunt Debug Frame Initialized (" .. mode .. ") ===", "debug")
- end
+
end
end)
diff --git a/api/hunterbook-model-viewer.lua b/api/hunterbook-model-viewer.lua
new file mode 100644
index 0000000..f353e04
--- /dev/null
+++ b/api/hunterbook-model-viewer.lua
@@ -0,0 +1,430 @@
+-- hunterbook-model-viewer.lua
+-- Embeds a small 3D creature skin preview at the bottom of the Beast Lore /
+-- Abilities inspector. Clicking it opens a larger draggable popup with
+-- < / > navigation through all skin variants of the selected family.
+--
+-- Uses MTH_DS_BeastSkins[familyName] generated by .tools/generators/gen_beast_skins.py
+-- Skin rendering: PlayerModel:SetUnit(CreatureDisplayInfo.ID)
+
+local function mv_log(msg)
+ if MTH_DebugFrame and type(MTH_DebugFrame.AddInfo) == "function" then
+ MTH_DebugFrame:AddInfo("[MV] " .. tostring(msg))
+ end
+end
+
+local function mv_err(msg)
+ if MTH_DebugFrame and type(MTH_DebugFrame.AddError) == "function" then
+ MTH_DebugFrame:AddError("[MV] " .. tostring(msg))
+ end
+end
+
+local MTH_MV = {
+ inited = false,
+ family = nil,
+ skins = {},
+ index = 1,
+ facing = 0.6,
+ rotating = false,
+ rotateLastX = 0,
+ keepPopup = false,
+ skinBeastRows = {},
+ skinListEmpty = nil,
+ -- small preview (parented to book frame, anchored below MTH_BOOK_DetailBackdrop)
+ previewFrame = nil,
+ previewModel = nil,
+ -- popup
+ popup = nil,
+ popupModel = nil,
+ popupTitle = nil,
+ popupSkinLabel = nil,
+}
+
+-- ---------------------------------------------------------------------------
+-- Internal
+-- ---------------------------------------------------------------------------
+
+local function MTH_MV_ApplyModel(model, skinId)
+ if not model or not skinId then
+ mv_err("ApplyModel: nil model or skinId model="..tostring(model).." id="..tostring(skinId))
+ return
+ end
+ mv_log("ApplyModel id="..tostring(skinId))
+ model:SetUnit(skinId)
+ model:SetPosition(0, 0, 0)
+ model:SetModelScale(1)
+ local useFacing = (MTH_MV.popupModel ~= nil and model == MTH_MV.popupModel)
+ model:SetFacing(useFacing and MTH_MV.facing or 0.6)
+end
+
+local MTH_MV_BuildSkinBeastList -- forward declaration
+
+local function MTH_MV_DisplayCurrent()
+ local skin = MTH_MV.skins[MTH_MV.index]
+ if not skin then return end
+ local n = table.getn(MTH_MV.skins)
+
+ MTH_MV_ApplyModel(MTH_MV.previewModel, skin.id)
+ MTH_MV_ApplyModel(MTH_MV.popupModel, skin.id)
+
+ local indexStr = tostring(MTH_MV.index) .. " / " .. tostring(n)
+ if MTH_MV.popupSkinLabel then
+ MTH_MV.popupSkinLabel:SetText(indexStr .. " · " .. tostring(skin.tex or ""))
+ end
+ MTH_MV_BuildSkinBeastList(skin.id)
+end
+
+MTH_MV_BuildSkinBeastList = function(skinId)
+ for i = 1, table.getn(MTH_MV.skinBeastRows) do
+ MTH_MV.skinBeastRows[i]:Hide()
+ end
+ if MTH_MV.skinListEmpty then MTH_MV.skinListEmpty:Hide() end
+ if not skinId or not MTH_DS_Beasts then return end
+
+ local matches = {}
+ for npcId, beast in pairs(MTH_DS_Beasts) do
+ if type(beast) == "table" and beast.skinId == skinId then
+ local nm = (MTH and MTH.GetLocalizedBeastName and MTH:GetLocalizedBeastName(npcId, beast.name)) or beast.name
+ table.insert(matches, { id = npcId, name = nm or "?", lvl = tostring(beast.lvl or "?") })
+ end
+ end
+ table.sort(matches, function(a, b) return (a.name or "") < (b.name or "") end)
+
+ local maxRows = table.getn(MTH_MV.skinBeastRows)
+ local shown = 0
+ for i = 1, table.getn(matches) do
+ if shown >= maxRows then break end
+ shown = shown + 1
+ local row = MTH_MV.skinBeastRows[shown]
+ row._npcId = matches[i].id
+ row.nameText:SetText(matches[i].name)
+ row.lvlText:SetText(matches[i].lvl)
+ row:Show()
+ end
+ if shown == 0 and MTH_MV.skinListEmpty then
+ MTH_MV.skinListEmpty:Show()
+ end
+end
+
+local function MTH_MV_Init()
+ if MTH_MV.inited then mv_log("Init: already done") return end
+ mv_log("Init: starting")
+ local backdrop = getglobal("MTH_BOOK_DetailBackdrop")
+ if not backdrop then
+ mv_err("Init: MTH_BOOK_DetailBackdrop not found")
+ return
+ end
+ mv_log("Init: backdrop found, creating previewFrame")
+ MTH_MV.inited = true
+
+ -- ----------------------------------------------------------------
+ -- Model preview container (sibling of inspector, full column width)
+ -- Hardcoded offset from book frame TOPLEFT: x=608 (right column),
+ -- y = -(166 inspector_top + 178 inspector_h + 6 gap) = -350
+ -- ----------------------------------------------------------------
+ local bookFrame = backdrop:GetParent()
+ MTH_MV.previewFrame = CreateFrame("Frame", "MTH_BOOK_SkinPreview", bookFrame)
+ MTH_MV.previewFrame:SetWidth(136)
+ MTH_MV.previewFrame:SetHeight(136)
+ MTH_MV.previewFrame:SetPoint("TOPLEFT", bookFrame, "TOPLEFT", 608, -384)
+ MTH_MV.previewFrame:SetBackdrop({
+ bgFile = "Interface\\Buttons\\WHITE8X8",
+ edgeFile = "Interface\\Tooltips\\UI-Tooltip-Border",
+ tile = true, tileSize = 16, edgeSize = 12,
+ insets = {left = 3, right = 3, top = 3, bottom = 3},
+ })
+ MTH_MV.previewFrame:SetBackdropColor(0, 0, 0, 0.7)
+ MTH_MV.previewFrame:SetBackdropBorderColor(0.35, 0.35, 0.35, 0.8)
+ MTH_MV.previewFrame:Hide()
+
+ mv_log("Init: previewFrame created, creating PlayerModel")
+ -- PlayerModel fills the inner area
+ MTH_MV.previewModel = CreateFrame("PlayerModel", nil, MTH_MV.previewFrame)
+ MTH_MV.previewModel:SetPoint("TOPLEFT", MTH_MV.previewFrame, "TOPLEFT", 3, -3)
+ MTH_MV.previewModel:SetPoint("BOTTOMRIGHT", MTH_MV.previewFrame, "BOTTOMRIGHT", -3, 3)
+
+ -- Invisible click overlay → opens popup
+ local previewBtn = CreateFrame("Button", nil, MTH_MV.previewFrame)
+ previewBtn:SetAllPoints(MTH_MV.previewFrame)
+ previewBtn:SetHighlightTexture("Interface\\Buttons\\ButtonHilight-Square")
+ previewBtn:SetScript("OnClick", function()
+ MTH_BOOK_ModelViewer_OpenPopup()
+ end)
+ previewBtn:SetScript("OnEnter", function()
+ GameTooltip:SetOwner(MTH_MV.previewFrame, "ANCHOR_LEFT")
+ GameTooltip:AddLine("Click to open skin viewer", 1, 1, 1)
+ GameTooltip:Show()
+ end)
+ previewBtn:SetScript("OnLeave", function()
+ GameTooltip:Hide()
+ end)
+
+ mv_log("Init: previewModel created, creating popup")
+ -- ----------------------------------------------------------------
+ -- Popup frame (wider: left side = model viewer, right = beast list)
+ -- ----------------------------------------------------------------
+ local popup = CreateFrame("Frame", "MTH_BOOK_ModelPopup", UIParent)
+ popup:SetWidth(490)
+ popup:SetHeight(320)
+ popup:SetPoint("CENTER", UIParent, "CENTER", 0, 0)
+ popup:SetFrameStrata("TOOLTIP")
+ popup:SetToplevel(true)
+ popup:SetMovable(true)
+ popup:EnableMouse(true)
+ popup:RegisterForDrag("LeftButton")
+ popup:SetScript("OnDragStart", function() this:StartMoving() end)
+ popup:SetScript("OnDragStop", function() this:StopMovingOrSizing() end)
+ popup:SetScript("OnHide", function() MTH_MV.rotating = false end)
+ popup:Hide()
+ popup:SetBackdrop({
+ bgFile = "Interface\\Buttons\\WHITE8X8",
+ edgeFile = "Interface\\DialogFrame\\UI-DialogBox-Border",
+ tile = true, tileSize = 32, edgeSize = 32,
+ insets = {left = 11, right = 12, top = 12, bottom = 11},
+ })
+ popup:SetBackdropColor(0.05, 0.05, 0.08, 0.95)
+
+ -- Large model background (left side, x=20)
+ local modelBg = CreateFrame("Frame", nil, popup)
+ modelBg:SetWidth(224)
+ modelBg:SetHeight(226)
+ modelBg:SetPoint("TOPLEFT", popup, "TOPLEFT", 20, -42)
+ modelBg:SetBackdrop({
+ bgFile = "Interface\\Buttons\\WHITE8X8",
+ edgeFile = "Interface\\Tooltips\\UI-Tooltip-Border",
+ tile = true, tileSize = 16, edgeSize = 12,
+ insets = {left = 3, right = 3, top = 3, bottom = 3},
+ })
+ modelBg:SetBackdropColor(0, 0, 0, 0.85)
+ modelBg:SetBackdropBorderColor(0.35, 0.35, 0.35, 0.9)
+
+ MTH_MV.popupModel = CreateFrame("PlayerModel", "MTH_BOOK_ModelPopupModel", modelBg)
+ MTH_MV.popupModel:SetPoint("TOPLEFT", modelBg, "TOPLEFT", 3, -3)
+ MTH_MV.popupModel:SetPoint("BOTTOMRIGHT", modelBg, "BOTTOMRIGHT", -3, 3)
+
+ -- Mouse rotation: drag on the black model area rotates; outside drags the popup
+ MTH_MV.popupModel:EnableMouse(true)
+ MTH_MV.popupModel:SetScript("OnMouseDown", function()
+ MTH_MV.rotating = true
+ MTH_MV.rotateLastX = GetCursorPosition()
+ end)
+ MTH_MV.popupModel:SetScript("OnMouseUp", function()
+ MTH_MV.rotating = false
+ end)
+ MTH_MV.popupModel:SetScript("OnUpdate", function()
+ if not MTH_MV.rotating then return end
+ local cx = GetCursorPosition()
+ local dx = cx - MTH_MV.rotateLastX
+ MTH_MV.rotateLastX = cx
+ if dx ~= 0 then
+ MTH_MV.facing = MTH_MV.facing - dx * 0.03
+ MTH_MV.popupModel:SetFacing(MTH_MV.facing)
+ end
+ end)
+
+ -- Title (family name) anchored above the model
+ MTH_MV.popupTitle = popup:CreateFontString(nil, "OVERLAY", "GameFontNormal")
+ MTH_MV.popupTitle:SetPoint("TOP", modelBg, "TOP", 0, 18)
+ MTH_MV.popupTitle:SetTextColor(1, 0.82, 0)
+ MTH_MV.popupTitle:SetText("Skin Viewer")
+
+ -- Close [X] button
+ local closeBtn = CreateFrame("Button", nil, popup)
+ closeBtn:SetWidth(22)
+ closeBtn:SetHeight(22)
+ closeBtn:SetPoint("TOPRIGHT", popup, "TOPRIGHT", -10, -10)
+ closeBtn:SetHighlightTexture("Interface\\Buttons\\ButtonHilight-Square")
+ local closeLbl = closeBtn:CreateFontString(nil, "OVERLAY", "GameFontNormal")
+ closeLbl:SetAllPoints(closeBtn)
+ closeLbl:SetText("X")
+ closeLbl:SetTextColor(0.9, 0.9, 0.9)
+ closeBtn:SetScript("OnClick", function() this:GetParent():Hide() end)
+
+ -- "Unique Appearance" badge removed (inline texture syntax unsupported in this client)
+
+ -- Nav: ◀ label ▶ (kept within the left 264px area)
+ local prevBtn = CreateFrame("Button", nil, popup, "UIPanelButtonTemplate")
+ prevBtn:SetWidth(28)
+ prevBtn:SetHeight(20)
+ prevBtn:SetPoint("BOTTOMLEFT", popup, "BOTTOMLEFT", 14, 14)
+ prevBtn:SetText("<")
+ prevBtn:SetScript("OnClick", function()
+ local n = table.getn(MTH_MV.skins)
+ if n < 1 then return end
+ MTH_MV.index = MTH_MV.index - 1
+ if MTH_MV.index < 1 then MTH_MV.index = n end
+ MTH_MV_DisplayCurrent()
+ end)
+
+ local nextBtn = CreateFrame("Button", nil, popup, "UIPanelButtonTemplate")
+ nextBtn:SetWidth(28)
+ nextBtn:SetHeight(20)
+ nextBtn:SetPoint("BOTTOMLEFT", popup, "BOTTOMLEFT", 222, 14)
+ nextBtn:SetText(">")
+ nextBtn:SetScript("OnClick", function()
+ local n = table.getn(MTH_MV.skins)
+ if n < 1 then return end
+ MTH_MV.index = MTH_MV.index + 1
+ if MTH_MV.index > n then MTH_MV.index = 1 end
+ MTH_MV_DisplayCurrent()
+ end)
+
+ MTH_MV.popupSkinLabel = popup:CreateFontString(nil, "OVERLAY", "GameFontNormalSmall")
+ MTH_MV.popupSkinLabel:SetPoint("BOTTOMLEFT", prevBtn, "BOTTOMRIGHT", 4, 0)
+ MTH_MV.popupSkinLabel:SetPoint("BOTTOMRIGHT", nextBtn, "BOTTOMLEFT", -4, 0)
+ MTH_MV.popupSkinLabel:SetJustifyH("CENTER")
+ MTH_MV.popupSkinLabel:SetTextColor(0.9, 0.9, 0.9)
+
+ -- ---------------------------------------------------------------
+ -- Right panel: vertical divider + beast list
+ -- ---------------------------------------------------------------
+ local divider = popup:CreateTexture(nil, "ARTWORK")
+ divider:SetTexture("Interface\\Buttons\\WHITE8X8")
+ divider:SetVertexColor(0.35, 0.35, 0.35, 0.8)
+ divider:SetPoint("TOPLEFT", popup, "TOPLEFT", 270, -36)
+ divider:SetPoint("BOTTOMLEFT", popup, "BOTTOMLEFT", 270, 12)
+ divider:SetWidth(1)
+
+ local listHeader = popup:CreateFontString(nil, "OVERLAY", "GameFontNormalSmall")
+ listHeader:SetPoint("TOPLEFT", popup, "TOPLEFT", 278, -18)
+ listHeader:SetTextColor(1, 0.82, 0)
+ listHeader:SetText("Beasts with this skin")
+
+ local listSep = popup:CreateTexture(nil, "ARTWORK")
+ listSep:SetTexture("Interface\\Buttons\\WHITE8X8")
+ listSep:SetVertexColor(0.35, 0.35, 0.35, 0.6)
+ listSep:SetPoint("TOPLEFT", popup, "TOPLEFT", 278, -30)
+ listSep:SetPoint("TOPRIGHT", popup, "TOPRIGHT", -10, -30)
+ listSep:SetHeight(1)
+
+ MTH_MV.skinListEmpty = popup:CreateFontString(nil, "OVERLAY", "GameFontNormalSmall")
+ MTH_MV.skinListEmpty:SetPoint("TOPLEFT", popup, "TOPLEFT", 278, -38)
+ MTH_MV.skinListEmpty:SetTextColor(0.5, 0.5, 0.5)
+ MTH_MV.skinListEmpty:SetText("\226\128\148")
+ MTH_MV.skinListEmpty:Hide()
+
+ -- Beast rows (14 max)
+ local ROW_X = 278
+ local ROW_START = -36
+ local ROW_H = 17
+ local MAX_ROWS = 14
+ for i = 1, MAX_ROWS do
+ local row = CreateFrame("Button", nil, popup)
+ row:SetPoint("TOPLEFT", popup, "TOPLEFT", ROW_X, ROW_START - (i - 1) * ROW_H)
+ row:SetWidth(200)
+ row:SetHeight(ROW_H - 1)
+ row._npcId = nil
+
+ local hl = row:CreateTexture(nil, "HIGHLIGHT")
+ hl:SetAllPoints(row)
+ hl:SetTexture("Interface\\QuestFrame\\UI-QuestTitleHighlight")
+ hl:SetBlendMode("ADD")
+ hl:SetAlpha(0.35)
+
+ row.nameText = row:CreateFontString(nil, "OVERLAY", "GameFontHighlightSmall")
+ row.nameText:SetPoint("LEFT", row, "LEFT", 0, 0)
+ row.nameText:SetWidth(158)
+ row.nameText:SetJustifyH("LEFT")
+
+ row.lvlText = row:CreateFontString(nil, "OVERLAY", "GameFontNormalSmall")
+ row.lvlText:SetPoint("LEFT", row, "LEFT", 160, 0)
+ row.lvlText:SetWidth(38)
+ row.lvlText:SetJustifyH("LEFT")
+ row.lvlText:SetTextColor(0.7, 0.7, 0.7)
+
+ row:SetScript("OnClick", function()
+ if this._npcId and type(MTH_BOOK_JumpToBeastById) == "function" then
+ MTH_MV.keepPopup = true
+ MTH_BOOK_JumpToBeastById(this._npcId)
+ MTH_MV.keepPopup = false
+ end
+ end)
+ row:Hide()
+ MTH_MV.skinBeastRows[i] = row
+ end
+
+ MTH_MV.popup = popup
+ mv_log("Init: complete")
+end
+
+-- ---------------------------------------------------------------------------
+-- Public API
+-- ---------------------------------------------------------------------------
+
+function MTH_BOOK_ModelViewer_SetFamily(family, skinId)
+ mv_log("SetFamily: "..tostring(family).." skinId="..tostring(skinId))
+ MTH_MV_Init()
+ if not MTH_MV.inited then mv_err("SetFamily: init failed") return end
+ local skins = MTH_DS_BeastSkins and type(MTH_DS_BeastSkins) == "table" and MTH_DS_BeastSkins[family]
+ if not skins or table.getn(skins) == 0 then
+ mv_log("SetFamily: no skins for "..tostring(family).." DS type="..type(MTH_DS_BeastSkins or false))
+ MTH_BOOK_ModelViewer_Clear()
+ return
+ end
+
+ -- Filter to only skins used by at least one tameable beast
+ local usedSkinIds = {}
+ if MTH_DS_Beasts then
+ for _, beast in pairs(MTH_DS_Beasts) do
+ if type(beast) == "table" and beast.skinId then
+ usedSkinIds[beast.skinId] = true
+ end
+ end
+ end
+ local filteredSkins = {}
+ for i = 1, table.getn(skins) do
+ if usedSkinIds[skins[i].id] then
+ table.insert(filteredSkins, skins[i])
+ end
+ end
+ if table.getn(filteredSkins) == 0 then
+ MTH_BOOK_ModelViewer_Clear()
+ return
+ end
+ mv_log("SetFamily: "..table.getn(filteredSkins).." tameable skins (filtered from "..table.getn(skins)..")")
+
+ MTH_MV.family = family
+ MTH_MV.skins = filteredSkins
+ MTH_MV.facing = 0.6
+
+ -- If we have a specific skinId, jump to the matching skin entry.
+ MTH_MV.index = 1
+ if skinId then
+ for i = 1, table.getn(filteredSkins) do
+ if filteredSkins[i].id == skinId then
+ MTH_MV.index = i
+ mv_log("SetFamily: skinId "..skinId.." matched skin index "..i)
+ break
+ end
+ end
+ end
+
+ if MTH_MV.popupTitle then
+ MTH_MV.popupTitle:SetText(tostring(family) .. " — Skins")
+ end
+
+ MTH_MV_DisplayCurrent()
+
+ if MTH_MV.previewFrame then MTH_MV.previewFrame:Show() end
+ MTH_MV_DisplayCurrent()
+end
+
+function MTH_BOOK_ModelViewer_Clear()
+ mv_log("Clear")
+ if MTH_MV.previewFrame then MTH_MV.previewFrame:Hide() end
+ if not MTH_MV.keepPopup then
+ if MTH_MV.popup and MTH_MV.popup:IsShown() then MTH_MV.popup:Hide() end
+ end
+ MTH_MV.family = nil
+ MTH_MV.skins = {}
+ MTH_MV.index = 1
+end
+
+function MTH_BOOK_ModelViewer_OpenPopup()
+ mv_log("OpenPopup skins="..table.getn(MTH_MV.skins))
+ MTH_MV_Init()
+ if not MTH_MV.popup then mv_err("OpenPopup: no popup frame") return end
+ if table.getn(MTH_MV.skins) == 0 then mv_log("OpenPopup: no skins") return end
+ MTH_MV.popup:Show()
+ MTH_MV.popup:Raise()
+ MTH_MV_DisplayCurrent()
+end
diff --git a/api/hunterbook-tab-beastlore.lua b/api/hunterbook-tab-beastlore.lua
index 62804db..fac08cf 100644
--- a/api/hunterbook-tab-beastlore.lua
+++ b/api/hunterbook-tab-beastlore.lua
@@ -2,17 +2,18 @@ if type(MTH_HUNTERBOOK_TABS) ~= "table" then MTH_HUNTERBOOK_TABS = {} end
MTH_HUNTERBOOK_TABS.pets = {
headerLabel = "Beasts",
- columnLabels = { "ID", "Lvl", "Family", "Name", "Abilities", "Zone", "R", "E", "U" },
+ columnLabels = { "ID", "Lvl", "Fam", "Name", "Abilities", "Zone", "R", "E", "U", "AS" },
columnLayout = {
{ x = 8, width = 28, align = "LEFT" },
{ x = 38, width = 30, align = "LEFT" },
- { x = 68, width = 74, align = "LEFT" },
- { x = 142, width = 130, align = "LEFT" },
- { x = 272, width = 180, align = "LEFT" },
- { x = 452, width = 68, align = "LEFT" },
- { x = 520, width = 10, align = "CENTER" },
- { x = 532, width = 10, align = "CENTER" },
- { x = 544, width = 10, align = "CENTER" },
+ { x = 68, width = 18, align = "LEFT" },
+ { x = 88, width = 130, align = "LEFT" },
+ { x = 220, width = 148, align = "LEFT" },
+ { x = 370, width = 80, align = "LEFT" },
+ { x = 452, width = 14, align = "CENTER" },
+ { x = 468, width = 14, align = "CENTER" },
+ { x = 484, width = 14, align = "CENTER" },
+ { x = 500, width = 54, align = "LEFT" },
},
}
diff --git a/api/hunterbook-tab-families.lua b/api/hunterbook-tab-families.lua
index cd049b1..f72cba7 100644
--- a/api/hunterbook-tab-families.lua
+++ b/api/hunterbook-tab-families.lua
@@ -13,7 +13,6 @@ MTH_HUNTERBOOK_TABS.families = {
}
local function MTH_BOOKTAB_FamiliesTrace(message)
- return
end
local function MTH_BOOKTAB_FamiliesSafeLower(value)
@@ -83,6 +82,7 @@ function MTH_BOOKTAB_BuildFamiliesRows()
for familyName, familyRow in pairs(families) do
if type(familyRow) == "table" then
+ MTH_BOOKTAB_FamiliesTrace("BUILD " .. tostring(familyName) .. " icon=" .. tostring(familyRow.icon))
local abilities = {}
local seen = {}
@@ -191,6 +191,7 @@ function MTH_BOOKTAB_BuildFamiliesRows()
table.insert(results, {
family = tostring(familyName),
+ icon = familyRow.icon or nil,
named = tonumber(familyRow.named) or 0,
coords = tonumber(familyRow.coords) or 0,
abilities = abilities,
@@ -289,9 +290,15 @@ function MTH_BOOKTAB_EnsureFamiliesUI()
row:SetPoint("TOPRIGHT", ui.rows[i - 1], "BOTTOMRIGHT", 0, -1)
end
+ row.familyIcon = row:CreateTexture(nil, "ARTWORK")
+ row.familyIcon:SetPoint("LEFT", row, "LEFT", 4, 0)
+ row.familyIcon:SetWidth(16)
+ row.familyIcon:SetHeight(16)
+ row.familyIcon:Hide()
+
row.family = row:CreateFontString(nil, "ARTWORK", "GameFontHighlightSmall")
- row.family:SetPoint("LEFT", row, "LEFT", 4, 0)
- row.family:SetWidth(106)
+ row.family:SetPoint("LEFT", row, "LEFT", 24, 0)
+ row.family:SetWidth(88)
row.family:SetJustifyH("LEFT")
row.named = row:CreateFontString(nil, "ARTWORK", "GameFontHighlightSmall")
@@ -393,6 +400,14 @@ function MTH_BOOKTAB_RenderFamiliesList()
if row then
rowFrame:Show()
rowFrame.family:SetText(tostring(row.family or "-"))
+ local familyIconPath = row.icon and MTH_BOOK_ResolveIconPath and MTH_BOOK_ResolveIconPath(row.icon) or nil
+ MTH_BOOKTAB_FamiliesTrace("RENDER " .. tostring(row.family) .. " icon=" .. tostring(row.icon) .. " path=" .. tostring(familyIconPath))
+ if familyIconPath then
+ rowFrame.familyIcon:SetTexture(familyIconPath)
+ rowFrame.familyIcon:Show()
+ else
+ rowFrame.familyIcon:Hide()
+ end
rowFrame.named:SetText(tostring(row.named or 0))
rowFrame.coords:SetText(tostring(row.coords or 0))
rowFrame.diet:SetText(tostring(row.dietText or "-"))
diff --git a/api/hunterbook.lua b/api/hunterbook.lua
index 94f1659..d904f26 100644
--- a/api/hunterbook.lua
+++ b/api/hunterbook.lua
@@ -150,7 +150,7 @@ local function MTH_HB_RequireOpenDeps()
return true
end
-local MTH_BOOK_MAX_COLS = 9
+local MTH_BOOK_MAX_COLS = 10
local MTH_BOOK_MAX_ROWS = 20
local MTH_BOOK_PetFamilyOptions = {
@@ -222,7 +222,8 @@ local MTH_BOOK_CONTENT_LAYOUT_DEFAULT = {
detailX = 608,
detailY = -166,
detailW = 136,
- detailH = 324,
+ detailH = 208,
+ detailTextH = 192, -- inspector text only; model viewer sits below in its own frame
}
local MTH_BOOK_CONTENT_LAYOUT_ITEMS = {
@@ -328,7 +329,7 @@ local function MTH_BOOK_ApplyContentLayoutForMode()
detailText:ClearAllPoints()
detailText:SetPoint("TOPLEFT", detailParent, "TOPLEFT", 6, -6)
detailText:SetWidth(layout.detailW - 12)
- detailText:SetHeight(layout.detailH - 12)
+ detailText:SetHeight(layout.detailTextH or (layout.detailH - 12))
end
local sliderHeight = layout.listH - 32
@@ -1281,6 +1282,7 @@ local function MTH_BOOK_GetSortKey(entry, col)
if col == 7 then return traits.rare and 1 or 0 end
if col == 8 then return traits.elite and 1 or 0 end
if col == 9 then return traits.unique and 1 or 0 end
+ if col == 10 then return tonumber(beast.attackSpeed) or 0 end
end
if MTH_BOOK_STATE.mode == "abilities" then
@@ -2994,9 +2996,14 @@ end
function MTH_BOOK_UpdateDetail()
local detail = getglobal("MTH_BOOK_DetailBackdropDetailText")
if not detail then return end
+ -- Hide model skin preview when not in a beast-list mode
+ if MTH_BOOK_STATE.mode ~= "pets" and MTH_BOOK_STATE.mode ~= "abilities" then
+ if MTH_BOOK_ModelViewer_Clear then MTH_BOOK_ModelViewer_Clear() end
+ end
local petTop = MTH_BOOK_STATE.petUI and MTH_BOOK_STATE.petUI.detailTop
local petBottom = MTH_BOOK_STATE.petUI and MTH_BOOK_STATE.petUI.detailBottom
if not MTH_BOOK_STATE.selectedEntry then
+ if MTH_BOOK_ModelViewer_Clear then MTH_BOOK_ModelViewer_Clear() end
if MTH_BOOK_STATE.mode == "petabilities" then
if petTop and petBottom then
MTH_BOOK_SetDetailText(petTop, "|cFFFFD100Baseline|r\n\nSelect a spell baseline from the left list.")
@@ -3090,26 +3097,7 @@ function MTH_BOOK_UpdateDetail()
MTH_BOOK_AddDetailKV(lines, "Rare", beast.rare and "Yes" or "No")
MTH_BOOK_AddDetailKV(lines, "Abilities", beast.abilities or "None")
- local fam = MTH_DS_Families and beast.family and MTH_DS_Families[beast.family]
- if fam and fam.abilities and table.getn(fam.abilities) > 0 then
- MTH_BOOK_AddDetailSection(lines, "Family Pool")
- table.insert(lines, " " .. table.concat(fam.abilities, ", "))
- end
-
- if beast.coords and table.getn(beast.coords) > 0 then
- MTH_BOOK_AddDetailSection(lines, "Locations")
- for i = 1, table.getn(beast.coords) do
- local c = beast.coords[i]
- if c then
- local x = tonumber(c[1] or 0) or 0
- local y = tonumber(c[2] or 0) or 0
- local zoneId = c[3]
- table.insert(lines, string.format(" - %s (%.1f, %.1f)", MTH_BOOK_GetZoneName(zoneId), x, y))
- end
- if i >= 8 then break end
- end
- end
-
+ if MTH_BOOK_ModelViewer_SetFamily then MTH_BOOK_ModelViewer_SetFamily(beast.family, beast.skinId) end
MTH_BOOK_SetDetailText(detail, table.concat(lines, "\n"))
MTH_BOOK_UpdateOpenMapButton()
return
@@ -3145,20 +3133,7 @@ function MTH_BOOK_UpdateDetail()
end
MTH_BOOK_AddDetailKV(lines, "Rare", beast.rare and "Yes" or "No")
- if beast.coords and table.getn(beast.coords) > 0 then
- MTH_BOOK_AddDetailSection(lines, "Locations")
- for i = 1, table.getn(beast.coords) do
- local c = beast.coords[i]
- if c then
- local x = tonumber(c[1] or 0) or 0
- local y = tonumber(c[2] or 0) or 0
- local zoneId = c[3]
- table.insert(lines, string.format(" - %s (%.1f, %.1f)", MTH_BOOK_GetZoneName(zoneId), x, y))
- end
- if i >= 8 then break end
- end
- end
-
+ if MTH_BOOK_ModelViewer_SetFamily then MTH_BOOK_ModelViewer_SetFamily(beast.family, beast.skinId) end
MTH_BOOK_SetDetailText(detail, table.concat(lines, "\n"))
MTH_BOOK_UpdateOpenMapButton()
return
@@ -3467,7 +3442,7 @@ local function MTH_BOOK_GetColumnLabels()
return tabDef.columnLabels
end
if MTH_BOOK_STATE.mode == "pets" then
- return { "ID", "Lvl", "Family", "Name", "Abilities", "Zone", "R", "E", "U" }
+ return { "ID", "Lvl", "Fam", "Name", "Abilities", "Zone", "R", "E", "U", "AS" }
elseif MTH_BOOK_STATE.mode == "petabilities" then
return { "Ability Name", "Ranks", "Families" }
elseif MTH_BOOK_STATE.mode == "stable" then
@@ -3493,13 +3468,14 @@ local function MTH_BOOK_GetColumnLayout()
return {
{ x = 8, width = 28, align = "LEFT" },
{ x = 38, width = 30, align = "LEFT" },
- { x = 68, width = 74, align = "LEFT" },
- { x = 142, width = 130, align = "LEFT" },
- { x = 272, width = 180, align = "LEFT" },
- { x = 452, width = 68, align = "LEFT" },
- { x = 520, width = 10, align = "CENTER" },
- { x = 532, width = 10, align = "CENTER" },
- { x = 544, width = 10, align = "CENTER" },
+ { x = 68, width = 18, align = "LEFT" },
+ { x = 88, width = 130, align = "LEFT" },
+ { x = 220, width = 148, align = "LEFT" },
+ { x = 370, width = 80, align = "LEFT" },
+ { x = 452, width = 14, align = "CENTER" },
+ { x = 468, width = 14, align = "CENTER" },
+ { x = 484, width = 14, align = "CENTER" },
+ { x = 500, width = 54, align = "LEFT" },
}
elseif MTH_BOOK_STATE.mode == "petabilities" then
return {
@@ -3660,6 +3636,19 @@ local function MTH_BOOK_ApplyColumnLayout(parent)
btn.cols[itemNameColumn]:SetPoint("LEFT", btn, "LEFT", itemNameLayout.x + 12, 0)
btn.cols[itemNameColumn]:SetWidth(itemNameLayout.width - 16)
end
+ elseif MTH_BOOK_STATE.mode == "families" and layout[1] then
+ local familyCol = layout[1]
+ btn.itemIcon:ClearAllPoints()
+ btn.itemIcon:SetPoint("LEFT", btn, "LEFT", familyCol.x, 0)
+ if btn.cols and btn.cols[1] then
+ btn.cols[1]:ClearAllPoints()
+ btn.cols[1]:SetPoint("LEFT", btn, "LEFT", familyCol.x + 18, 0)
+ btn.cols[1]:SetWidth(familyCol.width - 18)
+ end
+ elseif MTH_BOOK_STATE.mode == "pets" and layout[3] then
+ local famCol = layout[3]
+ btn.itemIcon:ClearAllPoints()
+ btn.itemIcon:SetPoint("LEFT", btn, "LEFT", famCol.x, 0)
else
btn.itemIcon:Hide()
end
@@ -3671,7 +3660,7 @@ end
local function MTH_BOOK_GetRowValues(entry)
if MTH_BOOK_STATE.mode == "pets" then
local beast = MTH_DS_Beasts and MTH_DS_Beasts[entry]
- if not beast then return { "", "", "", "", "", "", "", "", "" } end
+ if not beast then return { "", "", "", "", "", "", "", "", "", "" } end
local beastDisplayName = (MTH and MTH.GetLocalizedBeastName and MTH:GetLocalizedBeastName(entry, beast.name)) or beast.name
local traits = MTH_BOOK_ParseBeastTraits(beast)
local abilities = MTH_BOOK_GetBeastAbilitiesSummary(beast)
@@ -3679,13 +3668,14 @@ local function MTH_BOOK_GetRowValues(entry)
return {
"|cFF33CCFF" .. tostring(entry) .. "|r",
tostring(beast.lvl or "?"),
- tostring(beast.family or "?"),
+ "", -- family icon rendered separately
tostring(beastDisplayName or "Unknown"),
abilities,
zone,
(traits.rare and "R" or ""),
(traits.elite and "E" or ""),
(traits.unique and "U" or ""),
+ tostring(beast.attackSpeed or ""),
}
end
@@ -4090,6 +4080,31 @@ MTH_BOOK_UpdateResults = function()
btn.itemIcon:SetTexture(nil)
btn.itemIcon:Hide()
end
+ elseif MTH_BOOK_STATE.mode == "families" and type(entry) == "table" and entry.icon then
+ local iconPath = MTH_BOOK_ResolveIconPath(entry.icon)
+ if iconPath then
+ btn.itemIcon:SetTexture(iconPath)
+ btn.itemIcon:Show()
+ else
+ btn.itemIcon:SetTexture(nil)
+ btn.itemIcon:Hide()
+ end
+ elseif MTH_BOOK_STATE.mode == "pets" then
+ local beast = MTH_DS_Beasts and MTH_DS_Beasts[entry]
+ local famData = beast and beast.family and MTH_DS_Families and MTH_DS_Families[beast.family]
+ if famData and famData.icon and famData.icon ~= "" then
+ local iconPath = MTH_BOOK_ResolveIconPath(famData.icon)
+ if iconPath then
+ btn.itemIcon:SetTexture(iconPath)
+ btn.itemIcon:Show()
+ else
+ btn.itemIcon:SetTexture(nil)
+ btn.itemIcon:Hide()
+ end
+ else
+ btn.itemIcon:SetTexture(nil)
+ btn.itemIcon:Hide()
+ end
else
btn.itemIcon:SetTexture(nil)
btn.itemIcon:Hide()
@@ -4614,6 +4629,8 @@ function MTH_BOOK_JumpToBeastById(beastId)
MTH_BOOK_STATE.mode = "pets"
local widgets = MTH_BOOK_GetFilterWidgets()
MTH_BOOK_ResetStateForMode("pets")
+ MTH_BOOK_STATE.petHideNoAbilities = false
+ MTH_BOOK_STATE.petHideUnknown = false
MTH_BOOK_STATE.search = tostring(id)
MTH_BOOK_STATE.forcedBeastId = id
MTH_BOOK_ApplyStateToWidgets(widgets)
diff --git a/api/hunterbook.xml b/api/hunterbook.xml
index b243925..91f554c 100644
--- a/api/hunterbook.xml
+++ b/api/hunterbook.xml
@@ -74,7 +74,7 @@
-
+
@@ -85,7 +85,7 @@
-
+
@@ -96,7 +96,7 @@
diff --git a/api/options-profiles.lua b/api/options-profiles.lua
new file mode 100644
index 0000000..d11aad4
--- /dev/null
+++ b/api/options-profiles.lua
@@ -0,0 +1,403 @@
+------------------------------------------------------
+-- MetaHunt Profile Management Options Panel
+------------------------------------------------------
+
+local MAX_PROFILE_ROWS = 15
+local MAX_CHAR_ROWS = 10
+local ROW_H = 26
+
+-- Row pools — anonymous frames created once against scroll content, reused each refresh
+local gProfileRows = {} -- [i] = { frame, nameText, infoText, loadBtn, delBtn }
+local gCharRows = {} -- [i] = { frame, nameText, infoText, copyBtn }
+
+-- Static element refs created once
+local gActiveLabel = nil
+local gSetupDone = false
+
+-- Pending confirmations — globals so StaticPopup OnAccept can read them
+MTH_PROFILE_PENDING_LOAD = nil
+MTH_PROFILE_PENDING_DELETE = nil
+MTH_PROFILE_PENDING_SAVE = nil
+
+-- ── Static popup dialogs ───────────────────────────────────────────────────
+
+StaticPopupDialogs["MTH_PROFILE_LOAD_CONFIRM"] = {
+ text = "Load profile \"%s\"?\n\nCurrent settings will be replaced.\nThe UI will reload to apply all changes.",
+ button1 = "Load & Reload",
+ button2 = "Cancel",
+ OnAccept = function()
+ if MTH_PROFILE_PENDING_LOAD then
+ local ok, err = MTH_Profile_Load(MTH_PROFILE_PENDING_LOAD)
+ MTH_PROFILE_PENDING_LOAD = nil
+ if ok then
+ ReloadUI()
+ elseif MTH and MTH.Print then
+ MTH:Print("Profile load failed: " .. tostring(err), "error")
+ end
+ end
+ end,
+ timeout = 0, whileDead = 0, hideOnEscape = 1,
+}
+
+StaticPopupDialogs["MTH_PROFILE_DELETE_CONFIRM"] = {
+ text = "Delete profile \"%s\"?\n\nThis cannot be undone.",
+ button1 = "Delete",
+ button2 = "Cancel",
+ OnAccept = function()
+ if MTH_PROFILE_PENDING_DELETE then
+ MTH_Profile_Delete(MTH_PROFILE_PENDING_DELETE)
+ MTH_PROFILE_PENDING_DELETE = nil
+ MTH_SetupProfilesOptions()
+ end
+ end,
+ timeout = 0, whileDead = 0, hideOnEscape = 1,
+}
+
+StaticPopupDialogs["MTH_PROFILE_SAVE_CONFIRM"] = {
+ text = "Profile \"%s\" already exists.\nOverwrite with current settings?",
+ button1 = "Overwrite",
+ button2 = "Cancel",
+ OnAccept = function()
+ if MTH_PROFILE_PENDING_SAVE then
+ MTH_Profile_Save(MTH_PROFILE_PENDING_SAVE)
+ MTH_PROFILE_PENDING_SAVE = nil
+ MTH_SetupProfilesOptions()
+ end
+ end,
+ timeout = 0, whileDead = 0, hideOnEscape = 1,
+}
+
+-- ── internal helpers ───────────────────────────────────────────────────────
+
+local function PROF_TrimString(s)
+ if type(s) ~= "string" then return "" end
+ return string.gsub(s, "^%s*(.-)%s*$", "%1")
+end
+
+local function PROF_DoSave(rawName)
+ local name = PROF_TrimString(rawName)
+ if string.len(name) == 0 then
+ if MTH and MTH.Print then MTH:Print("Enter a profile name first.", "error") end
+ return
+ end
+ if string.len(name) > 50 then
+ if MTH and MTH.Print then MTH:Print("Profile name too long (50 chars max).", "error") end
+ return
+ end
+ local existing = type(MTH_SavedVariables) == "table"
+ and type(MTH_SavedVariables.profiles) == "table"
+ and MTH_SavedVariables.profiles[name] ~= nil
+ if existing then
+ MTH_PROFILE_PENDING_SAVE = name
+ StaticPopup_Show("MTH_PROFILE_SAVE_CONFIRM", name)
+ else
+ MTH_Profile_Save(name)
+ if MTH and MTH.Print then MTH:Print("Profile saved: " .. name) end
+ MTH_SetupProfilesOptions()
+ end
+end
+
+-- ── scroll frames + row pool creation (idempotent) ────────────────────────
+
+local function PROF_EnsureScrollFrames(container)
+ if not MTH_GetFrame("MetaHuntOptionsProfilesScroll") then
+ local sf = CreateFrame("ScrollFrame", "MetaHuntOptionsProfilesScroll", container, "UIPanelScrollFrameTemplate")
+ local sc = CreateFrame("Frame", "MetaHuntOptionsProfilesContent", sf)
+ sc:SetWidth(510)
+ sc:SetHeight(MAX_PROFILE_ROWS * ROW_H + 4)
+ sf:SetScrollChild(sc)
+ end
+ if not MTH_GetFrame("MetaHuntOptionsCharScroll") then
+ local csf = CreateFrame("ScrollFrame", "MetaHuntOptionsCharScroll", container, "UIPanelScrollFrameTemplate")
+ local csc = CreateFrame("Frame", "MetaHuntOptionsCharContent", csf)
+ csc:SetWidth(510)
+ csc:SetHeight(MAX_CHAR_ROWS * ROW_H + 4)
+ csf:SetScrollChild(csc)
+ end
+end
+
+local function PROF_EnsureProfileRows()
+ local sc = MTH_GetFrame("MetaHuntOptionsProfilesContent")
+ if not sc then return end
+ for i = 1, MAX_PROFILE_ROWS do
+ if not gProfileRows[i] then
+ local row = CreateFrame("Frame", nil, sc)
+ row:SetHeight(ROW_H)
+ row:SetWidth(510)
+ row:SetPoint("TOPLEFT", sc, "TOPLEFT", 0, -(i - 1) * ROW_H)
+
+ local nameText = row:CreateFontString(nil, "ARTWORK", "GameFontHighlightSmall")
+ nameText:SetPoint("LEFT", row, "LEFT", 4, 2)
+ nameText:SetWidth(210)
+ nameText:SetJustifyH("LEFT")
+
+ local infoText = row:CreateFontString(nil, "ARTWORK", "GameFontNormalSmall")
+ infoText:SetPoint("LEFT", row, "LEFT", 218, 2)
+ infoText:SetWidth(155)
+ infoText:SetJustifyH("LEFT")
+ infoText:SetTextColor(0.55, 0.55, 0.55)
+
+ local loadBtn = CreateFrame("Button", nil, row, "UIPanelButtonTemplate")
+ loadBtn:SetWidth(58)
+ loadBtn:SetHeight(20)
+ loadBtn:SetPoint("RIGHT", row, "RIGHT", -62, 0)
+ loadBtn:SetText("Load")
+
+ local delBtn = CreateFrame("Button", nil, row, "UIPanelButtonTemplate")
+ delBtn:SetWidth(58)
+ delBtn:SetHeight(20)
+ delBtn:SetPoint("RIGHT", row, "RIGHT", 0, 0)
+ delBtn:SetText("Delete")
+
+ gProfileRows[i] = { frame = row, nameText = nameText, infoText = infoText, loadBtn = loadBtn, delBtn = delBtn }
+ end
+ end
+end
+
+local function PROF_EnsureCharRows()
+ local csc = MTH_GetFrame("MetaHuntOptionsCharContent")
+ if not csc then return end
+ for i = 1, MAX_CHAR_ROWS do
+ if not gCharRows[i] then
+ local row = CreateFrame("Frame", nil, csc)
+ row:SetHeight(ROW_H)
+ row:SetWidth(510)
+ row:SetPoint("TOPLEFT", csc, "TOPLEFT", 0, -(i - 1) * ROW_H)
+
+ local nameText = row:CreateFontString(nil, "ARTWORK", "GameFontHighlightSmall")
+ nameText:SetPoint("LEFT", row, "LEFT", 4, 2)
+ nameText:SetWidth(250)
+ nameText:SetJustifyH("LEFT")
+ nameText:SetTextColor(0.70, 0.85, 1.00)
+
+ local infoText = row:CreateFontString(nil, "ARTWORK", "GameFontNormalSmall")
+ infoText:SetPoint("LEFT", row, "LEFT", 258, 2)
+ infoText:SetWidth(120)
+ infoText:SetJustifyH("LEFT")
+ infoText:SetTextColor(0.55, 0.55, 0.55)
+
+ local copyBtn = CreateFrame("Button", nil, row, "UIPanelButtonTemplate")
+ copyBtn:SetWidth(80)
+ copyBtn:SetHeight(20)
+ copyBtn:SetPoint("RIGHT", row, "RIGHT", 0, 0)
+ copyBtn:SetText("Import")
+
+ gCharRows[i] = { frame = row, nameText = nameText, infoText = infoText, copyBtn = copyBtn }
+ end
+ end
+end
+
+-- ── dynamic refresh functions ──────────────────────────────────────────────
+
+local function PROF_RefreshActive()
+ if not gActiveLabel then return end
+ local active = type(MTH_Profile_GetActive) == "function" and MTH_Profile_GetActive()
+ if active then
+ gActiveLabel:SetText("Active: |cffffd200" .. active .. "|r")
+ gActiveLabel:SetTextColor(0.90, 0.90, 0.90)
+ else
+ gActiveLabel:SetText("Active: |cff888888Custom (unsaved)|r")
+ gActiveLabel:SetTextColor(0.90, 0.90, 0.90)
+ end
+ gActiveLabel:Show()
+end
+
+local function PROF_RefreshProfileList()
+ PROF_EnsureProfileRows()
+ local profiles = type(MTH_Profile_GetList) == "function" and MTH_Profile_GetList() or {}
+ local active = type(MTH_Profile_GetActive) == "function" and MTH_Profile_GetActive()
+ local n = table.getn(profiles)
+
+ local sc = MTH_GetFrame("MetaHuntOptionsProfilesContent")
+ if sc then
+ sc:SetHeight(math.max(n * ROW_H + 4, ROW_H))
+ end
+
+ for i = 1, MAX_PROFILE_ROWS do
+ local row = gProfileRows[i]
+ if not row then break end
+ local name = profiles[i]
+ if name then
+ -- Name (with active indicator)
+ if name == active then
+ row.nameText:SetText(name .. " |cff00cc44[active]|r")
+ else
+ row.nameText:SetText(name)
+ end
+ -- Info: date saved by who
+ local p = type(MTH_SavedVariables) == "table"
+ and type(MTH_SavedVariables.profiles) == "table"
+ and MTH_SavedVariables.profiles[name]
+ local info = ""
+ if type(p) == "table" then
+ if p.savedAt and p.savedAt ~= "" then
+ info = p.savedAt
+ end
+ end
+ row.infoText:SetText(info)
+ -- Wire buttons (SetScript replaces previous handler each refresh)
+ local rowName = name
+ row.loadBtn:SetScript("OnClick", function()
+ MTH_PROFILE_PENDING_LOAD = rowName
+ StaticPopup_Show("MTH_PROFILE_LOAD_CONFIRM", rowName)
+ end)
+ row.delBtn:SetScript("OnClick", function()
+ MTH_PROFILE_PENDING_DELETE = rowName
+ StaticPopup_Show("MTH_PROFILE_DELETE_CONFIRM", rowName)
+ end)
+ row.frame:Show()
+ row.loadBtn:Show()
+ row.delBtn:Show()
+ else
+ row.frame:Hide()
+ end
+ end
+end
+
+local function PROF_RefreshCharList()
+ PROF_EnsureCharRows()
+ local chars = type(MTH_Profile_GetCharList) == "function" and MTH_Profile_GetCharList() or {}
+ local n = table.getn(chars)
+
+ local csc = MTH_GetFrame("MetaHuntOptionsCharContent")
+ if csc then
+ csc:SetHeight(math.max(n * ROW_H + 4, ROW_H))
+ end
+
+ for i = 1, MAX_CHAR_ROWS do
+ local row = gCharRows[i]
+ if not row then break end
+ local charKey = chars[i]
+ if charKey then
+ local snap = type(MTH_SavedVariables) == "table"
+ and type(MTH_SavedVariables.charSnapshots) == "table"
+ and MTH_SavedVariables.charSnapshots[charKey]
+ local info = (type(snap) == "table" and snap.savedAt) and snap.savedAt or ""
+ row.nameText:SetText(charKey)
+ row.infoText:SetText(info)
+ local ck = charKey
+ row.copyBtn:SetScript("OnClick", function()
+ local ok, pName = MTH_Profile_CopyFromChar(ck)
+ if ok then
+ MTH_SetupProfilesOptions()
+ if MTH and MTH.Print then
+ MTH:Print('Imported "' .. ck .. '" as profile "' .. tostring(pName) .. '".')
+ end
+ end
+ end)
+ row.frame:Show()
+ row.copyBtn:Show()
+ else
+ row.frame:Hide()
+ end
+ end
+end
+
+-- ── main setup (static elements created once, dynamic lists refreshed every call) ──
+
+function MTH_SetupProfilesOptions()
+ local container = MTH_GetFrame("MetaHuntOptionsProfiles")
+ if not container then return end
+
+ if not gSetupDone then
+ -- Title
+ local title = container:CreateFontString(nil, "ARTWORK", "GameFontNormal")
+ title:SetPoint("TOPLEFT", container, "TOPLEFT", 6, -6)
+ title:SetText("Profiles")
+ title:SetTextColor(1.00, 0.82, 0.00)
+
+ -- Active profile indicator
+ gActiveLabel = container:CreateFontString(nil, "ARTWORK", "GameFontNormalSmall")
+ gActiveLabel:SetPoint("TOPLEFT", title, "BOTTOMLEFT", 0, -4)
+ gActiveLabel:SetWidth(540)
+ gActiveLabel:SetJustifyH("LEFT")
+
+ -- ── Save As section ───────────────────────────────────────────────
+ local saveHdr = container:CreateFontString(nil, "ARTWORK", "GameFontNormal")
+ saveHdr:SetPoint("TOPLEFT", gActiveLabel, "BOTTOMLEFT", 0, -10)
+ saveHdr:SetText("Save current settings as:")
+ saveHdr:SetTextColor(0.90, 0.90, 0.90)
+
+ local eb = CreateFrame("EditBox", "MTH_ProfileNameInput", container, "InputBoxTemplate")
+ eb:SetWidth(240)
+ eb:SetHeight(20)
+ eb:SetMaxLetters(50)
+ eb:SetAutoFocus(false)
+ eb:SetPoint("TOPLEFT", saveHdr, "BOTTOMLEFT", 2, -6)
+ eb:SetScript("OnEnterPressed", function()
+ PROF_DoSave(this:GetText())
+ this:SetText("")
+ this:ClearFocus()
+ end)
+ eb:SetScript("OnEscapePressed", function()
+ this:SetText("")
+ this:ClearFocus()
+ end)
+
+ local saveBtn = CreateFrame("Button", "MTH_ProfileSaveBtn", container, "UIPanelButtonTemplate")
+ saveBtn:SetWidth(70)
+ saveBtn:SetHeight(20)
+ saveBtn:SetPoint("LEFT", eb, "RIGHT", 6, 0)
+ saveBtn:SetText("Save")
+ saveBtn:SetScript("OnClick", function()
+ local box = MTH_GetFrame("MTH_ProfileNameInput")
+ if box then
+ PROF_DoSave(box:GetText())
+ box:SetText("")
+ box:ClearFocus()
+ end
+ end)
+
+ -- ── Saved Profiles section ────────────────────────────────────────
+ local profHdr = container:CreateFontString(nil, "ARTWORK", "GameFontNormal")
+ profHdr:SetPoint("TOPLEFT", eb, "BOTTOMLEFT", -2, -12)
+ profHdr:SetText("Saved Profiles")
+ profHdr:SetTextColor(1.00, 0.82, 0.00)
+
+ local rule1 = container:CreateTexture(nil, "ARTWORK")
+ rule1:SetPoint("TOPLEFT", profHdr, "BOTTOMLEFT", 0, -3)
+ rule1:SetWidth(540)
+ rule1:SetHeight(1)
+ rule1:SetTexture(0.30, 0.30, 0.30, 0.80)
+
+ PROF_EnsureScrollFrames(container)
+
+ local sf = MTH_GetFrame("MetaHuntOptionsProfilesScroll")
+ sf:SetPoint("TOPLEFT", rule1, "BOTTOMLEFT", 0, -4)
+ sf:SetWidth(530)
+ sf:SetHeight(170)
+ sf:Show()
+
+ -- ── Copy from Character section ───────────────────────────────────
+ local charHdr = container:CreateFontString(nil, "ARTWORK", "GameFontNormal")
+ charHdr:SetPoint("TOPLEFT", sf, "BOTTOMLEFT", 0, -10)
+ charHdr:SetText("Copy from Character")
+ charHdr:SetTextColor(1.00, 0.82, 0.00)
+
+ local charNote = container:CreateFontString(nil, "ARTWORK", "GameFontNormalSmall")
+ charNote:SetPoint("TOPLEFT", charHdr, "BOTTOMLEFT", 0, -2)
+ charNote:SetWidth(540)
+ charNote:SetJustifyH("LEFT")
+ charNote:SetText("Snapshots are saved automatically on logout. Click Import to create a profile from one.")
+ charNote:SetTextColor(0.60, 0.60, 0.60)
+
+ local rule2 = container:CreateTexture(nil, "ARTWORK")
+ rule2:SetPoint("TOPLEFT", charNote, "BOTTOMLEFT", 0, -3)
+ rule2:SetWidth(540)
+ rule2:SetHeight(1)
+ rule2:SetTexture(0.30, 0.30, 0.30, 0.80)
+
+ local csf = MTH_GetFrame("MetaHuntOptionsCharScroll")
+ csf:SetPoint("TOPLEFT", rule2, "BOTTOMLEFT", 0, -4)
+ csf:SetWidth(530)
+ csf:SetHeight(140)
+ csf:Show()
+
+ gSetupDone = true
+ end
+
+ -- Refresh dynamic content every time the panel is opened
+ PROF_RefreshActive()
+ PROF_RefreshProfileList()
+ PROF_RefreshCharList()
+end
diff --git a/api/options-shell.lua b/api/options-shell.lua
index 627837c..59877ca 100644
--- a/api/options-shell.lua
+++ b/api/options-shell.lua
@@ -117,6 +117,11 @@ function MTH_SelectOptionsTab(tabKey)
MTH_SetupGeneralOptions()
MTH_OPTIONS_SETUP["General"] = true
end
+ elseif tabKey == "Profiles" then
+ if type(MTH_SetupProfilesOptions) == "function" then
+ MTH_SetupProfilesOptions()
+ MTH_OPTIONS_SETUP["Profiles"] = true
+ end
elseif tabKey == "Messages" then
if not MTH_OPTIONS_SETUP["Messages"] then
if type(MTH_SetupMessagesOptions) == "function" then
diff --git a/api/options-tree.lua b/api/options-tree.lua
index 41c3918..968fca5 100644
--- a/api/options-tree.lua
+++ b/api/options-tree.lua
@@ -27,7 +27,8 @@ MTH_OPTIONS_CONST = MTH_OPTIONS_CONST or {
}
MTH_OPTIONS_TABS = MTH_OPTIONS_TABS or {
- { key = "General", label = "General", frame = "MetaHuntOptionsGeneral" },
+ { key = "General", label = "General", frame = "MetaHuntOptionsGeneral" },
+ { key = "Profiles", label = "Profiles", frame = "MetaHuntOptionsProfiles" },
{ key = "Messages", label = "Messages", frame = "MetaHuntOptionsMessages" },
{ key = "Pet", label = "ZPet", frame = "MetaHuntOptionsPet" },
{ key = "Track", label = "ZTrack", frame = "MetaHuntOptionsTrack" },
@@ -52,7 +53,8 @@ MTH_OPTIONS_TABS = MTH_OPTIONS_TABS or {
}
MTH_OPTIONS_TREE = MTH_OPTIONS_TREE or {
- { label = "General", key = "General" },
+ { label = "General", key = "General" },
+ { label = "Profiles", key = "Profiles" },
{ label = "Messages", key = "Messages" },
{ label = "Auto Buy", key = "AutoBuy" },
{ label = "Auto Quest", key = "AutoQuest" },
diff --git a/api/options.xml b/api/options.xml
index c3b1604..00c625a 100644
--- a/api/options.xml
+++ b/api/options.xml
@@ -66,6 +66,7 @@
+
diff --git a/api/profile.lua b/api/profile.lua
new file mode 100644
index 0000000..9213314
--- /dev/null
+++ b/api/profile.lua
@@ -0,0 +1,202 @@
+------------------------------------------------------
+-- MetaHunt Profile System
+-- Captures:
+-- MTH_SavedVariables.modules (account-wide option values, e.g. feedomatic)
+-- MTH_CharSavedVariables.modules (per-char option values: ICU, Chronometer,
+-- AutoBuy, AutoQuest, SmartAmmo, tooltips...)
+-- MTH_CharSavedVariables.moduleStates (enabled/disabled per char)
+-- ZHunterMod_Saved / MTH_CharSavedVariables.modules.zhunter (zButtons layout)
+-- Auto-snapshots current character on PLAYER_LOGOUT into
+-- MTH_SavedVariables.charSnapshots["CharName-RealmName"]
+------------------------------------------------------
+
+local function MTH_Profile_DeepCopy(orig)
+ if type(orig) ~= "table" then return orig end
+ local copy = {}
+ for k, v in orig do
+ copy[MTH_Profile_DeepCopy(k)] = MTH_Profile_DeepCopy(v)
+ end
+ return copy
+end
+
+local function MTH_Profile_EnsureStore()
+ if type(MTH_SavedVariables) ~= "table" then
+ MTH_SavedVariables = {}
+ end
+ if type(MTH_SavedVariables.profiles) ~= "table" then
+ MTH_SavedVariables.profiles = {}
+ end
+ if type(MTH_SavedVariables.charSnapshots) ~= "table" then
+ MTH_SavedVariables.charSnapshots = {}
+ end
+end
+
+local function MTH_Profile_GetCharKey()
+ local name = (type(UnitName) == "function") and UnitName("player") or "Unknown"
+ local realm = (type(GetRealmName) == "function") and GetRealmName() or "Unknown"
+ name = (name and name ~= "") and name or "Unknown"
+ realm = (realm and realm ~= "") and realm or "Unknown"
+ return name .. "-" .. realm
+end
+
+local function MTH_Profile_BuildSnapshot()
+ local snap = {}
+ snap.savedBy = MTH_Profile_GetCharKey()
+ snap.savedAt = (type(date) == "function") and date("%Y-%m-%d %H:%M") or ""
+
+ -- Account-wide module option values (e.g. feedomatic)
+ snap.config = (type(MTH_SavedVariables) == "table"
+ and type(MTH_SavedVariables.modules) == "table")
+ and MTH_Profile_DeepCopy(MTH_SavedVariables.modules)
+ or {}
+
+ -- Per-character module option values (ICU, Chronometer, AutoBuy, SmartAmmo, etc.)
+ snap.charConfig = (type(MTH_CharSavedVariables) == "table"
+ and type(MTH_CharSavedVariables.modules) == "table")
+ and MTH_Profile_DeepCopy(MTH_CharSavedVariables.modules)
+ or {}
+
+ -- Per-character module enabled/disabled states
+ snap.moduleStates = (type(MTH_CharSavedVariables) == "table"
+ and type(MTH_CharSavedVariables.moduleStates) == "table")
+ and MTH_Profile_DeepCopy(MTH_CharSavedVariables.moduleStates)
+ or {}
+
+ -- zButtons config — kept as dedicated key for clarity
+ -- (also lives in charConfig.zhunter but we keep it explicit)
+ local zh = nil
+ if type(MTH_CharSavedVariables) == "table"
+ and type(MTH_CharSavedVariables.modules) == "table"
+ and type(MTH_CharSavedVariables.modules.zhunter) == "table"
+ then
+ zh = MTH_CharSavedVariables.modules.zhunter
+ elseif type(ZHunterMod_Saved) == "table" then
+ zh = ZHunterMod_Saved
+ end
+ snap.zhunter = zh and MTH_Profile_DeepCopy(zh) or {}
+
+ return snap
+end
+
+-- Save current settings as a named profile
+function MTH_Profile_Save(name)
+ if type(name) ~= "string" or string.len(name) == 0 then
+ return false, "invalid name"
+ end
+ MTH_Profile_EnsureStore()
+ MTH_SavedVariables.profiles[name] = MTH_Profile_BuildSnapshot()
+ return true
+end
+
+-- Delete a named profile
+function MTH_Profile_Delete(name)
+ MTH_Profile_EnsureStore()
+ if MTH_SavedVariables.profiles[name] == nil then return false end
+ MTH_SavedVariables.profiles[name] = nil
+ if type(MTH_CharSavedVariables) == "table"
+ and MTH_CharSavedVariables.activeProfile == name
+ then
+ MTH_CharSavedVariables.activeProfile = nil
+ end
+ return true
+end
+
+-- Apply a profile to SavedVariables; a /reload is required for changes to take full effect
+function MTH_Profile_Load(name)
+ MTH_Profile_EnsureStore()
+ local p = MTH_SavedVariables.profiles[name]
+ if type(p) ~= "table" then return false, "profile not found" end
+
+ if type(MTH_CharSavedVariables) ~= "table" then MTH_CharSavedVariables = {} end
+ if type(MTH_CharSavedVariables.modules) ~= "table" then MTH_CharSavedVariables.modules = {} end
+
+ -- Apply account-wide module option values (e.g. feedomatic)
+ if type(p.config) == "table" then
+ if type(MTH_SavedVariables.modules) ~= "table" then
+ MTH_SavedVariables.modules = {}
+ end
+ for modName, modData in p.config do
+ MTH_SavedVariables.modules[modName] = MTH_Profile_DeepCopy(modData)
+ end
+ end
+
+ -- Apply per-character module option values (ICU, Chronometer, AutoBuy, SmartAmmo, etc.)
+ if type(p.charConfig) == "table" then
+ for modName, modData in p.charConfig do
+ MTH_CharSavedVariables.modules[modName] = MTH_Profile_DeepCopy(modData)
+ end
+ end
+
+ -- Apply module enabled/disabled
+ if type(p.moduleStates) == "table" then
+ if type(MTH_CharSavedVariables.moduleStates) ~= "table" then
+ MTH_CharSavedVariables.moduleStates = {}
+ end
+ for k, v in p.moduleStates do
+ MTH_CharSavedVariables.moduleStates[k] = v
+ end
+ end
+
+ -- Apply zButtons (also written into charConfig.zhunter above, but keep explicit)
+ if type(p.zhunter) == "table" then
+ ZHunterMod_Saved = MTH_Profile_DeepCopy(p.zhunter)
+ MTH_CharSavedVariables.modules.zhunter = ZHunterMod_Saved
+ end
+
+ MTH_CharSavedVariables.activeProfile = name
+ return true
+end
+
+-- Create a named profile from another character's auto-snapshot
+-- profileName defaults to charKey if not provided
+function MTH_Profile_CopyFromChar(charKey, profileName)
+ MTH_Profile_EnsureStore()
+ local snap = MTH_SavedVariables.charSnapshots[charKey]
+ if type(snap) ~= "table" then
+ return false, "no snapshot for " .. tostring(charKey)
+ end
+ local name = (type(profileName) == "string" and string.len(profileName) > 0)
+ and profileName or charKey
+ MTH_SavedVariables.profiles[name] = MTH_Profile_DeepCopy(snap)
+ return true, name
+end
+
+-- Return sorted list of profile names
+function MTH_Profile_GetList()
+ MTH_Profile_EnsureStore()
+ local list = {}
+ for name, _ in MTH_SavedVariables.profiles do
+ table.insert(list, name)
+ end
+ table.sort(list)
+ return list
+end
+
+-- Return sorted list of character snapshot keys
+function MTH_Profile_GetCharList()
+ MTH_Profile_EnsureStore()
+ local list = {}
+ for charKey, _ in MTH_SavedVariables.charSnapshots do
+ table.insert(list, charKey)
+ end
+ table.sort(list)
+ return list
+end
+
+-- Return the active profile name for the current character, or nil
+function MTH_Profile_GetActive()
+ if type(MTH_CharSavedVariables) == "table" then
+ return MTH_CharSavedVariables.activeProfile
+ end
+ return nil
+end
+
+-- Auto-snapshot on logout so other characters can import this config
+local MTH_ProfileEventFrame = CreateFrame("Frame", "MTH_ProfileEventFrame")
+MTH_ProfileEventFrame:RegisterEvent("PLAYER_LOGOUT")
+MTH_ProfileEventFrame:SetScript("OnEvent", function()
+ if event == "PLAYER_LOGOUT" then
+ MTH_Profile_EnsureStore()
+ MTH_SavedVariables.charSnapshots[MTH_Profile_GetCharKey()] = MTH_Profile_BuildSnapshot()
+ end
+end)
diff --git a/data/ds-beasts-extra.lua b/data/ds-beasts-extra.lua
index 7641827..a193919 100644
--- a/data/ds-beasts-extra.lua
+++ b/data/ds-beasts-extra.lua
@@ -19,6 +19,8 @@ if not MTH_DS_Beasts[521] then
{32.6, 25.8, 10},
{64.3, 24, 10},
},
+ ["displayId"] = 11412,
+ ["skinId"] = 720,
}
end
@@ -37,6 +39,8 @@ if not MTH_DS_Beasts[728] then
["coords"] = {
{49.6, 24, 33},
},
+ ["displayId"] = 613,
+ ["skinId"] = 599,
}
end
@@ -54,6 +58,8 @@ if not MTH_DS_Beasts[729] then
["coords"] = {
{32.2, 17.4, 33},
},
+ ["displayId"] = 471,
+ ["skinId"] = 320,
}
end
@@ -85,6 +91,8 @@ if not MTH_DS_Beasts[1199] then
{42.4, 57.9, 1},
{43, 56.5, 1},
},
+ ["displayId"] = 748,
+ ["skinId"] = 748,
}
end
@@ -104,6 +112,8 @@ if not MTH_DS_Beasts[1225] then
{42.5, 64.7, 38},
{20.3, 77.4, 5602},
},
+ ["displayId"] = 706,
+ ["skinId"] = 706,
}
end
@@ -119,6 +129,8 @@ if not MTH_DS_Beasts[1516] then
["coords"] = {
{36.3, 63.9, 33},
},
+ ["displayId"] = 839,
+ ["skinId"] = 809,
}
end
@@ -133,6 +145,8 @@ if not MTH_DS_Beasts[2275] then
["unique"] = true,
["coords"] = {
},
+ ["displayId"] = 11411,
+ ["skinId"] = 246,
}
end
@@ -247,6 +261,8 @@ if not MTH_DS_Beasts[2321] then
{45.9, 22.2, 148},
{29.5, 31.1, 361},
},
+ ["displayId"] = 1042,
+ ["skinId"] = 178,
}
end
@@ -327,6 +343,8 @@ if not MTH_DS_Beasts[2560] then
{37.1, 29.9, 45},
{39.9, 29.9, 45},
},
+ ["displayId"] = 180,
+ ["skinId"] = 180,
}
end
@@ -457,6 +475,8 @@ if not MTH_DS_Beasts[2563] then
{80.7, 83.8, 267},
{79.9, 81, 267},
},
+ ["displayId"] = 1103,
+ ["skinId"] = 1091,
}
end
@@ -491,6 +511,8 @@ if not MTH_DS_Beasts[2578] then
{26.7, 24.8, 45},
{29.1, 19.8, 45},
},
+ ["displayId"] = 10824,
+ ["skinId"] = 388,
}
end
@@ -510,6 +532,8 @@ if not MTH_DS_Beasts[2931] then
["coords"] = {
{56.1, 61.7, 3},
},
+ ["displayId"] = 1210,
+ ["skinId"] = 490,
}
end
@@ -525,6 +549,8 @@ if not MTH_DS_Beasts[3257] then
["coords"] = {
{59.7, 30.3, 17},
},
+ ["displayId"] = 2571,
+ ["skinId"] = 1959,
}
end
@@ -540,6 +566,8 @@ if not MTH_DS_Beasts[3475] then
["coords"] = {
{56.1, 17.4, 17},
},
+ ["displayId"] = 1934,
+ ["skinId"] = 1934,
}
end
@@ -558,6 +586,8 @@ if not MTH_DS_Beasts[3503] then
["coords"] = {
{45.5, 72.5, 17},
},
+ ["displayId"] = 1307,
+ ["skinId"] = 1307,
}
end
@@ -572,6 +602,8 @@ if not MTH_DS_Beasts[3619] then
["unique"] = true,
["coords"] = {
},
+ ["displayId"] = 4472,
+ ["skinId"] = 748,
}
end
@@ -631,6 +663,8 @@ if not MTH_DS_Beasts[3812] then
{9.5, 13.7, 331},
{6.7, 13, 331},
},
+ ["displayId"] = 9566,
+ ["skinId"] = 979,
}
end
@@ -662,6 +696,8 @@ if not MTH_DS_Beasts[4118] then
{26.4, 25.6, 400},
{22.7, 23.7, 400},
},
+ ["displayId"] = 10991,
+ ["skinId"] = 2700,
}
end
@@ -679,6 +715,8 @@ if not MTH_DS_Beasts[4250] then
["coords"] = {
{25.1, 37.2, 400},
},
+ ["displayId"] = 2726,
+ ["skinId"] = 2726,
}
end
@@ -698,6 +736,8 @@ if not MTH_DS_Beasts[4425] then
["coords"] = {
{11, 30.3, 491},
},
+ ["displayId"] = 4735,
+ ["skinId"] = 4735,
}
end
@@ -730,6 +770,8 @@ if not MTH_DS_Beasts[4511] then
{50.6, 37.4, 491},
{48.5, 37.2, 491},
},
+ ["displayId"] = 4713,
+ ["skinId"] = 4713,
}
end
@@ -750,6 +792,8 @@ if not MTH_DS_Beasts[4512] then
{54.1, 57.3, 491},
{48.5, 57.1, 491},
},
+ ["displayId"] = 4714,
+ ["skinId"] = 4714,
}
end
@@ -782,6 +826,8 @@ if not MTH_DS_Beasts[4514] then
{52.3, 40.7, 491},
{45.7, 40.1, 491},
},
+ ["displayId"] = 2453,
+ ["skinId"] = 2450,
}
end
@@ -796,6 +842,8 @@ if not MTH_DS_Beasts[4660] then
["unique"] = true,
["coords"] = {
},
+ ["displayId"] = 2710,
+ ["skinId"] = 2710,
}
end
@@ -862,6 +910,8 @@ if not MTH_DS_Beasts[4693] then
{73.8, 11.2, 405},
{50.4, 82.9, 406},
},
+ ["displayId"] = 10273,
+ ["skinId"] = 507,
}
end
@@ -885,6 +935,8 @@ if not MTH_DS_Beasts[4824] then
{20.6, 38.3, 719},
{23, 38, 719},
},
+ ["displayId"] = 1244,
+ ["skinId"] = 1244,
}
end
@@ -909,6 +961,8 @@ if not MTH_DS_Beasts[4825] then
{60.3, 85.5, 719},
{57.3, 85.3, 719},
},
+ ["displayId"] = 5026,
+ ["skinId"] = 5026,
}
end
@@ -930,6 +984,8 @@ if not MTH_DS_Beasts[5224] then
{73.8, 42.6, 8},
{72, 41.9, 8},
},
+ ["displayId"] = 4767,
+ ["skinId"] = 4317,
}
end
@@ -972,6 +1028,8 @@ if not MTH_DS_Beasts[5260] then
{68.3, 52.1, 357},
{74.7, 51.4, 357},
},
+ ["displayId"] = 3186,
+ ["skinId"] = 3186,
}
end
@@ -989,6 +1047,8 @@ if not MTH_DS_Beasts[5432] then
["coords"] = {
{60.2, 81.6, 440},
},
+ ["displayId"] = 5127,
+ ["skinId"] = 5126,
}
end
@@ -1008,6 +1068,8 @@ if not MTH_DS_Beasts[5842] then
["coords"] = {
{59.6, 8.3, 17},
},
+ ["displayId"] = 1337,
+ ["skinId"] = 1337,
}
end
@@ -1032,6 +1094,8 @@ if not MTH_DS_Beasts[5984] then
{48.3, 17.8, 4},
{56, 17.6, 4},
},
+ ["displayId"] = 8050,
+ ["skinId"] = 2714,
}
end
@@ -1074,6 +1138,8 @@ if not MTH_DS_Beasts[6513] then
{67.7, 13.8, 490},
{68.3, 13.1, 490},
},
+ ["displayId"] = 5294,
+ ["skinId"] = 792,
}
end
@@ -1116,6 +1182,8 @@ if not MTH_DS_Beasts[6514] then
{67.7, 13.8, 490},
{68.3, 13.1, 490},
},
+ ["displayId"] = 844,
+ ["skinId"] = 792,
}
end
@@ -1152,6 +1220,8 @@ if not MTH_DS_Beasts[6516] then
{67.7, 13.8, 490},
{68.3, 13.1, 490},
},
+ ["displayId"] = 5244,
+ ["skinId"] = 792,
}
end
@@ -1170,6 +1240,8 @@ if not MTH_DS_Beasts[6585] then
["coords"] = {
{68.5, 12.7, 490},
},
+ ["displayId"] = 8129,
+ ["skinId"] = 840,
}
end
@@ -1230,6 +1302,8 @@ if not MTH_DS_Beasts[7455] then
{63.3, 27.2, 618},
{65.5, 27, 618},
},
+ ["displayId"] = 6212,
+ ["skinId"] = 6212,
}
end
@@ -1244,6 +1318,8 @@ if not MTH_DS_Beasts[7803] then
["unique"] = true,
["coords"] = {
},
+ ["displayId"] = 2414,
+ ["skinId"] = 2414,
}
end
@@ -1262,6 +1338,8 @@ if not MTH_DS_Beasts[8277] then
["coords"] = {
{61.9, 73.2, 51},
},
+ ["displayId"] = 4458,
+ ["skinId"] = 4457,
}
end
@@ -1275,6 +1353,8 @@ if not MTH_DS_Beasts[8926] then
["attackSpeed"] = "2.0",
["coords"] = {
},
+ ["displayId"] = 7347,
+ ["skinId"] = 2489,
}
end
@@ -1288,6 +1368,8 @@ if not MTH_DS_Beasts[8927] then
["attackSpeed"] = "2.0",
["coords"] = {
},
+ ["displayId"] = 1955,
+ ["skinId"] = 1954,
}
end
@@ -1305,6 +1387,8 @@ if not MTH_DS_Beasts[9622] then
["coords"] = {
{68.1, 12.6, 490},
},
+ ["displayId"] = 8844,
+ ["skinId"] = 3186,
}
end
@@ -1322,6 +1406,8 @@ if not MTH_DS_Beasts[9683] then
["coords"] = {
{66.3, 63.9, 490},
},
+ ["displayId"] = 5242,
+ ["skinId"] = 960,
}
end
@@ -1337,6 +1423,8 @@ if not MTH_DS_Beasts[9684] then
{31.7, 28.7, 440},
{79.4, 49.9, 490},
},
+ ["displayId"] = 11318,
+ ["skinId"] = 675,
}
end
@@ -1355,6 +1443,8 @@ if not MTH_DS_Beasts[10200] then
["coords"] = {
{51.1, 10.7, 618},
},
+ ["displayId"] = 10054,
+ ["skinId"] = 10054,
}
end
@@ -1373,6 +1463,8 @@ if not MTH_DS_Beasts[10356] then
["coords"] = {
{45.6, 47.5, 85},
},
+ ["displayId"] = 7892,
+ ["skinId"] = 7890,
}
end
@@ -1391,6 +1483,8 @@ if not MTH_DS_Beasts[10359] then
["coords"] = {
{88.2, 51.4, 85},
},
+ ["displayId"] = 418,
+ ["skinId"] = 30,
}
end
@@ -1406,6 +1500,8 @@ if not MTH_DS_Beasts[10741] then
["unique"] = true,
["coords"] = {
},
+ ["displayId"] = 10114,
+ ["skinId"] = 1934,
}
end
@@ -1421,6 +1517,8 @@ if not MTH_DS_Beasts[10882] then
["unique"] = true,
["coords"] = {
},
+ ["displayId"] = 10183,
+ ["skinId"] = 2699,
}
end
@@ -1456,6 +1554,8 @@ if not MTH_DS_Beasts[10981] then
{45.2, 53.5, 2597},
{44.9, 51.9, 2597},
},
+ ["displayId"] = 10278,
+ ["skinId"] = 720,
}
end
@@ -1474,6 +1574,8 @@ if not MTH_DS_Beasts[12037] then
["coords"] = {
{83.4, 48.5, 331},
},
+ ["displayId"] = 706,
+ ["skinId"] = 706,
}
end
@@ -1497,6 +1599,8 @@ if not MTH_DS_Beasts[14222] then
{36, 23.7, 267},
{35.3, 11.5, 267},
},
+ ["displayId"] = 1933,
+ ["skinId"] = 1933,
}
end
@@ -1521,6 +1625,8 @@ if not MTH_DS_Beasts[14223] then
{77.5, 38, 130},
{82, 33.4, 130},
},
+ ["displayId"] = 5026,
+ ["skinId"] = 5026,
}
end
@@ -1539,6 +1645,8 @@ if not MTH_DS_Beasts[14234] then
["coords"] = {
{52, 62.9, 15},
},
+ ["displayId"] = 2703,
+ ["skinId"] = 2703,
}
end
@@ -1552,48 +1660,8 @@ if not MTH_DS_Beasts[15041] then
["attackSpeed"] = "1.4",
["coords"] = {
},
- }
-end
-
-if not MTH_DS_Beasts[36507] then
- MTH_DS_Beasts[36507] = {
- ["name"] = "Spot",
- ["family"] = "Wolves",
- ["lvl"] = "1",
- ["fac"] = "AH",
- ["abilities"] = "Dash 1",
- ["attackSpeed"] = "2.0",
- ["coords"] = {
- {68, 46.8, 15},
- },
- }
-end
-
-if not MTH_DS_Beasts[36514] then
- MTH_DS_Beasts[36514] = {
- ["name"] = "Frostsaber Cub",
- ["family"] = "Cats",
- ["lvl"] = "1",
- ["fac"] = "AH",
- ["abilities"] = "Cower 6",
- ["attackSpeed"] = "1.5",
- ["coords"] = {
- {48.9, 19, 618},
- },
- }
-end
-
-if not MTH_DS_Beasts[37007] then
- MTH_DS_Beasts[37007] = {
- ["name"] = "Black Widow Hatchling",
- ["family"] = "Spiders",
- ["lvl"] = "1",
- ["fac"] = "AH",
- ["abilities"] = "None",
- ["attackSpeed"] = "2.0",
- ["coords"] = {
- {80.7, 62.8, 10},
- },
+ ["displayId"] = 15136,
+ ["skinId"] = 711,
}
end
@@ -1608,6 +1676,8 @@ if not MTH_DS_Beasts[50624] then
["coords"] = {
{26.5, 30.9, 15},
},
+ ["displayId"] = 11107,
+ ["skinId"] = 11107,
}
end
@@ -1622,6 +1692,8 @@ if not MTH_DS_Beasts[50627] then
["coords"] = {
{26.5, 30.9, 15},
},
+ ["displayId"] = 11107,
+ ["skinId"] = 11107,
}
end
@@ -1636,6 +1708,8 @@ if not MTH_DS_Beasts[50630] then
["coords"] = {
{26.5, 30.9, 15},
},
+ ["displayId"] = 11107,
+ ["skinId"] = 11107,
}
end
@@ -1658,6 +1732,8 @@ if not MTH_DS_Beasts[60697] then
{93.7, 57.2, 46},
{97.1, 51.2, 46},
},
+ ["displayId"] = 8050,
+ ["skinId"] = 2714,
}
end
@@ -1692,6 +1768,8 @@ if not MTH_DS_Beasts[61096] then
{47.3, 18.8, 5121},
{49.4, 18.2, 5121},
},
+ ["displayId"] = 10991,
+ ["skinId"] = 2700,
}
end
@@ -1710,6 +1788,8 @@ if not MTH_DS_Beasts[61500] then
["coords"] = {
{56.7, 48.3, 5121},
},
+ ["displayId"] = 837,
+ ["skinId"] = 792,
}
end
@@ -1728,6 +1808,8 @@ if not MTH_DS_Beasts[61552] then
["coords"] = {
{45.6, 78, 5179},
},
+ ["displayId"] = 18247,
+ ["skinId"] = 18247,
}
end
@@ -1747,6 +1829,8 @@ if not MTH_DS_Beasts[61554] then
{47.4, 92.2, 130},
{48.9, 22.7, 5179},
},
+ ["displayId"] = 9568,
+ ["skinId"] = 9568,
}
end
@@ -1765,6 +1849,8 @@ if not MTH_DS_Beasts[61699] then
{20.6, 8.9, 139},
{64.2, 67, 5225},
},
+ ["displayId"] = 18430,
+ ["skinId"] = 18430,
}
end
@@ -1794,13 +1880,15 @@ if not MTH_DS_Beasts[61975] then
{20.1, 52.3, 45},
{20.8, 52.2, 45},
},
+ ["displayId"] = 20504,
+ ["skinId"] = 20504,
}
end
if not MTH_DS_Beasts[62066] then
MTH_DS_Beasts[62066] = {
["name"] = "Cavernweb Broodmother",
- ["family"] = "Spider",
+ ["family"] = "Spiders",
["lvl"] = "27",
["fac"] = "Unknown",
["abilities"] = "None",
@@ -1811,13 +1899,15 @@ if not MTH_DS_Beasts[62066] then
["coords"] = {
{33.6, 44.3, 5601},
},
+ ["displayId"] = 959,
+ ["skinId"] = 955,
}
end
if not MTH_DS_Beasts[62073] then
MTH_DS_Beasts[62073] = {
["name"] = "Cavernweb Spider",
- ["family"] = "Spider",
+ ["family"] = "Spiders",
["lvl"] = "26-27",
["fac"] = "Unknown",
["abilities"] = "None",
@@ -1835,13 +1925,15 @@ if not MTH_DS_Beasts[62073] then
{31.9, 50.2, 5601},
{35.3, 47.3, 5601},
},
+ ["displayId"] = 959,
+ ["skinId"] = 955,
}
end
if not MTH_DS_Beasts[62074] then
MTH_DS_Beasts[62074] = {
["name"] = "Cavernweb Creeper",
- ["family"] = "Spider",
+ ["family"] = "Spiders",
["lvl"] = "26-27",
["fac"] = "Unknown",
["abilities"] = "Web",
@@ -1857,13 +1949,15 @@ if not MTH_DS_Beasts[62074] then
{30.3, 48.6, 5601},
{33.2, 47, 5601},
},
+ ["displayId"] = 959,
+ ["skinId"] = 955,
}
end
if not MTH_DS_Beasts[62075] then
MTH_DS_Beasts[62075] = {
["name"] = "Cavernweb Venomspitter",
- ["family"] = "Spider",
+ ["family"] = "Spiders",
["lvl"] = "27-28",
["fac"] = "Unknown",
["abilities"] = "None",
@@ -1876,6 +1970,8 @@ if not MTH_DS_Beasts[62075] then
{30.3, 50.6, 5601},
{36.3, 48.3, 5601},
},
+ ["displayId"] = 711,
+ ["skinId"] = 711,
}
end
@@ -1937,6 +2033,8 @@ if not MTH_DS_Beasts[62345] then
{40.9, 22.5, 5561},
{41.5, 21.8, 5561},
},
+ ["displayId"] = 833,
+ ["skinId"] = 833,
}
end
@@ -1951,6 +2049,8 @@ if not MTH_DS_Beasts[80250] then
["coords"] = {
{9.7, 16.2, 139},
},
+ ["displayId"] = 18027,
+ ["skinId"] = 18027,
}
end
@@ -2009,6 +2109,8 @@ if not MTH_DS_Beasts[80257] then
{15.2, 59.1, 5602},
{16.7, 58.6, 5602},
},
+ ["displayId"] = 18008,
+ ["skinId"] = 18008,
}
end
@@ -2028,6 +2130,8 @@ if not MTH_DS_Beasts[80259] then
{50, 77.8, 41},
{52.4, 36.6, 41},
},
+ ["displayId"] = 18004,
+ ["skinId"] = 18004,
}
end
@@ -2046,50 +2150,8 @@ if not MTH_DS_Beasts[80260] then
["coords"] = {
{63.6, 15.8, 618},
},
- }
-end
-
-if not MTH_DS_Beasts[80920] then
- MTH_DS_Beasts[80920] = {
- ["name"] = "Amani Eagle",
- ["family"] = "Owls",
- ["lvl"] = "1",
- ["fac"] = "AH",
- ["abilities"] = "Screech 1, Claw 2",
- ["attackSpeed"] = "2.0",
- ["coords"] = {
- {36.4, 18.3, 406},
- },
- }
-end
-
-if not MTH_DS_Beasts[90980] then
- MTH_DS_Beasts[90980] = {
- ["name"] = "Zulian Panther",
- ["family"] = "Cats",
- ["lvl"] = "1",
- ["fac"] = "AH",
- ["abilities"] = "Dash 3",
- ["attackSpeed"] = "2.0",
- ["elite"] = true,
- ["coords"] = {
- {50.3, 28.9, 1977},
- },
- }
-end
-
-if not MTH_DS_Beasts[90981] then
- MTH_DS_Beasts[90981] = {
- ["name"] = "Zulian Panther",
- ["family"] = "Cats",
- ["lvl"] = "1",
- ["fac"] = "AH",
- ["abilities"] = "Dash 3",
- ["attackSpeed"] = "2.0",
- ["elite"] = true,
- ["coords"] = {
- {50.3, 28.9, 1977},
- },
+ ["displayId"] = 18244,
+ ["skinId"] = 18244,
}
end
@@ -2097,5 +2159,5 @@ MTH_DS_BeastsExtraMeta = {
generated = "2026-02-15",
baseBeasts = 627,
knownBeastNames = 710,
- addedIDs = 80,
+ addedIDs = 74,
}
diff --git a/data/ds-beasts-families-dbc.lua b/data/ds-beasts-families-dbc.lua
new file mode 100644
index 0000000..fe10dc5
--- /dev/null
+++ b/data/ds-beasts-families-dbc.lua
@@ -0,0 +1,329 @@
+-- MetaHunt: Beast family DBC enrichment (scales, food validation)
+-- AUTO-GENERATED by .tools — do not edit by hand.
+-- Source DBC(s): CreatureFamily.dbc, ItemPetFood.dbc
+-- Generated: 2026-03-17 08:39 UTC
+
+if not MTH_DS_Families then return end
+
+-- DBC ID=1 PetFoodMask=208 scale=[0.70-1.00]
+if MTH_DS_Families["Wolves"] then
+ MTH_DS_Families["Wolves"]["dbcId"] = 1
+ MTH_DS_Families["Wolves"]["minScale"] = 0.7
+ MTH_DS_Families["Wolves"]["maxScale"] = 1.0
+ MTH_DS_Families["Wolves"]["minScaleLevel"] = 1
+ MTH_DS_Families["Wolves"]["maxScaleLevel"] = 60
+ MTH_DS_Families["Wolves"]["foodMask"] = 208
+ MTH_DS_Families["Wolves"]["foodDbc"] = {
+ "fungus",
+ "raw meat",
+ "raw fish",
+}
+end
+
+-- DBC ID=2 PetFoodMask=209 scale=[0.70-1.10]
+if MTH_DS_Families["Cats"] then
+ MTH_DS_Families["Cats"]["dbcId"] = 2
+ MTH_DS_Families["Cats"]["minScale"] = 0.7
+ MTH_DS_Families["Cats"]["maxScale"] = 1.1
+ MTH_DS_Families["Cats"]["minScaleLevel"] = 1
+ MTH_DS_Families["Cats"]["maxScaleLevel"] = 60
+ MTH_DS_Families["Cats"]["foodMask"] = 209
+ MTH_DS_Families["Cats"]["foodDbc"] = {
+ "meat",
+ "fungus",
+ "raw meat",
+ "raw fish",
+}
+end
+
+-- DBC ID=3 PetFoodMask=203 scale=[0.40-0.60]
+if MTH_DS_Families["Spiders"] then
+ MTH_DS_Families["Spiders"]["dbcId"] = 3
+ MTH_DS_Families["Spiders"]["minScale"] = 0.4
+ MTH_DS_Families["Spiders"]["maxScale"] = 0.6
+ MTH_DS_Families["Spiders"]["minScaleLevel"] = 1
+ MTH_DS_Families["Spiders"]["maxScaleLevel"] = 60
+ MTH_DS_Families["Spiders"]["foodMask"] = 203
+ MTH_DS_Families["Spiders"]["foodDbc"] = {
+ "meat",
+ "fish",
+ "bread",
+ "raw meat",
+ "raw fish",
+}
+end
+
+-- DBC ID=4 PetFoodMask=210 scale=[0.60-1.00]
+if MTH_DS_Families["Bears"] then
+ MTH_DS_Families["Bears"]["dbcId"] = 4
+ MTH_DS_Families["Bears"]["minScale"] = 0.6
+ MTH_DS_Families["Bears"]["maxScale"] = 1.0
+ MTH_DS_Families["Bears"]["minScaleLevel"] = 1
+ MTH_DS_Families["Bears"]["maxScaleLevel"] = 60
+ MTH_DS_Families["Bears"]["foodMask"] = 210
+ MTH_DS_Families["Bears"]["foodDbc"] = {
+ "bread",
+ "cheese",
+ "fish",
+ "fruit",
+ "fungus",
+ "meat",
+ "raw fish",
+ "raw meat",
+}
+end
+
+-- DBC ID=5 PetFoodMask=211 scale=[0.60-1.00]
+if MTH_DS_Families["Boars"] then
+ MTH_DS_Families["Boars"]["dbcId"] = 5
+ MTH_DS_Families["Boars"]["minScale"] = 0.6
+ MTH_DS_Families["Boars"]["maxScale"] = 1.0
+ MTH_DS_Families["Boars"]["minScaleLevel"] = 1
+ MTH_DS_Families["Boars"]["maxScaleLevel"] = 60
+ MTH_DS_Families["Boars"]["foodMask"] = 211
+ MTH_DS_Families["Boars"]["foodDbc"] = {
+ "bread",
+ "cheese",
+ "fish",
+ "fruit",
+ "fungus",
+ "meat",
+ "raw fish",
+ "raw meat",
+}
+end
+
+-- DBC ID=6 PetFoodMask=212 scale=[0.40-0.60]
+if MTH_DS_Families["Crocolisks"] then
+ MTH_DS_Families["Crocolisks"]["dbcId"] = 6
+ MTH_DS_Families["Crocolisks"]["minScale"] = 0.4
+ MTH_DS_Families["Crocolisks"]["maxScale"] = 0.6
+ MTH_DS_Families["Crocolisks"]["minScaleLevel"] = 1
+ MTH_DS_Families["Crocolisks"]["maxScaleLevel"] = 60
+ MTH_DS_Families["Crocolisks"]["foodMask"] = 212
+ MTH_DS_Families["Crocolisks"]["foodDbc"] = {
+ "cheese",
+ "fungus",
+ "raw meat",
+ "raw fish",
+}
+end
+
+-- DBC ID=7 PetFoodMask=213 scale=[0.50-0.90]
+if MTH_DS_Families["Carrion Birds"] then
+ MTH_DS_Families["Carrion Birds"]["dbcId"] = 7
+ MTH_DS_Families["Carrion Birds"]["minScale"] = 0.5
+ MTH_DS_Families["Carrion Birds"]["maxScale"] = 0.9
+ MTH_DS_Families["Carrion Birds"]["minScaleLevel"] = 1
+ MTH_DS_Families["Carrion Birds"]["maxScaleLevel"] = 60
+ MTH_DS_Families["Carrion Birds"]["foodMask"] = 213
+ MTH_DS_Families["Carrion Birds"]["foodDbc"] = {
+ "meat",
+ "cheese",
+ "fungus",
+ "raw meat",
+ "raw fish",
+}
+end
+
+-- DBC ID=8 PetFoodMask=214 scale=[0.70-1.40]
+if MTH_DS_Families["Crabs"] then
+ MTH_DS_Families["Crabs"]["dbcId"] = 8
+ MTH_DS_Families["Crabs"]["minScale"] = 0.7
+ MTH_DS_Families["Crabs"]["maxScale"] = 1.4
+ MTH_DS_Families["Crabs"]["minScaleLevel"] = 1
+ MTH_DS_Families["Crabs"]["maxScaleLevel"] = 60
+ MTH_DS_Families["Crabs"]["foodMask"] = 214
+ MTH_DS_Families["Crabs"]["foodDbc"] = {
+ "fish",
+ "cheese",
+ "fungus",
+ "raw meat",
+ "raw fish",
+}
+end
+
+-- DBC ID=9 PetFoodMask=215 scale=[0.70-1.00]
+if MTH_DS_Families["Gorillas"] then
+ MTH_DS_Families["Gorillas"]["dbcId"] = 9
+ MTH_DS_Families["Gorillas"]["minScale"] = 0.7
+ MTH_DS_Families["Gorillas"]["maxScale"] = 1.0
+ MTH_DS_Families["Gorillas"]["minScaleLevel"] = 1
+ MTH_DS_Families["Gorillas"]["maxScaleLevel"] = 60
+ MTH_DS_Families["Gorillas"]["foodMask"] = 215
+ MTH_DS_Families["Gorillas"]["foodDbc"] = {
+ "meat",
+ "fish",
+ "cheese",
+ "fungus",
+ "raw meat",
+ "raw fish",
+}
+end
+
+-- DBC ID=11 PetFoodMask=217 scale=[0.50-0.80]
+if MTH_DS_Families["Raptors"] then
+ MTH_DS_Families["Raptors"]["dbcId"] = 11
+ MTH_DS_Families["Raptors"]["minScale"] = 0.5
+ MTH_DS_Families["Raptors"]["maxScale"] = 0.8
+ MTH_DS_Families["Raptors"]["minScaleLevel"] = 1
+ MTH_DS_Families["Raptors"]["maxScaleLevel"] = 60
+ MTH_DS_Families["Raptors"]["foodMask"] = 217
+ MTH_DS_Families["Raptors"]["foodDbc"] = {
+ "meat",
+ "bread",
+ "fungus",
+ "raw meat",
+ "raw fish",
+}
+end
+
+-- DBC ID=12 PetFoodMask=218 scale=[0.50-0.80]
+if MTH_DS_Families["Tallstriders"] then
+ MTH_DS_Families["Tallstriders"]["dbcId"] = 12
+ MTH_DS_Families["Tallstriders"]["minScale"] = 0.5
+ MTH_DS_Families["Tallstriders"]["maxScale"] = 0.8
+ MTH_DS_Families["Tallstriders"]["minScaleLevel"] = 1
+ MTH_DS_Families["Tallstriders"]["maxScaleLevel"] = 60
+ MTH_DS_Families["Tallstriders"]["foodMask"] = 218
+ MTH_DS_Families["Tallstriders"]["foodDbc"] = {
+ "fish",
+ "bread",
+ "fungus",
+ "raw meat",
+ "raw fish",
+}
+end
+
+-- DBC ID=20 PetFoodMask=236 scale=[0.70-1.00]
+if MTH_DS_Families["Scorpids"] then
+ MTH_DS_Families["Scorpids"]["dbcId"] = 20
+ MTH_DS_Families["Scorpids"]["minScale"] = 0.7
+ MTH_DS_Families["Scorpids"]["maxScale"] = 1.0
+ MTH_DS_Families["Scorpids"]["minScaleLevel"] = 1
+ MTH_DS_Families["Scorpids"]["maxScaleLevel"] = 60
+ MTH_DS_Families["Scorpids"]["foodMask"] = 236
+ MTH_DS_Families["Scorpids"]["foodDbc"] = {
+ "cheese",
+ "bread",
+ "fruit",
+ "raw meat",
+ "raw fish",
+}
+end
+
+-- DBC ID=21 PetFoodMask=251 scale=[0.50-0.80]
+if MTH_DS_Families["Turtles"] then
+ MTH_DS_Families["Turtles"]["dbcId"] = 21
+ MTH_DS_Families["Turtles"]["minScale"] = 0.5
+ MTH_DS_Families["Turtles"]["maxScale"] = 0.8
+ MTH_DS_Families["Turtles"]["minScaleLevel"] = 1
+ MTH_DS_Families["Turtles"]["maxScaleLevel"] = 60
+ MTH_DS_Families["Turtles"]["foodMask"] = 251
+ MTH_DS_Families["Turtles"]["foodDbc"] = {
+ "meat",
+ "fish",
+ "bread",
+ "fungus",
+ "fruit",
+ "raw meat",
+ "raw fish",
+}
+end
+
+-- DBC ID=24 PetFoodMask=653 scale=[0.40-0.70]
+if MTH_DS_Families["Bats"] then
+ MTH_DS_Families["Bats"]["dbcId"] = 24
+ MTH_DS_Families["Bats"]["minScale"] = 0.4
+ MTH_DS_Families["Bats"]["maxScale"] = 0.7
+ MTH_DS_Families["Bats"]["minScaleLevel"] = 1
+ MTH_DS_Families["Bats"]["maxScaleLevel"] = 60
+ MTH_DS_Families["Bats"]["foodMask"] = 653
+ MTH_DS_Families["Bats"]["foodDbc"] = {
+ "meat",
+ "cheese",
+ "bread",
+ "raw fish",
+}
+end
+
+-- DBC ID=25 PetFoodMask=654 scale=[0.70-0.90]
+if MTH_DS_Families["Hyenas"] then
+ MTH_DS_Families["Hyenas"]["dbcId"] = 25
+ MTH_DS_Families["Hyenas"]["minScale"] = 0.7
+ MTH_DS_Families["Hyenas"]["maxScale"] = 0.9
+ MTH_DS_Families["Hyenas"]["minScaleLevel"] = 1
+ MTH_DS_Families["Hyenas"]["maxScaleLevel"] = 60
+ MTH_DS_Families["Hyenas"]["foodMask"] = 654
+ MTH_DS_Families["Hyenas"]["foodDbc"] = {
+ "fish",
+ "cheese",
+ "bread",
+ "raw fish",
+}
+end
+
+-- DBC ID=26 PetFoodMask=655 scale=[0.50-0.80]
+if MTH_DS_Families["Owls"] then
+ MTH_DS_Families["Owls"]["dbcId"] = 26
+ MTH_DS_Families["Owls"]["minScale"] = 0.5
+ MTH_DS_Families["Owls"]["maxScale"] = 0.8
+ MTH_DS_Families["Owls"]["minScaleLevel"] = 1
+ MTH_DS_Families["Owls"]["maxScaleLevel"] = 60
+ MTH_DS_Families["Owls"]["foodMask"] = 655
+ MTH_DS_Families["Owls"]["foodDbc"] = {
+ "meat",
+ "fish",
+ "cheese",
+ "bread",
+ "raw fish",
+}
+end
+
+-- DBC ID=27 PetFoodMask=656 scale=[0.50-0.70]
+if MTH_DS_Families["Wind Serpents"] then
+ MTH_DS_Families["Wind Serpents"]["dbcId"] = 27
+ MTH_DS_Families["Wind Serpents"]["minScale"] = 0.5
+ MTH_DS_Families["Wind Serpents"]["maxScale"] = 0.7
+ MTH_DS_Families["Wind Serpents"]["minScaleLevel"] = 1
+ MTH_DS_Families["Wind Serpents"]["maxScaleLevel"] = 60
+ MTH_DS_Families["Wind Serpents"]["foodMask"] = 656
+ MTH_DS_Families["Wind Serpents"]["foodDbc"] = {
+ "fungus",
+ "raw fish",
+}
+end
+
+-- DBC ID=35 PetFoodMask=1009 scale=[0.60-0.80]
+if MTH_DS_Families["Serpents (Cobra)"] then
+ MTH_DS_Families["Serpents (Cobra)"]["dbcId"] = 35
+ MTH_DS_Families["Serpents (Cobra)"]["minScale"] = 0.6
+ MTH_DS_Families["Serpents (Cobra)"]["maxScale"] = 0.8
+ MTH_DS_Families["Serpents (Cobra)"]["minScaleLevel"] = 1
+ MTH_DS_Families["Serpents (Cobra)"]["maxScaleLevel"] = 60
+ MTH_DS_Families["Serpents (Cobra)"]["foodMask"] = 1009
+ MTH_DS_Families["Serpents (Cobra)"]["foodDbc"] = {
+ "meat",
+ "fungus",
+ "fruit",
+ "raw meat",
+ "raw fish",
+}
+end
+
+-- DBC ID=36 PetFoodMask=1010 scale=[0.70-0.90]
+if MTH_DS_Families["Foxes"] then
+ MTH_DS_Families["Foxes"]["dbcId"] = 36
+ MTH_DS_Families["Foxes"]["minScale"] = 0.7
+ MTH_DS_Families["Foxes"]["maxScale"] = 0.9
+ MTH_DS_Families["Foxes"]["minScaleLevel"] = 1
+ MTH_DS_Families["Foxes"]["maxScaleLevel"] = 60
+ MTH_DS_Families["Foxes"]["foodMask"] = 1010
+ MTH_DS_Families["Foxes"]["foodDbc"] = {
+ "fish",
+ "fungus",
+ "fruit",
+ "raw meat",
+ "raw fish",
+}
+end
diff --git a/data/ds-beasts-families.lua b/data/ds-beasts-families.lua
index 9ccc50e..1806a1f 100644
--- a/data/ds-beasts-families.lua
+++ b/data/ds-beasts-families.lua
@@ -6,6 +6,7 @@ if not MTH_DS then MTH_DS = {} end
MTH_DS_Families = {
["Bats"] = {
+ ["icon"] = "Ability_Hunter_Pet_Bat",
["named"] = 20,
["coords"] = 18,
["food"] = {
@@ -21,6 +22,7 @@ MTH_DS_Families = {
},
},
["Bears"] = {
+ ["icon"] = "Ability_Hunter_Pet_Bear",
["named"] = 45,
["coords"] = 45,
["food"] = {
@@ -30,6 +32,8 @@ MTH_DS_Families = {
"cheese",
"fruit",
"fungus",
+ "raw meat",
+ "raw fish",
},
["abilities"] = {
"Bite",
@@ -40,6 +44,7 @@ MTH_DS_Families = {
},
},
["Boars"] = {
+ ["icon"] = "Ability_Hunter_Pet_Boar",
["named"] = 45,
["coords"] = 87,
["food"] = {
@@ -49,6 +54,8 @@ MTH_DS_Families = {
"cheese",
"fruit",
"fungus",
+ "raw meat",
+ "raw fish",
},
["abilities"] = {
"Bite",
@@ -59,10 +66,12 @@ MTH_DS_Families = {
},
},
["Carrion Birds"] = {
+ ["icon"] = "Ability_Hunter_Pet_Vulture",
["named"] = 36,
["coords"] = 101,
["food"] = {
"meat",
+ "raw meat",
},
["abilities"] = {
"Bite",
@@ -74,11 +83,14 @@ MTH_DS_Families = {
},
},
["Cats"] = {
+ ["icon"] = "Ability_Hunter_Pet_Cat",
["named"] = 85,
["coords"] = 88,
["food"] = {
"meat",
"fish",
+ "raw meat",
+ "raw fish",
},
["abilities"] = {
"Bite",
@@ -90,6 +102,7 @@ MTH_DS_Families = {
},
},
["Crabs"] = {
+ ["icon"] = "Ability_Hunter_Pet_Crab",
["named"] = 32,
["coords"] = 74,
["food"] = {
@@ -97,6 +110,7 @@ MTH_DS_Families = {
"fish",
"fungus",
"bread",
+ "raw fish",
},
["abilities"] = {
"Bubble Barrier",
@@ -106,11 +120,14 @@ MTH_DS_Families = {
},
},
["Crocolisks"] = {
+ ["icon"] = "Ability_Hunter_Pet_Crocolisk",
["named"] = 27,
["coords"] = 71,
["food"] = {
"meat",
"fish",
+ "raw meat",
+ "raw fish",
},
["abilities"] = {
"Bite",
@@ -120,11 +137,13 @@ MTH_DS_Families = {
},
},
["Foxes"] = {
+ ["icon"] = "ability_hunter_aspectofthefox",
["named"] = 9,
["coords"] = 51,
["food"] = {
"meat",
"fruit",
+ "raw meat",
},
["abilities"] = {
"Bite",
@@ -135,6 +154,7 @@ MTH_DS_Families = {
},
},
["Gorillas"] = {
+ ["icon"] = "Ability_Hunter_Pet_Gorilla",
["named"] = 24,
["coords"] = 117,
["food"] = {
@@ -149,11 +169,13 @@ MTH_DS_Families = {
},
},
["Hyenas"] = {
+ ["icon"] = "Ability_Hunter_Pet_Hyena",
["named"] = 26,
["coords"] = 36,
["food"] = {
"meat",
"fruit",
+ "raw meat",
},
["abilities"] = {
"Bite",
@@ -164,10 +186,12 @@ MTH_DS_Families = {
},
},
["Owls"] = {
+ ["icon"] = "Ability_Hunter_Pet_Owl",
["named"] = 16,
["coords"] = 59,
["food"] = {
"meat",
+ "raw meat",
},
["abilities"] = {
"Claw",
@@ -178,10 +202,12 @@ MTH_DS_Families = {
},
},
["Raptors"] = {
+ ["icon"] = "Ability_Hunter_Pet_Raptor",
["named"] = 51,
["coords"] = 115,
["food"] = {
"meat",
+ "raw meat",
},
["abilities"] = {
"Bite",
@@ -193,10 +219,12 @@ MTH_DS_Families = {
},
},
["Scorpids"] = {
+ ["icon"] = "Ability_Hunter_Pet_Scorpid",
["named"] = 38,
["coords"] = 36,
["food"] = {
"meat",
+ "raw meat",
},
["abilities"] = {
"Claw",
@@ -206,11 +234,14 @@ MTH_DS_Families = {
},
},
["Serpents (Cobra)"] = {
+ ["icon"] = "Ability_Hunter_Pet_Serpent1",
["named"] = 10,
["coords"] = 13,
["food"] = {
"meat",
"fish",
+ "raw meat",
+ "raw fish",
},
["abilities"] = {
"Bite",
@@ -220,10 +251,12 @@ MTH_DS_Families = {
},
},
["Spiders"] = {
+ ["icon"] = "Ability_Hunter_Pet_Spider",
["named"] = 91,
["coords"] = 213,
["food"] = {
"meat",
+ "raw meat",
},
["abilities"] = {
"Bite",
@@ -233,6 +266,7 @@ MTH_DS_Families = {
},
},
["Tallstriders"] = {
+ ["icon"] = "Ability_Hunter_Pet_TallStrider",
["named"] = 15,
["coords"] = 112,
["food"] = {
@@ -249,12 +283,14 @@ MTH_DS_Families = {
},
},
["Turtles"] = {
+ ["icon"] = "Ability_Hunter_Pet_Turtle",
["named"] = 25,
["coords"] = 42,
["food"] = {
"fruit",
"fish",
"fungus",
+ "raw fish",
},
["abilities"] = {
"Bite",
@@ -264,12 +300,14 @@ MTH_DS_Families = {
},
},
["Wind Serpents"] = {
+ ["icon"] = "Ability_Hunter_Pet_WindSerpent",
["named"] = 27,
["coords"] = 42,
["food"] = {
"fish",
"cheese",
"bread",
+ "raw fish",
},
["abilities"] = {
"Bite",
@@ -280,10 +318,12 @@ MTH_DS_Families = {
},
},
["Wolves"] = {
+ ["icon"] = "Ability_Hunter_Pet_Wolf",
["named"] = 81,
["coords"] = 99,
["food"] = {
"meat",
+ "raw meat",
},
["abilities"] = {
"Bite",
diff --git a/data/ds-beasts-html-enrichment.lua b/data/ds-beasts-html-enrichment.lua
index e2e311a..fcdea2b 100644
--- a/data/ds-beasts-html-enrichment.lua
+++ b/data/ds-beasts-html-enrichment.lua
@@ -13,6 +13,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 589,
+ ["skinId"] = 589,
}
entry = MTH_DS_Beasts[659]
end
@@ -43,6 +45,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 613,
+ ["skinId"] = 599,
}
entry = MTH_DS_Beasts[728]
end
@@ -73,6 +77,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 8472,
+ ["skinId"] = 675,
}
entry = MTH_DS_Beasts[730]
end
@@ -103,6 +109,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 616,
+ ["skinId"] = 616,
}
entry = MTH_DS_Beasts[731]
end
@@ -133,6 +141,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 633,
+ ["skinId"] = 599,
}
entry = MTH_DS_Beasts[756]
end
@@ -162,6 +172,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 815,
+ ["skinId"] = 807,
}
entry = MTH_DS_Beasts[1087]
end
@@ -191,6 +203,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 699,
+ ["skinId"] = 342,
}
entry = MTH_DS_Beasts[1088]
end
@@ -220,6 +234,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 837,
+ ["skinId"] = 792,
}
entry = MTH_DS_Beasts[1511]
end
@@ -249,6 +265,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 840,
+ ["skinId"] = 840,
}
entry = MTH_DS_Beasts[1514]
end
@@ -278,6 +296,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 839,
+ ["skinId"] = 809,
}
entry = MTH_DS_Beasts[1516]
end
@@ -307,6 +327,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 8802,
+ ["skinId"] = 8802,
}
entry = MTH_DS_Beasts[1550]
end
@@ -336,6 +358,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 2174,
+ ["skinId"] = 2174,
}
entry = MTH_DS_Beasts[1551]
end
@@ -365,6 +389,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 12342,
+ ["skinId"] = 12342,
}
entry = MTH_DS_Beasts[1552]
end
@@ -395,6 +421,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 844,
+ ["skinId"] = 792,
}
entry = MTH_DS_Beasts[1558]
end
@@ -424,6 +452,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 792,
+ ["skinId"] = 792,
}
entry = MTH_DS_Beasts[1559]
end
@@ -454,6 +484,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 11452,
+ ["skinId"] = 599,
}
entry = MTH_DS_Beasts[1713]
end
@@ -483,6 +515,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 1105,
+ ["skinId"] = 388,
}
entry = MTH_DS_Beasts[1809]
end
@@ -512,6 +546,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 1082,
+ ["skinId"] = 1082,
}
entry = MTH_DS_Beasts[1815]
end
@@ -541,6 +577,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 1083,
+ ["skinId"] = 1083,
}
entry = MTH_DS_Beasts[1816]
end
@@ -570,6 +608,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 4124,
+ ["skinId"] = 4124,
}
entry = MTH_DS_Beasts[1817]
end
@@ -599,6 +639,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 1091,
+ ["skinId"] = 1091,
}
entry = MTH_DS_Beasts[1821]
end
@@ -628,6 +670,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 1087,
+ ["skinId"] = 955,
}
entry = MTH_DS_Beasts[1822]
end
@@ -657,6 +701,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 1088,
+ ["skinId"] = 513,
}
entry = MTH_DS_Beasts[1824]
end
@@ -686,6 +732,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 5027,
+ ["skinId"] = 5026,
}
entry = MTH_DS_Beasts[2505]
end
@@ -715,6 +763,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 809,
+ ["skinId"] = 809,
}
entry = MTH_DS_Beasts[2521]
end
@@ -744,6 +794,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 613,
+ ["skinId"] = 599,
}
entry = MTH_DS_Beasts[2522]
end
@@ -773,6 +825,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 935,
+ ["skinId"] = 935,
}
entry = MTH_DS_Beasts[2658]
end
@@ -802,6 +856,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 1148,
+ ["skinId"] = 1148,
}
entry = MTH_DS_Beasts[2659]
end
@@ -831,6 +887,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 781,
+ ["skinId"] = 644,
}
entry = MTH_DS_Beasts[2680]
end
@@ -860,6 +918,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 782,
+ ["skinId"] = 644,
}
entry = MTH_DS_Beasts[2681]
end
@@ -890,6 +950,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 1157,
+ ["skinId"] = 955,
}
entry = MTH_DS_Beasts[2686]
end
@@ -919,6 +981,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 7536,
+ ["skinId"] = 7536,
}
entry = MTH_DS_Beasts[2707]
end
@@ -950,6 +1014,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 161,
+ ["skinId"] = 161,
}
entry = MTH_DS_Beasts[2730]
end
@@ -979,6 +1045,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 11413,
+ ["skinId"] = 9564,
}
entry = MTH_DS_Beasts[2923]
end
@@ -1008,6 +1076,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 11419,
+ ["skinId"] = 9564,
}
entry = MTH_DS_Beasts[2924]
end
@@ -1037,6 +1107,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 11417,
+ ["skinId"] = 9564,
}
entry = MTH_DS_Beasts[2925]
end
@@ -1066,6 +1138,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 11418,
+ ["skinId"] = 9564,
}
entry = MTH_DS_Beasts[2926]
end
@@ -1095,6 +1169,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 1210,
+ ["skinId"] = 490,
}
entry = MTH_DS_Beasts[2931]
end
@@ -1125,6 +1201,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 2850,
+ ["skinId"] = 1609,
}
entry = MTH_DS_Beasts[3581]
end
@@ -1155,6 +1233,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 9956,
+ ["skinId"] = 9956,
}
entry = MTH_DS_Beasts[4242]
end
@@ -1184,6 +1264,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 613,
+ ["skinId"] = 599,
}
entry = MTH_DS_Beasts[4243]
end
@@ -1214,6 +1296,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 2573,
+ ["skinId"] = 1959,
}
entry = MTH_DS_Beasts[4357]
end
@@ -1243,6 +1327,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 2537,
+ ["skinId"] = 2536,
}
entry = MTH_DS_Beasts[4380]
end
@@ -1273,6 +1359,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 2601,
+ ["skinId"] = 2601,
}
entry = MTH_DS_Beasts[4389]
end
@@ -1302,6 +1390,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 6431,
+ ["skinId"] = 6431,
}
entry = MTH_DS_Beasts[4390]
end
@@ -1331,6 +1421,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 7840,
+ ["skinId"] = 4829,
}
entry = MTH_DS_Beasts[4399]
end
@@ -1360,6 +1452,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 7839,
+ ["skinId"] = 4829,
}
entry = MTH_DS_Beasts[4400]
end
@@ -1389,6 +1483,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 2850,
+ ["skinId"] = 1609,
}
entry = MTH_DS_Beasts[4841]
end
@@ -1418,6 +1514,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 1557,
+ ["skinId"] = 1557,
}
entry = MTH_DS_Beasts[5186]
end
@@ -1448,6 +1546,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 4767,
+ ["skinId"] = 4317,
}
entry = MTH_DS_Beasts[5224]
end
@@ -1478,6 +1578,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 4768,
+ ["skinId"] = 4435,
}
entry = MTH_DS_Beasts[5225]
end
@@ -1508,6 +1610,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 7549,
+ ["skinId"] = 7549,
}
entry = MTH_DS_Beasts[5226]
end
@@ -1538,6 +1642,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 3186,
+ ["skinId"] = 3186,
}
entry = MTH_DS_Beasts[5260]
end
@@ -1567,6 +1673,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 3188,
+ ["skinId"] = 3186,
}
entry = MTH_DS_Beasts[5262]
end
@@ -1596,6 +1704,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 3201,
+ ["skinId"] = 806,
}
entry = MTH_DS_Beasts[5268]
end
@@ -1625,6 +1735,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 8838,
+ ["skinId"] = 806,
}
entry = MTH_DS_Beasts[5272]
end
@@ -1654,6 +1766,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 3200,
+ ["skinId"] = 806,
}
entry = MTH_DS_Beasts[5274]
end
@@ -1683,6 +1797,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 3202,
+ ["skinId"] = 165,
}
entry = MTH_DS_Beasts[5287]
end
@@ -1712,6 +1828,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 3203,
+ ["skinId"] = 165,
}
entry = MTH_DS_Beasts[5288]
end
@@ -1741,6 +1859,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 7569,
+ ["skinId"] = 2703,
}
entry = MTH_DS_Beasts[5291]
end
@@ -1771,6 +1891,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 3210,
+ ["skinId"] = 3210,
}
entry = MTH_DS_Beasts[5300]
end
@@ -1800,6 +1922,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 10890,
+ ["skinId"] = 10890,
}
entry = MTH_DS_Beasts[5304]
end
@@ -1829,6 +1953,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 3211,
+ ["skinId"] = 3211,
}
entry = MTH_DS_Beasts[5305]
end
@@ -1858,6 +1984,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 6756,
+ ["skinId"] = 6756,
}
entry = MTH_DS_Beasts[5306]
end
@@ -1887,6 +2015,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 2699,
+ ["skinId"] = 2699,
}
entry = MTH_DS_Beasts[5307]
end
@@ -1916,6 +2046,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 3204,
+ ["skinId"] = 2699,
}
entry = MTH_DS_Beasts[5308]
end
@@ -1945,6 +2077,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 10889,
+ ["skinId"] = 10889,
}
entry = MTH_DS_Beasts[5347]
end
@@ -1975,6 +2109,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 7569,
+ ["skinId"] = 2703,
}
entry = MTH_DS_Beasts[5349]
end
@@ -2005,6 +2141,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 706,
+ ["skinId"] = 706,
}
entry = MTH_DS_Beasts[5352]
end
@@ -2035,6 +2173,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 780,
+ ["skinId"] = 644,
}
entry = MTH_DS_Beasts[5356]
end
@@ -2065,6 +2205,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 141,
+ ["skinId"] = 141,
}
entry = MTH_DS_Beasts[5419]
end
@@ -2094,6 +2236,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 7344,
+ ["skinId"] = 7344,
}
entry = MTH_DS_Beasts[5420]
end
@@ -2123,6 +2267,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 12339,
+ ["skinId"] = 12339,
}
entry = MTH_DS_Beasts[5421]
end
@@ -2152,6 +2298,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 10987,
+ ["skinId"] = 2414,
}
entry = MTH_DS_Beasts[5423]
end
@@ -2181,6 +2329,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 10986,
+ ["skinId"] = 2414,
}
entry = MTH_DS_Beasts[5424]
end
@@ -2210,6 +2360,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 1535,
+ ["skinId"] = 1534,
}
entry = MTH_DS_Beasts[5425]
end
@@ -2239,6 +2391,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 1536,
+ ["skinId"] = 1536,
}
entry = MTH_DS_Beasts[5426]
end
@@ -2268,6 +2422,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 2609,
+ ["skinId"] = 1534,
}
entry = MTH_DS_Beasts[5427]
end
@@ -2297,6 +2453,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 3248,
+ ["skinId"] = 490,
}
entry = MTH_DS_Beasts[5428]
end
@@ -2326,6 +2484,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 7348,
+ ["skinId"] = 490,
}
entry = MTH_DS_Beasts[5429]
end
@@ -2355,6 +2515,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 10827,
+ ["skinId"] = 490,
}
entry = MTH_DS_Beasts[5430]
end
@@ -2384,6 +2546,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 7114,
+ ["skinId"] = 5126,
}
entry = MTH_DS_Beasts[5431]
end
@@ -2413,6 +2577,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 5127,
+ ["skinId"] = 5126,
}
entry = MTH_DS_Beasts[5432]
end
@@ -2443,6 +2609,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 12192,
+ ["skinId"] = 12192,
}
entry = MTH_DS_Beasts[5434]
end
@@ -2473,6 +2641,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 4065,
+ ["skinId"] = 2699,
}
entry = MTH_DS_Beasts[5708]
end
@@ -2503,6 +2673,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 10933,
+ ["skinId"] = 10933,
}
entry = MTH_DS_Beasts[5833]
end
@@ -2533,6 +2705,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 4456,
+ ["skinId"] = 4456,
}
entry = MTH_DS_Beasts[5856]
end
@@ -2562,6 +2736,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 4457,
+ ["skinId"] = 4457,
}
entry = MTH_DS_Beasts[5857]
end
@@ -2591,6 +2767,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 7510,
+ ["skinId"] = 4457,
}
entry = MTH_DS_Beasts[5858]
end
@@ -2620,6 +2798,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 2902,
+ ["skinId"] = 1244,
}
entry = MTH_DS_Beasts[5955]
end
@@ -2649,6 +2829,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 10824,
+ ["skinId"] = 388,
}
entry = MTH_DS_Beasts[5982]
end
@@ -2678,6 +2860,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 1105,
+ ["skinId"] = 388,
}
entry = MTH_DS_Beasts[5983]
end
@@ -2707,6 +2891,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 8050,
+ ["skinId"] = 2714,
}
entry = MTH_DS_Beasts[5984]
end
@@ -2736,6 +2922,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 2714,
+ ["skinId"] = 2714,
}
entry = MTH_DS_Beasts[5985]
end
@@ -2765,6 +2953,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 6068,
+ ["skinId"] = 2488,
}
entry = MTH_DS_Beasts[5988]
end
@@ -2794,6 +2984,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 2743,
+ ["skinId"] = 2743,
}
entry = MTH_DS_Beasts[5990]
end
@@ -2823,6 +3015,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 798,
+ ["skinId"] = 798,
}
entry = MTH_DS_Beasts[5991]
end
@@ -2852,6 +3046,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 3026,
+ ["skinId"] = 3026,
}
entry = MTH_DS_Beasts[5992]
end
@@ -2881,6 +3077,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 1244,
+ ["skinId"] = 1244,
}
entry = MTH_DS_Beasts[6015]
end
@@ -2910,6 +3108,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 10900,
+ ["skinId"] = 10900,
}
entry = MTH_DS_Beasts[6347]
end
@@ -2939,6 +3139,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 10899,
+ ["skinId"] = 10899,
}
entry = MTH_DS_Beasts[6348]
end
@@ -2968,6 +3170,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 10897,
+ ["skinId"] = 10897,
}
entry = MTH_DS_Beasts[6349]
end
@@ -2997,6 +3201,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 10947,
+ ["skinId"] = 2307,
}
entry = MTH_DS_Beasts[6352]
end
@@ -3026,6 +3232,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 2308,
+ ["skinId"] = 2307,
}
entry = MTH_DS_Beasts[6369]
end
@@ -3055,6 +3263,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 6757,
+ ["skinId"] = 6757,
}
entry = MTH_DS_Beasts[6375]
end
@@ -3084,6 +3294,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 10894,
+ ["skinId"] = 10894,
}
entry = MTH_DS_Beasts[6377]
end
@@ -3113,6 +3325,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 10893,
+ ["skinId"] = 10893,
}
entry = MTH_DS_Beasts[6378]
end
@@ -3142,6 +3356,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 10892,
+ ["skinId"] = 10892,
}
entry = MTH_DS_Beasts[6379]
end
@@ -3171,6 +3387,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 10891,
+ ["skinId"] = 10891,
}
entry = MTH_DS_Beasts[6380]
end
@@ -3200,6 +3418,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 5239,
+ ["skinId"] = 5239,
}
entry = MTH_DS_Beasts[6498]
end
@@ -3230,6 +3450,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 5238,
+ ["skinId"] = 5238,
}
entry = MTH_DS_Beasts[6499]
end
@@ -3260,6 +3482,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 5240,
+ ["skinId"] = 5240,
}
entry = MTH_DS_Beasts[6500]
end
@@ -3290,6 +3514,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 5241,
+ ["skinId"] = 5241,
}
entry = MTH_DS_Beasts[6501]
end
@@ -3320,6 +3546,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 5287,
+ ["skinId"] = 5287,
}
entry = MTH_DS_Beasts[6502]
end
@@ -3350,6 +3578,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 5288,
+ ["skinId"] = 5288,
}
entry = MTH_DS_Beasts[6503]
end
@@ -3380,6 +3610,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 5289,
+ ["skinId"] = 5289,
}
entry = MTH_DS_Beasts[6504]
end
@@ -3410,6 +3642,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 5242,
+ ["skinId"] = 960,
}
entry = MTH_DS_Beasts[6505]
end
@@ -3439,6 +3673,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 5290,
+ ["skinId"] = 675,
}
entry = MTH_DS_Beasts[6506]
end
@@ -3468,6 +3704,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 5292,
+ ["skinId"] = 960,
}
entry = MTH_DS_Beasts[6507]
end
@@ -3497,6 +3735,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 5291,
+ ["skinId"] = 5291,
}
entry = MTH_DS_Beasts[6508]
end
@@ -3526,6 +3766,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 5294,
+ ["skinId"] = 792,
}
entry = MTH_DS_Beasts[6513]
end
@@ -3555,6 +3797,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 844,
+ ["skinId"] = 792,
}
entry = MTH_DS_Beasts[6514]
end
@@ -3584,6 +3828,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 5244,
+ ["skinId"] = 792,
}
entry = MTH_DS_Beasts[6516]
end
@@ -3613,6 +3859,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 11319,
+ ["skinId"] = 322,
}
entry = MTH_DS_Beasts[6581]
end
@@ -3643,6 +3891,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 10932,
+ ["skinId"] = 10932,
}
entry = MTH_DS_Beasts[6583]
end
@@ -3673,6 +3923,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 5305,
+ ["skinId"] = 5305,
}
entry = MTH_DS_Beasts[6584]
end
@@ -3703,6 +3955,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 8129,
+ ["skinId"] = 840,
}
entry = MTH_DS_Beasts[6585]
end
@@ -3733,6 +3987,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 3212,
+ ["skinId"] = 3212,
}
entry = MTH_DS_Beasts[6648]
end
@@ -3763,6 +4019,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 741,
+ ["skinId"] = 246,
}
entry = MTH_DS_Beasts[7055]
end
@@ -3792,6 +4050,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 4877,
+ ["skinId"] = 4877,
}
entry = MTH_DS_Beasts[7097]
end
@@ -3821,6 +4081,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 10831,
+ ["skinId"] = 4877,
}
entry = MTH_DS_Beasts[7098]
end
@@ -3850,6 +4112,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 10829,
+ ["skinId"] = 4877,
}
entry = MTH_DS_Beasts[7099]
end
@@ -3879,6 +4143,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 5865,
+ ["skinId"] = 5865,
}
entry = MTH_DS_Beasts[7167]
end
@@ -3909,6 +4175,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 4305,
+ ["skinId"] = 4305,
}
entry = MTH_DS_Beasts[7268]
end
@@ -3939,6 +4207,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 7470,
+ ["skinId"] = 7469,
}
entry = MTH_DS_Beasts[7269]
end
@@ -3968,6 +4238,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 7271,
+ ["skinId"] = 7271,
}
entry = MTH_DS_Beasts[7273]
end
@@ -3998,6 +4270,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 10826,
+ ["skinId"] = 507,
}
entry = MTH_DS_Beasts[7376]
end
@@ -4027,6 +4301,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 5985,
+ ["skinId"] = 2489,
}
entry = MTH_DS_Beasts[7405]
end
@@ -4056,6 +4332,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 9958,
+ ["skinId"] = 9958,
}
entry = MTH_DS_Beasts[7430]
end
@@ -4085,6 +4363,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 9953,
+ ["skinId"] = 616,
}
entry = MTH_DS_Beasts[7431]
end
@@ -4114,6 +4394,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 11445,
+ ["skinId"] = 9958,
}
entry = MTH_DS_Beasts[7432]
end
@@ -4143,6 +4425,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 11444,
+ ["skinId"] = 9958,
}
entry = MTH_DS_Beasts[7433]
end
@@ -4172,6 +4456,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 9954,
+ ["skinId"] = 9954,
}
entry = MTH_DS_Beasts[7434]
end
@@ -4201,6 +4487,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 8842,
+ ["skinId"] = 865,
}
entry = MTH_DS_Beasts[7443]
end
@@ -4230,6 +4518,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 865,
+ ["skinId"] = 865,
}
entry = MTH_DS_Beasts[7444]
end
@@ -4259,6 +4549,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 8837,
+ ["skinId"] = 865,
}
entry = MTH_DS_Beasts[7445]
end
@@ -4288,6 +4580,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 3200,
+ ["skinId"] = 806,
}
entry = MTH_DS_Beasts[7446]
end
@@ -4317,6 +4611,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 10807,
+ ["skinId"] = 10807,
}
entry = MTH_DS_Beasts[7447]
end
@@ -4346,6 +4642,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 10810,
+ ["skinId"] = 10810,
}
entry = MTH_DS_Beasts[7448]
end
@@ -4375,6 +4673,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 10809,
+ ["skinId"] = 10809,
}
entry = MTH_DS_Beasts[7449]
end
@@ -4404,6 +4704,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 6212,
+ ["skinId"] = 6212,
}
entry = MTH_DS_Beasts[7455]
end
@@ -4433,6 +4735,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 10833,
+ ["skinId"] = 6212,
}
entry = MTH_DS_Beasts[7456]
end
@@ -4462,6 +4766,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 2414,
+ ["skinId"] = 2414,
}
entry = MTH_DS_Beasts[7803]
end
@@ -4491,6 +4797,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 12238,
+ ["skinId"] = 12238,
}
entry = MTH_DS_Beasts[7808]
end
@@ -4520,6 +4828,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 7114,
+ ["skinId"] = 5126,
}
entry = MTH_DS_Beasts[7977]
end
@@ -4550,6 +4860,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 7269,
+ ["skinId"] = 7269,
}
entry = MTH_DS_Beasts[8024]
end
@@ -4579,6 +4891,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 7270,
+ ["skinId"] = 7270,
}
entry = MTH_DS_Beasts[8025]
end
@@ -4608,6 +4922,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 7345,
+ ["skinId"] = 7345,
}
entry = MTH_DS_Beasts[8095]
end
@@ -4638,6 +4954,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 7349,
+ ["skinId"] = 490,
}
entry = MTH_DS_Beasts[8207]
end
@@ -4668,6 +4986,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 1534,
+ ["skinId"] = 1534,
}
entry = MTH_DS_Beasts[8208]
end
@@ -4698,6 +5018,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 11414,
+ ["skinId"] = 11414,
}
entry = MTH_DS_Beasts[8211]
end
@@ -4728,6 +5050,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 7840,
+ ["skinId"] = 4829,
}
entry = MTH_DS_Beasts[8213]
end
@@ -4758,6 +5082,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 4458,
+ ["skinId"] = 4457,
}
entry = MTH_DS_Beasts[8277]
end
@@ -4788,6 +5114,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 388,
+ ["skinId"] = 388,
}
entry = MTH_DS_Beasts[8299]
end
@@ -4818,6 +5146,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 10904,
+ ["skinId"] = 2713,
}
entry = MTH_DS_Beasts[8300]
end
@@ -4848,6 +5178,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 10983,
+ ["skinId"] = 10983,
}
entry = MTH_DS_Beasts[8301]
end
@@ -4878,6 +5210,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 2174,
+ ["skinId"] = 2174,
}
entry = MTH_DS_Beasts[8302]
end
@@ -4908,6 +5242,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 8870,
+ ["skinId"] = 381,
}
entry = MTH_DS_Beasts[8303]
end
@@ -4938,6 +5274,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 7571,
+ ["skinId"] = 7571,
}
entry = MTH_DS_Beasts[8311]
end
@@ -4967,6 +5305,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 1336,
+ ["skinId"] = 1336,
}
entry = MTH_DS_Beasts[8336]
end
@@ -4997,6 +5337,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 7894,
+ ["skinId"] = 4185,
}
entry = MTH_DS_Beasts[8600]
end
@@ -5026,6 +5368,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 7896,
+ ["skinId"] = 1954,
}
entry = MTH_DS_Beasts[8601]
end
@@ -5055,6 +5399,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 7897,
+ ["skinId"] = 4185,
}
entry = MTH_DS_Beasts[8602]
end
@@ -5084,6 +5430,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 7898,
+ ["skinId"] = 7898,
}
entry = MTH_DS_Beasts[8603]
end
@@ -5113,6 +5461,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 7900,
+ ["skinId"] = 7900,
}
entry = MTH_DS_Beasts[8605]
end
@@ -5142,6 +5492,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 7906,
+ ["skinId"] = 2699,
}
entry = MTH_DS_Beasts[8612]
end
@@ -5171,6 +5523,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 10807,
+ ["skinId"] = 10807,
}
entry = MTH_DS_Beasts[8660]
end
@@ -5201,6 +5555,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 8013,
+ ["skinId"] = 8013,
}
entry = MTH_DS_Beasts[8759]
end
@@ -5230,6 +5586,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 2161,
+ ["skinId"] = 2161,
}
entry = MTH_DS_Beasts[8760]
end
@@ -5259,6 +5617,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 10957,
+ ["skinId"] = 10957,
}
entry = MTH_DS_Beasts[8761]
end
@@ -5288,6 +5648,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 8014,
+ ["skinId"] = 520,
}
entry = MTH_DS_Beasts[8762]
end
@@ -5317,6 +5679,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 12682,
+ ["skinId"] = 12682,
}
entry = MTH_DS_Beasts[8763]
end
@@ -5346,6 +5710,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 4269,
+ ["skinId"] = 4269,
}
entry = MTH_DS_Beasts[8764]
end
@@ -5375,6 +5741,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 8182,
+ ["skinId"] = 8182,
}
entry = MTH_DS_Beasts[8925]
end
@@ -5405,6 +5773,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 7347,
+ ["skinId"] = 2489,
}
entry = MTH_DS_Beasts[8926]
end
@@ -5435,6 +5805,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 1955,
+ ["skinId"] = 1954,
}
entry = MTH_DS_Beasts[8927]
end
@@ -5465,6 +5837,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 8184,
+ ["skinId"] = 8184,
}
entry = MTH_DS_Beasts[8928]
end
@@ -5495,6 +5869,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 7470,
+ ["skinId"] = 7469,
}
entry = MTH_DS_Beasts[8932]
end
@@ -5525,6 +5901,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 8014,
+ ["skinId"] = 520,
}
entry = MTH_DS_Beasts[8933]
end
@@ -5555,6 +5933,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 9276,
+ ["skinId"] = 1083,
}
entry = MTH_DS_Beasts[8956]
end
@@ -5584,6 +5964,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 9277,
+ ["skinId"] = 1083,
}
entry = MTH_DS_Beasts[8957]
end
@@ -5613,6 +5995,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 1083,
+ ["skinId"] = 1083,
}
entry = MTH_DS_Beasts[8958]
end
@@ -5642,6 +6026,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 4124,
+ ["skinId"] = 4124,
}
entry = MTH_DS_Beasts[8959]
end
@@ -5671,6 +6057,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 9278,
+ ["skinId"] = 4124,
}
entry = MTH_DS_Beasts[8960]
end
@@ -5700,6 +6088,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 9280,
+ ["skinId"] = 4124,
}
entry = MTH_DS_Beasts[8961]
end
@@ -5729,6 +6119,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 8271,
+ ["skinId"] = 4456,
}
entry = MTH_DS_Beasts[9032]
end
@@ -5759,6 +6151,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 8510,
+ ["skinId"] = 8510,
}
entry = MTH_DS_Beasts[9162]
end
@@ -5788,6 +6182,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 8511,
+ ["skinId"] = 8511,
}
entry = MTH_DS_Beasts[9163]
end
@@ -5817,6 +6213,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 8512,
+ ["skinId"] = 8512,
}
entry = MTH_DS_Beasts[9164]
end
@@ -5846,6 +6244,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 8410,
+ ["skinId"] = 8410,
}
entry = MTH_DS_Beasts[9165]
end
@@ -5875,6 +6275,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 8411,
+ ["skinId"] = 8411,
}
entry = MTH_DS_Beasts[9166]
end
@@ -5904,6 +6306,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 8412,
+ ["skinId"] = 8412,
}
entry = MTH_DS_Beasts[9167]
end
@@ -5933,6 +6337,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 9342,
+ ["skinId"] = 9342,
}
entry = MTH_DS_Beasts[9274]
end
@@ -5962,6 +6368,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 2157,
+ ["skinId"] = 2157,
}
entry = MTH_DS_Beasts[9297]
end
@@ -5991,6 +6399,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 8509,
+ ["skinId"] = 8509,
}
entry = MTH_DS_Beasts[9318]
end
@@ -6020,6 +6430,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 11420,
+ ["skinId"] = 9369,
}
entry = MTH_DS_Beasts[9416]
end
@@ -6050,6 +6462,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 9074,
+ ["skinId"] = 1954,
}
entry = MTH_DS_Beasts[9521]
end
@@ -6080,6 +6494,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 1149,
+ ["skinId"] = 1149,
}
entry = MTH_DS_Beasts[9526]
end
@@ -6109,6 +6525,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 479,
+ ["skinId"] = 479,
}
entry = MTH_DS_Beasts[9527]
end
@@ -6138,6 +6556,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 8844,
+ ["skinId"] = 3186,
}
entry = MTH_DS_Beasts[9622]
end
@@ -6167,6 +6587,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 5242,
+ ["skinId"] = 960,
}
entry = MTH_DS_Beasts[9683]
end
@@ -6196,6 +6618,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 11318,
+ ["skinId"] = 675,
}
entry = MTH_DS_Beasts[9684]
end
@@ -6225,6 +6649,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 9371,
+ ["skinId"] = 9369,
}
entry = MTH_DS_Beasts[9690]
end
@@ -6254,6 +6680,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 8970,
+ ["skinId"] = 2487,
}
entry = MTH_DS_Beasts[9691]
end
@@ -6283,6 +6711,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 11420,
+ ["skinId"] = 9369,
}
entry = MTH_DS_Beasts[9694]
end
@@ -6312,6 +6742,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 10984,
+ ["skinId"] = 2487,
}
entry = MTH_DS_Beasts[9695]
end
@@ -6341,6 +6773,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 9562,
+ ["skinId"] = 246,
}
entry = MTH_DS_Beasts[9696]
end
@@ -6371,6 +6805,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 9370,
+ ["skinId"] = 9369,
}
entry = MTH_DS_Beasts[9697]
end
@@ -6400,6 +6836,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 10985,
+ ["skinId"] = 2487,
}
entry = MTH_DS_Beasts[9698]
end
@@ -6429,6 +6867,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 2864,
+ ["skinId"] = 2488,
}
entry = MTH_DS_Beasts[9701]
end
@@ -6458,6 +6898,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 9562,
+ ["skinId"] = 246,
}
entry = MTH_DS_Beasts[10077]
end
@@ -6488,6 +6930,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 9469,
+ ["skinId"] = 9469,
}
entry = MTH_DS_Beasts[10177]
end
@@ -6517,6 +6961,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 10054,
+ ["skinId"] = 10054,
}
entry = MTH_DS_Beasts[10200]
end
@@ -6547,6 +6993,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 9492,
+ ["skinId"] = 9492,
}
entry = MTH_DS_Beasts[10204]
end
@@ -6577,6 +7025,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 9567,
+ ["skinId"] = 9567,
}
entry = MTH_DS_Beasts[10220]
end
@@ -6607,6 +7057,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 9563,
+ ["skinId"] = 246,
}
entry = MTH_DS_Beasts[10221]
end
@@ -6636,6 +7088,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 9564,
+ ["skinId"] = 9564,
}
entry = MTH_DS_Beasts[10268]
end
@@ -6666,6 +7120,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 9755,
+ ["skinId"] = 4456,
}
entry = MTH_DS_Beasts[10374]
end
@@ -6696,6 +7152,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 9756,
+ ["skinId"] = 4456,
}
entry = MTH_DS_Beasts[10375]
end
@@ -6725,6 +7183,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 9755,
+ ["skinId"] = 4456,
}
entry = MTH_DS_Beasts[10376]
end
@@ -6755,6 +7215,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 10193,
+ ["skinId"] = 10193,
}
entry = MTH_DS_Beasts[10430]
end
@@ -6785,6 +7247,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 10005,
+ ["skinId"] = 10005,
}
entry = MTH_DS_Beasts[10577]
end
@@ -6814,6 +7278,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 9929,
+ ["skinId"] = 4456,
}
entry = MTH_DS_Beasts[10596]
end
@@ -6844,6 +7310,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 9954,
+ ["skinId"] = 9954,
}
entry = MTH_DS_Beasts[10619]
end
@@ -6874,6 +7342,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 10046,
+ ["skinId"] = 10046,
}
entry = MTH_DS_Beasts[10717]
end
@@ -6903,6 +7373,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 10113,
+ ["skinId"] = 10054,
}
entry = MTH_DS_Beasts[10737]
end
@@ -6933,6 +7405,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 10114,
+ ["skinId"] = 1934,
}
entry = MTH_DS_Beasts[10741]
end
@@ -6963,6 +7437,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 10618,
+ ["skinId"] = 865,
}
entry = MTH_DS_Beasts[10806]
end
@@ -6993,6 +7469,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 12683,
+ ["skinId"] = 12683,
}
entry = MTH_DS_Beasts[10807]
end
@@ -7023,6 +7501,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 10244,
+ ["skinId"] = 10244,
}
entry = MTH_DS_Beasts[10942]
end
@@ -7053,6 +7533,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 2709,
+ ["skinId"] = 2709,
}
entry = MTH_DS_Beasts[10979]
end
@@ -7082,6 +7564,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 10278,
+ ["skinId"] = 720,
}
entry = MTH_DS_Beasts[10981]
end
@@ -7111,6 +7595,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 10278,
+ ["skinId"] = 720,
}
entry = MTH_DS_Beasts[10985]
end
@@ -7140,6 +7626,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 10283,
+ ["skinId"] = 10283,
}
entry = MTH_DS_Beasts[10988]
end
@@ -7169,6 +7657,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 13340,
+ ["skinId"] = 13340,
}
entry = MTH_DS_Beasts[10989]
end
@@ -7198,6 +7688,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 13340,
+ ["skinId"] = 13340,
}
entry = MTH_DS_Beasts[10990]
end
@@ -7227,6 +7719,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 1030,
+ ["skinId"] = 720,
}
entry = MTH_DS_Beasts[11024]
end
@@ -7257,6 +7751,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 11452,
+ ["skinId"] = 599,
}
entry = MTH_DS_Beasts[11181]
end
@@ -7287,6 +7783,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 15275,
+ ["skinId"] = 2699,
}
entry = MTH_DS_Beasts[11357]
end
@@ -7317,6 +7815,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 7829,
+ ["skinId"] = 3006,
}
entry = MTH_DS_Beasts[11359]
end
@@ -7347,6 +7847,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 15151,
+ ["skinId"] = 320,
}
entry = MTH_DS_Beasts[11360]
end
@@ -7376,6 +7878,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 11031,
+ ["skinId"] = 320,
}
entry = MTH_DS_Beasts[11361]
end
@@ -7406,6 +7910,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 633,
+ ["skinId"] = 599,
}
entry = MTH_DS_Beasts[11365]
end
@@ -7436,6 +7942,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 14562,
+ ["skinId"] = 3956,
}
entry = MTH_DS_Beasts[11368]
end
@@ -7465,6 +7973,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 963,
+ ["skinId"] = 963,
}
entry = MTH_DS_Beasts[11370]
end
@@ -7495,6 +8005,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 15182,
+ ["skinId"] = 15182,
}
entry = MTH_DS_Beasts[11371]
end
@@ -7525,6 +8037,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 15150,
+ ["skinId"] = 4317,
}
entry = MTH_DS_Beasts[11372]
end
@@ -7555,6 +8069,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 14559,
+ ["skinId"] = 4305,
}
entry = MTH_DS_Beasts[11373]
end
@@ -7585,6 +8101,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 15101,
+ ["skinId"] = 15101,
}
entry = MTH_DS_Beasts[11374]
end
@@ -7615,6 +8133,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 12683,
+ ["skinId"] = 12683,
}
entry = MTH_DS_Beasts[11497]
end
@@ -7645,6 +8165,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 3203,
+ ["skinId"] = 165,
}
entry = MTH_DS_Beasts[11614]
end
@@ -7674,6 +8196,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 12168,
+ ["skinId"] = 12168,
}
entry = MTH_DS_Beasts[11671]
end
@@ -7704,6 +8228,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 11997,
+ ["skinId"] = 11997,
}
entry = MTH_DS_Beasts[11672]
end
@@ -7734,6 +8260,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 12189,
+ ["skinId"] = 12189,
}
entry = MTH_DS_Beasts[11673]
end
@@ -7764,6 +8292,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 2325,
+ ["skinId"] = 2325,
}
entry = MTH_DS_Beasts[11710]
end
@@ -7793,6 +8323,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 15383,
+ ["skinId"] = 10983,
}
entry = MTH_DS_Beasts[11735]
end
@@ -7822,6 +8354,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 15384,
+ ["skinId"] = 2729,
}
entry = MTH_DS_Beasts[11736]
end
@@ -7851,6 +8385,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 15385,
+ ["skinId"] = 10983,
}
entry = MTH_DS_Beasts[11737]
end
@@ -7880,6 +8416,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 8014,
+ ["skinId"] = 520,
}
entry = MTH_DS_Beasts[11738]
end
@@ -7909,6 +8447,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 711,
+ ["skinId"] = 711,
}
entry = MTH_DS_Beasts[11739]
end
@@ -7938,6 +8478,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 15386,
+ ["skinId"] = 15386,
}
entry = MTH_DS_Beasts[11740]
end
@@ -7967,6 +8509,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 14524,
+ ["skinId"] = 14524,
}
entry = MTH_DS_Beasts[11741]
end
@@ -7996,6 +8540,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 11713,
+ ["skinId"] = 11713,
}
entry = MTH_DS_Beasts[11785]
end
@@ -8026,6 +8572,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 12338,
+ ["skinId"] = 12338,
}
entry = MTH_DS_Beasts[11786]
end
@@ -8056,6 +8604,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 13009,
+ ["skinId"] = 13009,
}
entry = MTH_DS_Beasts[11788]
end
@@ -8086,6 +8636,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 12333,
+ ["skinId"] = 12333,
}
entry = MTH_DS_Beasts[11789]
end
@@ -8115,6 +8667,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 782,
+ ["skinId"] = 644,
}
entry = MTH_DS_Beasts[11871]
end
@@ -8145,6 +8699,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 2715,
+ ["skinId"] = 2714,
}
entry = MTH_DS_Beasts[11885]
end
@@ -8175,6 +8731,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 11828,
+ ["skinId"] = 11828,
}
entry = MTH_DS_Beasts[11896]
end
@@ -8205,6 +8763,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 11829,
+ ["skinId"] = 4735,
}
entry = MTH_DS_Beasts[11897]
end
@@ -8235,6 +8795,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 11909,
+ ["skinId"] = 820,
}
entry = MTH_DS_Beasts[11956]
end
@@ -8264,6 +8826,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 11910,
+ ["skinId"] = 599,
}
entry = MTH_DS_Beasts[11957]
end
@@ -8293,6 +8857,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 10193,
+ ["skinId"] = 10193,
}
entry = MTH_DS_Beasts[11982]
end
@@ -8323,6 +8889,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 10278,
+ ["skinId"] = 720,
}
entry = MTH_DS_Beasts[12121]
end
@@ -8353,6 +8921,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 10278,
+ ["skinId"] = 720,
}
entry = MTH_DS_Beasts[12122]
end
@@ -8383,6 +8953,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 12203,
+ ["skinId"] = 12203,
}
entry = MTH_DS_Beasts[12124]
end
@@ -8413,6 +8985,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 12207,
+ ["skinId"] = 12207,
}
entry = MTH_DS_Beasts[12125]
end
@@ -8443,6 +9017,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 12346,
+ ["skinId"] = 12346,
}
entry = MTH_DS_Beasts[12218]
end
@@ -8472,6 +9048,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 10269,
+ ["skinId"] = 10269,
}
entry = MTH_DS_Beasts[12257]
end
@@ -8501,6 +9079,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 2712,
+ ["skinId"] = 2710,
}
entry = MTH_DS_Beasts[12418]
end
@@ -8530,6 +9110,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 4269,
+ ["skinId"] = 4269,
}
entry = MTH_DS_Beasts[12800]
end
@@ -8560,6 +9142,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 10810,
+ ["skinId"] = 10810,
}
entry = MTH_DS_Beasts[12801]
end
@@ -8590,6 +9174,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 9560,
+ ["skinId"] = 9560,
}
entry = MTH_DS_Beasts[12802]
end
@@ -8620,6 +9206,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 12683,
+ ["skinId"] = 12683,
}
entry = MTH_DS_Beasts[12803]
end
@@ -8650,6 +9238,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 12966,
+ ["skinId"] = 2710,
}
entry = MTH_DS_Beasts[13036]
end
@@ -8679,6 +9269,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 13096,
+ ["skinId"] = 7469,
}
entry = MTH_DS_Beasts[13160]
end
@@ -8708,6 +9300,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 1149,
+ ["skinId"] = 1149,
}
entry = MTH_DS_Beasts[13161]
end
@@ -8738,6 +9332,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 11012,
+ ["skinId"] = 11012,
}
entry = MTH_DS_Beasts[13178]
end
@@ -8768,6 +9364,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 10833,
+ ["skinId"] = 6212,
}
entry = MTH_DS_Beasts[13221]
end
@@ -8798,6 +9396,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 13209,
+ ["skinId"] = 13209,
}
entry = MTH_DS_Beasts[13323]
end
@@ -8828,6 +9428,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 13609,
+ ["skinId"] = 13609,
}
entry = MTH_DS_Beasts[13533]
end
@@ -8858,6 +9460,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 13589,
+ ["skinId"] = 1609,
}
entry = MTH_DS_Beasts[13596]
end
@@ -8888,6 +9492,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 6368,
+ ["skinId"] = 5126,
}
entry = MTH_DS_Beasts[13599]
end
@@ -8917,6 +9523,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 10278,
+ ["skinId"] = 720,
}
entry = MTH_DS_Beasts[13618]
end
@@ -8946,6 +9554,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 13340,
+ ["skinId"] = 13340,
}
entry = MTH_DS_Beasts[13676]
end
@@ -8975,6 +9585,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 236,
+ ["skinId"] = 236,
}
entry = MTH_DS_Beasts[13837]
end
@@ -9004,6 +9616,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 7046,
+ ["skinId"] = 5126,
}
entry = MTH_DS_Beasts[13896]
end
@@ -9034,6 +9648,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 7114,
+ ["skinId"] = 5126,
}
entry = MTH_DS_Beasts[14123]
end
@@ -9063,6 +9679,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 2703,
+ ["skinId"] = 2703,
}
entry = MTH_DS_Beasts[14234]
end
@@ -9093,6 +9711,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 12336,
+ ["skinId"] = 12336,
}
entry = MTH_DS_Beasts[14237]
end
@@ -9123,6 +9743,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 782,
+ ["skinId"] = 644,
}
entry = MTH_DS_Beasts[14282]
end
@@ -9152,6 +9774,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 10828,
+ ["skinId"] = 6212,
}
entry = MTH_DS_Beasts[14283]
end
@@ -9181,6 +9805,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 9956,
+ ["skinId"] = 9956,
}
entry = MTH_DS_Beasts[14306]
end
@@ -9210,6 +9836,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 1083,
+ ["skinId"] = 1083,
}
entry = MTH_DS_Beasts[14308]
end
@@ -9240,6 +9868,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 11412,
+ ["skinId"] = 720,
}
entry = MTH_DS_Beasts[14339]
end
@@ -9270,6 +9900,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 6212,
+ ["skinId"] = 6212,
}
entry = MTH_DS_Beasts[14343]
end
@@ -9300,6 +9932,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 14315,
+ ["skinId"] = 822,
}
entry = MTH_DS_Beasts[14344]
end
@@ -9330,6 +9964,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 1104,
+ ["skinId"] = 1091,
}
entry = MTH_DS_Beasts[14472]
end
@@ -9360,6 +9996,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 6068,
+ ["skinId"] = 2488,
}
entry = MTH_DS_Beasts[14476]
end
@@ -9390,6 +10028,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 14523,
+ ["skinId"] = 14523,
}
entry = MTH_DS_Beasts[14477]
end
@@ -9420,6 +10060,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 14528,
+ ["skinId"] = 14528,
}
entry = MTH_DS_Beasts[14490]
end
@@ -9450,6 +10092,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 3186,
+ ["skinId"] = 3186,
}
entry = MTH_DS_Beasts[14491]
end
@@ -9480,6 +10124,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 14950,
+ ["skinId"] = 955,
}
entry = MTH_DS_Beasts[14532]
end
@@ -9510,6 +10156,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 14585,
+ ["skinId"] = 14585,
}
entry = MTH_DS_Beasts[14566]
end
@@ -9539,6 +10187,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 14590,
+ ["skinId"] = 14590,
}
entry = MTH_DS_Beasts[14568]
end
@@ -9568,6 +10218,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 2571,
+ ["skinId"] = 1959,
}
entry = MTH_DS_Beasts[14821]
end
@@ -9598,6 +10250,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 15072,
+ ["skinId"] = 711,
}
entry = MTH_DS_Beasts[14880]
end
@@ -9628,6 +10282,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 11012,
+ ["skinId"] = 11012,
}
entry = MTH_DS_Beasts[14943]
end
@@ -9658,6 +10314,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 11012,
+ ["skinId"] = 11012,
}
entry = MTH_DS_Beasts[14944]
end
@@ -9688,6 +10346,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 11012,
+ ["skinId"] = 11012,
}
entry = MTH_DS_Beasts[14945]
end
@@ -9718,6 +10378,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 1148,
+ ["skinId"] = 1148,
}
entry = MTH_DS_Beasts[14946]
end
@@ -9748,6 +10410,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 1148,
+ ["skinId"] = 1148,
}
entry = MTH_DS_Beasts[14947]
end
@@ -9778,6 +10442,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 1148,
+ ["skinId"] = 1148,
}
entry = MTH_DS_Beasts[14948]
end
@@ -9808,6 +10474,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 14562,
+ ["skinId"] = 3956,
}
entry = MTH_DS_Beasts[14965]
end
@@ -9837,6 +10505,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 15271,
+ ["skinId"] = 15271,
}
entry = MTH_DS_Beasts[14988]
end
@@ -9867,6 +10537,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 15136,
+ ["skinId"] = 711,
}
entry = MTH_DS_Beasts[15041]
end
@@ -9896,6 +10568,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 833,
+ ["skinId"] = 833,
}
entry = MTH_DS_Beasts[15043]
end
@@ -9926,6 +10600,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 14572,
+ ["skinId"] = 599,
}
entry = MTH_DS_Beasts[15067]
end
@@ -9956,6 +10632,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 11029,
+ ["skinId"] = 320,
}
entry = MTH_DS_Beasts[15068]
end
@@ -9985,6 +10663,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 613,
+ ["skinId"] = 599,
}
entry = MTH_DS_Beasts[15101]
end
@@ -10014,6 +10694,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 15288,
+ ["skinId"] = 15288,
}
entry = MTH_DS_Beasts[15114]
end
@@ -10044,6 +10726,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 15302,
+ ["skinId"] = 3186,
}
entry = MTH_DS_Beasts[15172]
end
@@ -10074,6 +10758,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 15327,
+ ["skinId"] = 2489,
}
entry = MTH_DS_Beasts[15196]
end
@@ -10104,6 +10790,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 7691,
+ ["skinId"] = 2703,
}
entry = MTH_DS_Beasts[15204]
end
@@ -10135,6 +10823,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 7569,
+ ["skinId"] = 2703,
}
entry = MTH_DS_Beasts[15220]
end
@@ -10166,6 +10856,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 14528,
+ ["skinId"] = 14528,
}
entry = MTH_DS_Beasts[15505]
end
@@ -10196,6 +10888,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 10133,
+ ["skinId"] = 840,
}
entry = MTH_DS_Beasts[15554]
end
@@ -10226,6 +10920,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 15555,
+ ["skinId"] = 15555,
}
entry = MTH_DS_Beasts[15571]
end
@@ -10256,6 +10952,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 15684,
+ ["skinId"] = 15684,
}
entry = MTH_DS_Beasts[15721]
end
@@ -10285,6 +10983,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 15928,
+ ["skinId"] = 15928,
}
entry = MTH_DS_Beasts[15952]
end
@@ -10315,6 +11015,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 15937,
+ ["skinId"] = 15937,
}
entry = MTH_DS_Beasts[15974]
end
@@ -10345,6 +11047,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 15938,
+ ["skinId"] = 513,
}
entry = MTH_DS_Beasts[15975]
end
@@ -10375,6 +11079,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 15939,
+ ["skinId"] = 2536,
}
entry = MTH_DS_Beasts[15976]
end
@@ -10405,6 +11111,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 959,
+ ["skinId"] = 955,
}
entry = MTH_DS_Beasts[15977]
end
@@ -10435,6 +11143,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 7896,
+ ["skinId"] = 1954,
}
entry = MTH_DS_Beasts[16036]
end
@@ -10465,6 +11175,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 1954,
+ ["skinId"] = 1954,
}
entry = MTH_DS_Beasts[16037]
end
@@ -10495,6 +11207,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 15978,
+ ["skinId"] = 15978,
}
entry = MTH_DS_Beasts[16056]
end
@@ -10525,6 +11239,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 15554,
+ ["skinId"] = 15554,
}
entry = MTH_DS_Beasts[16057]
end
@@ -10555,6 +11271,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 12966,
+ ["skinId"] = 2710,
}
entry = MTH_DS_Beasts[16095]
end
@@ -10585,6 +11303,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 12589,
+ ["skinId"] = 12589,
}
entry = MTH_DS_Beasts[16098]
end
@@ -10615,6 +11335,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 6121,
+ ["skinId"] = 6121,
}
entry = MTH_DS_Beasts[16117]
end
@@ -10644,6 +11366,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 14546,
+ ["skinId"] = 14546,
}
entry = MTH_DS_Beasts[16232]
end
@@ -10673,6 +11397,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 15964,
+ ["skinId"] = 14312,
}
entry = MTH_DS_Beasts[16448]
end
@@ -10703,6 +11429,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 15939,
+ ["skinId"] = 2536,
}
entry = MTH_DS_Beasts[16453]
end
@@ -10733,6 +11461,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 8469,
+ ["skinId"] = 8469,
}
entry = MTH_DS_Beasts[16509]
end
@@ -10762,6 +11492,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 13111,
+ ["skinId"] = 963,
}
entry = MTH_DS_Beasts[17055]
end
@@ -10791,6 +11523,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 17328,
+ ["skinId"] = 17328,
}
entry = MTH_DS_Beasts[17660]
end
@@ -10820,6 +11554,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 1236,
+ ["skinId"] = 1236,
}
entry = MTH_DS_Beasts[29001]
end
@@ -10849,6 +11585,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 12237,
+ ["skinId"] = 12237,
}
entry = MTH_DS_Beasts[49004]
end
@@ -10879,6 +11617,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 16361,
+ ["skinId"] = 16361,
}
entry = MTH_DS_Beasts[50060]
end
@@ -10908,6 +11648,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 11178,
+ ["skinId"] = 11178,
}
entry = MTH_DS_Beasts[51539]
end
@@ -10937,6 +11679,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 21229,
+ ["skinId"] = 21229,
}
entry = MTH_DS_Beasts[52145]
end
@@ -10968,6 +11712,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 21230,
+ ["skinId"] = 21230,
}
entry = MTH_DS_Beasts[52146]
end
@@ -10998,6 +11744,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 21230,
+ ["skinId"] = 21230,
}
entry = MTH_DS_Beasts[52147]
end
@@ -11028,6 +11776,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 8509,
+ ["skinId"] = 8509,
}
entry = MTH_DS_Beasts[52148]
end
@@ -11058,6 +11808,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 21229,
+ ["skinId"] = 21229,
}
entry = MTH_DS_Beasts[52149]
end
@@ -11088,6 +11840,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 21109,
+ ["skinId"] = 21109,
}
entry = MTH_DS_Beasts[59997]
end
@@ -11118,6 +11872,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 21110,
+ ["skinId"] = 21110,
}
entry = MTH_DS_Beasts[59998]
end
@@ -11148,6 +11904,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 1536,
+ ["skinId"] = 1536,
}
entry = MTH_DS_Beasts[60369]
end
@@ -11177,6 +11935,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 4124,
+ ["skinId"] = 4124,
}
entry = MTH_DS_Beasts[60491]
end
@@ -11207,6 +11967,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 9276,
+ ["skinId"] = 1083,
}
entry = MTH_DS_Beasts[60492]
end
@@ -11237,6 +11999,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 30,
+ ["skinId"] = 30,
}
entry = MTH_DS_Beasts[60493]
end
@@ -11267,6 +12031,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 6082,
+ ["skinId"] = 1056,
}
entry = MTH_DS_Beasts[60494]
end
@@ -11297,6 +12063,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 11713,
+ ["skinId"] = 11713,
}
entry = MTH_DS_Beasts[60501]
end
@@ -11326,6 +12094,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 18301,
+ ["skinId"] = 18301,
}
entry = MTH_DS_Beasts[60539]
end
@@ -11355,6 +12125,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 8842,
+ ["skinId"] = 865,
}
entry = MTH_DS_Beasts[60545]
end
@@ -11384,6 +12156,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 18247,
+ ["skinId"] = 18247,
}
entry = MTH_DS_Beasts[60604]
end
@@ -11414,6 +12188,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 981,
+ ["skinId"] = 981,
}
entry = MTH_DS_Beasts[60605]
end
@@ -11443,6 +12219,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 13589,
+ ["skinId"] = 1609,
}
entry = MTH_DS_Beasts[60632]
end
@@ -11472,6 +12250,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 1244,
+ ["skinId"] = 1244,
}
entry = MTH_DS_Beasts[60679]
end
@@ -11502,6 +12282,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 347,
+ ["skinId"] = 347,
}
entry = MTH_DS_Beasts[60683]
end
@@ -11532,6 +12314,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 8050,
+ ["skinId"] = 2714,
}
entry = MTH_DS_Beasts[60697]
end
@@ -11561,6 +12345,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 2488,
+ ["skinId"] = 2488,
}
entry = MTH_DS_Beasts[60755]
end
@@ -11590,6 +12376,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 9562,
+ ["skinId"] = 246,
}
entry = MTH_DS_Beasts[60776]
end
@@ -11619,6 +12407,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 9371,
+ ["skinId"] = 9369,
}
entry = MTH_DS_Beasts[60777]
end
@@ -11648,6 +12438,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 2404,
+ ["skinId"] = 2404,
}
entry = MTH_DS_Beasts[60785]
end
@@ -11677,6 +12469,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 741,
+ ["skinId"] = 246,
}
entry = MTH_DS_Beasts[60873]
end
@@ -11706,6 +12500,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 705,
+ ["skinId"] = 705,
}
entry = MTH_DS_Beasts[61072]
end
@@ -11735,6 +12531,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 838,
+ ["skinId"] = 838,
}
entry = MTH_DS_Beasts[61074]
end
@@ -11764,6 +12562,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 981,
+ ["skinId"] = 981,
}
entry = MTH_DS_Beasts[61075]
end
@@ -11793,6 +12593,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 981,
+ ["skinId"] = 981,
}
entry = MTH_DS_Beasts[61076]
end
@@ -11822,6 +12624,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 18099,
+ ["skinId"] = 18099,
}
entry = MTH_DS_Beasts[61077]
end
@@ -11851,6 +12655,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 18097,
+ ["skinId"] = 18097,
}
entry = MTH_DS_Beasts[61078]
end
@@ -11880,6 +12686,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 838,
+ ["skinId"] = 838,
}
entry = MTH_DS_Beasts[61080]
end
@@ -11909,6 +12717,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 841,
+ ["skinId"] = 792,
}
entry = MTH_DS_Beasts[61082]
end
@@ -11938,6 +12748,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 14557,
+ ["skinId"] = 11034,
}
entry = MTH_DS_Beasts[61090]
end
@@ -11967,6 +12779,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 4305,
+ ["skinId"] = 4305,
}
entry = MTH_DS_Beasts[61091]
end
@@ -11996,6 +12810,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 12341,
+ ["skinId"] = 12341,
}
entry = MTH_DS_Beasts[61092]
end
@@ -12025,6 +12841,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 2705,
+ ["skinId"] = 2703,
}
entry = MTH_DS_Beasts[61095]
end
@@ -12054,6 +12872,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 10991,
+ ["skinId"] = 2700,
}
entry = MTH_DS_Beasts[61096]
end
@@ -12083,6 +12903,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 12197,
+ ["skinId"] = 12197,
}
entry = MTH_DS_Beasts[61097]
end
@@ -12112,6 +12934,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 3186,
+ ["skinId"] = 3186,
}
entry = MTH_DS_Beasts[61098]
end
@@ -12142,6 +12966,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 9991,
+ ["skinId"] = 9991,
}
entry = MTH_DS_Beasts[61155]
end
@@ -12171,6 +12997,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 19113,
+ ["skinId"] = 19113,
}
entry = MTH_DS_Beasts[61170]
end
@@ -12200,6 +13028,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 19119,
+ ["skinId"] = 19119,
}
entry = MTH_DS_Beasts[61172]
end
@@ -12229,6 +13059,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 955,
+ ["skinId"] = 955,
}
entry = MTH_DS_Beasts[61206]
end
@@ -12259,6 +13091,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 368,
+ ["skinId"] = 30,
}
entry = MTH_DS_Beasts[61207]
end
@@ -12289,6 +13123,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 15939,
+ ["skinId"] = 2536,
}
entry = MTH_DS_Beasts[61208]
end
@@ -12319,6 +13155,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 15938,
+ ["skinId"] = 513,
}
entry = MTH_DS_Beasts[61209]
end
@@ -12349,6 +13187,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 15937,
+ ["skinId"] = 15937,
}
entry = MTH_DS_Beasts[61221]
end
@@ -12379,6 +13219,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 9567,
+ ["skinId"] = 9567,
}
entry = MTH_DS_Beasts[61228]
end
@@ -12408,6 +13250,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 9567,
+ ["skinId"] = 9567,
}
entry = MTH_DS_Beasts[61229]
end
@@ -12437,6 +13281,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 7896,
+ ["skinId"] = 1954,
}
entry = MTH_DS_Beasts[61231]
end
@@ -12466,6 +13312,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 1104,
+ ["skinId"] = 1091,
}
entry = MTH_DS_Beasts[61232]
end
@@ -12495,6 +13343,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 520,
+ ["skinId"] = 520,
}
entry = MTH_DS_Beasts[61233]
end
@@ -12524,6 +13374,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 10957,
+ ["skinId"] = 10957,
}
entry = MTH_DS_Beasts[61332]
end
@@ -12553,6 +13405,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 10957,
+ ["skinId"] = 10957,
}
entry = MTH_DS_Beasts[61333]
end
@@ -12582,6 +13436,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 4615,
+ ["skinId"] = 4566,
}
entry = MTH_DS_Beasts[61336]
end
@@ -12611,6 +13467,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 4615,
+ ["skinId"] = 4566,
}
entry = MTH_DS_Beasts[61337]
end
@@ -12640,6 +13498,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 7896,
+ ["skinId"] = 1954,
}
entry = MTH_DS_Beasts[61401]
end
@@ -12669,6 +13529,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 18386,
+ ["skinId"] = 18386,
}
entry = MTH_DS_Beasts[61480]
end
@@ -12698,6 +13560,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 6298,
+ ["skinId"] = 6298,
}
entry = MTH_DS_Beasts[61488]
end
@@ -12728,6 +13592,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 616,
+ ["skinId"] = 616,
}
entry = MTH_DS_Beasts[61490]
end
@@ -12758,6 +13624,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 837,
+ ["skinId"] = 792,
}
entry = MTH_DS_Beasts[61500]
end
@@ -12788,6 +13656,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 15234,
+ ["skinId"] = 15234,
}
entry = MTH_DS_Beasts[61515]
end
@@ -12819,6 +13689,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 11713,
+ ["skinId"] = 11713,
}
entry = MTH_DS_Beasts[61516]
end
@@ -12849,6 +13721,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 11909,
+ ["skinId"] = 820,
}
entry = MTH_DS_Beasts[61546]
end
@@ -12879,6 +13753,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 9567,
+ ["skinId"] = 9567,
}
entry = MTH_DS_Beasts[61547]
end
@@ -12909,6 +13785,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 18247,
+ ["skinId"] = 18247,
}
entry = MTH_DS_Beasts[61552]
end
@@ -12939,6 +13817,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 20410,
+ ["skinId"] = 20410,
}
entry = MTH_DS_Beasts[61586]
end
@@ -12970,6 +13850,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 10810,
+ ["skinId"] = 10810,
}
entry = MTH_DS_Beasts[61589]
end
@@ -13000,6 +13882,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 20414,
+ ["skinId"] = 20414,
}
entry = MTH_DS_Beasts[61596]
end
@@ -13029,6 +13913,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 20412,
+ ["skinId"] = 20412,
}
entry = MTH_DS_Beasts[61597]
end
@@ -13058,6 +13944,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 20437,
+ ["skinId"] = 20437,
}
entry = MTH_DS_Beasts[61599]
end
@@ -13087,6 +13975,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 785,
+ ["skinId"] = 776,
}
entry = MTH_DS_Beasts[61603]
end
@@ -13116,6 +14006,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 20424,
+ ["skinId"] = 20424,
}
entry = MTH_DS_Beasts[61604]
end
@@ -13146,6 +14038,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 4734,
+ ["skinId"] = 3956,
}
entry = MTH_DS_Beasts[61932]
end
@@ -13176,6 +14070,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 7896,
+ ["skinId"] = 1954,
}
entry = MTH_DS_Beasts[61933]
end
@@ -13206,6 +14102,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 958,
+ ["skinId"] = 955,
}
entry = MTH_DS_Beasts[61935]
end
@@ -13236,6 +14134,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 5379,
+ ["skinId"] = 5379,
}
entry = MTH_DS_Beasts[62004]
end
@@ -13267,6 +14167,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 3030,
+ ["skinId"] = 3029,
}
entry = MTH_DS_Beasts[62112]
end
@@ -13297,6 +14199,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 8840,
+ ["skinId"] = 806,
}
entry = MTH_DS_Beasts[62249]
end
@@ -13327,6 +14231,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 10986,
+ ["skinId"] = 2414,
}
entry = MTH_DS_Beasts[62499]
end
@@ -13356,6 +14262,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 12202,
+ ["skinId"] = 12202,
}
entry = MTH_DS_Beasts[62509]
end
@@ -13386,6 +14294,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 20504,
+ ["skinId"] = 20504,
}
entry = MTH_DS_Beasts[62518]
end
@@ -13416,6 +14326,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 827,
+ ["skinId"] = 520,
}
entry = MTH_DS_Beasts[62640]
end
@@ -13446,6 +14358,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 1986,
+ ["skinId"] = 1986,
}
entry = MTH_DS_Beasts[65110]
end
@@ -13475,6 +14389,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 807,
+ ["skinId"] = 807,
}
entry = MTH_DS_Beasts[65111]
end
@@ -13504,6 +14420,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 1104,
+ ["skinId"] = 1091,
}
entry = MTH_DS_Beasts[65112]
end
@@ -13533,6 +14451,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 262,
+ ["skinId"] = 262,
}
entry = MTH_DS_Beasts[65120]
end
@@ -13563,6 +14483,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 2996,
+ ["skinId"] = 1609,
}
entry = MTH_DS_Beasts[65122]
end
@@ -13593,6 +14515,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 262,
+ ["skinId"] = 262,
}
entry = MTH_DS_Beasts[66003]
end
@@ -13623,6 +14547,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 18007,
+ ["skinId"] = 18007,
}
entry = MTH_DS_Beasts[80255]
end
@@ -13652,6 +14578,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 18004,
+ ["skinId"] = 18004,
}
entry = MTH_DS_Beasts[80259]
end
@@ -13681,6 +14609,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 18244,
+ ["skinId"] = 18244,
}
entry = MTH_DS_Beasts[80260]
end
@@ -13711,6 +14641,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 2308,
+ ["skinId"] = 2307,
}
entry = MTH_DS_Beasts[80321]
end
@@ -13741,6 +14673,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 320,
+ ["skinId"] = 320,
}
entry = MTH_DS_Beasts[91819]
end
@@ -13770,6 +14704,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 614,
+ ["skinId"] = 320,
}
entry = MTH_DS_Beasts[91825]
end
@@ -13799,6 +14735,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 614,
+ ["skinId"] = 320,
}
entry = MTH_DS_Beasts[91826]
end
@@ -13828,6 +14766,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 614,
+ ["skinId"] = 320,
}
entry = MTH_DS_Beasts[91827]
end
@@ -13857,6 +14797,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 614,
+ ["skinId"] = 320,
}
entry = MTH_DS_Beasts[91828]
end
@@ -13886,6 +14828,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 845,
+ ["skinId"] = 809,
}
entry = MTH_DS_Beasts[91829]
end
@@ -13915,6 +14859,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 838,
+ ["skinId"] = 838,
}
entry = MTH_DS_Beasts[91830]
end
@@ -13944,6 +14890,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 1307,
+ ["skinId"] = 1307,
}
entry = MTH_DS_Beasts[91831]
end
@@ -13973,6 +14921,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 9573,
+ ["skinId"] = 979,
}
entry = MTH_DS_Beasts[91832]
end
@@ -14002,6 +14952,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 1001,
+ ["skinId"] = 981,
}
entry = MTH_DS_Beasts[91833]
end
@@ -14031,6 +14983,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 705,
+ ["skinId"] = 705,
}
entry = MTH_DS_Beasts[91837]
end
@@ -14060,6 +15014,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 1244,
+ ["skinId"] = 1244,
}
entry = MTH_DS_Beasts[91838]
end
@@ -14089,6 +15045,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 12193,
+ ["skinId"] = 12193,
}
entry = MTH_DS_Beasts[91864]
end
@@ -14118,6 +15076,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 245,
+ ["skinId"] = 245,
}
entry = MTH_DS_Beasts[91914]
end
@@ -14148,6 +15108,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 15509,
+ ["skinId"] = 15509,
}
entry = MTH_DS_Beasts[91917]
end
@@ -14178,6 +15140,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 2437,
+ ["skinId"] = 599,
}
entry = MTH_DS_Beasts[91960]
end
@@ -14207,6 +15171,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 2437,
+ ["skinId"] = 599,
}
entry = MTH_DS_Beasts[91961]
end
@@ -14236,6 +15202,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 1039,
+ ["skinId"] = 833,
}
entry = MTH_DS_Beasts[91962]
end
@@ -14265,6 +15233,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 8802,
+ ["skinId"] = 8802,
}
entry = MTH_DS_Beasts[91963]
end
@@ -14294,6 +15264,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 2174,
+ ["skinId"] = 2174,
}
entry = MTH_DS_Beasts[91964]
end
@@ -14323,6 +15295,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 10991,
+ ["skinId"] = 2700,
}
entry = MTH_DS_Beasts[91966]
end
@@ -14352,6 +15326,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 1001,
+ ["skinId"] = 981,
}
entry = MTH_DS_Beasts[92146]
end
@@ -14381,6 +15357,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 1001,
+ ["skinId"] = 981,
}
entry = MTH_DS_Beasts[92147]
end
@@ -14410,6 +15388,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 4872,
+ ["skinId"] = 4872,
}
entry = MTH_DS_Beasts[92163]
end
@@ -14440,6 +15420,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 18246,
+ ["skinId"] = 18246,
}
entry = MTH_DS_Beasts[93105]
end
@@ -14470,6 +15452,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 368,
+ ["skinId"] = 30,
}
entry = MTH_DS_Beasts[161208]
end
@@ -14500,6 +15484,8 @@ do
["abilities"] = "None",
["attackSpeed"] = "2.0",
["coords"] = {},
+ ["displayId"] = 9829,
+ ["skinId"] = 513,
}
entry = MTH_DS_Beasts[161212]
end
diff --git a/data/ds-beasts-skins.lua b/data/ds-beasts-skins.lua
new file mode 100644
index 0000000..cb8b692
--- /dev/null
+++ b/data/ds-beasts-skins.lua
@@ -0,0 +1,874 @@
+-- MetaHunt: Beast appearance skin variants per family
+-- AUTO-GENERATED by .tools — do not edit by hand.
+-- Source DBC(s): CreatureDisplayInfo.dbc, CreatureModelData.dbc
+-- Generated: 2026-03-17 14:49 UTC
+-- Total skins: 244 across 19 families
+
+if not MTH_DS then MTH_DS = {} end
+
+MTH_DS_BeastSkins = {
+ ["Bats"] = {
+ {id=1954, tex="BatSkin01", unique=false, modelPath="Creature\\FelBat\\FelBat.mdx"},
+ {id=3956, tex="BatSkinBrown01", unique=false, modelPath="Creature\\FelBat\\FelBat.mdx"},
+ {id=4185, tex="BatSkinViolet01", unique=false, modelPath="Creature\\FelBat\\FelBat.mdx"},
+ {id=4735, tex="BatSkinWhite01", unique=false, modelPath="Creature\\FelBat\\FelBat.mdx"},
+ {id=15191, tex="MobatSkinBlue01", unique=true, modelPath="Creature\\mobat\\Mobat.mdx"},
+ },
+ ["Bears"] = {
+ {id=706, tex="BearSkinBlack", unique=false, modelPath="Creature\\bear\\Bear.mdx"},
+ {id=806, tex="BearSkinBlue", unique=false, modelPath="Creature\\bear\\Bear.mdx"},
+ {id=820, tex="BearSkinDrkBrown", unique=false, modelPath="Creature\\bear\\Bear.mdx"},
+ {id=822, tex="BearSkinBrown", unique=false, modelPath="Creature\\bear\\Bear.mdx"},
+ {id=865, tex="BearSkinWhite", unique=false, modelPath="Creature\\bear\\Bear.mdx"},
+ {id=1082, tex="BearSkinBlackDiseased", unique=true, modelPath="Creature\\bear\\Bear.mdx"},
+ {id=1083, tex="BearSkinDrkBrownDiseased", unique=false, modelPath="Creature\\bear\\Bear.mdx"},
+ {id=9492, tex="BearSkinrex2", unique=false, modelPath="Creature\\bear\\Bear.mdx"},
+ {id=18352, tex="PolarBearCubSkin", unique=true, modelPath="Creature\\bear\\Bear.mdx"},
+ {id=19113, tex="FatherBear", unique=true, modelPath="Creature\\bear\\Bear.mdx"},
+ {id=20635, tex="BearSkinBrownDiseased", unique=true, modelPath="Creature\\bear\\Bear.mdx"},
+ {id=20636, tex="BearSkinBlueDiseased", unique=true, modelPath="Creature\\bear\\Bear.mdx"},
+ {id=20637, tex="BearSkinWhiteDiseased", unique=true, modelPath="Creature\\bear\\Bear.mdx"},
+ },
+ ["Boars"] = {
+ {id=193, tex="BoarSkinIvory", unique=false, modelPath="Creature\\Boar\\Boar.mdx"},
+ {id=377, tex="BoarSkinBrown", unique=false, modelPath="Creature\\Boar\\Boar.mdx"},
+ {id=381, tex="BoarSkinBlue", unique=false, modelPath="Creature\\Boar\\Boar.mdx"},
+ {id=2450, tex="BoarSkinIvoryArmored", unique=false, modelPath="Creature\\Boar\\Boar.mdx"},
+ {id=3026, tex="BoarSkinCrimson", unique=false, modelPath="Creature\\Boar\\Boar.mdx"},
+ {id=4713, tex="BoarSkinBrownArmored", unique=false, modelPath="Creature\\Boar\\Boar.mdx"},
+ {id=4714, tex="BoarSkinBlueArmored", unique=true, modelPath="Creature\\Boar\\Boar.mdx"},
+ {id=6121, tex="BoarSkinUndead", unique=false, modelPath="Creature\\Boar\\Boar.mdx"},
+ {id=8869, tex="BoarSkinYellow", unique=false, modelPath="Creature\\Boar\\Boar.mdx"},
+ {id=18729, tex="QuillBeastBlue", unique=true, modelPath="Creature\\Boar\\Boar.mdx"},
+ {id=20504, tex="BoarSkinQuel", unique=true, modelPath="Creature\\Boar\\Boar.mdx"},
+ },
+ ["Carrion Birds"] = {
+ {id=388, tex="CarrionBirdSkin", unique=false, modelPath="Creature\\CarrionBird\\CarrionBird.mdx"},
+ {id=410, tex="CarrionBirdSkinBrown", unique=false, modelPath="Creature\\CarrionBird\\CarrionBird.mdx"},
+ {id=490, tex="CarrionBirdSkinRed", unique=false, modelPath="Creature\\CarrionBird\\CarrionBird.mdx"},
+ {id=507, tex="CarrionBirdSkinBlue", unique=false, modelPath="Creature\\CarrionBird\\CarrionBird.mdx"},
+ {id=18390, tex="CarrionBirdSkinWhite", unique=true, modelPath="Creature\\CarrionBird\\CarrionBird.mdx"},
+ },
+ ["Cats"] = {
+ {id=320, tex="TigerSkinRed", unique=false, modelPath="Creature\\Tiger\\Tiger.mdx"},
+ {id=321, tex="TigerSkinBlackStriped", unique=false, modelPath="Creature\\Tiger\\Tiger.mdx"},
+ {id=599, tex="TigerSkinBlack", unique=false, modelPath="Creature\\Tiger\\Tiger.mdx"},
+ {id=616, tex="TigerSkinWhite", unique=false, modelPath="Creature\\Tiger\\Tiger.mdx"},
+ {id=632, tex="TigerSkinYellow", unique=false, modelPath="Creature\\Tiger\\Tiger.mdx"},
+ {id=748, tex="TigerSkinSnow", unique=false, modelPath="Creature\\Tiger\\Tiger.mdx"},
+ {id=892, tex="DruidCatSkinBlack", unique=true, modelPath="Creature\\DruidCat\\DruidCat.mdx"},
+ {id=1056, tex="TigerSkinBrown", unique=false, modelPath="Creature\\Tiger\\Tiger.mdx"},
+ {id=1057, tex="LionSkinGold", unique=false, modelPath="Creature\\Lion\\Lion.mdx"},
+ {id=1933, tex="LionessSkinGold", unique=false, modelPath="Creature\\Tiger\\Tiger.mdx"},
+ {id=1934, tex="LionSkinWhite", unique=false, modelPath="Creature\\Lion\\Lion.mdx"},
+ {id=3029, tex="TigerSkinDark", unique=false, modelPath="Creature\\Tiger\\Tiger.mdx"},
+ {id=4424, tex="LionSkinBlack", unique=true, modelPath="Creature\\Lion\\Lion.mdx"},
+ {id=5448, tex="MaineCoon", unique=true, modelPath="Creature\\Cat\\Cat.mdx"},
+ {id=5554, tex="OrangeTabby", unique=true, modelPath="Creature\\Cat\\Cat.mdx"},
+ {id=5555, tex="SilverTabby", unique=true, modelPath="Creature\\Cat\\Cat.mdx"},
+ {id=5556, tex="Bombay", unique=true, modelPath="Creature\\Cat\\Cat.mdx"},
+ {id=5585, tex="Birman", unique=false, modelPath="Creature\\Cat\\Cat.mdx"},
+ {id=5586, tex="CornishRex", unique=true, modelPath="Creature\\Cat\\Cat.mdx"},
+ {id=9209, tex="Cringer", unique=true, modelPath="Creature\\Cat\\Cat.mdx"},
+ {id=9230, tex="TigerSkinGreen", unique=false, modelPath="Creature\\Tiger\\Tiger.mdx"},
+ {id=9949, tex="TigerSkinIce", unique=false, modelPath="Creature\\Tiger\\Tiger.mdx"},
+ {id=9954, tex="RidingTigerSkinLavender", unique=true, modelPath="Creature\\FrostSabre\\FrostSabre.mdx"},
+ {id=9956, tex="RidingTigerSkinWhitenosaddle", unique=false, modelPath="Creature\\FrostSabre\\FrostSabre.mdx"},
+ {id=9958, tex="TigerSkinNostripeWhite", unique=false, modelPath="Creature\\Tiger\\Tiger.mdx"},
+ {id=9989, tex="White", unique=false, modelPath="Creature\\Cat\\Cat.mdx"},
+ {id=10054, tex="RidingTigerSkinAqua", unique=false, modelPath="Creature\\FrostSabre\\FrostSabre.mdx"},
+ {id=11448, tex="TigerSkinBlackSpotted", unique=false, modelPath="Creature\\Tiger\\Tiger.mdx"},
+ {id=11709, tex="Salome", unique=true, modelPath="Creature\\Cat\\Cat.mdx"},
+ {id=18027, tex="LynxSkinRed", unique=true, modelPath="Creature\\DruidCat\\DruidCat.mdx"},
+ {id=18028, tex="LynxSkinYellow", unique=true, modelPath="Creature\\DruidCat\\DruidCat.mdx"},
+ {id=18389, tex="Boots", unique=true, modelPath="Creature\\Cat\\Cat.mdx"},
+ {id=18426, tex="RidingTigerSkinYellownosaddle", unique=true, modelPath="Creature\\FrostSabre\\FrostSabre.mdx"},
+ {id=18427, tex="RidingTigerSkinIcenosaddle", unique=true, modelPath="Creature\\FrostSabre\\FrostSabre.mdx"},
+ {id=18428, tex="RidingTigerSkinRednosaddle", unique=true, modelPath="Creature\\FrostSabre\\FrostSabre.mdx"},
+ {id=18429, tex="RidingTigerSkinSnownosaddle", unique=true, modelPath="Creature\\FrostSabre\\FrostSabre.mdx"},
+ {id=18430, tex="RidingTigerSkinGoldnosaddle", unique=true, modelPath="Creature\\FrostSabre\\FrostSabre.mdx"},
+ {id=18431, tex="RidingTigerSkinBrownnosaddle", unique=true, modelPath="Creature\\FrostSabre\\FrostSabre.mdx"},
+ {id=18432, tex="RidingTigerSkinBlacknosaddle", unique=true, modelPath="Creature\\FrostSabre\\FrostSabre.mdx"},
+ {id=18433, tex="RidingTigerSkinDarknosaddle", unique=true, modelPath="Creature\\FrostSabre\\FrostSabre.mdx"},
+ {id=18434, tex="RidingTigerSkinNostripeWhitenosaddle", unique=true, modelPath="Creature\\FrostSabre\\FrostSabre.mdx"},
+ {id=20388, tex="TIGERSKINBLACKGEM", unique=true, modelPath="Creature\\FrostSabre\\FrostSabre.mdx"},
+ {id=20389, tex="TigerSkinDiamond", unique=true, modelPath="Creature\\FrostSabre\\FrostSabre.mdx"},
+ {id=20390, tex="TigerSkinJade", unique=true, modelPath="Creature\\FrostSabre\\FrostSabre.mdx"},
+ {id=20391, tex="TigerSkinRuby", unique=true, modelPath="Creature\\FrostSabre\\FrostSabre.mdx"},
+ {id=20392, tex="TigerSkinSaphire", unique=true, modelPath="Creature\\FrostSabre\\FrostSabre.mdx"},
+ {id=20393, tex="TigerSkinTurquoise", unique=true, modelPath="Creature\\FrostSabre\\FrostSabre.mdx"},
+ {id=20410, tex="LionessSkinEmerald", unique=true, modelPath="Creature\\Tiger\\Tiger.mdx"},
+ {id=20437, tex="RidingTigerSkinDarknosaddle.blp", unique=true, modelPath="Creature\\FrostSabre\\FrostSabre.mdx"},
+ },
+ ["Crabs"] = {
+ {id=342, tex="CrabSkinBronze", unique=false, modelPath="Creature\\Crab\\Crab.mdx"},
+ {id=979, tex="CrabSkinSaphire", unique=false, modelPath="Creature\\Crab\\Crab.mdx"},
+ {id=981, tex="CrabSkinIvory", unique=false, modelPath="Creature\\Crab\\Crab.mdx"},
+ {id=1307, tex="CrabSkinVermillian", unique=false, modelPath="Creature\\Crab\\Crab.mdx"},
+ {id=18757, tex="CrabSkinDarkDiamond", unique=true, modelPath="Creature\\Crab\\Crab.mdx"},
+ {id=18758, tex="CrabSkinTrueSilver", unique=true, modelPath="Creature\\Crab\\Crab.mdx"},
+ },
+ ["Crocolisks"] = {
+ {id=807, tex="CrocodileSkinSwamp", unique=false, modelPath="Creature\\Crocodile\\Crocodile.mdx"},
+ {id=833, tex="CrocodileSkinRiver", unique=false, modelPath="Creature\\Crocodile\\Crocodile.mdx"},
+ {id=925, tex="CrocodileSkinMarsh", unique=false, modelPath="Creature\\Crocodile\\Crocodile.mdx"},
+ {id=1609, tex="CrocodileSkinAlbino", unique=false, modelPath="Creature\\Crocodile\\Crocodile.mdx"},
+ },
+ ["Foxes"] = {
+ {id=18004, tex="MistFoxSkin", unique=true, modelPath="Creature\\Mistfox\\Mistfox.mdx"},
+ {id=18005, tex="MistFoxSkinArctic", unique=true, modelPath="Creature\\Mistfox\\Mistfox.mdx"},
+ {id=18006, tex="MistFoxSkinBlack", unique=false, modelPath="Creature\\Mistfox\\Mistfox.mdx"},
+ {id=18007, tex="MistFoxSkinBrown", unique=true, modelPath="Creature\\Mistfox\\Mistfox.mdx"},
+ {id=18008, tex="MistFoxSkinRed", unique=false, modelPath="Creature\\Mistfox\\Mistfox.mdx"},
+ {id=18244, tex="MistFoxSkinSpirit", unique=true, modelPath="Creature\\Mistfox\\Mistfox.mdx"},
+ {id=18773, tex="MistFoxSkinPink", unique=true, modelPath="Creature\\Mistfox\\Mistfox.mdx"},
+ {id=19105, tex="MistFoxSkinEvil", unique=true, modelPath="Creature\\Mistfox\\Mistfox.mdx"},
+ {id=19106, tex="MistFoxSkinGolden", unique=true, modelPath="Creature\\Mistfox\\Mistfox.mdx"},
+ {id=21282, tex="fox2_black", unique=true, modelPath="Creature\\fox2\\fox2.mdx"},
+ {id=21283, tex="fox2_blue", unique=true, modelPath="Creature\\fox2\\fox2.mdx"},
+ {id=21284, tex="fox2_darkred", unique=true, modelPath="Creature\\fox2\\fox2.mdx"},
+ {id=21285, tex="fox2_green", unique=true, modelPath="Creature\\fox2\\fox2.mdx"},
+ {id=21286, tex="fox2_orange", unique=true, modelPath="Creature\\fox2\\fox2.mdx"},
+ {id=21287, tex="fox2_purple", unique=true, modelPath="Creature\\fox2\\fox2.mdx"},
+ {id=21288, tex="fox2_red", unique=true, modelPath="Creature\\fox2\\fox2.mdx"},
+ {id=21289, tex="fox2_teal", unique=true, modelPath="Creature\\fox2\\fox2.mdx"},
+ {id=21290, tex="fox2_white", unique=true, modelPath="Creature\\fox2\\fox2.mdx"},
+ },
+ ["Gorillas"] = {
+ {id=792, tex="GorillaSkinSilver", unique=false, modelPath="Creature\\Gorilla\\Gorilla.mdx"},
+ {id=809, tex="GorillaSkinBlack", unique=false, modelPath="Creature\\Gorilla\\Gorilla.mdx"},
+ {id=838, tex="GorillaSkinGrey", unique=false, modelPath="Creature\\Gorilla\\Gorilla.mdx"},
+ {id=840, tex="GorillaSkinWhite", unique=false, modelPath="Creature\\Gorilla\\Gorilla.mdx"},
+ {id=3186, tex="GorillaSkinRed", unique=false, modelPath="Creature\\Gorilla\\Gorilla.mdx"},
+ {id=8841, tex="GorillaSkinAmy", unique=true, modelPath="Creature\\Gorilla\\Gorilla.mdx"},
+ },
+ ["Hyenas"] = {
+ {id=1534, tex="HyenaSkinOarnge", unique=false, modelPath="Creature\\Hyena\\Hyena.mdx"},
+ {id=1536, tex="HyenaSkin", unique=false, modelPath="Creature\\Hyena\\Hyena.mdx"},
+ {id=2709, tex="HyenaSkinRed", unique=false, modelPath="Creature\\Hyena\\Hyena.mdx"},
+ {id=2710, tex="HyenaSkinYellow", unique=false, modelPath="Creature\\Hyena\\Hyena.mdx"},
+ {id=2713, tex="HyenaSkinBlue", unique=false, modelPath="Creature\\Hyena\\Hyena.mdx"},
+ {id=2714, tex="HyenaSkinWhite", unique=false, modelPath="Creature\\Hyena\\Hyena.mdx"},
+ {id=2726, tex="HyenaSkinBlack", unique=false, modelPath="Creature\\Hyena\\Hyena.mdx"},
+ },
+ ["Owls"] = {
+ {id=4566, tex="OwlBrown", unique=false, modelPath="Creature\\Owl\\Owl.mdx"},
+ {id=4877, tex="OwlGrey", unique=false, modelPath="Creature\\Owl\\Owl.mdx"},
+ {id=6212, tex="OwlWhite", unique=false, modelPath="Creature\\Owl\\Owl.mdx"},
+ {id=6298, tex="OwlBlue", unique=true, modelPath="Creature\\Owl\\Owl.mdx"},
+ {id=6299, tex="OwlBlack", unique=true, modelPath="Creature\\Owl\\Owl.mdx"},
+ {id=18338, tex="Eagle", unique=false, modelPath="Creature\\Eagle\\Eagle.mdx"},
+ {id=18339, tex="BrownEagle", unique=true, modelPath="Creature\\Eagle\\Eagle.mdx"},
+ {id=18368, tex="OwlSpirit", unique=true, modelPath="Creature\\Owl\\Owl.mdx"},
+ {id=18746, tex="EagleRaven", unique=true, modelPath="Creature\\Eagle\\Eagle.mdx"},
+ {id=21109, tex="OwlRuby", unique=true, modelPath="Creature\\Owl\\Owl.mdx"},
+ {id=21110, tex="OwlSapphire", unique=true, modelPath="Creature\\Owl\\Owl.mdx"},
+ },
+ ["Raptors"] = {
+ {id=180, tex="RaptorSkinOrange", unique=false, modelPath="Creature\\Raptor\\Raptor.mdx"},
+ {id=322, tex="RaptorSkinMottledDarkGreen", unique=false, modelPath="Creature\\Raptor\\Raptor.mdx"},
+ {id=675, tex="RaptorSkinMottledBlueGreen", unique=false, modelPath="Creature\\Raptor\\Raptor.mdx"},
+ {id=787, tex="RaptorSkinYellow", unique=false, modelPath="Creature\\Raptor\\Raptor.mdx"},
+ {id=960, tex="RaptorSkinViolet", unique=false, modelPath="Creature\\Raptor\\Raptor.mdx"},
+ {id=1337, tex="RaptorSkinGrey", unique=false, modelPath="Creature\\Raptor\\Raptor.mdx"},
+ {id=1959, tex="RaptorSkinRed", unique=false, modelPath="Creature\\Raptor\\Raptor.mdx"},
+ {id=5291, tex="RidingRaptorSkinObsidian", unique=false, modelPath="Creature\\Raptor\\Raptor.mdx"},
+ },
+ ["Scorpids"] = {
+ {id=2414, tex="ScorpionskinPink", unique=false, modelPath="Creature\\Scorpion\\Scorpion.mdx"},
+ {id=2485, tex="ScorpionskinBeige", unique=false, modelPath="Creature\\Scorpion\\Scorpion.mdx"},
+ {id=2487, tex="ScorpionskinYellow", unique=false, modelPath="Creature\\Scorpion\\Scorpion.mdx"},
+ {id=2488, tex="ScorpionskinBlack", unique=false, modelPath="Creature\\Scorpion\\Scorpion.mdx"},
+ {id=2489, tex="ScorpionskinRed", unique=false, modelPath="Creature\\Scorpion\\Scorpion.mdx"},
+ {id=2729, tex="ScorpionskinGolden", unique=false, modelPath="Creature\\Scorpion\\Scorpion.mdx"},
+ {id=2730, tex="ScorpionskinBlue", unique=false, modelPath="Creature\\Scorpion\\Scorpion.mdx"},
+ {id=7469, tex="SilithidScarabSkinBlack", unique=false, modelPath="Creature\\SILITHIDSCARAB\\SilithidScarab.mdx"},
+ {id=8971, tex="SilithidScarabSkinRed", unique=false, modelPath="Creature\\SILITHIDSCARAB\\SilithidScarab.mdx"},
+ {id=9028, tex="SilithidScarabSkinWhite", unique=false, modelPath="Creature\\SILITHIDSCARAB\\SilithidScarab.mdx"},
+ {id=9469, tex="SilithidScarabSkinYellow", unique=false, modelPath="Creature\\SILITHIDSCARAB\\SilithidScarab.mdx"},
+ {id=10983, tex="ScorpionskinSilver", unique=false, modelPath="Creature\\Scorpion\\Scorpion.mdx"},
+ {id=11093, tex="SilithidScarabSkinTeal", unique=false, modelPath="Creature\\SILITHIDSCARAB\\SilithidScarab.mdx"},
+ {id=11104, tex="SilithidScarabSkinGold", unique=false, modelPath="Creature\\SILITHIDSCARAB\\SilithidScarab.mdx"},
+ {id=11107, tex="SilithidScarabSkinPurple", unique=false, modelPath="Creature\\SILITHIDSCARAB\\SilithidScarab.mdx"},
+ {id=11143, tex="SilithidScarabSkinTan", unique=false, modelPath="Creature\\SILITHIDSCARAB\\SilithidScarab.mdx"},
+ {id=18373, tex="SilithidScarabSkinGreen", unique=true, modelPath="Creature\\SILITHIDSCARAB\\SilithidScarab.mdx"},
+ {id=21268, tex="ScorpionskinDarkIron", unique=true, modelPath="Creature\\Scorpion\\Scorpion.mdx"},
+ },
+ ["Serpents (Cobra)"] = {
+ {id=1206, tex="SnakeSkinBlack", unique=false, modelPath="Creature\\snake\\snake.mdx"},
+ {id=1986, tex="SnakeSkinDarkGreenYellow", unique=false, modelPath="Creature\\snake\\snake.mdx"},
+ {id=1987, tex="SnakeSkinYellowBlack", unique=false, modelPath="Creature\\snake\\snake.mdx"},
+ {id=2954, tex="SnakeSkinRedWhiteBlack", unique=true, modelPath="Creature\\snake\\snake.mdx"},
+ {id=2955, tex="SnakeSkinWhite", unique=false, modelPath="Creature\\snake\\snake.mdx"},
+ {id=2956, tex="SnakeSkinBlue", unique=false, modelPath="Creature\\snake\\snake.mdx"},
+ {id=2957, tex="SnakeSkinBrown", unique=true, modelPath="Creature\\snake\\snake.mdx"},
+ {id=2958, tex="SnakeSkinGreen", unique=false, modelPath="Creature\\snake\\snake.mdx"},
+ {id=4305, tex="SerpantSkinWhite", unique=false, modelPath="Creature\\Serpent\\Serpent.mdx"},
+ {id=4312, tex="SerpantSkinPurple", unique=false, modelPath="Creature\\Serpent\\Serpent.mdx"},
+ {id=4317, tex="SerpantSkinBlue", unique=false, modelPath="Creature\\Serpent\\Serpent.mdx"},
+ {id=4435, tex="SerpantSkinGreen", unique=false, modelPath="Creature\\Serpent\\Serpent.mdx"},
+ {id=6303, tex="SnakeSkinRed", unique=true, modelPath="Creature\\snake\\snake.mdx"},
+ {id=11034, tex="SerpantSkinOlive", unique=false, modelPath="Creature\\Serpent\\Serpent.mdx"},
+ {id=15182, tex="SerpantSkinBrown", unique=true, modelPath="Creature\\Serpent\\Serpent.mdx"},
+ {id=20633, tex="SerpantSkinViolet", unique=true, modelPath="Creature\\Serpent\\Serpent.mdx"},
+ {id=20634, tex="SerpantSkinRuby", unique=true, modelPath="Creature\\Serpent\\Serpent.mdx"},
+ {id=21269, tex="SerpentSkinRuby", unique=true, modelPath="Creature\\Serpent\\Serpent.mdx"},
+ },
+ ["Spiders"] = {
+ {id=30, tex="MineSpiderSkinSteel", unique=false, modelPath="Creature\\MineSpider\\MineSpider.mdx"},
+ {id=283, tex="MineSpiderSkinGreen", unique=false, modelPath="Creature\\MineSpider\\MineSpider.mdx"},
+ {id=336, tex="TarantulaSkinGreen", unique=false, modelPath="Creature\\Tarantula\\Tarantula.mdx"},
+ {id=366, tex="TarantulaSkinOrange", unique=false, modelPath="Creature\\Tarantula\\Tarantula.mdx"},
+ {id=513, tex="MineSpiderSkinOlive", unique=false, modelPath="Creature\\MineSpider\\MineSpider.mdx"},
+ {id=520, tex="TarantulaSkinBrown", unique=false, modelPath="Creature\\Tarantula\\Tarantula.mdx"},
+ {id=711, tex="MineSpiderSkinWetLands", unique=false, modelPath="Creature\\MineSpider\\MineSpider.mdx"},
+ {id=955, tex="MineSpiderSkinCave", unique=false, modelPath="Creature\\MineSpider\\MineSpider.mdx"},
+ {id=963, tex="MineSpiderSkinBlood", unique=false, modelPath="Creature\\MineSpider\\MineSpider.mdx"},
+ {id=1091, tex="TarantulaSkinGrey", unique=false, modelPath="Creature\\Tarantula\\Tarantula.mdx"},
+ {id=2536, tex="MineSpiderSkinJungle", unique=false, modelPath="Creature\\MineSpider\\MineSpider.mdx"},
+ {id=4456, tex="MineSpiderSkinCrystal", unique=false, modelPath="Creature\\MineSpider\\MineSpider.mdx"},
+ {id=4457, tex="TarantulaSkinMagma", unique=false, modelPath="Creature\\Tarantula\\Tarantula.mdx"},
+ {id=15937, tex="MineSpiderSkinViolet", unique=true, modelPath="Creature\\MineSpider\\MineSpider.mdx"},
+ },
+ ["Tallstriders"] = {
+ {id=38, tex="TallStriderSkinTurquoise", unique=false, modelPath="Creature\\Tallstrider\\TallStrider.mdx"},
+ {id=178, tex="TallStriderSkinBrown", unique=false, modelPath="Creature\\Tallstrider\\TallStrider.mdx"},
+ {id=1220, tex="TallStriderSkinGray", unique=false, modelPath="Creature\\Tallstrider\\TallStrider.mdx"},
+ {id=1221, tex="TallStriderSkinIvory", unique=false, modelPath="Creature\\Tallstrider\\TallStrider.mdx"},
+ {id=1281, tex="TallStriderSkinPurple", unique=true, modelPath="Creature\\Tallstrider\\TallStrider.mdx"},
+ {id=1961, tex="TallStriderSkinPink", unique=true, modelPath="Creature\\Tallstrider\\TallStrider.mdx"},
+ {id=20509, tex="HawkstriderBlue", unique=true, modelPath="Creature\\Hawkstrider\\Hawkstrider.mdx"},
+ {id=20510, tex="HawkstriderGold", unique=true, modelPath="Creature\\Hawkstrider\\Hawkstrider.mdx"},
+ {id=20511, tex="HawkstriderGreen", unique=true, modelPath="Creature\\Hawkstrider\\Hawkstrider.mdx"},
+ {id=20512, tex="HawkstriderRed", unique=true, modelPath="Creature\\Hawkstrider\\Hawkstrider.mdx"},
+ {id=20513, tex="HawkstriderWhite", unique=true, modelPath="Creature\\Hawkstrider\\Hawkstrider.mdx"},
+ },
+ ["Turtles"] = {
+ {id=1244, tex="SeaTurtleSkin", unique=false, modelPath="Creature\\SeaTurtle\\SeaTurtle.mdx"},
+ {id=2307, tex="SeaTurtleSkinWhite", unique=false, modelPath="Creature\\SeaTurtle\\SeaTurtle.mdx"},
+ {id=4829, tex="SeaTurtleSkinGrey", unique=false, modelPath="Creature\\SeaTurtle\\SeaTurtle.mdx"},
+ {id=5026, tex="SeaTurtleSkinRed", unique=false, modelPath="Creature\\SeaTurtle\\SeaTurtle.mdx"},
+ {id=5126, tex="SeaTurtleSkinBlue", unique=false, modelPath="Creature\\SeaTurtle\\SeaTurtle.mdx"},
+ {id=16259, tex="TurtleSkinGreen", unique=false, modelPath="Creature\\Turtle\\Turtle.mdx"},
+ {id=16360, tex="TurtleSkinBrown", unique=true, modelPath="Creature\\Turtle\\Turtle.mdx"},
+ {id=16361, tex="TurtleSkinBlack", unique=true, modelPath="Creature\\Turtle\\Turtle.mdx"},
+ },
+ ["Wind Serpents"] = {
+ {id=1336, tex="WindSerpentSkin", unique=false, modelPath="Creature\\WindSerpent\\WindSerpent.mdx"},
+ {id=2699, tex="WindSerpentSkinRed", unique=false, modelPath="Creature\\WindSerpent\\WindSerpent.mdx"},
+ {id=2700, tex="WindSerpentSkinGreen", unique=false, modelPath="Creature\\WindSerpent\\WindSerpent.mdx"},
+ {id=2703, tex="WindSerpentSkinWhite", unique=false, modelPath="Creature\\WindSerpent\\WindSerpent.mdx"},
+ {id=3006, tex="WindSerpentSkinBlack", unique=false, modelPath="Creature\\WindSerpent\\WindSerpent.mdx"},
+ {id=18386, tex="WindSerpentSkinOarnge", unique=true, modelPath="Creature\\WindSerpent\\WindSerpent.mdx"},
+ {id=20514, tex="ManaWurmSkinBlack", unique=true, modelPath="Creature\\Manawurm\\manawurm.mdx"},
+ {id=20515, tex="MANAWURMSKINGREEN", unique=true, modelPath="Creature\\Manawurm\\manawurm.mdx"},
+ {id=20516, tex="ManaWurmSkinPurple", unique=true, modelPath="Creature\\Manawurm\\manawurm.mdx"},
+ {id=20517, tex="ManaWurmSkinQuel", unique=true, modelPath="Creature\\Manawurm\\manawurm.mdx"},
+ {id=20518, tex="ManaWurmSkinSilver1", unique=true, modelPath="Creature\\Manawurm\\manawurm.mdx"},
+ {id=20519, tex="ManaWurmSkinWhite", unique=true, modelPath="Creature\\Manawurm\\manawurm.mdx"},
+ },
+ ["Wolves"] = {
+ {id=73, tex="Direwolfskinbrown", unique=true, modelPath="Creature\\DireWolf\\DireWolf.mdx"},
+ {id=161, tex="WolfSkinCoyote", unique=false, modelPath="Creature\\Wolf\\Wolf.mdx"},
+ {id=165, tex="WolfSkinTimber", unique=false, modelPath="Creature\\Wolf\\Wolf.mdx"},
+ {id=246, tex="DireWolfSkinDarkBlack", unique=false, modelPath="Creature\\DireWolf\\DireWolf.mdx"},
+ {id=644, tex="WolfSkinBlack", unique=false, modelPath="Creature\\Wolf\\Wolf.mdx"},
+ {id=720, tex="DireWolfSkinLightBlue", unique=false, modelPath="Creature\\DireWolf\\DireWolf.mdx"},
+ {id=776, tex="WolfSkinArctic", unique=false, modelPath="Creature\\Wolf\\Wolf.mdx"},
+ {id=868, tex="WolfSkinArcticAlpha", unique=true, modelPath="Creature\\Wolf\\Wolf.mdx"},
+ {id=1950, tex="WolfSkin_Ghost", unique=true, modelPath="Creature\\Wolf\\Wolf.mdx"},
+ {id=3916, tex="HoundSkinBlue", unique=false, modelPath="Creature\\DarkHound\\DarkHound.mdx"},
+ {id=4124, tex="WolfSkinDiseased", unique=false, modelPath="Creature\\Wolf\\Wolf.mdx"},
+ {id=6195, tex="HoundSkinGrey", unique=false, modelPath="Creature\\DarkHound\\DarkHound.mdx"},
+ {id=7890, tex="HoundSkinPurple", unique=false, modelPath="Creature\\DarkHound\\DarkHound.mdx"},
+ {id=8180, tex="HoundSkinRed", unique=false, modelPath="Creature\\DarkHound\\DarkHound.mdx"},
+ {id=9369, tex="DireWolfSkinReddishBrown", unique=false, modelPath="Creature\\DireWolf\\DireWolf.mdx"},
+ {id=9564, tex="DireWolfSkinLightGrey", unique=false, modelPath="Creature\\DireWolf\\DireWolf.mdx"},
+ {id=9567, tex="DireWolfSkinBlueBrown", unique=true, modelPath="Creature\\DireWolf\\DireWolf.mdx"},
+ {id=9568, tex="DireWolfSkinDarkBrown", unique=false, modelPath="Creature\\DireWolf\\DireWolf.mdx"},
+ {id=11414, tex="DireWolfSkinDarkGrey", unique=true, modelPath="Creature\\DireWolf\\DireWolf.mdx"},
+ {id=14312, tex="HoundSkinWhite", unique=false, modelPath="Creature\\DarkHound\\DarkHound.mdx"},
+ },
+}
+
+-- Maps any beast displayId to the canonical skin id used in MTH_DS_BeastSkins
+-- Total: 577 entries
+MTH_DS_DisplayToSkin = {
+ [368] = 30,
+ [372] = 165,
+ [380] = 165,
+ [382] = 366,
+ [389] = 193,
+ [418] = 30,
+ [447] = 165,
+ [471] = 320,
+ [498] = 366,
+ [499] = 193,
+ [503] = 193,
+ [538] = 513,
+ [539] = 30,
+ [545] = 283,
+ [557] = 161,
+ [566] = 520,
+ [598] = 320,
+ [604] = 165,
+ [607] = 381,
+ [613] = 599,
+ [614] = 320,
+ [615] = 322,
+ [633] = 599,
+ [641] = 342,
+ [643] = 161,
+ [647] = 165,
+ [648] = 322,
+ [649] = 180,
+ [651] = 366,
+ [659] = 513,
+ [666] = 165,
+ [670] = 180,
+ [671] = 180,
+ [672] = 180,
+ [673] = 180,
+ [674] = 322,
+ [676] = 322,
+ [677] = 675,
+ [695] = 322,
+ [698] = 320,
+ [699] = 342,
+ [703] = 377,
+ [704] = 377,
+ [707] = 706,
+ [709] = 336,
+ [719] = 706,
+ [741] = 246,
+ [744] = 381,
+ [749] = 748,
+ [755] = 675,
+ [759] = 336,
+ [760] = 336,
+ [762] = 706,
+ [768] = 283,
+ [780] = 644,
+ [781] = 644,
+ [782] = 644,
+ [783] = 165,
+ [784] = 644,
+ [785] = 776,
+ [788] = 180,
+ [801] = 776,
+ [802] = 776,
+ [814] = 807,
+ [815] = 807,
+ [821] = 520,
+ [827] = 520,
+ [831] = 807,
+ [834] = 833,
+ [835] = 807,
+ [837] = 792,
+ [839] = 809,
+ [841] = 792,
+ [842] = 838,
+ [843] = 838,
+ [844] = 792,
+ [845] = 809,
+ [855] = 776,
+ [869] = 776,
+ [902] = 822,
+ [903] = 165,
+ [909] = 520,
+ [910] = 520,
+ [913] = 865,
+ [917] = 632,
+ [918] = 632,
+ [945] = 180,
+ [948] = 180,
+ [949] = 675,
+ [954] = 748,
+ [957] = 283,
+ [958] = 955,
+ [959] = 955,
+ [961] = 787,
+ [982] = 822,
+ [996] = 979,
+ [997] = 981,
+ [998] = 979,
+ [999] = 981,
+ [1000] = 979,
+ [1001] = 981,
+ [1006] = 822,
+ [1007] = 806,
+ [1008] = 632,
+ [1030] = 720,
+ [1034] = 807,
+ [1035] = 925,
+ [1036] = 925,
+ [1037] = 833,
+ [1038] = 925,
+ [1039] = 833,
+ [1040] = 38,
+ [1041] = 178,
+ [1042] = 178,
+ [1043] = 632,
+ [1055] = 632,
+ [1058] = 1056,
+ [1059] = 1056,
+ [1080] = 807,
+ [1087] = 955,
+ [1088] = 513,
+ [1089] = 513,
+ [1090] = 955,
+ [1094] = 809,
+ [1095] = 599,
+ [1100] = 161,
+ [1103] = 1091,
+ [1104] = 1091,
+ [1105] = 388,
+ [1106] = 388,
+ [1157] = 955,
+ [1160] = 955,
+ [1164] = 161,
+ [1167] = 193,
+ [1192] = 507,
+ [1207] = 776,
+ [1208] = 377,
+ [1210] = 490,
+ [1219] = 178,
+ [1222] = 161,
+ [1228] = 388,
+ [1229] = 388,
+ [1250] = 833,
+ [1251] = 833,
+ [1259] = 180,
+ [1283] = 178,
+ [1284] = 1221,
+ [1338] = 960,
+ [1339] = 1337,
+ [1340] = 1337,
+ [1535] = 1534,
+ [1742] = 1336,
+ [1744] = 960,
+ [1746] = 1337,
+ [1747] = 960,
+ [1873] = 513,
+ [1938] = 1307,
+ [1939] = 1307,
+ [1955] = 1954,
+ [1960] = 1959,
+ [1962] = 1959,
+ [1971] = 1057,
+ [1972] = 1057,
+ [1973] = 1057,
+ [1974] = 1336,
+ [1975] = 1336,
+ [1977] = 1057,
+ [1978] = 1933,
+ [1989] = 336,
+ [1990] = 822,
+ [2031] = 1056,
+ [2239] = 979,
+ [2278] = 1056,
+ [2279] = 616,
+ [2300] = 1056,
+ [2301] = 1536,
+ [2305] = 410,
+ [2308] = 2307,
+ [2352] = 246,
+ [2378] = 822,
+ [2424] = 366,
+ [2433] = 30,
+ [2437] = 599,
+ [2453] = 2450,
+ [2486] = 2485,
+ [2491] = 2488,
+ [2537] = 2536,
+ [2538] = 2536,
+ [2539] = 2536,
+ [2540] = 283,
+ [2541] = 283,
+ [2542] = 366,
+ [2543] = 366,
+ [2544] = 366,
+ [2545] = 366,
+ [2546] = 366,
+ [2548] = 925,
+ [2549] = 925,
+ [2550] = 807,
+ [2570] = 1959,
+ [2571] = 1959,
+ [2573] = 1959,
+ [2574] = 1959,
+ [2609] = 1534,
+ [2702] = 2699,
+ [2705] = 2703,
+ [2706] = 2700,
+ [2707] = 2700,
+ [2708] = 2700,
+ [2711] = 2710,
+ [2712] = 2710,
+ [2715] = 2714,
+ [2716] = 2714,
+ [2731] = 2730,
+ [2732] = 2487,
+ [2741] = 1220,
+ [2765] = 2729,
+ [2766] = 2729,
+ [2850] = 1609,
+ [2864] = 2488,
+ [2902] = 1244,
+ [2995] = 2958,
+ [2996] = 1609,
+ [3027] = 3026,
+ [3030] = 3029,
+ [3031] = 3029,
+ [3035] = 3026,
+ [3126] = 1206,
+ [3187] = 3186,
+ [3188] = 3186,
+ [3200] = 806,
+ [3201] = 806,
+ [3202] = 165,
+ [3203] = 165,
+ [3204] = 2699,
+ [3205] = 2699,
+ [3247] = 2489,
+ [3248] = 490,
+ [4065] = 2699,
+ [4090] = 1609,
+ [4091] = 2700,
+ [4167] = 2956,
+ [4268] = 1206,
+ [4343] = 1986,
+ [4440] = 1987,
+ [4442] = 960,
+ [4458] = 4457,
+ [4472] = 748,
+ [4480] = 4312,
+ [4613] = 161,
+ [4615] = 4566,
+ [4636] = 2710,
+ [4689] = 2709,
+ [4716] = 4713,
+ [4732] = 3956,
+ [4733] = 4185,
+ [4734] = 3956,
+ [4767] = 4317,
+ [4768] = 4435,
+ [5027] = 5026,
+ [5030] = 5026,
+ [5052] = 2307,
+ [5066] = 1933,
+ [5067] = 599,
+ [5068] = 3029,
+ [5069] = 632,
+ [5127] = 5126,
+ [5242] = 960,
+ [5244] = 792,
+ [5245] = 838,
+ [5290] = 675,
+ [5292] = 960,
+ [5294] = 792,
+ [5295] = 838,
+ [5296] = 838,
+ [5510] = 822,
+ [5557] = 342,
+ [5558] = 981,
+ [5559] = 979,
+ [5560] = 1307,
+ [5905] = 2488,
+ [5966] = 4305,
+ [5985] = 2489,
+ [6068] = 2488,
+ [6069] = 2488,
+ [6070] = 2488,
+ [6073] = 1091,
+ [6076] = 1220,
+ [6082] = 1056,
+ [6122] = 6121,
+ [6126] = 1244,
+ [6196] = 6195,
+ [6210] = 616,
+ [6213] = 1091,
+ [6214] = 1091,
+ [6248] = 616,
+ [6300] = 4877,
+ [6368] = 5126,
+ [6468] = 5291,
+ [6805] = 3029,
+ [6807] = 3026,
+ [6808] = 336,
+ [6942] = 1056,
+ [6943] = 599,
+ [7046] = 5126,
+ [7114] = 5126,
+ [7339] = 644,
+ [7347] = 2489,
+ [7348] = 490,
+ [7349] = 490,
+ [7409] = 1206,
+ [7470] = 7469,
+ [7510] = 4457,
+ [7511] = 7469,
+ [7569] = 2703,
+ [7619] = 7469,
+ [7691] = 2703,
+ [7829] = 3006,
+ [7836] = 4829,
+ [7837] = 4829,
+ [7839] = 4829,
+ [7840] = 4829,
+ [7891] = 7890,
+ [7892] = 7890,
+ [7893] = 7890,
+ [7894] = 4185,
+ [7896] = 1954,
+ [7897] = 4185,
+ [7906] = 2699,
+ [8014] = 520,
+ [8050] = 2714,
+ [8129] = 840,
+ [8173] = 2955,
+ [8174] = 1987,
+ [8181] = 8180,
+ [8271] = 4456,
+ [8472] = 675,
+ [8473] = 960,
+ [8808] = 4185,
+ [8837] = 865,
+ [8838] = 806,
+ [8839] = 792,
+ [8840] = 806,
+ [8842] = 865,
+ [8843] = 706,
+ [8844] = 3186,
+ [8870] = 381,
+ [8871] = 8869,
+ [8969] = 2487,
+ [8970] = 2487,
+ [9019] = 8180,
+ [9020] = 3916,
+ [9021] = 3916,
+ [9022] = 7890,
+ [9029] = 9028,
+ [9050] = 675,
+ [9074] = 1954,
+ [9276] = 1083,
+ [9277] = 1083,
+ [9278] = 4124,
+ [9280] = 4124,
+ [9287] = 644,
+ [9354] = 7469,
+ [9370] = 9369,
+ [9371] = 9369,
+ [9372] = 9369,
+ [9509] = 644,
+ [9511] = 644,
+ [9535] = 3956,
+ [9558] = 644,
+ [9562] = 246,
+ [9563] = 246,
+ [9565] = 981,
+ [9566] = 979,
+ [9569] = 9568,
+ [9570] = 342,
+ [9571] = 342,
+ [9572] = 9568,
+ [9573] = 979,
+ [9749] = 2488,
+ [9750] = 4735,
+ [9755] = 4456,
+ [9756] = 4456,
+ [9829] = 513,
+ [9910] = 30,
+ [9913] = 2699,
+ [9929] = 4456,
+ [9934] = 336,
+ [9950] = 9949,
+ [9951] = 9949,
+ [9953] = 616,
+ [9955] = 9949,
+ [9957] = 9949,
+ [9990] = 9989,
+ [9992] = 9230,
+ [9993] = 9230,
+ [9997] = 4456,
+ [10015] = 193,
+ [10031] = 8971,
+ [10033] = 1954,
+ [10055] = 1934,
+ [10113] = 10054,
+ [10114] = 1934,
+ [10133] = 840,
+ [10183] = 2699,
+ [10209] = 246,
+ [10270] = 2726,
+ [10271] = 2726,
+ [10273] = 507,
+ [10274] = 776,
+ [10278] = 720,
+ [10618] = 865,
+ [10824] = 388,
+ [10825] = 410,
+ [10826] = 507,
+ [10827] = 490,
+ [10828] = 6212,
+ [10829] = 4877,
+ [10830] = 4877,
+ [10831] = 4877,
+ [10832] = 4877,
+ [10833] = 6212,
+ [10902] = 2726,
+ [10903] = 2713,
+ [10904] = 2713,
+ [10947] = 2307,
+ [10984] = 2487,
+ [10985] = 2487,
+ [10986] = 2414,
+ [10987] = 2414,
+ [10988] = 10983,
+ [10991] = 2700,
+ [11029] = 320,
+ [11031] = 320,
+ [11032] = 3956,
+ [11089] = 9469,
+ [11094] = 11093,
+ [11098] = 2485,
+ [11105] = 11104,
+ [11108] = 11107,
+ [11144] = 11143,
+ [11315] = 1959,
+ [11316] = 787,
+ [11317] = 960,
+ [11318] = 675,
+ [11319] = 322,
+ [11348] = 366,
+ [11411] = 246,
+ [11412] = 720,
+ [11413] = 9564,
+ [11415] = 9564,
+ [11416] = 776,
+ [11417] = 9564,
+ [11418] = 9564,
+ [11419] = 9564,
+ [11420] = 9369,
+ [11421] = 246,
+ [11422] = 720,
+ [11444] = 9958,
+ [11445] = 9958,
+ [11446] = 616,
+ [11447] = 320,
+ [11449] = 321,
+ [11450] = 321,
+ [11451] = 1056,
+ [11452] = 599,
+ [11453] = 11448,
+ [11454] = 3029,
+ [11455] = 320,
+ [11829] = 4735,
+ [11908] = 820,
+ [11909] = 820,
+ [11910] = 599,
+ [12151] = 11093,
+ [12156] = 11107,
+ [12157] = 11104,
+ [12159] = 9469,
+ [12433] = 410,
+ [12966] = 2710,
+ [13096] = 7469,
+ [13097] = 10983,
+ [13111] = 963,
+ [13589] = 1609,
+ [14256] = 925,
+ [14313] = 490,
+ [14315] = 822,
+ [14316] = 822,
+ [14318] = 11448,
+ [14319] = 507,
+ [14364] = 9956,
+ [14557] = 11034,
+ [14558] = 4435,
+ [14559] = 4305,
+ [14562] = 3956,
+ [14572] = 599,
+ [14657] = 5126,
+ [14658] = 4829,
+ [14659] = 1244,
+ [14660] = 5026,
+ [14661] = 2307,
+ [14780] = 1954,
+ [14853] = 711,
+ [14935] = 599,
+ [14950] = 955,
+ [14952] = 955,
+ [15072] = 711,
+ [15132] = 4317,
+ [15133] = 4435,
+ [15135] = 4312,
+ [15136] = 711,
+ [15137] = 3006,
+ [15138] = 320,
+ [15145] = 833,
+ [15150] = 4317,
+ [15151] = 320,
+ [15180] = 9369,
+ [15181] = 14312,
+ [15204] = 9369,
+ [15227] = 4735,
+ [15275] = 2699,
+ [15302] = 3186,
+ [15327] = 2489,
+ [15336] = 2485,
+ [15339] = 11104,
+ [15383] = 10983,
+ [15384] = 2729,
+ [15385] = 10983,
+ [15422] = 2730,
+ [15423] = 2730,
+ [15433] = 2488,
+ [15464] = 9028,
+ [15467] = 11104,
+ [15468] = 11143,
+ [15469] = 2485,
+ [15470] = 2729,
+ [15471] = 2489,
+ [15533] = 2414,
+ [15534] = 6212,
+ [15682] = 11107,
+ [15878] = 776,
+ [15929] = 7469,
+ [15938] = 513,
+ [15939] = 2536,
+ [15964] = 14312,
+ [15969] = 3916,
+ [16145] = 5126,
+ [16359] = 16259,
+ [16622] = 5585,
+ [18115] = 9492,
+ [18177] = 18008,
+ [18353] = 18338,
+ [18493] = 18006,
+ [20369] = 18027,
+ [20370] = 1933,
+ [20371] = 11448,
+ [20372] = 321,
+ [20373] = 9230,
+ [20374] = 18432,
+ [20375] = 18431,
+ [20376] = 18433,
+ [20377] = 18430,
+ [20378] = 18427,
+ [20379] = 18434,
+ [20380] = 18428,
+ [20381] = 18429,
+ [20382] = 9956,
+ [20383] = 18426,
+ [20384] = 11448,
+ [20385] = 321,
+ [20386] = 9230,
+ [20387] = 1933,
+ [20394] = 20388,
+ [20395] = 20389,
+ [20396] = 20390,
+ [20397] = 20391,
+ [20398] = 20392,
+ [20399] = 20393,
+}
diff --git a/data/ds-beasts-turtledb.lua b/data/ds-beasts-turtledb.lua
new file mode 100644
index 0000000..415de30
--- /dev/null
+++ b/data/ds-beasts-turtledb.lua
@@ -0,0 +1,12872 @@
+-- MetaHunt: Beast data scraped from database.turtlecraft.gg per NPC ID
+-- AUTO-GENERATED by .tools — do not edit by hand.
+-- Source DBC(s):
+-- Generated: 2026-03-17 12:51 UTC
+-- Total: 987 entries
+
+if not MTH_DS then MTH_DS = {} end
+if not MTH_DS_Beasts then MTH_DS_Beasts = {} end
+
+do
+ local b
+ b = MTH_DS_Beasts[30]
+ if b then
+ b["displayId"] = 382
+ b["health"] = 112
+ b["dmgMin"] = 7.7
+ b["dmgMax"] = 11
+ b["armor"] = 147
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{28.48, 66.68, 12}, {31.45, 57.0, 12}, {31.96, 68.45, 12}, {33.55, 73.72, 12}, {34.33, 79.34, 12}, {35.25, 86.99, 12}, {35.77, 69.06, 12}, {36.0, 62.66, 12}, {36.43, 55.88, 12}, {37.47, 58.9, 12}, {37.99, 69.96, 12}, {38.48, 62.36, 12}, {39.57, 78.65, 12}, {40.78, 75.11, 12}, {41.88, 72.12, 12}, {41.99, 81.59, 12}, {42.16, 56.36, 12}, {43.89, 76.66, 12}, {44.58, 71.22, 12}, {46.46, 71.95, 12}, {50.29, 59.86, 12}}
+ b["scrapedAt"] = 1773751329
+ end
+ b = MTH_DS_Beasts[43]
+ if b then
+ b["displayId"] = 368
+ b["health"] = 172
+ b["dmgMin"] = 12.1
+ b["dmgMax"] = 16.5
+ b["armor"] = 361
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{60.0264, 48.6654, 12}, {61.9856, 47.8878, 12}}
+ b["scrapedAt"] = 1773751330
+ end
+ b = MTH_DS_Beasts[69]
+ if b then
+ b["displayId"] = 604
+ b["health"] = 61
+ b["dmgMin"] = 2.2
+ b["dmgMax"] = 2.2
+ b["armor"] = 16
+ b["factionId"] = 32
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{45.19, 35.14, 12}, {45.88, 40.28, 12}, {48.13, 34.88, 12}, {48.16, 37.35, 12}, {49.14, 45.34, 12}, {49.4, 37.73, 12}, {49.48, 49.23, 12}, {51.21, 40.41, 12}, {51.5, 43.7, 12}, {51.87, 41.54, 12}, {52.74, 35.1, 12}}
+ b["scrapedAt"] = 1773751331
+ end
+ b = MTH_DS_Beasts[113]
+ if b then
+ b["displayId"] = 503
+ b["health"] = 112
+ b["dmgMin"] = 7.7
+ b["dmgMax"] = 11
+ b["armor"] = 174
+ b["factionId"] = 189
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{30.96, 84.09, 12}, {31.16, 80.98, 12}, {31.33, 82.62, 12}, {31.7, 80.03, 12}, {33.32, 89.71, 12}, {35.22, 89.8, 12}, {36.26, 91.31, 12}, {38.1, 75.41, 12}, {38.13, 89.23, 12}, {38.56, 86.12, 12}, {38.76, 78.61, 12}, {38.85, 68.67, 12}, {39.89, 69.66, 12}, {40.87, 89.88, 12}, {40.95, 85.0, 12}, {40.95, 91.91, 12}, {41.7, 77.7, 12}, {41.85, 69.45, 12}, {42.57, 73.21, 12}, {42.91, 86.56, 12}, {43.75, 72.25, 12}, {44.12, 69.36, 12}}
+ b["scrapedAt"] = 1773751332
+ end
+ b = MTH_DS_Beasts[118]
+ if b then
+ b["displayId"] = 11415
+ b["health"] = 206
+ b["dmgMin"] = 11.6688
+ b["dmgMax"] = 15.1694
+ b["armor"] = 459
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{65.39, 43.27, 12}, {66.62, 45.17, 12}, {69.88, 40.85, 12}, {71.41, 37.43, 12}, {72.04, 40.46, 12}, {72.27, 65.73, 12}, {72.39, 65.13, 12}, {73.63, 38.12, 12}, {75.21, 40.37, 12}, {75.38, 37.3, 12}, {75.61, 75.97, 12}, {76.16, 63.31, 12}, {77.43, 74.46, 12}, {78.93, 40.85, 12}, {79.27, 62.15, 12}, {79.99, 60.72, 12}, {80.05, 81.76, 12}, {80.17, 83.23, 12}, {80.25, 81.11, 12}, {80.28, 78.17, 12}, {81.92, 60.72, 12}, {82.15, 84.01, 12}, {83.19, 59.68, 12}, {83.62, 84.09, 12}, {85.03, 61.93, 12}, {85.9, 72.3, 12}, {87.08, 79.34, 12}, {87.14, 77.4, 12}, {87.34, 68.45, 12}, {87.74, 63.74, 12}, {88.0, 72.08, 12}, {89.62, 74.98, 12}, {90.34, 81.67, 12}}
+ b["scrapedAt"] = 1773751333
+ end
+ b = MTH_DS_Beasts[119]
+ if b then
+ b["displayId"] = 381
+ b["health"] = 231
+ b["dmgMin"] = 33.8395
+ b["dmgMax"] = 39.6739
+ b["armor"] = 538
+ b["factionId"] = 189
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{24.67, 86.94, 12}, {25.02, 84.74, 12}, {25.48, 82.23, 12}, {25.71, 79.73, 12}}
+ b["scrapedAt"] = 1773751335
+ end
+ b = MTH_DS_Beasts[154]
+ if b then
+ b["displayId"] = 1105
+ b["health"] = 432
+ b["dmgMin"] = 29.663
+ b["dmgMax"] = 38.3148
+ b["armor"] = 730
+ b["factionId"] = 73
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{27.1, 42.39, 40}, {58.68, 60.39, 40}, {58.85, 64.2, 40}, {59.08, 59.32, 40}, {59.42, 52.29, 40}, {59.42, 62.66, 40}, {61.16, 54.82, 40}, {61.93, 49.24, 40}, {62.59, 60.64, 40}, {62.7, 50.57, 40}, {63.88, 55.07, 40}}
+ b["scrapedAt"] = 1773751336
+ end
+ b = MTH_DS_Beasts[157]
+ if b then
+ b["displayId"] = 3027
+ b["health"] = 364
+ b["dmgMin"] = 24.985
+ b["dmgMax"] = 32.1235
+ b["armor"] = 677
+ b["factionId"] = 189
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{31.73, 75.82, 40}, {33.76, 30.99, 40}, {34.28, 77.79, 40}, {35.22, 69.34, 40}, {35.39, 36.6, 40}, {35.39, 57.94, 40}, {35.7, 80.79, 40}, {37.19, 60.17, 40}, {37.19, 63.64, 40}, {37.28, 71.92, 40}, {37.85, 41.01, 40}, {39.13, 27.86, 40}, {39.45, 60.86, 40}, {40.79, 39.77, 40}, {40.93, 44.79, 40}, {41.19, 33.17, 40}, {41.28, 57.6, 40}, {41.93, 38.74, 40}, {42.88, 43.54, 40}, {43.73, 62.14, 40}, {43.88, 52.16, 40}, {44.39, 45.09, 40}, {44.59, 59.06, 40}, {44.73, 56.92, 40}, {45.13, 50.53, 40}, {45.36, 62.1, 40}, {45.59, 55.42, 40}, {47.22, 62.19, 40}, {48.3, 52.59, 40}, {49.53, 57.43, 40}, {51.22, 59.02, 40}, {53.9, 64.89, 40}, {54.13, 59.02, 40}, {57.13, 59.19, 40}, {60.93, 47.66, 40}, {61.3, 44.91, 40}}
+ b["scrapedAt"] = 1773751338
+ end
+ b = MTH_DS_Beasts[199]
+ if b then
+ b["displayId"] = 410
+ b["health"] = 231
+ b["dmgMin"] = 16.3363
+ b["dmgMax"] = 22.1707
+ b["armor"] = 525
+ b["factionId"] = 73
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{36.28, 26.44, 40}, {38.1, 32.1, 40}, {38.19, 19.89, 40}, {42.96, 25.11, 40}, {42.99, 33.73, 40}, {43.59, 18.77, 40}, {44.65, 20.06, 40}, {45.85, 29.36, 40}, {47.82, 18.21, 40}, {48.82, 30.9, 40}, {48.93, 35.83, 40}, {49.42, 37.2, 40}, {49.53, 24.69, 40}, {51.39, 42.21, 40}, {51.88, 27.69, 40}, {52.45, 18.69, 40}, {52.76, 35.66, 40}, {53.7, 43.89, 40}, {54.19, 39.77, 40}, {55.22, 17.61, 40}, {56.22, 24.56, 40}, {57.16, 39.69, 40}, {58.85, 13.84, 40}, {59.85, 32.31, 40}, {60.05, 39.77, 40}, {60.13, 24.17, 40}, {60.93, 27.94, 40}, {62.85, 27.81, 40}}
+ b["scrapedAt"] = 1773751339
+ end
+ b = MTH_DS_Beasts[213]
+ if b then
+ b["displayId"] = 801
+ b["health"] = 535
+ b["dmgMin"] = 33.3133
+ b["dmgMax"] = 42.8314
+ b["armor"] = 852
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{10.72, 47.85, 10}, {12.57, 66.74, 10}, {12.64, 28.3, 10}, {17.38, 23.24, 10}, {19.31, 23.96, 10}, {22.6, 25.91, 10}, {27.35, 26.3, 10}, {31.53, 24.35, 10}, {32.38, 22.57, 10}, {33.53, 26.74, 10}, {35.27, 21.52, 10}, {40.01, 19.07, 10}, {41.23, 20.46, 10}, {43.9, 20.35, 10}, {44.98, 18.46, 10}, {57.79, 15.57, 10}, {58.75, 16.85, 10}, {63.9, 17.07, 10}, {77.09, 19.07, 10}, {80.38, 18.68, 10}, {86.2, 16.13, 10}}
+ b["scrapedAt"] = 1773751340
+ end
+ b = MTH_DS_Beasts[217]
+ if b then
+ b["displayId"] = 955
+ b["health"] = 535
+ b["dmgMin"] = 33.3133
+ b["dmgMax"] = 42.8314
+ b["armor"] = 855
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{9.271, 39.96, 10}, {10.49, 44.63, 10}, {10.75, 37.96, 10}, {10.79, 46.63, 10}, {11.23, 54.8, 10}, {12.12, 45.96, 10}, {14.49, 67.46, 10}, {15.27, 71.29, 10}, {16.94, 25.8, 10}, {18.86, 27.3, 10}, {22.09, 28.18, 10}, {31.86, 26.57, 10}, {41.75, 20.8, 10}, {49.79, 18.3, 10}, {52.23, 16.91, 10}, {56.23, 14.52, 10}, {57.46, 18.52, 10}, {60.2, 18.57, 10}, {62.46, 18.46, 10}, {66.2, 18.07, 10}, {66.68, 20.74, 10}, {70.79, 21.57, 10}, {76.01, 19.91, 10}, {77.98, 24.24, 10}}
+ b["scrapedAt"] = 1773751341
+ end
+ b = MTH_DS_Beasts[299]
+ if b then
+ b["displayId"] = 447
+ b["health"] = 46
+ b["dmgMin"] = 2.2
+ b["dmgMax"] = 2.2
+ b["armor"] = 15
+ b["factionId"] = 32
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{41.56, 58.26, 12}, {42.62, 60.98, 12}, {42.91, 55.36, 12}, {44.53, 58.34, 12}, {45.53, 39.07, 12}, {45.62, 43.78, 12}, {45.65, 43.14, 12}, {45.74, 42.31, 12}, {47.41, 37.82, 12}, {47.49, 46.89, 12}, {48.65, 45.51, 12}, {48.82, 38.3, 12}, {52.05, 41.62, 12}}
+ b["scrapedAt"] = 1773751342
+ end
+ b = MTH_DS_Beasts[330]
+ if b then
+ b["displayId"] = 8871
+ b["health"] = 251
+ b["dmgMin"] = 13.2
+ b["dmgMax"] = 15.4
+ b["armor"] = 406
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{69.65, 79.21, 12}}
+ b["scrapedAt"] = 1773751344
+ end
+ b = MTH_DS_Beasts[345]
+ if b then
+ b["displayId"] = 703
+ b["health"] = 1355
+ b["dmgMin"] = 41.6416
+ b["dmgMax"] = 51.1597
+ b["armor"] = 992
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{15.67, 49.24, 44}}
+ b["scrapedAt"] = 1773751345
+ end
+ b = MTH_DS_Beasts[390]
+ if b then
+ b["displayId"] = 377
+ b["health"] = 151
+ b["dmgMin"] = 11
+ b["dmgMax"] = 13.2
+ b["armor"] = 239
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{69.59, 79.12, 12}}
+ b["scrapedAt"] = 1773751346
+ end
+ b = MTH_DS_Beasts[428]
+ if b then
+ b["displayId"] = 490
+ b["health"] = 496
+ b["dmgMin"] = 33.3709
+ b["dmgMax"] = 42.0226
+ b["armor"] = 800
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{35.43, 70.17, 44}, {42.11, 32.32, 44}, {45.75, 35.78, 44}, {45.93, 77.49, 44}, {47.27, 32.46, 44}, {50.63, 74.66, 44}, {52.38, 38.75, 44}, {54.32, 40.27, 44}, {55.24, 73.35, 44}, {55.24, 76.73, 44}, {59.75, 76.04, 44}, {64.08, 76.39, 44}}
+ b["scrapedAt"] = 1773751347
+ end
+ b = MTH_DS_Beasts[442]
+ if b then
+ b["displayId"] = 366
+ b["health"] = 391
+ b["dmgMin"] = 27.3645
+ b["dmgMax"] = 35.6928
+ b["armor"] = 695
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{10.69, 80.6, 44}, {11.39, 93.24, 44}, {11.66, 72.66, 44}, {12.81, 85.16, 44}, {13.32, 93.03, 44}, {13.74, 82.12, 44}, {14.1, 75.63, 44}, {19.49, 71.69, 44}, {20.14, 65.41, 44}, {22.4, 66.3, 44}, {22.76, 76.32, 44}, {35.02, 75.07, 44}}
+ b["scrapedAt"] = 1773751348
+ end
+ b = MTH_DS_Beasts[454]
+ if b then
+ b["displayId"] = 8871
+ b["health"] = 294
+ b["dmgMin"] = 20.2259
+ b["dmgMax"] = 26.1747
+ b["armor"] = 608
+ b["factionId"] = 189
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{34.33, 34.76, 40}, {37.36, 30.64, 40}, {37.79, 25.93, 40}, {39.42, 33.77, 40}, {40.96, 30.04, 40}, {42.19, 23.66, 40}, {43.85, 32.23, 40}, {44.33, 30.43, 40}, {46.62, 19.33, 40}, {48.73, 19.11, 40}, {49.19, 41.61, 40}, {49.76, 23.49, 40}, {49.9, 36.73, 40}, {50.45, 29.31, 40}, {51.36, 23.23, 40}, {51.93, 48.94, 40}, {52.1, 41.14, 40}, {52.42, 17.53, 40}, {52.7, 39.86, 40}, {53.73, 45.04, 40}, {53.9, 40.89, 40}, {54.16, 26.7, 40}, {55.28, 19.54, 40}, {56.25, 42.47, 40}, {56.93, 16.07, 40}, {57.08, 39.21, 40}, {58.36, 12.34, 40}, {60.02, 33.56, 40}, {60.62, 30.0, 40}, {61.19, 36.43, 40}, {61.93, 27.81, 40}, {63.19, 38.19, 40}}
+ b["scrapedAt"] = 1773751350
+ end
+ b = MTH_DS_Beasts[462]
+ if b then
+ b["displayId"] = 507
+ b["npcClass"] = "Rare"
+ b["health"] = 936
+ b["dmgMin"] = 76.4032
+ b["dmgMax"] = 94.5945
+ b["armor"] = 1061
+ b["factionId"] = 73
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{36.79, 62.49, 40}, {40.65, 60.52, 40}, {44.16, 46.16, 40}, {45.45, 43.93, 40}, {45.68, 60.04, 40}, {46.13, 57.69, 40}, {50.65, 43.54, 40}, {51.1, 23.79, 40}, {54.82, 23.19, 40}, {61.53, 73.89, 40}, {62.05, 75.47, 40}, {62.59, 74.19, 40}, {63.28, 57.0, 40}, {63.93, 58.16, 40}, {65.53, 58.72, 40}}
+ b["scrapedAt"] = 1773751351
+ end
+ b = MTH_DS_Beasts[471]
+ if b then
+ b["displayId"] = 2541
+ b["npcClass"] = "Rare"
+ b["health"] = 231
+ b["dmgMin"] = 16.3363
+ b["dmgMax"] = 19.837
+ b["armor"] = 512
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{62.13, 48.02, 12}}
+ b["scrapedAt"] = 1773751352
+ end
+ b = MTH_DS_Beasts[505]
+ if b then
+ b["displayId"] = 520
+ b["health"] = 535
+ b["dmgMin"] = 33.3133
+ b["dmgMax"] = 42.8314
+ b["armor"] = 835
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{47.82, 38.4, 44}, {53.67, 36.33, 44}, {53.81, 43.58, 44}, {55.1, 43.1, 44}, {57.08, 46.62, 44}, {67.17, 76.52, 44}}
+ b["scrapedAt"] = 1773751353
+ end
+ b = MTH_DS_Beasts[521]
+ if b then
+ b["displayId"] = 11412
+ b["npcClass"] = "Rare-Elite"
+ b["health"] = 735
+ b["dmgMin"] = 37.0788
+ b["dmgMax"] = 45.7305
+ b["armor"] = 957
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{14.9, 29.02, 10}, {32.6, 25.8, 10}, {64.31, 24.02, 10}}
+ b["scrapedAt"] = 1773749057
+ end
+ b = MTH_DS_Beasts[524]
+ if b then
+ b["displayId"] = 389
+ b["health"] = 151
+ b["dmgMin"] = 9.9
+ b["dmgMax"] = 14.3
+ b["armor"] = 316
+ b["factionId"] = 189
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{42.97, 81.98, 12}, {43.34, 77.83, 12}, {44.5, 83.75, 12}, {44.55, 87.2, 12}, {45.85, 82.84, 12}, {46.57, 78.56, 12}, {47.26, 75.75, 12}, {49.48, 75.67, 12}, {50.12, 79.64, 12}, {52.13, 77.96, 12}, {52.62, 81.46, 12}, {53.54, 85.35, 12}, {54.35, 83.66, 12}, {54.55, 75.24, 12}, {54.84, 79.86, 12}, {55.56, 73.77, 12}, {57.98, 80.72, 12}, {58.36, 72.73, 12}, {59.28, 74.5, 12}, {60.2, 78.13, 12}, {61.61, 78.26, 12}, {64.03, 78.35, 12}, {65.76, 77.7, 12}, {66.91, 79.86, 12}, {67.26, 76.88, 12}, {69.51, 75.49, 12}, {70.72, 82.58, 12}, {70.77, 73.64, 12}, {72.65, 79.6, 12}, {72.85, 82.62, 12}, {72.99, 76.49, 12}}
+ b["scrapedAt"] = 1773751355
+ end
+ b = MTH_DS_Beasts[525]
+ if b then
+ b["displayId"] = 903
+ b["health"] = 112
+ b["dmgMin"] = 6.6
+ b["dmgMax"] = 7.7
+ b["armor"] = 174
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{22.51, 75.49, 12}, {23.58, 77.01, 12}, {27.61, 74.24, 12}, {27.73, 71.26, 12}, {28.28, 67.42, 12}, {29.17, 74.29, 12}, {30.38, 71.91, 12}, {30.67, 69.06, 12}, {32.19, 55.49, 12}, {32.54, 67.67, 12}, {33.49, 76.1, 12}, {33.87, 73.59, 12}, {34.18, 59.29, 12}, {34.73, 75.45, 12}, {34.99, 66.72, 12}, {35.05, 70.01, 12}, {35.88, 62.58, 12}, {38.48, 63.79, 12}, {41.56, 57.95, 12}, {42.83, 54.93, 12}, {43.11, 61.02, 12}, {44.55, 57.78, 12}, {45.76, 55.41, 12}, {46.69, 68.41, 12}, {49.48, 58.3, 12}, {49.6, 60.94, 12}, {49.68, 69.32, 12}, {51.35, 69.66, 12}, {52.02, 69.96, 12}, {52.05, 63.66, 12}, {53.75, 60.37, 12}, {56.48, 61.45, 12}, {56.8, 60.33, 12}, {57.06, 69.71, 12}, {58.36, 60.55, 12}}
+ b["scrapedAt"] = 1773751356
+ end
+ b = MTH_DS_Beasts[539]
+ if b then
+ b["displayId"] = 958
+ b["health"] = 496
+ b["dmgMin"] = 33.3709
+ b["dmgMax"] = 42.0226
+ b["armor"] = 800
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{9.383, 42.8, 10}, {9.457, 57.18, 10}, {9.531, 49.63, 10}, {10.16, 66.07, 10}, {10.42, 59.02, 10}, {10.79, 52.96, 10}, {11.42, 65.07, 10}, {11.98, 59.18, 10}, {12.01, 51.24, 10}, {12.46, 28.74, 10}, {13.2, 70.29, 10}, {23.86, 27.8, 10}, {28.79, 27.57, 10}, {33.94, 24.57, 10}, {37.12, 21.24, 10}, {40.12, 21.74, 10}, {46.49, 16.68, 10}, {47.64, 15.85, 10}, {54.53, 14.18, 10}, {60.79, 16.57, 10}, {66.68, 17.91, 10}, {69.6, 18.63, 10}, {72.05, 18.96, 10}, {74.75, 17.52, 10}, {84.68, 18.35, 10}}
+ b["scrapedAt"] = 1773751357
+ end
+ b = MTH_DS_Beasts[547]
+ if b then
+ b["displayId"] = 3035
+ b["health"] = 432
+ b["dmgMin"] = 29.663
+ b["dmgMax"] = 38.3148
+ b["armor"] = 748
+ b["factionId"] = 189
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{14.66, 49.45, 44}, {15.58, 53.94, 44}, {17.65, 55.25, 44}, {18.48, 43.58, 44}, {19.4, 72.73, 44}, {24.7, 78.39, 44}, {25.39, 60.5, 44}, {27.69, 75.35, 44}, {28.98, 73.28, 44}, {31.38, 72.17, 44}, {33.31, 65.75, 44}, {38.38, 73.28, 44}, {42.25, 16.3, 44}, {46.21, 17.06, 44}, {46.35, 10.36, 44}, {48.51, 25.21, 44}, {49.68, 68.7, 40}, {51.7, 67.59, 40}, {54.62, 68.27, 40}, {57.08, 67.63, 40}, {58.13, 62.32, 40}, {58.79, 58.97, 40}, {58.96, 49.07, 40}, {58.99, 56.92, 40}, {60.25, 50.49, 40}, {60.85, 67.54, 40}, {62.45, 51.52, 40}, {63.96, 55.07, 40}, {64.28, 66.64, 40}, {66.7, 68.1, 40}, {67.56, 70.89, 40}}
+ b["scrapedAt"] = 1773751358
+ end
+ b = MTH_DS_Beasts[565]
+ if b then
+ b["displayId"] = 802
+ b["health"] = 587
+ b["dmgMin"] = 36.8826
+ b["dmgMax"] = 45.2109
+ b["armor"] = 888
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{9.679, 40.52, 10}, {10.05, 46.41, 10}, {10.64, 60.91, 10}, {10.72, 51.57, 10}, {11.57, 57.24, 10}, {12.94, 69.13, 10}, {13.16, 30.46, 10}, {13.86, 27.57, 10}, {16.16, 29.68, 10}, {16.35, 27.24, 10}, {20.42, 28.07, 10}, {21.53, 30.41, 10}, {25.23, 29.85, 10}, {34.01, 28.07, 10}, {37.6, 25.68, 10}, {38.98, 23.8, 10}, {54.83, 18.41, 10}, {56.16, 19.57, 10}, {61.46, 19.46, 10}, {66.01, 18.02, 10}, {67.31, 20.07, 10}}
+ b["scrapedAt"] = 1773751359
+ end
+ b = MTH_DS_Beasts[569]
+ if b then
+ b["displayId"] = 2541
+ b["health"] = 631
+ b["dmgMin"] = 38.3148
+ b["dmgMax"] = 48.2024
+ b["armor"] = 905
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{10.27, 41.46, 10}, {11.05, 41.91, 10}, {12.38, 55.07, 10}, {13.05, 50.96, 10}, {13.23, 58.41, 10}, {13.9, 64.74, 10}, {16.57, 69.46, 10}, {50.79, 20.3, 10}, {54.9, 22.02, 10}, {57.27, 22.3, 10}, {61.83, 23.18, 10}, {62.53, 20.41, 10}, {66.79, 22.46, 10}, {72.83, 21.52, 10}, {74.53, 21.13, 10}}
+ b["scrapedAt"] = 1773751360
+ end
+ b = MTH_DS_Beasts[574]
+ if b then
+ b["displayId"] = 963
+ b["npcClass"] = "Rare-Elite"
+ b["health"] = 999
+ b["dmgMin"] = 190.337
+ b["dmgMax"] = 245.956
+ b["armor"] = 1907
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{86.35, 47.57, 10}}
+ b["scrapedAt"] = 1773751361
+ end
+ b = MTH_DS_Beasts[616]
+ if b then
+ b["displayId"] = 821
+ b["npcClass"] = "Rare"
+ b["health"] = 735
+ b["dmgMin"] = 59.3261
+ b["dmgMax"] = 70.4497
+ b["armor"] = 957
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{53.07, 37.02, 44}}
+ b["scrapedAt"] = 1773751362
+ end
+ b = MTH_DS_Beasts[628]
+ if b then
+ b["displayId"] = 741
+ b["health"] = 791
+ b["dmgMin"] = 42.8314
+ b["dmgMax"] = 54.729
+ b["armor"] = 1009
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{48.53, 61.52, 10}, {52.72, 63.13, 10}, {59.31, 58.8, 10}, {64.12, 25.63, 10}, {66.09, 28.68, 10}, {68.35, 33.3, 10}, {69.98, 35.41, 10}}
+ b["scrapedAt"] = 1773751364
+ end
+ b = MTH_DS_Beasts[659]
+ if b then
+ b["displayId"] = 589
+ b["health"] = 3356
+ b["dmgMin"] = 154.495
+ b["dmgMax"] = 184.158
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773749810
+ end
+ b = MTH_DS_Beasts[681]
+ if b then
+ b["displayId"] = 598
+ b["health"] = 1250
+ b["dmgMin"] = 34.6069
+ b["dmgMax"] = 44.4946
+ b["armor"] = 1217
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{30.65, 7.55, 33}, {31.43, 8.373, 33}, {31.54, 9.925, 33}, {33.58, 11.12, 33}, {33.92, 12.98, 33}, {34.08, 11.31, 33}, {34.55, 13.99, 33}, {35.01, 16.34, 33}, {35.65, 12.13, 33}, {36.1, 15.31, 33}, {37.28, 11.55, 33}, {37.34, 14.32, 33}, {38.83, 13.64, 33}, {39.21, 14.44, 33}, {40.18, 9.925, 33}, {40.41, 8.279, 33}}
+ b["scrapedAt"] = 1773751365
+ end
+ b = MTH_DS_Beasts[682]
+ if b then
+ b["displayId"] = 320
+ b["health"] = 1437
+ b["dmgMin"] = 38.3148
+ b["dmgMax"] = 46.9665
+ b["armor"] = 1287
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{28.97, 9.525, 33}, {29.36, 10.39, 33}, {30.18, 13.57, 33}, {30.35, 15.24, 33}, {30.76, 16.04, 33}, {42.87, 15.24, 33}, {44.0, 13.66, 33}, {45.46, 14.53, 33}, {45.99, 16.88, 33}, {46.52, 12.93, 33}, {46.56, 16.08, 33}, {47.12, 15.24, 33}, {47.15, 18.46, 33}, {47.59, 12.84, 33}, {48.19, 12.16, 33}}
+ b["scrapedAt"] = 1773751366
+ end
+ b = MTH_DS_Beasts[683]
+ if b then
+ b["displayId"] = 2437
+ b["health"] = 1250
+ b["dmgMin"] = 34.6069
+ b["dmgMax"] = 44.4946
+ b["armor"] = 1217
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{35.02, 14.16, 33}, {36.07, 7.221, 33}, {36.62, 13.76, 33}, {37.33, 8.232, 33}, {37.59, 12.46, 33}, {38.96, 6.587, 33}, {39.22, 8.044, 33}, {40.65, 11.17, 33}, {41.26, 8.068, 33}, {41.34, 12.82, 33}, {42.47, 9.548, 33}, {42.86, 13.62, 33}}
+ b["scrapedAt"] = 1773751367
+ end
+ b = MTH_DS_Beasts[684]
+ if b then
+ b["displayId"] = 633
+ b["health"] = 1899
+ b["dmgMin"] = 46.4006
+ b["dmgMax"] = 57.1085
+ b["armor"] = 1651
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{36.57, 37.78, 33}, {37.28, 45.23, 33}, {38.33, 34.65, 33}, {38.74, 39.71, 33}, {39.21, 37.9, 33}, {39.28, 45.51, 33}, {39.36, 33.29, 33}, {39.57, 42.55, 33}, {46.45, 22.52, 33}, {46.51, 28.42, 33}, {46.52, 26.87, 33}, {47.23, 23.06, 33}, {48.08, 20.2, 33}, {48.69, 22.22, 33}, {48.87, 23.84, 33}, {49.71, 25.46, 33}, {49.72, 20.76, 33}, {50.24, 24.66, 33}, {50.65, 20.6, 33}}
+ b["scrapedAt"] = 1773751369
+ end
+ b = MTH_DS_Beasts[685]
+ if b then
+ b["displayId"] = 788
+ b["health"] = 1453
+ b["dmgMin"] = 70.3395
+ b["dmgMax"] = 88.5307
+ b["armor"] = 1322
+ b["factionId"] = 48
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{24.07, 15.66, 33}, {24.51, 16.18, 33}, {25.73, 15.8, 33}, {26.03, 17.07, 33}, {27.39, 15.45, 33}, {27.56, 17.66, 33}, {27.8, 14.3, 33}}
+ b["scrapedAt"] = 1773751370
+ end
+ b = MTH_DS_Beasts[686]
+ if b then
+ b["displayId"] = 788
+ b["health"] = 1669
+ b["dmgMin"] = 61.798
+ b["dmgMax"] = 76.6295
+ b["armor"] = 1388
+ b["factionId"] = 48
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{30.56, 22.45, 33}, {30.81, 23.21, 33}, {31.98, 20.67, 33}, {32.08, 23.77, 33}, {32.51, 21.4, 33}, {33.41, 24.55, 33}, {33.97, 25.46, 33}, {35.62, 26.31, 33}, {37.56, 27.88, 33}, {37.73, 21.47, 33}, {37.81, 19.73, 33}, {38.09, 27.01, 33}, {38.44, 25.23, 33}, {38.75, 26.17, 33}, {38.86, 21.63, 33}, {38.88, 24.57, 33}, {39.33, 19.09, 33}}
+ b["scrapedAt"] = 1773751372
+ end
+ b = MTH_DS_Beasts[687]
+ if b then
+ b["displayId"] = 11317
+ b["health"] = 2175
+ b["dmgMin"] = 85.2812
+ b["dmgMax"] = 107.529
+ b["armor"] = 2057
+ b["factionId"] = 48
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{23.0, 49.67, 33}, {23.16, 51.48, 33}, {23.36, 48.22, 33}, {24.11, 49.63, 33}, {26.06, 49.89, 33}, {26.15, 51.34, 33}, {26.64, 50.52, 33}, {26.92, 48.69, 33}, {27.31, 43.37, 33}, {27.8, 48.92, 33}, {27.95, 47.21, 33}, {28.22, 44.95, 33}, {28.35, 43.47, 33}, {29.33, 43.54, 33}, {30.46, 41.82, 33}, {30.93, 42.53, 33}, {31.21, 44.62, 33}, {31.56, 40.69, 33}, {32.7, 39.17, 33}, {32.95, 36.53, 33}, {34.63, 40.13, 33}, {34.66, 38.91, 33}}
+ b["scrapedAt"] = 1773751373
+ end
+ b = MTH_DS_Beasts[704]
+ if b then
+ b["displayId"] = 11416
+ b["health"] = 61
+ b["dmgMin"] = 2.2
+ b["dmgMax"] = 2.2
+ b["armor"] = 16
+ b["factionId"] = 32
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{23.23, 77.66, 1}, {23.27, 78.73, 1}, {24.02, 79.73, 1}, {24.85, 78.21, 1}, {25.5, 79.49, 1}, {25.97, 75.29, 1}, {26.91, 78.0, 1}, {28.1, 78.06, 1}, {29.67, 74.77, 1}}
+ b["scrapedAt"] = 1773751375
+ end
+ b = MTH_DS_Beasts[705]
+ if b then
+ b["displayId"] = 855
+ b["health"] = 46
+ b["dmgMin"] = 2.2
+ b["dmgMax"] = 2.2
+ b["armor"] = 15
+ b["factionId"] = 32
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{22.58, 78.21, 1}, {23.88, 77.85, 1}, {25.59, 78.06, 1}, {26.05, 69.16, 1}, {26.4, 74.74, 1}, {26.7, 69.83, 1}, {28.23, 75.5, 1}, {28.57, 72.12, 1}, {28.73, 72.33, 1}, {29.5, 77.14, 1}, {31.15, 69.04, 1}, {31.31, 73.95, 1}, {31.43, 70.02, 1}, {32.29, 70.78, 1}}
+ b["scrapedAt"] = 1773751376
+ end
+ b = MTH_DS_Beasts[708]
+ if b then
+ b["displayId"] = 607
+ b["health"] = 78
+ b["dmgMin"] = 3.3
+ b["dmgMax"] = 4.4
+ b["armor"] = 41
+ b["factionId"] = 189
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{19.76, 76.41, 1}, {20.1, 71.08, 1}, {20.39, 74.22, 1}, {21.3, 69.13, 1}, {21.46, 78.0, 1}, {22.7, 70.17, 1}, {22.82, 72.45, 1}, {23.47, 78.76, 1}, {24.0, 76.44, 1}, {24.04, 72.48, 1}, {24.63, 69.13, 1}, {25.42, 70.23, 1}, {25.99, 69.16, 1}, {26.58, 69.65, 1}, {28.23, 73.03, 1}, {31.23, 69.23, 1}, {32.29, 71.66, 1}}
+ b["scrapedAt"] = 1773751377
+ end
+ b = MTH_DS_Beasts[728]
+ if b then
+ b["displayId"] = 613
+ b["npcClass"] = "Elite"
+ b["health"] = 5821
+ b["dmgMin"] = 207.018
+ b["dmgMax"] = 266.506
+ b["armor"] = 1964
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{49.6, 24.03, 33}}
+ b["scrapedAt"] = 1773749063
+ end
+ b = MTH_DS_Beasts[729]
+ if b then
+ b["displayId"] = 471
+ b["health"] = 1827
+ b["dmgMin"] = 66.7012
+ b["dmgMax"] = 84.8925
+ b["armor"] = 1568
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{32.22, 17.38, 33}}
+ b["scrapedAt"] = 1773749811
+ end
+ b = MTH_DS_Beasts[730]
+ if b then
+ b["displayId"] = 8472
+ b["npcClass"] = "Elite"
+ b["health"] = 6450
+ b["dmgMin"] = 402.923
+ b["dmgMax"] = 517.867
+ b["armor"] = 2397
+ b["factionId"] = 48
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{28.74, 44.83, 33}}
+ b["scrapedAt"] = 1773749065
+ end
+ b = MTH_DS_Beasts[731]
+ if b then
+ b["displayId"] = 616
+ b["npcClass"] = "Elite"
+ b["health"] = 6764
+ b["dmgMin"] = 242.249
+ b["dmgMax"] = 310.226
+ b["armor"] = 2397
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{38.2, 35.57, 33}}
+ b["scrapedAt"] = 1773749812
+ end
+ b = MTH_DS_Beasts[736]
+ if b then
+ b["displayId"] = 599
+ b["health"] = 1437
+ b["dmgMin"] = 38.3148
+ b["dmgMax"] = 46.9665
+ b["armor"] = 1287
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{28.17, 16.55, 33}, {28.38, 10.54, 33}, {28.39, 12.3, 33}, {28.8, 14.58, 33}, {29.41, 9.055, 33}, {29.46, 13.59, 33}, {29.77, 16.08, 33}, {30.9, 11.29, 33}, {30.98, 14.58, 33}, {45.79, 10.28, 33}}
+ b["scrapedAt"] = 1773751378
+ end
+ b = MTH_DS_Beasts[756]
+ if b then
+ b["displayId"] = 633
+ b["health"] = 2351
+ b["dmgMin"] = 70.1958
+ b["dmgMax"] = 88.0422
+ b["armor"] = 2033
+ b["factionId"] = 30
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{44.5, 41.54, 33}, {45.05, 41.78, 33}, {45.88, 42.32, 33}}
+ b["scrapedAt"] = 1773749813
+ end
+ b = MTH_DS_Beasts[767]
+ if b then
+ b["displayId"] = 632
+ b["health"] = 1747
+ b["dmgMin"] = 37.5953
+ b["dmgMax"] = 46.0845
+ b["armor"] = 1536
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{12.04, 59.39, 8}, {14.56, 46.05, 8}, {16.7, 60.11, 8}, {20.19, 42.78, 8}, {22.41, 57.89, 8}, {23.46, 60.04, 8}, {23.5, 38.66, 8}, {26.42, 34.28, 8}, {26.42, 47.36, 8}, {27.12, 63.9, 8}, {28.65, 43.56, 8}, {30.0, 52.46, 8}, {31.65, 29.37, 8}, {33.14, 43.17, 8}, {33.35, 35.52, 8}, {33.57, 54.35, 8}, {34.66, 30.22, 8}, {35.84, 53.9, 8}, {36.49, 48.4, 8}, {37.24, 45.13, 8}, {37.45, 37.61, 8}, {39.89, 31.2, 8}, {40.42, 37.29, 8}, {43.51, 41.21, 8}, {47.7, 40.69, 8}, {53.19, 38.4, 8}, {53.76, 41.54, 8}}
+ b["scrapedAt"] = 1773751380
+ end
+ b = MTH_DS_Beasts[768]
+ if b then
+ b["displayId"] = 633
+ b["health"] = 2034
+ b["dmgMin"] = 53.5392
+ b["dmgMax"] = 66.6266
+ b["armor"] = 1899
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{65.36, 67.83, 8}, {69.32, 11.59, 8}, {69.89, 26.3, 8}, {70.98, 10.47, 8}, {74.12, 25.25, 8}, {83.8, 59.0, 8}, {87.24, 28.59, 8}, {88.64, 36.31, 8}, {90.64, 48.93, 8}, {92.95, 44.61, 8}}
+ b["scrapedAt"] = 1773751381
+ end
+ b = MTH_DS_Beasts[769]
+ if b then
+ b["displayId"] = 336
+ b["health"] = 2175
+ b["dmgMin"] = 72.9216
+ b["dmgMax"] = 91.461
+ b["armor"] = 2033
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{55.37, 62.27, 8}, {57.99, 62.46, 8}, {59.38, 60.11, 8}, {60.6, 68.87, 8}, {63.7, 66.39, 8}, {65.31, 69.85, 8}, {67.4, 78.81, 8}, {69.37, 67.3, 8}, {71.28, 68.74, 8}, {72.77, 79.92, 8}, {75.03, 82.8, 8}, {76.17, 88.82, 8}, {76.47, 77.37, 8}, {76.86, 86.66, 8}, {80.22, 83.85, 8}, {81.09, 89.08, 8}}
+ b["scrapedAt"] = 1773751382
+ end
+ b = MTH_DS_Beasts[772]
+ if b then
+ b["displayId"] = 614
+ b["health"] = 1899
+ b["dmgMin"] = 41.6416
+ b["dmgMax"] = 51.1597
+ b["armor"] = 1651
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{35.15, 36.93, 33}, {35.48, 37.99, 33}, {36.02, 33.95, 33}, {36.54, 39.1, 33}, {36.59, 34.82, 33}, {37.62, 33.01, 33}, {38.06, 39.31, 33}, {38.61, 35.69, 33}, {38.72, 37.12, 33}, {39.19, 41.02, 33}, {39.85, 37.59, 33}, {40.32, 31.69, 33}, {40.73, 38.41, 33}, {41.18, 40.86, 33}, {41.23, 36.32, 33}, {41.29, 34.75, 33}, {42.25, 38.13, 33}, {45.44, 26.76, 33}, {45.46, 25.27, 33}, {46.96, 29.55, 33}, {47.57, 27.39, 33}, {47.67, 22.31, 33}, {49.22, 21.58, 33}, {49.25, 20.39, 33}, {49.27, 24.5, 33}, {50.27, 21.77, 33}}
+ b["scrapedAt"] = 1773751383
+ end
+ b = MTH_DS_Beasts[822]
+ if b then
+ b["displayId"] = 1006
+ b["health"] = 215
+ b["dmgMin"] = 15.4
+ b["dmgMax"] = 20.9
+ b["armor"] = 155
+ b["factionId"] = 44
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{22.46, 75.75, 12}, {24.53, 83.36, 12}, {25.54, 90.66, 12}, {28.77, 81.59, 12}, {36.34, 89.15, 12}, {38.27, 89.36, 12}, {43.4, 81.2, 12}, {44.96, 78.13, 12}, {45.91, 85.04, 12}, {46.31, 75.8, 12}, {47.0, 79.64, 12}, {49.22, 75.88, 12}, {49.22, 82.75, 12}, {53.46, 84.74, 12}, {53.95, 75.54, 12}, {56.89, 75.88, 12}, {59.1, 66.9, 12}, {60.17, 79.51, 12}, {62.91, 65.86, 12}, {63.2, 79.17, 12}, {63.25, 77.01, 12}, {64.69, 63.01, 12}, {66.08, 78.78, 12}, {68.55, 66.29, 12}, {70.63, 74.89, 12}, {71.29, 61.28, 12}, {72.85, 80.85, 12}, {75.79, 67.5, 12}, {77.2, 76.66, 12}, {77.92, 61.67, 12}, {78.06, 79.12, 12}, {79.76, 83.23, 12}, {81.12, 77.22, 12}, {82.15, 59.21, 12}, {83.54, 84.7, 12}, {86.36, 78.43, 12}, {86.73, 64.43, 12}, {88.29, 65.64, 12}, {88.84, 77.53, 12}, {39.41, 40.18, 0}, {39.42, 40.05, 0}}
+ b["scrapedAt"] = 1773751384
+ end
+ b = MTH_DS_Beasts[830]
+ if b then
+ b["displayId"] = 342
+ b["health"] = 325
+ b["dmgMin"] = 22.6054
+ b["dmgMax"] = 29.744
+ b["armor"] = 805
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{39.59, 12.9, 40}, {47.53, 10.63, 40}, {47.96, 10.24, 40}, {50.3, 10.97, 40}, {50.53, 10.24, 40}, {50.76, 11.01, 40}}
+ b["scrapedAt"] = 1773751385
+ end
+ b = MTH_DS_Beasts[831]
+ if b then
+ b["displayId"] = 979
+ b["health"] = 391
+ b["dmgMin"] = 27.3645
+ b["dmgMax"] = 35.6928
+ b["armor"] = 896
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{31.13, 24.17, 40}, {32.59, 21.99, 40}, {35.96, 16.67, 40}, {36.59, 16.16, 40}}
+ b["scrapedAt"] = 1773751386
+ end
+ b = MTH_DS_Beasts[833]
+ if b then
+ b["displayId"] = 161
+ b["health"] = 260
+ b["dmgMin"] = 19.837
+ b["dmgMax"] = 25.6714
+ b["armor"] = 573
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{32.59, 40.16, 40}, {33.05, 30.26, 40}, {34.99, 39.09, 40}, {35.25, 42.73, 40}, {35.9, 29.79, 40}, {36.02, 33.56, 40}, {36.56, 36.43, 40}, {37.28, 25.07, 40}, {41.13, 18.04, 40}, {41.73, 26.66, 40}, {46.45, 20.44, 40}, {47.48, 14.79, 40}, {51.96, 35.1, 40}, {60.1, 36.39, 40}, {61.85, 23.4, 40}, {62.08, 32.44, 40}, {62.28, 41.96, 40}}
+ b["scrapedAt"] = 1773751387
+ end
+ b = MTH_DS_Beasts[834]
+ if b then
+ b["displayId"] = 643
+ b["health"] = 231
+ b["dmgMin"] = 16.3363
+ b["dmgMax"] = 22.1707
+ b["armor"] = 538
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{35.39, 42.13, 40}, {35.99, 28.89, 40}, {36.45, 26.01, 40}, {39.56, 20.83, 40}, {39.93, 29.27, 40}, {40.88, 27.73, 40}, {41.48, 34.97, 40}, {41.65, 18.94, 40}, {43.42, 29.14, 40}, {46.25, 31.11, 40}, {47.39, 15.34, 40}, {47.5, 26.44, 40}, {50.53, 45.04, 40}, {50.76, 29.14, 40}, {53.33, 22.46, 40}, {53.33, 38.19, 40}, {54.59, 27.69, 40}, {55.05, 40.67, 40}, {55.39, 30.17, 40}, {56.05, 22.33, 40}, {56.25, 26.74, 40}, {56.99, 18.21, 40}, {58.79, 22.41, 40}, {58.85, 28.07, 40}, {59.05, 10.8, 40}, {59.36, 30.43, 40}, {61.16, 39.64, 40}, {61.56, 26.31, 40}, {61.85, 20.74, 40}, {62.7, 36.39, 40}, {62.7, 42.3, 40}, {17.47, 75.45, 12}, {17.62, 78.48, 12}}
+ b["scrapedAt"] = 1773751389
+ end
+ b = MTH_DS_Beasts[854]
+ if b then
+ b["displayId"] = 615
+ b["health"] = 1747
+ b["dmgMin"] = 75.1905
+ b["dmgMax"] = 94.5945
+ b["armor"] = 1512
+ b["factionId"] = 48
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{30.73, 43.96, 33}, {31.31, 44.64, 33}, {32.11, 43.14, 33}}
+ b["scrapedAt"] = 1773751390
+ end
+ b = MTH_DS_Beasts[855]
+ if b then
+ b["displayId"] = 180
+ b["health"] = 1250
+ b["dmgMin"] = 67.9778
+ b["dmgMax"] = 84.0453
+ b["armor"] = 1220
+ b["factionId"] = 48
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{24.02, 15.71, 33}, {24.16, 16.25, 33}, {24.76, 16.04, 33}}
+ b["scrapedAt"] = 1773751391
+ end
+ b = MTH_DS_Beasts[856]
+ if b then
+ b["displayId"] = 2571
+ b["health"] = 1453
+ b["dmgMin"] = 70.3395
+ b["dmgMax"] = 88.5307
+ b["armor"] = 1321
+ b["factionId"] = 48
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{30.59, 23.46, 33}}
+ b["scrapedAt"] = 1773751393
+ end
+ b = MTH_DS_Beasts[858]
+ if b then
+ b["displayId"] = 2543
+ b["health"] = 1747
+ b["dmgMin"] = 63.063
+ b["dmgMax"] = 78.8288
+ b["armor"] = 1537
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{17.57, 53.37, 8}, {19.75, 52.85, 8}, {21.24, 42.52, 8}, {22.28, 58.93, 8}, {22.5, 37.68, 8}, {22.63, 62.14, 8}, {24.85, 63.97, 8}, {25.38, 59.32, 8}, {25.94, 49.52, 8}, {26.42, 45.85, 8}, {27.64, 43.37, 8}, {28.3, 62.01, 8}, {31.57, 50.5, 8}, {33.18, 28.92, 8}, {34.44, 55.14, 8}, {36.54, 30.81, 8}, {38.8, 37.48, 8}, {43.21, 28.98, 8}, {47.74, 33.75, 8}, {71.41, 29.96, 8}}
+ b["scrapedAt"] = 1773751394
+ end
+ b = MTH_DS_Beasts[922]
+ if b then
+ b["displayId"] = 9571
+ b["health"] = 2175
+ b["dmgMin"] = 72.9216
+ b["dmgMax"] = 91.461
+ b["armor"] = 3023
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{73.64, 5.308, 8}, {78.87, 5.243, 8}, {80.31, 7.401, 8}, {80.44, 93.85, 8}, {81.83, 9.559, 8}, {83.01, 15.44, 8}, {83.19, 84.63, 8}, {84.71, 13.87, 8}, {86.5, 86.33, 8}, {87.98, 20.48, 8}, {88.03, 78.29, 8}, {89.07, 18.26, 8}, {89.81, 80.32, 8}, {90.21, 23.75, 8}}
+ b["scrapedAt"] = 1773751395
+ end
+ b = MTH_DS_Beasts[923]
+ if b then
+ b["displayId"] = 246
+ b["health"] = 735
+ b["dmgMin"] = 41.6416
+ b["dmgMax"] = 51.1597
+ b["armor"] = 992
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{17.79, 65.02, 10}, {18.23, 71.96, 10}, {20.12, 77.68, 10}, {21.98, 78.29, 10}, {22.09, 68.74, 10}, {24.86, 63.96, 10}, {25.72, 74.79, 10}, {26.31, 70.91, 10}, {26.75, 67.57, 10}, {28.35, 62.8, 10}, {32.46, 62.41, 10}, {37.46, 65.41, 10}, {40.38, 64.91, 10}, {42.9, 70.79, 10}, {43.49, 77.35, 10}, {46.83, 63.3, 10}, {47.72, 70.24, 10}, {51.16, 64.07, 10}, {52.05, 72.85, 10}, {53.49, 65.02, 10}, {54.05, 74.07, 10}, {55.94, 64.3, 10}, {56.42, 62.07, 10}, {60.98, 59.24, 10}, {66.09, 23.96, 10}, {67.16, 28.02, 10}, {69.31, 30.07, 10}}
+ b["scrapedAt"] = 1773751396
+ end
+ b = MTH_DS_Beasts[930]
+ if b then
+ b["displayId"] = 368
+ b["health"] = 791
+ b["dmgMin"] = 42.8314
+ b["dmgMax"] = 54.729
+ b["armor"] = 1009
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{26.75, 52.02, 10}, {26.86, 50.24, 10}, {27.72, 40.74, 10}, {30.12, 51.41, 10}, {30.16, 55.18, 10}, {31.53, 42.41, 10}, {31.9, 34.24, 10}, {32.27, 39.35, 10}, {32.79, 51.68, 10}, {32.83, 32.68, 10}, {32.94, 39.52, 10}, {33.42, 45.91, 10}, {35.12, 58.18, 10}, {35.72, 55.8, 10}, {37.23, 57.46, 10}, {77.79, 58.35, 10}, {79.27, 51.41, 10}, {80.38, 54.13, 10}, {82.12, 53.3, 10}, {83.75, 57.57, 10}, {85.94, 52.07, 10}, {86.23, 50.24, 10}}
+ b["scrapedAt"] = 1773751397
+ end
+ b = MTH_DS_Beasts[949]
+ if b then
+ b["displayId"] = 545
+ b["health"] = 871
+ b["dmgMin"] = 46.0845
+ b["dmgMax"] = 56.9993
+ b["armor"] = 1044
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{16.98, 39.57, 10}, {18.16, 43.63, 10}, {21.05, 39.07, 10}, {23.46, 36.68, 10}}
+ b["scrapedAt"] = 1773751399
+ end
+ b = MTH_DS_Beasts[976]
+ if b then
+ b["displayId"] = 320
+ b["health"] = 1437
+ b["dmgMin"] = 38.3148
+ b["dmgMax"] = 46.9665
+ b["armor"] = 1287
+ b["factionId"] = 46
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{45.88, 9.948, 33}}
+ b["scrapedAt"] = 1773751400
+ end
+ b = MTH_DS_Beasts[977]
+ if b then
+ b["displayId"] = 599
+ b["health"] = 1437
+ b["dmgMin"] = 38.3148
+ b["dmgMax"] = 46.9665
+ b["armor"] = 1287
+ b["factionId"] = 46
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{45.74, 9.431, 33}}
+ b["scrapedAt"] = 1773751401
+ end
+ b = MTH_DS_Beasts[1015]
+ if b then
+ b["displayId"] = 670
+ b["health"] = 735
+ b["dmgMin"] = 48.7802
+ b["dmgMax"] = 60.6778
+ b["armor"] = 977
+ b["factionId"] = 48
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{40.08, 21.88, 11}, {40.95, 23.15, 11}, {41.65, 21.81, 11}, {51.4, 28.92, 11}, {53.11, 30.37, 11}, {54.37, 23.22, 11}, {54.68, 25.69, 11}, {55.51, 24.67, 11}, {55.7, 29.97, 11}, {57.03, 37.05, 11}, {57.47, 33.49, 11}, {57.83, 37.63, 11}}
+ b["scrapedAt"] = 1773751402
+ end
+ b = MTH_DS_Beasts[1016]
+ if b then
+ b["displayId"] = 673
+ b["health"] = 791
+ b["dmgMin"] = 49.9699
+ b["dmgMax"] = 63.0573
+ b["armor"] = 1011
+ b["factionId"] = 48
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{30.12, 20.76, 11}, {32.17, 19.52, 11}, {35.56, 24.96, 11}, {38.53, 23.11, 11}, {39.62, 20.97, 11}, {56.23, 22.53, 11}, {56.3, 27.25, 11}, {57.39, 23.44, 11}, {57.8, 35.41, 11}, {59.52, 30.3, 11}, {61.72, 23.11, 11}}
+ b["scrapedAt"] = 1773751403
+ end
+ b = MTH_DS_Beasts[1017]
+ if b then
+ b["displayId"] = 649
+ b["health"] = 871
+ b["dmgMin"] = 54.5737
+ b["dmgMax"] = 67.914
+ b["armor"] = 1049
+ b["factionId"] = 48
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{30.36, 16.76, 11}, {31.2, 16.15, 11}, {32.99, 18.14, 11}, {34.52, 20.65, 11}, {35.36, 21.88, 11}, {37.56, 19.34, 11}, {37.85, 22.82, 11}, {38.22, 19.56, 11}, {56.35, 31.42, 11}, {56.86, 27.61, 11}, {57.47, 27.65, 11}, {58.92, 21.15, 11}, {59.57, 21.3, 11}}
+ b["scrapedAt"] = 1773751405
+ end
+ b = MTH_DS_Beasts[1018]
+ if b then
+ b["displayId"] = 180
+ b["health"] = 999
+ b["dmgMin"] = 48.2024
+ b["dmgMax"] = 60.562
+ b["armor"] = 1112
+ b["factionId"] = 48
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{32.68, 15.28, 11}, {33.62, 17.02, 11}, {35.17, 20.39, 11}, {35.48, 19.52, 11}, {65.11, 28.66, 11}, {66.36, 32.76, 11}, {66.53, 31.89, 11}, {67.16, 37.95, 11}, {67.84, 30.73, 11}, {68.01, 36.28, 11}, {68.73, 27.79, 11}, {69.46, 34.32, 11}, {69.97, 38.71, 11}, {70.28, 29.97, 11}, {71.73, 39.08, 11}}
+ b["scrapedAt"] = 1773751406
+ end
+ b = MTH_DS_Beasts[1019]
+ if b then
+ b["displayId"] = 788
+ b["health"] = 1153
+ b["dmgMin"] = 59.488
+ b["dmgMax"] = 73.7651
+ b["armor"] = 1165
+ b["factionId"] = 48
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{33.67, 14.91, 11}, {33.94, 12.41, 11}, {38.17, 15.89, 11}, {40.1, 18.36, 11}, {67.86, 32.37, 11}, {69.07, 28.23, 11}, {69.29, 32.87, 11}, {70.18, 28.34, 11}, {70.21, 31.82, 11}}
+ b["scrapedAt"] = 1773751407
+ end
+ b = MTH_DS_Beasts[1020]
+ if b then
+ b["displayId"] = 960
+ b["health"] = 682
+ b["dmgMin"] = 46.9665
+ b["dmgMax"] = 60.562
+ b["armor"] = 836
+ b["factionId"] = 48
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{19.77, 52.47, 11}, {20.71, 48.8, 11}, {21.36, 51.88, 11}, {22.96, 50.07, 11}, {23.05, 59.54, 11}, {23.22, 54.1, 11}, {24.55, 46.77, 11}, {25.21, 49.74, 11}, {25.98, 47.46, 11}, {26.37, 46.33, 11}, {28.04, 42.78, 11}, {29.44, 42.38, 11}, {29.66, 46.15, 11}, {31.49, 42.09, 11}, {37.06, 42.23, 11}}
+ b["scrapedAt"] = 1773751408
+ end
+ b = MTH_DS_Beasts[1021]
+ if b then
+ b["displayId"] = 677
+ b["health"] = 791
+ b["dmgMin"] = 42.8314
+ b["dmgMax"] = 54.729
+ b["armor"] = 1002
+ b["factionId"] = 48
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{22.6, 55.84, 11}, {22.76, 50.69, 11}, {23.44, 55.98, 11}, {23.64, 60.41, 11}, {24.22, 52.5, 11}, {26.1, 48.55, 11}, {29.37, 45.35, 11}}
+ b["scrapedAt"] = 1773751409
+ end
+ b = MTH_DS_Beasts[1022]
+ if b then
+ b["displayId"] = 648
+ b["health"] = 871
+ b["dmgMin"] = 54.5737
+ b["dmgMax"] = 67.914
+ b["armor"] = 1064
+ b["factionId"] = 48
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{31.3, 48.47, 11}, {31.83, 46.88, 11}, {32.8, 51.01, 11}, {34.42, 50.91, 11}, {34.44, 45.75, 11}, {35.29, 49.45, 11}, {35.61, 51.85, 11}, {35.7, 44.05, 11}, {36.04, 48.33, 11}}
+ b["scrapedAt"] = 1773751411
+ end
+ b = MTH_DS_Beasts[1023]
+ if b then
+ b["displayId"] = 949
+ b["health"] = 936
+ b["dmgMin"] = 56.8542
+ b["dmgMax"] = 71.6857
+ b["armor"] = 1083
+ b["factionId"] = 48
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{32.2, 48.69, 11}, {33.6, 46.19, 11}, {33.69, 49.82, 11}}
+ b["scrapedAt"] = 1773751412
+ end
+ b = MTH_DS_Beasts[1082]
+ if b then
+ b["displayId"] = 807
+ b["health"] = 1909
+ b["dmgMin"] = 74.1576
+ b["dmgMax"] = 91.461
+ b["armor"] = 1772
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{47.52, 42.98, 8}, {48.4, 39.12, 8}, {53.37, 47.29, 8}, {54.46, 36.37, 8}, {55.02, 49.52, 8}, {56.03, 56.45, 8}, {56.5, 34.54, 8}, {57.68, 46.05, 8}, {59.56, 35.06, 8}, {60.47, 32.19, 8}, {63.31, 31.92, 8}, {69.8, 18.58, 8}, {71.94, 19.83, 8}}
+ b["scrapedAt"] = 1773751414
+ end
+ b = MTH_DS_Beasts[1084]
+ if b then
+ b["displayId"] = 814
+ b["health"] = 1669
+ b["dmgMin"] = 69.2138
+ b["dmgMax"] = 86.5172
+ b["armor"] = 1427
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{24.59, 42.52, 8}, {25.51, 35.91, 8}, {25.86, 52.13, 8}, {27.08, 55.07, 8}, {30.3, 54.75, 8}, {30.43, 38.92, 8}, {31.09, 33.75, 8}, {32.0, 47.16, 8}, {34.05, 32.97, 8}, {34.4, 51.74, 8}, {35.71, 36.83, 8}, {37.58, 51.22, 8}, {38.59, 35.26, 8}, {42.12, 34.41, 8}}
+ b["scrapedAt"] = 1773751415
+ end
+ b = MTH_DS_Beasts[1087]
+ if b then
+ b["displayId"] = 815
+ b["health"] = 2351
+ b["dmgMin"] = 79.7139
+ b["dmgMax"] = 101.13
+ b["armor"] = 2174
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{72.55, 99.93, 8}, {75.08, 14.53, 8}, {75.51, 19.37, 8}, {76.25, 97.32, 8}, {76.39, 0.3381, 8}, {76.73, 5.831, 8}, {77.95, 14.53, 8}, {77.95, 28.39, 8}, {78.0, 23.23, 8}, {79.65, 7.335, 8}, {80.96, 19.76, 8}, {81.18, 23.68, 8}, {82.62, 30.88, 8}, {82.75, 12.31, 8}, {83.32, 36.24, 8}, {83.8, 95.42, 8}, {83.93, 64.75, 8}, {85.37, 63.31, 8}, {86.19, 19.96, 8}, {86.54, 34.08, 8}, {86.63, 56.12, 8}, {87.28, 38.53, 8}, {80.82, 26.21, 4}, {83.74, 26.52, 4}, {99.51, 0.1928, 33}}
+ b["scrapedAt"] = 1773749815
+ end
+ b = MTH_DS_Beasts[1088]
+ if b then
+ b["displayId"] = 699
+ b["health"] = 2121
+ b["dmgMin"] = 27.3645
+ b["dmgMax"] = 35.6928
+ b["armor"] = 695
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{73.77, 98.43, 8}, {78.91, 98.1, 8}, {79.31, 2.365, 8}, {91.34, 19.7, 8}, {92.73, 30.03, 8}, {93.13, 69.92, 8}, {93.56, 35.52, 8}, {93.65, 62.27, 8}, {94.96, 56.05, 8}, {95.92, 46.25, 8}}
+ b["scrapedAt"] = 1773749816
+ end
+ b = MTH_DS_Beasts[1108]
+ if b then
+ b["displayId"] = 843
+ b["health"] = 1763
+ b["dmgMin"] = 67.9778
+ b["dmgMax"] = 84.0453
+ b["armor"] = 1304
+ b["factionId"] = 72
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{36.65, 18.32, 33}, {38.03, 17.59, 33}, {38.28, 15.73, 33}, {38.74, 16.81, 33}}
+ b["scrapedAt"] = 1773751416
+ end
+ b = MTH_DS_Beasts[1109]
+ if b then
+ b["displayId"] = 2305
+ b["health"] = 325
+ b["dmgMin"] = 22.6054
+ b["dmgMax"] = 29.744
+ b["armor"] = 625
+ b["factionId"] = 73
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{29.93, 38.27, 40}, {33.1, 36.81, 40}, {35.19, 64.97, 40}, {35.99, 42.0, 40}, {36.19, 38.01, 40}, {36.96, 69.04, 40}, {38.22, 34.54, 40}, {39.02, 62.32, 40}, {39.08, 25.03, 40}, {39.22, 29.27, 40}, {39.33, 42.04, 40}, {39.68, 39.81, 40}, {40.13, 59.19, 40}, {40.48, 68.06, 40}, {42.76, 50.74, 40}, {43.25, 49.07, 40}, {43.59, 43.76, 40}, {44.73, 53.7, 40}, {45.76, 63.64, 40}, {45.9, 45.39, 40}, {46.9, 51.26, 40}, {48.45, 54.82, 40}, {48.76, 50.79, 40}, {50.25, 61.84, 40}, {50.53, 62.23, 40}, {51.16, 24.9, 40}, {52.33, 59.06, 40}, {55.73, 60.9, 40}, {60.7, 43.63, 40}, {61.13, 46.16, 40}}
+ b["scrapedAt"] = 1773751418
+ end
+ b = MTH_DS_Beasts[1111]
+ if b then
+ b["displayId"] = 711
+ b["health"] = 631
+ b["dmgMin"] = 38.3148
+ b["dmgMax"] = 48.2024
+ b["armor"] = 905
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{46.2, 59.36, 11}, {46.8, 61.97, 11}, {47.91, 59.83, 11}, {49.0, 62.7, 11}, {50.26, 59.54, 11}, {51.71, 63.02, 11}, {54.03, 63.28, 11}, {54.78, 62.77, 11}, {56.16, 60.92, 11}, {56.26, 65.42, 11}, {57.25, 65.31, 11}, {57.32, 66.51, 11}}
+ b["scrapedAt"] = 1773751419
+ end
+ b = MTH_DS_Beasts[1112]
+ if b then
+ b["displayId"] = 955
+ b["npcClass"] = "Rare"
+ b["health"] = 791
+ b["dmgMin"] = 58.2982
+ b["dmgMax"] = 71.3856
+ b["armor"] = 992
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{47.26, 59.21, 11}}
+ b["scrapedAt"] = 1773751420
+ end
+ b = MTH_DS_Beasts[1114]
+ if b then
+ b["displayId"] = 845
+ b["health"] = 2229
+ b["dmgMin"] = 76.1446
+ b["dmgMax"] = 93.991
+ b["armor"] = 380
+ b["factionId"] = 72
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{40.74, 26.0, 33}, {41.21, 28.52, 33}, {41.76, 24.43, 33}, {41.85, 27.58, 33}, {41.89, 30.94, 33}, {41.9, 32.59, 33}, {43.41, 28.71, 33}, {44.06, 32.26, 33}, {44.36, 37.83, 33}, {44.47, 27.2, 33}, {44.52, 28.66, 33}, {44.64, 36.39, 33}, {45.47, 28.61, 33}, {45.57, 34.84, 33}, {46.09, 34.16, 33}, {47.67, 38.04, 33}, {48.08, 37.15, 33}, {48.09, 34.02, 33}, {48.17, 32.7, 33}, {48.2, 35.69, 33}, {48.62, 37.92, 33}, {49.22, 32.42, 33}}
+ b["scrapedAt"] = 1773751421
+ end
+ b = MTH_DS_Beasts[1125]
+ if b then
+ b["displayId"] = 607
+ b["health"] = 112
+ b["dmgMin"] = 7.7
+ b["dmgMax"] = 11
+ b["armor"] = 174
+ b["factionId"] = 189
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{30.05, 54.33, 1}, {31.01, 53.66, 1}, {31.35, 57.9, 1}, {32.69, 57.1, 1}, {35.01, 59.6, 1}, {36.16, 62.13, 1}, {36.47, 63.13, 1}, {36.63, 59.94, 1}, {37.83, 59.75, 1}, {39.41, 63.74, 1}, {40.45, 60.48, 1}, {41.18, 58.29, 1}, {41.87, 60.36, 1}, {41.87, 65.21, 1}, {42.3, 59.91, 1}, {42.34, 56.8, 1}, {43.29, 66.3, 1}, {43.94, 55.82, 1}, {44.23, 52.87, 1}, {44.35, 67.12, 1}, {44.75, 57.56, 1}, {44.9, 62.04, 1}, {45.38, 64.14, 1}, {45.69, 50.22, 1}, {45.75, 57.01, 1}, {46.03, 59.02, 1}, {47.37, 61.22, 1}, {47.64, 64.05, 1}, {48.08, 49.06, 1}, {48.49, 60.12, 1}, {48.57, 58.63, 1}, {49.04, 54.73, 1}, {50.09, 51.87, 1}, {51.8, 58.51, 1}}
+ b["scrapedAt"] = 1773751423
+ end
+ b = MTH_DS_Beasts[1126]
+ if b then
+ b["displayId"] = 381
+ b["health"] = 132
+ b["dmgMin"] = 7.7
+ b["dmgMax"] = 11
+ b["armor"] = 239
+ b["factionId"] = 189
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{34.34, 55.61, 1}, {36.41, 54.21, 1}, {37.28, 52.72, 1}, {38.11, 51.1, 1}, {38.64, 48.64, 1}, {39.55, 46.9, 1}, {41.2, 47.18, 1}, {41.22, 30.52, 1}, {41.65, 39.53, 1}, {43.49, 34.29, 1}, {43.49, 38.01, 1}, {43.9, 29.69, 1}, {45.18, 45.32, 1}, {45.34, 41.66, 1}, {47.25, 63.9, 1}, {48.02, 56.68, 1}, {48.08, 47.24, 1}, {49.42, 62.59, 1}, {49.48, 58.44, 1}, {50.36, 43.22, 1}, {50.48, 52.05, 1}, {50.52, 59.97, 1}, {56.14, 47.72, 1}, {56.81, 52.66, 1}, {58.7, 54.06, 1}, {62.38, 55.12, 1}, {64.14, 53.88, 1}, {65.34, 50.22, 1}, {66.97, 50.31, 1}}
+ b["scrapedAt"] = 1773751424
+ end
+ b = MTH_DS_Beasts[1127]
+ if b then
+ b["displayId"] = 744
+ b["health"] = 151
+ b["dmgMin"] = 9.9
+ b["dmgMax"] = 14.3
+ b["armor"] = 316
+ b["factionId"] = 189
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{25.95, 46.38, 1}, {26.64, 55.06, 1}, {26.72, 42.91, 1}, {27.49, 45.71, 1}, {27.53, 53.94, 1}, {28.04, 42.67, 1}, {29.22, 39.96, 1}, {29.61, 42.42, 1}, {29.61, 49.67, 1}, {30.13, 38.37, 1}, {30.15, 51.93, 1}, {31.03, 35.69, 1}, {32.12, 48.82, 1}, {32.25, 47.08, 1}, {32.39, 34.38, 1}, {33.14, 37.52, 1}, {34.64, 31.46, 1}, {35.49, 34.93, 1}, {35.58, 36.79, 1}, {36.77, 31.15, 1}, {36.98, 34.32, 1}, {37.5, 37.34, 1}, {37.71, 51.87, 1}, {37.81, 45.93, 1}, {39.47, 33.99, 1}, {40.04, 30.52, 1}, {40.45, 47.21, 1}, {42.05, 30.0, 1}, {42.36, 38.89, 1}, {43.58, 29.6, 1}, {44.16, 32.01, 1}, {45.2, 42.15, 1}, {53.34, 58.14, 1}, {55.55, 57.35, 1}, {55.66, 55.73, 1}, {56.55, 60.03, 1}, {56.67, 54.27, 1}, {57.91, 50.4, 1}, {58.21, 51.29, 1}, {59.01, 57.87, 1}, {59.94, 58.54, 1}, {60.79, 53.88, 1}, {60.92, 60.24, 1}, {61.3, 56.68, 1}, {62.76, 56.13, 1}, {63.07, 59.18, 1}, {63.86, 60.42, 1}, {66.13, 53.3, 1}, {66.78, 49.34, 1}, {68.67, 51.71, 1}, {69.71, 50.16, 1}, {70.68, 61.61, 1}, {70.8, 51.56, 1}, {71.53, 55.58, 1}, {72.43, 60.97, 1}, {73.38, 48.67, 1}, {73.48, 52.08, 1}, {74.64, 61.31, 1}, {75.74, 48.18, 1}, {79.21, 57.23, 1}, {79.8, 43.25, 1}, {80.2, 46.23, 1}, {81.46, 35.6, 1}}
+ b["scrapedAt"] = 1773751425
+ end
+ b = MTH_DS_Beasts[1128]
+ if b then
+ b["displayId"] = 8843
+ b["health"] = 134
+ b["dmgMin"] = 7.7
+ b["dmgMax"] = 11
+ b["armor"] = 41
+ b["factionId"] = 44
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{30.38, 55.61, 1}, {30.76, 57.2, 1}, {32.35, 56.04, 1}, {32.49, 57.87, 1}, {35.55, 59.97, 1}, {38.84, 61.95, 1}, {39.62, 59.05, 1}, {39.86, 60.85, 1}, {41.54, 59.88, 1}, {41.69, 60.88, 1}, {41.89, 66.79, 1}, {43.07, 45.9, 1}, {43.51, 58.93, 1}, {43.72, 44.86, 1}, {44.23, 50.95, 1}, {44.73, 55.25, 1}, {45.38, 49.34, 1}, {45.54, 58.2, 1}, {48.08, 49.92, 1}, {49.16, 50.98, 1}, {50.54, 51.74, 1}, {24.97, 77.86, 11}}
+ b["scrapedAt"] = 1773751426
+ end
+ b = MTH_DS_Beasts[1129]
+ if b then
+ b["displayId"] = 719
+ b["health"] = 158
+ b["dmgMin"] = 17.6
+ b["dmgMax"] = 19.8
+ b["armor"] = 84
+ b["factionId"] = 44
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{24.92, 78.08, 11}}
+ b["scrapedAt"] = 1773751427
+ end
+ b = MTH_DS_Beasts[1130]
+ if b then
+ b["displayId"] = 913
+ b["npcClass"] = "Rare"
+ b["health"] = 288
+ b["dmgMin"] = 24.5045
+ b["dmgMax"] = 32.6726
+ b["armor"] = 573
+ b["factionId"] = 44
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{55.64, 58.51, 1}}
+ b["scrapedAt"] = 1773751428
+ end
+ b = MTH_DS_Beasts[1131]
+ if b then
+ b["displayId"] = 785
+ b["health"] = 151
+ b["dmgMin"] = 9.9
+ b["dmgMax"] = 14.3
+ b["armor"] = 316
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{33.48, 43.58, 1}, {33.85, 43.64, 1}, {33.97, 41.27, 1}, {43.23, 47.05, 1}, {44.92, 41.39, 1}, {45.69, 42.27, 1}, {45.97, 47.18, 1}, {48.92, 44.59, 1}, {50.66, 52.54, 1}, {50.95, 44.95, 1}, {51.53, 49.61, 1}, {52.04, 48.64, 1}}
+ b["scrapedAt"] = 1773751429
+ end
+ b = MTH_DS_Beasts[1132]
+ if b then
+ b["displayId"] = 11422
+ b["npcClass"] = "Rare"
+ b["health"] = 231
+ b["dmgMin"] = 19.837
+ b["dmgMax"] = 24.5045
+ b["armor"] = 512
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{34.21, 41.78, 1}}
+ b["scrapedAt"] = 1773751430
+ end
+ b = MTH_DS_Beasts[1133]
+ if b then
+ b["displayId"] = 11416
+ b["health"] = 172
+ b["dmgMin"] = 12.1
+ b["dmgMax"] = 16.5
+ b["armor"] = 406
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{34.17, 41.75, 1}, {34.21, 41.85, 1}}
+ b["scrapedAt"] = 1773751431
+ end
+ b = MTH_DS_Beasts[1138]
+ if b then
+ b["displayId"] = 604
+ b["health"] = 132
+ b["dmgMin"] = 7.7
+ b["dmgMax"] = 11
+ b["armor"] = 239
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{43.25, 46.47, 1}, {45.54, 46.17, 1}, {45.73, 45.99, 1}, {49.73, 44.49, 1}, {51.31, 45.35, 1}}
+ b["scrapedAt"] = 1773751432
+ end
+ b = MTH_DS_Beasts[1140]
+ if b then
+ b["displayId"] = 11316
+ b["npcClass"] = "Rare"
+ b["health"] = 1250
+ b["dmgMin"] = 77.8655
+ b["dmgMax"] = 93.933
+ b["armor"] = 1871
+ b["factionId"] = 48
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{69.92, 29.21, 11}}
+ b["scrapedAt"] = 1773751433
+ end
+ b = MTH_DS_Beasts[1150]
+ if b then
+ b["displayId"] = 1039
+ b["health"] = 1250
+ b["dmgMin"] = 54.3822
+ b["dmgMax"] = 67.9778
+ b["armor"] = 1217
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{32.47, 8.914, 33}, {34.57, 8.091, 33}, {34.58, 10.44, 33}, {35.7, 8.185, 33}, {36.84, 10.49, 33}, {38.72, 11.31, 33}, {39.88, 14.41, 33}, {40.38, 12.25, 33}, {41.01, 13.71, 33}}
+ b["scrapedAt"] = 1773751435
+ end
+ b = MTH_DS_Beasts[1152]
+ if b then
+ b["displayId"] = 833
+ b["health"] = 1669
+ b["dmgMin"] = 61.798
+ b["dmgMax"] = 76.6295
+ b["armor"] = 1426
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{37.84, 32.61, 33}, {38.41, 31.34, 33}, {38.63, 29.79, 33}, {39.41, 24.97, 33}, {39.44, 28.71, 33}, {39.74, 17.49, 33}, {39.83, 15.97, 33}, {39.93, 30.66, 33}, {40.15, 22.88, 33}, {40.19, 27.2, 33}, {40.38, 19.4, 33}, {40.76, 24.66, 33}, {41.31, 21.51, 33}, {41.32, 15.33, 33}, {41.76, 17.45, 33}, {41.93, 15.9, 33}, {42.17, 21.18, 33}, {42.45, 16.65, 33}}
+ b["scrapedAt"] = 1773751436
+ end
+ b = MTH_DS_Beasts[1184]
+ if b then
+ b["displayId"] = 827
+ b["health"] = 325
+ b["dmgMin"] = 21.4157
+ b["dmgMax"] = 32.1235
+ b["armor"] = 625
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{46.34, 72.38, 38}, {50.51, 73.74, 38}, {55.22, 78.25, 38}, {56.6, 65.86, 38}, {62.47, 55.64, 38}, {64.65, 53.3, 38}, {65.63, 50.91, 38}, {67.44, 52.38, 38}, {69.73, 51.62, 38}, {71.18, 50.85, 38}}
+ b["scrapedAt"] = 1773751437
+ end
+ b = MTH_DS_Beasts[1185]
+ if b then
+ b["displayId"] = 520
+ b["health"] = 459
+ b["dmgMin"] = 34.503
+ b["dmgMax"] = 42.8314
+ b["armor"] = 765
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{59.28, 23.29, 38}, {74.29, 34.65, 38}, {74.29, 37.81, 38}, {75.6, 35.9, 38}, {76.14, 37.97, 38}, {78.9, 40.91, 38}}
+ b["scrapedAt"] = 1773751438
+ end
+ b = MTH_DS_Beasts[1186]
+ if b then
+ b["displayId"] = 707
+ b["health"] = 311
+ b["dmgMin"] = 19.837
+ b["dmgMax"] = 25.6714
+ b["armor"] = 297
+ b["factionId"] = 44
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{18.93, 75.42, 38}, {20.71, 77.38, 38}, {23.76, 25.36, 38}, {24.73, 36.45, 38}, {27.16, 10.52, 38}, {27.42, 14.16, 38}, {27.53, 28.68, 38}, {29.37, 40.25, 38}, {30.1, 24.65, 38}, {30.57, 53.84, 38}, {32.46, 29.71, 38}, {37.17, 32.81, 38}, {37.21, 52.81, 38}, {39.45, 74.45, 38}, {39.71, 33.24, 38}, {40.43, 71.73, 38}, {40.79, 52.48, 38}}
+ b["scrapedAt"] = 1773751439
+ end
+ b = MTH_DS_Beasts[1188]
+ if b then
+ b["displayId"] = 762
+ b["health"] = 389
+ b["dmgMin"] = 22.6054
+ b["dmgMax"] = 29.744
+ b["armor"] = 332
+ b["factionId"] = 44
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{40.76, 66.67, 38}, {40.87, 62.22, 38}, {43.11, 63.68, 38}, {43.84, 61.29, 38}, {58.41, 69.06, 38}, {62.51, 43.24, 38}, {63.16, 80.21, 38}, {64.98, 45.25, 38}, {65.45, 69.72, 38}, {65.77, 47.32, 38}, {66.17, 76.02, 38}, {67.88, 49.28, 38}, {67.88, 73.25, 38}, {73.93, 55.31, 38}, {75.34, 68.14, 38}, {75.74, 71.29, 38}, {75.78, 54.88, 38}, {76.11, 51.72, 38}, {78.17, 70.75, 38}, {78.93, 59.06, 38}, {80.78, 64.82, 38}}
+ b["scrapedAt"] = 1773751441
+ end
+ b = MTH_DS_Beasts[1189]
+ if b then
+ b["displayId"] = 762
+ b["health"] = 517
+ b["dmgMin"] = 32.135
+ b["dmgMax"] = 42.0226
+ b["armor"] = 423
+ b["factionId"] = 44
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{37.89, 63.36, 38}, {58.81, 32.32, 38}, {58.92, 28.73, 38}, {63.6, 33.62, 38}, {64.43, 29.44, 38}, {64.87, 34.44, 38}, {68.49, 36.39, 38}, {68.6, 41.45, 38}, {72.23, 37.7, 38}, {73.17, 35.52, 38}, {74.15, 44.71, 38}, {75.74, 44.28, 38}}
+ b["scrapedAt"] = 1773751442
+ end
+ b = MTH_DS_Beasts[1190]
+ if b then
+ b["displayId"] = 704
+ b["health"] = 231
+ b["dmgMin"] = 16.3363
+ b["dmgMax"] = 22.1707
+ b["armor"] = 538
+ b["factionId"] = 189
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{24.26, 21.39, 38}, {25.24, 13.89, 38}, {27.24, 39.06, 38}, {27.71, 26.61, 38}, {28.61, 23.18, 38}, {29.12, 32.75, 38}, {29.88, 36.45, 38}, {29.88, 46.83, 38}, {30.5, 15.36, 38}, {31.8, 24.05, 38}, {32.89, 35.09, 38}, {34.34, 30.47, 38}, {38.15, 34.22, 38}, {38.15, 37.92, 38}, {38.47, 36.12, 38}, {39.49, 29.22, 38}}
+ b["scrapedAt"] = 1773751443
+ end
+ b = MTH_DS_Beasts[1191]
+ if b then
+ b["displayId"] = 3027
+ b["health"] = 364
+ b["dmgMin"] = 24.985
+ b["dmgMax"] = 32.1235
+ b["armor"] = 677
+ b["factionId"] = 189
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{34.16, 62.6, 38}, {38.98, 51.23, 38}, {41.77, 55.26, 38}, {44.2, 62.76, 38}, {49.06, 68.52, 38}, {50.76, 71.51, 38}, {52.47, 74.66, 38}, {56.49, 63.57, 38}, {58.45, 61.24, 38}, {60.23, 65.53, 38}, {62.55, 60.26, 38}, {62.95, 57.49, 38}, {63.49, 47.05, 38}, {64.14, 59.28, 38}, {64.32, 56.89, 38}, {64.98, 63.3, 38}, {65.19, 48.41, 38}, {66.39, 68.85, 38}, {74.47, 52.43, 38}, {74.66, 72.49, 38}, {78.39, 72.11, 38}, {79.4, 61.13, 38}, {79.69, 67.92, 38}, {82.74, 58.36, 38}}
+ b["scrapedAt"] = 1773751444
+ end
+ b = MTH_DS_Beasts[1192]
+ if b then
+ b["displayId"] = 1208
+ b["health"] = 432
+ b["dmgMin"] = 32.135
+ b["dmgMax"] = 42.0226
+ b["armor"] = 748
+ b["factionId"] = 189
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{59.97, 37.86, 38}, {60.19, 33.89, 38}, {60.34, 36.18, 38}, {65.34, 41.94, 38}, {66.32, 40.09, 38}, {67.33, 41.29, 38}, {74.76, 50.64, 38}, {75.71, 46.61, 38}}
+ b["scrapedAt"] = 1773751446
+ end
+ b = MTH_DS_Beasts[1194]
+ if b then
+ b["displayId"] = 410
+ b["health"] = 391
+ b["dmgMin"] = 28.5542
+ b["dmgMax"] = 38.0723
+ b["armor"] = 695
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{73.97, 61.51, 38}, {76.61, 61.73, 38}, {77.01, 64.06, 38}, {77.85, 56.78, 38}, {77.85, 68.9, 38}, {78.68, 70.26, 38}, {80.13, 66.13, 38}, {80.49, 58.63, 38}, {82.96, 59.39, 38}}
+ b["scrapedAt"] = 1773751447
+ end
+ b = MTH_DS_Beasts[1195]
+ if b then
+ b["displayId"] = 827
+ b["health"] = 231
+ b["dmgMin"] = 16.3363
+ b["dmgMax"] = 22.1707
+ b["armor"] = 525
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{19.26, 83.42, 38}, {21.14, 71.57, 38}, {25.31, 37.75, 38}, {27.34, 18.29, 38}, {28.54, 57.0, 38}, {28.69, 30.74, 38}, {29.7, 18.46, 38}, {29.88, 50.69, 38}, {29.99, 19.81, 38}, {30.46, 45.04, 38}, {31.08, 41.56, 38}, {31.11, 52.16, 38}, {32.13, 17.04, 38}, {32.38, 32.59, 38}, {33.54, 40.53, 38}, {34.31, 54.17, 38}, {35.61, 52.81, 38}, {35.94, 34.38, 38}, {36.88, 73.9, 38}, {38.51, 31.56, 38}, {39.42, 74.66, 38}, {39.45, 72.92, 38}}
+ b["scrapedAt"] = 1773751448
+ end
+ b = MTH_DS_Beasts[1196]
+ if b then
+ b["displayId"] = 8840
+ b["health"] = 180
+ b["dmgMin"] = 9.9
+ b["dmgMax"] = 14.3
+ b["armor"] = 122
+ b["factionId"] = 44
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{25.32, 55.73, 1}, {25.5, 46.35, 1}, {25.99, 55.19, 1}, {28.06, 43.09, 1}, {28.06, 54.48, 1}, {28.1, 52.23, 1}, {28.35, 47.51, 1}, {29.3, 41.51, 1}, {29.73, 51.68, 1}, {30.19, 42.24, 1}, {30.5, 59.57, 1}, {30.62, 35.05, 1}, {30.97, 40.81, 1}, {32.29, 49.89, 1}, {32.39, 47.18, 1}, {33.36, 36.79, 1}, {34.58, 30.27, 1}, {35.21, 35.91, 1}, {35.88, 47.14, 1}, {36.18, 30.45, 1}, {37.12, 43.92, 1}, {37.73, 41.57, 1}, {37.77, 33.9, 1}, {38.11, 42.88, 1}, {41.22, 29.14, 1}, {43.82, 28.78, 1}, {46.34, 63.35, 1}, {49.26, 62.25, 1}, {50.24, 59.36, 1}, {50.34, 53.78, 1}, {51.15, 43.12, 1}, {56.25, 43.25, 1}, {58.7, 61.25, 1}, {59.25, 51.96, 1}, {60.96, 56.86, 1}, {64.92, 59.94, 1}, {66.48, 50.46, 1}, {74.76, 48.09, 1}, {80.06, 48.61, 1}}
+ b["scrapedAt"] = 1773751449
+ end
+ b = MTH_DS_Beasts[1199]
+ if b then
+ b["displayId"] = 748
+ b["health"] = 112
+ b["dmgMin"] = 14.3
+ b["dmgMax"] = 24.2
+ b["armor"] = 147
+ b["factionId"] = 66
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{35.55, 60.58, 1}, {36.67, 60.45, 1}, {38.64, 60.67, 1}, {40.2, 58.84, 1}, {40.53, 62.01, 1}, {42.42, 57.9, 1}, {43.01, 56.43, 1}, {43.25, 60.24, 1}, {45.24, 58.44, 1}}
+ b["scrapedAt"] = 1773749825
+ end
+ b = MTH_DS_Beasts[1201]
+ if b then
+ b["displayId"] = 954
+ b["health"] = 151
+ b["dmgMin"] = 9.9
+ b["dmgMax"] = 14.3
+ b["armor"] = 278
+ b["factionId"] = 66
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{25.71, 46.9, 1}, {27.55, 54.76, 1}, {27.62, 42.48, 1}, {28.16, 44.95, 1}, {28.65, 53.54, 1}, {29.1, 49.67, 1}, {29.34, 39.56, 1}, {29.5, 50.8, 1}, {31.21, 39.53, 1}, {32.61, 48.45, 1}, {33.16, 37.79, 1}, {34.4, 47.63, 1}, {34.93, 35.72, 1}, {35.21, 34.99, 1}, {37.54, 36.73, 1}, {37.57, 30.88, 1}, {38.28, 33.53, 1}, {38.38, 38.37, 1}, {40.1, 30.76, 1}, {42.72, 30.94, 1}, {43.96, 30.24, 1}, {47.29, 63.32, 1}, {47.94, 63.16, 1}, {48.29, 56.53, 1}, {48.45, 61.92, 1}, {48.51, 59.11, 1}, {49.93, 60.18, 1}, {53.81, 57.74, 1}, {53.89, 56.53, 1}, {54.66, 57.2, 1}, {55.84, 60.39, 1}, {56.06, 52.66, 1}, {56.47, 54.91, 1}, {56.47, 57.96, 1}, {58.48, 59.63, 1}, {59.45, 55.86, 1}, {59.53, 61.0, 1}, {60.06, 58.81, 1}, {61.83, 56.98, 1}, {62.34, 56.56, 1}, {62.64, 59.14, 1}, {63.58, 60.21, 1}, {78.95, 36.27, 1}, {79.21, 35.33, 1}, {82.21, 37.58, 1}}
+ b["scrapedAt"] = 1773751451
+ end
+ b = MTH_DS_Beasts[1216]
+ if b then
+ b["displayId"] = 9570
+ b["health"] = 459
+ b["dmgMin"] = 32.1235
+ b["dmgMax"] = 40.4518
+ b["armor"] = 986
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{25.59, 64.63, 40}, {25.73, 67.24, 40}, {29.48, 79.24, 40}, {29.93, 81.47, 40}, {30.73, 81.86, 40}, {35.85, 87.9, 40}, {36.73, 88.37, 40}}
+ b["scrapedAt"] = 1773751452
+ end
+ b = MTH_DS_Beasts[1225]
+ if b then
+ b["displayId"] = 706
+ b["npcClass"] = "Elite"
+ b["health"] = 1727
+ b["dmgMin"] = 136.822
+ b["dmgMax"] = 177.274
+ b["armor"] = 852
+ b["factionId"] = 44
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{42.46, 64.66, 38}}
+ b["scrapedAt"] = 1773749832
+ end
+ b = MTH_DS_Beasts[1258]
+ if b then
+ b["displayId"] = 9562
+ b["health"] = 871
+ b["dmgMin"] = 46.0845
+ b["dmgMax"] = 56.9993
+ b["armor"] = 1044
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{50.79, 60.52, 10}, {63.31, 27.68, 10}, {65.49, 31.24, 10}, {67.23, 35.07, 10}, {69.49, 38.18, 10}}
+ b["scrapedAt"] = 1773751453
+ end
+ b = MTH_DS_Beasts[1400]
+ if b then
+ b["displayId"] = 1036
+ b["health"] = 735
+ b["dmgMin"] = 33.3133
+ b["dmgMax"] = 53.5392
+ b["armor"] = 975
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{17.47, 55.73, 11}, {17.74, 53.41, 11}, {18.39, 53.63, 11}, {19.09, 56.64, 11}, {19.26, 58.23, 11}, {20.1, 27.21, 11}, {21.27, 58.09, 11}, {21.7, 25.62, 11}, {24.77, 29.25, 11}, {24.8, 26.85, 11}, {25.38, 44.56, 11}, {28.04, 25.33, 11}, {29.51, 32.55, 11}, {29.83, 26.09, 11}, {32.0, 25.29, 11}, {32.61, 31.57, 11}, {34.57, 28.92, 11}, {35.24, 30.19, 11}, {36.14, 27.5, 11}, {37.47, 31.5, 11}, {37.85, 26.63, 11}, {38.8, 33.2, 11}, {39.72, 31.24, 11}, {40.49, 30.84, 11}, {40.97, 28.37, 11}, {40.97, 34.58, 11}, {41.77, 36.61, 11}, {44.55, 35.85, 11}, {44.96, 30.44, 11}, {46.22, 36.79, 11}, {46.56, 33.49, 11}, {47.45, 31.24, 11}, {48.57, 34.62, 11}}
+ b["scrapedAt"] = 1773751454
+ end
+ b = MTH_DS_Beasts[1417]
+ if b then
+ b["displayId"] = 1035
+ b["health"] = 631
+ b["dmgMin"] = 43.2586
+ b["dmgMax"] = 54.3822
+ b["armor"] = 905
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{13.33, 54.71, 11}, {14.37, 51.56, 11}, {14.42, 59.83, 11}, {15.12, 47.71, 11}, {15.75, 46.37, 11}, {16.84, 52.03, 11}, {18.53, 51.63, 11}, {18.65, 49.31, 11}, {19.74, 45.06, 11}, {21.36, 44.59, 11}, {26.46, 41.15, 11}, {26.66, 32.44, 11}, {27.84, 39.55, 11}, {27.99, 34.36, 11}, {28.74, 33.78, 11}, {29.03, 38.75, 11}, {33.67, 35.41, 11}, {34.47, 37.15, 11}, {36.89, 36.54, 11}, {37.3, 34.62, 11}, {38.63, 35.85, 11}, {40.32, 36.07, 11}, {50.28, 31.97, 11}, {50.89, 37.08, 11}, {52.19, 36.21, 11}, {52.41, 32.66, 11}, {52.41, 39.55, 11}, {53.04, 33.27, 11}, {53.84, 42.49, 11}, {54.73, 31.13, 11}, {55.1, 45.64, 11}, {57.01, 48.29, 11}, {57.3, 47.1, 11}, {58.89, 51.05, 11}, {59.4, 49.42, 11}, {59.64, 53.3, 11}, {60.44, 63.53, 11}, {60.61, 54.71, 11}, {60.95, 61.64, 11}, {62.08, 61.35, 11}, {63.41, 75.32, 11}, {63.58, 65.56, 11}, {64.02, 72.2, 11}, {64.67, 68.86, 11}, {65.98, 72.49, 11}, {66.32, 72.71, 11}}
+ b["scrapedAt"] = 1773751456
+ end
+ b = MTH_DS_Beasts[1504]
+ if b then
+ b["displayId"] = 513
+ b["health"] = 61
+ b["dmgMin"] = 3.3
+ b["dmgMax"] = 5.5
+ b["armor"] = 29
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{27.76, 56.98, 85}, {27.89, 55.19, 85}, {27.96, 60.46, 85}, {29.35, 55.62, 85}, {29.42, 59.44, 85}, {30.59, 56.48, 85}}
+ b["scrapedAt"] = 1773751457
+ end
+ b = MTH_DS_Beasts[1505]
+ if b then
+ b["displayId"] = 30
+ b["health"] = 78
+ b["dmgMin"] = 3.3
+ b["dmgMax"] = 5.5
+ b["armor"] = 59
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{23.58, 58.31, 85}, {23.97, 60.63, 85}, {24.48, 59.73, 85}, {24.97, 59.24, 85}, {26.25, 60.23, 85}}
+ b["scrapedAt"] = 1773751458
+ end
+ b = MTH_DS_Beasts[1508]
+ if b then
+ b["displayId"] = 447
+ b["health"] = 46
+ b["dmgMin"] = 2.2
+ b["dmgMax"] = 2.2
+ b["armor"] = 15
+ b["factionId"] = 32
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{28.95, 68.23, 85}, {29.48, 61.89, 85}, {30.17, 64.02, 85}, {30.92, 62.16, 85}, {31.06, 55.62, 85}, {32.01, 57.54, 85}, {33.03, 67.37, 85}, {34.88, 57.91, 85}}
+ b["scrapedAt"] = 1773751459
+ end
+ b = MTH_DS_Beasts[1509]
+ if b then
+ b["displayId"] = 604
+ b["health"] = 61
+ b["dmgMin"] = 3.3
+ b["dmgMax"] = 5.5
+ b["armor"] = 29
+ b["factionId"] = 32
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{34.57, 58.87, 85}, {34.57, 62.56, 85}, {34.57, 65.21, 85}, {35.92, 56.02, 85}, {36.65, 60.83, 85}, {36.88, 56.91, 85}, {36.9, 63.49, 85}, {37.41, 58.77, 85}, {37.61, 55.98, 85}, {37.69, 60.66, 85}, {37.81, 62.99, 85}}
+ b["scrapedAt"] = 1773751460
+ end
+ b = MTH_DS_Beasts[1511]
+ if b then
+ b["displayId"] = 837
+ b["health"] = 2351
+ b["dmgMin"] = 89.232
+ b["dmgMax"] = 101.13
+ b["armor"] = 2096
+ b["factionId"] = 41
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773749835
+ end
+ b = MTH_DS_Beasts[1512]
+ if b then
+ b["displayId"] = 4732
+ b["health"] = 46
+ b["dmgMin"] = 1.1
+ b["dmgMax"] = 2.2
+ b["armor"] = 16
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{27.87, 67.44, 85}, {28.31, 63.65, 85}, {28.38, 62.59, 85}, {28.62, 69.1, 85}, {29.37, 72.51, 85}, {29.6, 62.22, 85}, {30.19, 65.54, 85}, {30.7, 69.29, 85}, {30.92, 59.73, 85}, {31.54, 56.25, 85}, {32.41, 69.49, 85}, {34.04, 58.24, 85}, {34.22, 68.23, 85}, {34.31, 70.72, 85}, {35.68, 69.26, 85}, {35.7, 71.45, 85}}
+ b["scrapedAt"] = 1773751461
+ end
+ b = MTH_DS_Beasts[1513]
+ if b then
+ b["displayId"] = 9535
+ b["health"] = 78
+ b["dmgMin"] = 3.3
+ b["dmgMax"] = 5.5
+ b["armor"] = 76
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{34.07, 57.34, 85}, {34.09, 65.38, 85}, {34.91, 66.81, 85}, {34.95, 61.39, 85}, {35.11, 66.21, 85}, {36.79, 56.51, 85}, {36.92, 64.38, 85}, {37.08, 61.99, 85}, {37.72, 58.01, 85}, {37.85, 61.99, 85}}
+ b["scrapedAt"] = 1773751462
+ end
+ b = MTH_DS_Beasts[1514]
+ if b then
+ b["displayId"] = 840
+ b["health"] = 2642
+ b["dmgMin"] = 236.762
+ b["dmgMax"] = 304.579
+ b["armor"] = 2696
+ b["factionId"] = 41
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773749836
+ end
+ b = MTH_DS_Beasts[1516]
+ if b then
+ b["displayId"] = 839
+ b["health"] = 2497
+ b["dmgMin"] = 310.226
+ b["dmgMax"] = 400.451
+ b["armor"] = 2496
+ b["factionId"] = 41
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773749840
+ end
+ b = MTH_DS_Beasts[1547]
+ if b then
+ b["displayId"] = 9021
+ b["health"] = 112
+ b["dmgMin"] = 6.6
+ b["dmgMax"] = 8.8
+ b["armor"] = 20
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{38.47, 47.32, 85}, {38.65, 40.28, 85}, {38.73, 43.7, 85}, {39.38, 52.0, 85}, {40.2, 56.38, 85}, {40.44, 41.24, 85}, {40.68, 42.87, 85}, {41.04, 55.75, 85}, {41.35, 49.64, 85}, {41.52, 48.81, 85}, {41.81, 56.25, 85}, {41.88, 42.44, 85}, {42.67, 50.07, 85}, {44.38, 53.33, 85}, {44.47, 57.05, 85}, {46.13, 57.38, 85}, {48.63, 53.69, 85}, {48.98, 58.97, 85}, {49.98, 49.78, 85}, {50.0, 47.35, 85}, {51.11, 50.54, 85}, {55.31, 53.39, 85}, {57.81, 52.73, 85}, {59.49, 56.91, 85}, {59.91, 55.65, 85}, {60.53, 40.45, 85}, {61.02, 44.43, 85}, {61.62, 40.45, 85}, {61.82, 45.63, 85}, {62.86, 38.09, 85}, {62.92, 47.95, 85}, {63.06, 54.02, 85}, {63.34, 50.84, 85}, {64.14, 58.9, 85}, {64.38, 40.15, 85}, {64.43, 48.28, 85}, {64.56, 53.56, 85}, {64.58, 43.14, 85}, {64.85, 61.79, 85}, {65.14, 37.43, 85}, {66.09, 50.34, 85}, {66.49, 56.91, 85}, {67.19, 63.52, 85}, {67.46, 55.05, 85}, {68.39, 57.81, 85}, {68.57, 54.42, 85}, {69.58, 63.78, 85}, {70.6, 65.08, 85}}
+ b["scrapedAt"] = 1773751464
+ end
+ b = MTH_DS_Beasts[1548]
+ if b then
+ b["displayId"] = 9020
+ b["health"] = 151
+ b["dmgMin"] = 7.7
+ b["dmgMax"] = 11
+ b["armor"] = 20
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{40.26, 42.54, 85}, {40.59, 58.44, 85}, {40.99, 61.63, 85}, {41.26, 44.4, 85}, {41.55, 64.51, 85}, {41.99, 67.47, 85}, {42.3, 46.99, 85}, {42.78, 62.42, 85}, {42.83, 58.14, 85}, {43.74, 42.94, 85}, {44.27, 58.24, 85}, {44.6, 40.41, 85}, {44.8, 54.39, 85}, {44.98, 43.9, 85}, {45.09, 60.86, 85}, {45.15, 47.72, 85}, {45.31, 68.5, 85}, {45.82, 64.25, 85}, {46.08, 50.87, 85}, {46.37, 67.73, 85}, {46.75, 60.66, 85}, {46.88, 50.14, 85}, {47.01, 45.46, 85}, {47.72, 63.35, 85}, {47.99, 48.41, 85}, {48.36, 59.04, 85}, {48.49, 63.92, 85}, {49.95, 49.91, 85}, {50.13, 60.93, 85}, {50.62, 62.29, 85}, {50.91, 63.42, 85}, {52.41, 71.35, 85}, {52.48, 74.64, 85}, {53.45, 63.32, 85}, {54.07, 66.94, 85}, {54.93, 71.45, 85}, {55.27, 69.83, 85}, {55.6, 66.11, 85}, {56.64, 64.38, 85}, {57.06, 59.6, 85}, {57.48, 63.02, 85}, {57.97, 60.63, 85}, {58.32, 58.31, 85}, {60.22, 62.19, 85}, {63.39, 33.74, 85}, {65.05, 32.78, 85}, {66.75, 34.8, 85}, {67.59, 31.62, 85}, {68.21, 36.2, 85}, {68.26, 30.72, 85}, {69.03, 59.9, 85}, {69.67, 28.53, 85}, {70.36, 36.07, 85}, {71.77, 38.02, 85}, {71.93, 61.86, 85}, {72.0, 52.1, 85}, {72.06, 29.49, 85}, {72.2, 40.25, 85}, {72.57, 49.24, 85}, {72.59, 43.67, 85}, {72.66, 46.49, 85}, {72.75, 28.5, 85}, {72.84, 61.53, 85}, {72.86, 56.91, 85}, {72.97, 41.44, 85}, {73.26, 31.68, 85}, {74.43, 36.0, 85}, {74.54, 37.66, 85}, {74.54, 54.36, 85}, {74.63, 44.27, 85}, {74.87, 46.06, 85}, {75.56, 33.05, 85}, {75.8, 54.29, 85}, {76.18, 52.43, 85}, {76.44, 31.05, 85}, {78.02, 32.68, 85}, {78.88, 59.1, 85}, {80.23, 58.64, 85}, {17.76, 57.02, 28}, {18.41, 51.48, 28}, {18.76, 60.9, 28}, {19.55, 57.37, 28}, {19.99, 55.1, 28}, {20.25, 61.21, 28}, {20.95, 59.81, 28}, {21.69, 53.5, 28}, {22.18, 50.85, 28}, {22.36, 48.3, 28}, {23.25, 54.23, 28}, {23.83, 47.29, 28}, {24.62, 59.33, 28}, {24.64, 51.58, 28}, {37.23, 40.3, 1497}}
+ b["scrapedAt"] = 1773751464
+ end
+ b = MTH_DS_Beasts[1549]
+ if b then
+ b["displayId"] = 3916
+ b["health"] = 206
+ b["dmgMin"] = 15.1694
+ b["dmgMax"] = 19.837
+ b["armor"] = 459
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{79.59, 49.54, 85}, {80.16, 42.44, 85}, {81.47, 45.16, 85}, {82.97, 50.41, 85}, {83.19, 47.39, 85}, {83.26, 41.74, 85}, {83.61, 46.06, 85}, {83.88, 44.23, 85}, {84.41, 41.48, 85}, {87.4, 46.06, 85}, {88.86, 44.96, 85}, {90.3, 47.15, 85}, {31.88, 27.44, 28}}
+ b["scrapedAt"] = 1773751466
+ end
+ b = MTH_DS_Beasts[1550]
+ if b then
+ b["displayId"] = 8802
+ b["health"] = 2351
+ b["dmgMin"] = 72.5754
+ b["dmgMax"] = 92.8013
+ b["armor"] = 2246
+ b["factionId"] = 49
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{37.84, 49.86, 33}, {38.8, 44.93, 33}, {39.06, 50.4, 33}, {39.06, 52.0, 33}, {39.27, 47.09, 33}, {40.4, 48.69, 33}, {40.9, 51.32, 33}, {41.34, 50.54, 33}}
+ b["scrapedAt"] = 1773749846
+ end
+ b = MTH_DS_Beasts[1551]
+ if b then
+ b["displayId"] = 2174
+ b["health"] = 2545
+ b["dmgMin"] = 182.034
+ b["dmgMax"] = 236.762
+ b["armor"] = 5106
+ b["factionId"] = 49
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{42.07, 46.99, 33}, {42.7, 45.82, 33}, {42.76, 48.92, 33}, {43.48, 45.91, 33}, {43.63, 46.71, 33}, {43.89, 49.09, 33}}
+ b["scrapedAt"] = 1773749854
+ end
+ b = MTH_DS_Beasts[1552]
+ if b then
+ b["displayId"] = 12342
+ b["npcClass"] = "Rare"
+ b["health"] = 2638
+ b["dmgMin"] = 296.63
+ b["dmgMax"] = 383.148
+ b["armor"] = 4059
+ b["factionId"] = 49
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{43.44, 45.7, 33}}
+ b["scrapedAt"] = 1773749858
+ end
+ b = MTH_DS_Beasts[1553]
+ if b then
+ b["displayId"] = 4734
+ b["health"] = 132
+ b["dmgMin"] = 7.7
+ b["dmgMax"] = 11
+ b["armor"] = 239
+ b["factionId"] = 15
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{36.5, 47.29, 85}, {37.45, 46.42, 85}, {37.52, 38.76, 85}, {37.94, 43.93, 85}, {39.31, 42.24, 85}, {40.06, 52.66, 85}, {40.13, 55.65, 85}, {41.1, 42.24, 85}, {41.15, 47.45, 85}, {41.46, 56.95, 85}, {41.72, 57.44, 85}, {41.79, 40.35, 85}, {41.92, 53.69, 85}, {42.34, 44.2, 85}, {42.76, 47.68, 85}, {44.6, 49.44, 85}, {45.55, 58.9, 85}, {45.86, 54.42, 85}, {46.59, 58.01, 85}, {46.68, 60.17, 85}, {46.81, 50.31, 85}, {47.25, 46.42, 85}, {47.37, 55.29, 85}, {47.94, 45.1, 85}, {48.83, 57.71, 85}, {48.87, 55.05, 85}, {49.22, 59.63, 85}, {49.51, 49.71, 85}, {50.0, 48.55, 85}, {50.91, 59.34, 85}, {51.37, 49.58, 85}, {51.88, 48.41, 85}, {52.5, 63.52, 85}, {53.65, 64.98, 85}, {54.09, 61.73, 85}, {55.75, 61.03, 85}, {56.33, 57.48, 85}, {56.62, 62.95, 85}, {56.86, 55.75, 85}, {57.43, 59.73, 85}, {57.99, 55.25, 85}, {58.56, 56.18, 85}, {59.98, 41.84, 85}, {60.36, 60.86, 85}, {60.47, 43.17, 85}, {60.91, 38.49, 85}, {61.11, 56.32, 85}, {62.24, 56.58, 85}, {62.48, 41.78, 85}, {62.5, 43.57, 85}, {62.9, 35.83, 85}, {63.17, 38.72, 85}, {63.19, 49.74, 85}, {63.3, 47.09, 85}, {63.81, 61.46, 85}, {64.3, 46.02, 85}, {64.78, 50.17, 85}, {65.18, 41.74, 85}, {65.42, 38.59, 85}, {65.49, 56.61, 85}, {65.89, 53.26, 85}, {66.55, 53.63, 85}, {66.69, 62.26, 85}, {67.06, 56.58, 85}, {67.08, 51.83, 85}, {68.26, 62.85, 85}, {69.03, 53.89, 85}, {71.0, 63.82, 85}}
+ b["scrapedAt"] = 1773751467
+ end
+ b = MTH_DS_Beasts[1554]
+ if b then
+ b["displayId"] = 8808
+ b["health"] = 172
+ b["dmgMin"] = 12.1
+ b["dmgMax"] = 16.5
+ b["armor"] = 406
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{41.63, 60.9, 85}, {41.63, 63.35, 85}, {42.08, 59.37, 85}, {42.19, 58.61, 85}, {43.14, 67.07, 85}, {43.25, 63.05, 85}, {43.96, 68.07, 85}, {44.44, 62.59, 85}, {44.93, 63.15, 85}, {47.54, 62.19, 85}, {47.96, 67.83, 85}, {48.63, 63.59, 85}, {49.14, 59.83, 85}, {50.73, 61.73, 85}, {51.92, 63.39, 85}, {52.9, 63.65, 85}, {64.49, 36.56, 85}, {65.8, 34.97, 85}, {66.18, 31.72, 85}, {67.48, 34.04, 85}, {68.54, 28.27, 85}, {69.65, 34.8, 85}, {69.69, 30.49, 85}, {69.78, 60.66, 85}, {70.16, 53.69, 85}, {70.51, 61.26, 85}, {70.96, 58.41, 85}, {71.13, 36.93, 85}, {71.24, 46.76, 85}, {71.24, 50.07, 85}, {71.82, 31.59, 85}, {71.91, 33.74, 85}, {72.66, 65.34, 85}, {72.68, 47.09, 85}, {72.75, 58.31, 85}, {72.75, 62.59, 85}, {72.79, 30.56, 85}, {73.04, 39.32, 85}, {73.26, 29.23, 85}, {73.26, 40.61, 85}, {73.68, 33.91, 85}, {73.97, 67.37, 85}, {74.74, 44.23, 85}, {75.38, 35.1, 85}, {75.45, 47.15, 85}, {75.65, 55.78, 85}, {75.78, 51.27, 85}, {76.38, 30.32, 85}, {78.97, 45.89, 85}, {79.23, 59.0, 85}, {79.25, 48.71, 85}, {80.03, 44.53, 85}, {80.49, 59.27, 85}, {80.65, 46.29, 85}, {82.22, 52.76, 85}, {82.88, 42.64, 85}, {83.04, 44.33, 85}, {83.57, 48.38, 85}, {83.73, 51.6, 85}, {84.12, 43.07, 85}, {84.61, 40.81, 85}, {90.36, 44.83, 85}, {17.11, 58.73, 28}, {18.46, 59.71, 28}, {19.16, 50.57, 28}, {19.43, 53.15, 28}, {21.71, 60.76, 28}, {21.83, 56.88, 28}, {21.88, 51.48, 28}, {21.99, 49.21, 28}, {22.5, 57.93, 28}, {23.29, 49.1, 28}, {23.29, 60.09, 28}, {23.39, 51.13, 28}, {23.92, 53.4, 28}, {25.25, 61.63, 28}, {25.34, 51.48, 28}, {25.55, 52.94, 28}, {28.29, 24.69, 28}, {30.85, 26.29, 28}, {32.34, 28.59, 28}}
+ b["scrapedAt"] = 1773751469
+ end
+ b = MTH_DS_Beasts[1555]
+ if b then
+ b["displayId"] = 368
+ b["health"] = 206
+ b["dmgMin"] = 15.1694
+ b["dmgMax"] = 19.837
+ b["armor"] = 459
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{83.39, 55.59, 85}, {83.66, 52.43, 85}, {83.77, 55.39, 85}, {85.16, 48.35, 85}, {85.65, 52.56, 85}, {85.96, 52.56, 85}, {87.38, 49.31, 85}, {87.42, 56.08, 85}, {87.51, 53.86, 85}, {88.88, 53.76, 85}, {89.5, 52.56, 85}, {90.3, 49.28, 85}, {91.74, 49.54, 85}}
+ b["scrapedAt"] = 1773751470
+ end
+ b = MTH_DS_Beasts[1557]
+ if b then
+ b["displayId"] = 838
+ b["health"] = 2175
+ b["dmgMin"] = 72.9216
+ b["dmgMax"] = 91.461
+ b["armor"] = 2101
+ b["factionId"] = 72
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{30.85, 60.02, 33}, {30.88, 66.72, 33}, {31.17, 67.92, 33}, {31.35, 60.7, 33}, {31.43, 65.35, 33}, {31.9, 67.56, 33}, {32.44, 57.97, 33}, {32.45, 59.12, 33}, {33.49, 65.45, 33}, {33.61, 62.23, 33}, {34.02, 64.53, 33}, {34.14, 66.36, 33}, {34.41, 62.51, 33}, {34.97, 64.44, 33}}
+ b["scrapedAt"] = 1773751471
+ end
+ b = MTH_DS_Beasts[1558]
+ if b then
+ b["displayId"] = 844
+ b["health"] = 2402
+ b["dmgMin"] = 80.3374
+ b["dmgMax"] = 102.585
+ b["armor"] = 2397
+ b["factionId"] = 72
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{35.46, 63.31, 33}, {35.51, 62.7, 33}, {36.28, 63.87, 33}, {36.4, 62.39, 33}, {37.75, 62.16, 33}, {37.89, 59.95, 33}}
+ b["scrapedAt"] = 1773749864
+ end
+ b = MTH_DS_Beasts[1559]
+ if b then
+ b["displayId"] = 792
+ b["npcClass"] = "Elite"
+ b["health"] = 13635
+ b["dmgMin"] = 360.9
+ b["dmgMax"] = 465.957
+ b["armor"] = 2246
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{40.95, 83.88, 33}}
+ b["scrapedAt"] = 1773749866
+ end
+ b = MTH_DS_Beasts[1688]
+ if b then
+ b["displayId"] = 368
+ b["health"] = 112
+ b["dmgMin"] = 6.6
+ b["dmgMax"] = 7.7
+ b["armor"] = 200
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{23.97, 58.21, 85}}
+ b["scrapedAt"] = 1773751472
+ end
+ b = MTH_DS_Beasts[1689]
+ if b then
+ b["displayId"] = 193
+ b["health"] = 206
+ b["dmgMin"] = 15.1694
+ b["dmgMax"] = 19.837
+ b["armor"] = 512
+ b["factionId"] = 189
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{70.86, 61.34, 1}, {71.15, 54.03, 1}, {72.96, 59.88, 1}, {73.48, 50.62, 1}, {73.48, 55.15, 1}, {73.97, 52.99, 1}, {74.93, 60.82, 1}, {75.66, 57.77, 1}, {75.7, 49.82, 1}, {78.72, 59.3, 1}, {78.86, 49.49, 1}, {79.37, 55.79, 1}, {79.6, 51.87, 1}, {80.06, 43.86, 1}, {80.14, 34.69, 1}, {80.14, 47.51, 1}, {80.81, 35.24, 1}, {81.04, 43.89, 1}, {81.34, 53.08, 1}, {81.59, 55.43, 1}, {82.68, 35.48, 1}, {83.19, 38.13, 1}, {84.87, 50.65, 1}, {86.26, 47.48, 1}, {86.66, 50.22, 1}}
+ b["scrapedAt"] = 1773751473
+ end
+ b = MTH_DS_Beasts[1693]
+ if b then
+ b["displayId"] = 1034
+ b["health"] = 364
+ b["dmgMin"] = 24.985
+ b["dmgMax"] = 32.1235
+ b["armor"] = 660
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{51.16, 34.87, 38}, {53.95, 55.15, 38}, {54.53, 41.67, 38}, {55.66, 35.96, 38}, {56.27, 37.54, 38}, {56.42, 52.54, 38}, {56.53, 36.39, 38}, {57.4, 31.61, 38}, {58.31, 23.95, 38}, {59.97, 41.72, 38}, {61.86, 45.36, 38}, {62.44, 51.51, 38}}
+ b["scrapedAt"] = 1773751475
+ end
+ b = MTH_DS_Beasts[1713]
+ if b then
+ b["displayId"] = 11452
+ b["health"] = 2402
+ b["dmgMin"] = 59.3261
+ b["dmgMax"] = 76.6295
+ b["armor"] = 2322
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{29.77, 58.0, 33}, {31.17, 58.54, 33}, {35.43, 55.65, 33}, {35.65, 57.76, 33}, {36.06, 58.37, 33}, {36.28, 55.25, 33}}
+ b["scrapedAt"] = 1773749868
+ end
+ b = MTH_DS_Beasts[1765]
+ if b then
+ b["displayId"] = 11421
+ b["health"] = 231
+ b["dmgMin"] = 17.5032
+ b["dmgMax"] = 24.5045
+ b["armor"] = 538
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{43.19, 52.38, 130}, {44.24, 47.88, 130}, {45.76, 50.2, 130}, {46.45, 45.88, 130}, {47.93, 48.13, 130}, {57.98, 8.31, 130}, {63.71, 7.452, 130}, {63.83, 11.13, 130}, {64.81, 5.917, 130}, {65.98, 10.38, 130}, {67.6, 8.417, 130}, {68.93, 5.488, 130}, {69.1, 7.81, 130}, {53.21, 74.77, 85}, {37.86, 53.42, 1497}}
+ b["scrapedAt"] = 1773751476
+ end
+ b = MTH_DS_Beasts[1766]
+ if b then
+ b["displayId"] = 246
+ b["health"] = 260
+ b["dmgMin"] = 19.837
+ b["dmgMax"] = 26.8382
+ b["armor"] = 573
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{44.55, 25.42, 130}, {44.55, 26.81, 130}, {47.05, 22.77, 130}, {47.5, 21.85, 130}, {47.57, 25.74, 130}, {48.95, 20.06, 130}, {49.17, 22.49, 130}, {49.38, 15.42, 130}, {50.07, 13.63, 130}, {50.55, 17.92, 130}, {50.86, 19.52, 130}, {54.5, 12.81, 130}, {55.52, 17.35, 130}, {56.19, 12.49, 130}, {57.1, 10.81, 130}, {57.43, 15.85, 130}, {58.48, 6.81, 130}, {58.93, 10.56, 130}, {59.26, 13.6, 130}, {59.55, 16.06, 130}, {61.02, 9.06, 130}, {61.26, 11.95, 130}, {63.14, 10.95, 130}}
+ b["scrapedAt"] = 1773751477
+ end
+ b = MTH_DS_Beasts[1778]
+ if b then
+ b["displayId"] = 902
+ b["health"] = 311
+ b["dmgMin"] = 19.837
+ b["dmgMax"] = 25.6714
+ b["armor"] = 297
+ b["factionId"] = 44
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{44.5, 24.67, 130}, {44.62, 50.42, 130}, {45.05, 51.88, 130}, {46.02, 26.06, 130}, {46.33, 49.67, 130}, {46.98, 46.49, 130}, {47.33, 33.02, 130}, {47.48, 19.74, 130}, {47.95, 23.27, 130}, {48.76, 32.92, 130}, {48.79, 26.27, 130}, {49.07, 14.24, 130}, {49.38, 17.42, 130}, {49.98, 19.95, 130}, {50.14, 36.2, 130}, {50.43, 18.52, 130}, {50.6, 40.85, 130}, {50.79, 44.92, 130}, {51.05, 14.95, 130}, {51.29, 38.77, 130}, {54.29, 38.2, 130}, {54.55, 43.92, 130}, {55.19, 44.17, 130}}
+ b["scrapedAt"] = 1773751479
+ end
+ b = MTH_DS_Beasts[1780]
+ if b then
+ b["displayId"] = 827
+ b["health"] = 294
+ b["dmgMin"] = 20.2259
+ b["dmgMax"] = 26.1747
+ b["armor"] = 591
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{34.19, 15.24, 130}, {34.81, 12.74, 130}, {36.14, 14.1, 130}, {37.21, 15.92, 130}}
+ b["scrapedAt"] = 1773751480
+ end
+ b = MTH_DS_Beasts[1781]
+ if b then
+ b["displayId"] = 760
+ b["health"] = 325
+ b["dmgMin"] = 22.6054
+ b["dmgMax"] = 29.744
+ b["armor"] = 625
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{34.52, 9.953, 130}, {35.5, 11.63, 130}, {36.02, 8.988, 130}}
+ b["scrapedAt"] = 1773751481
+ end
+ b = MTH_DS_Beasts[1797]
+ if b then
+ b["displayId"] = 820
+ b["health"] = 352
+ b["dmgMin"] = 20.2259
+ b["dmgMax"] = 26.1747
+ b["armor"] = 315
+ b["factionId"] = 44
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{35.19, 19.56, 130}, {35.45, 17.24, 130}, {36.69, 21.52, 130}, {37.1, 17.7, 130}, {39.02, 13.56, 130}, {39.71, 14.92, 130}, {41.62, 18.02, 130}, {42.52, 19.52, 130}, {43.6, 18.81, 130}, {44.4, 17.06, 130}, {45.29, 16.17, 130}, {49.4, 70.31, 130}, {50.19, 69.35, 130}, {50.95, 67.85, 130}, {51.36, 55.31, 130}, {51.55, 53.95, 130}, {51.57, 62.45, 130}, {51.62, 59.06, 130}, {52.48, 61.24, 130}, {52.9, 67.02, 130}, {52.93, 51.77, 130}, {54.26, 56.24, 130}, {54.69, 69.45, 130}, {55.55, 70.95, 130}, {55.62, 51.7, 130}, {56.12, 67.06, 130}}
+ b["scrapedAt"] = 1773751483
+ end
+ b = MTH_DS_Beasts[1809]
+ if b then
+ b["displayId"] = 1105
+ b["health"] = 3559
+ b["dmgMin"] = 108.764
+ b["dmgMax"] = 132.247
+ b["armor"] = 3108
+ b["factionId"] = 73
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{29.88, 54.69, 28}, {32.25, 62.4, 28}}
+ b["scrapedAt"] = 1773749869
+ end
+ b = MTH_DS_Beasts[1815]
+ if b then
+ b["displayId"] = 1082
+ b["health"] = 4249
+ b["dmgMin"] = 107.529
+ b["dmgMax"] = 134.719
+ b["armor"] = 2347
+ b["factionId"] = 44
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{28.67, 58.94, 28}, {29.32, 61.63, 28}, {30.18, 54.48, 28}, {31.27, 60.16, 28}, {31.81, 56.67, 28}, {31.85, 61.7, 28}, {32.67, 55.24, 28}, {33.41, 65.78, 28}, {33.9, 52.77, 28}, {34.2, 62.12, 28}, {34.76, 54.2, 28}, {34.81, 58.8, 28}, {36.32, 68.01, 28}, {36.34, 65.64, 28}, {37.06, 66.93, 28}, {37.22, 62.36, 28}, {37.92, 65.53, 28}, {38.95, 62.36, 28}}
+ b["scrapedAt"] = 1773749871
+ end
+ b = MTH_DS_Beasts[1816]
+ if b then
+ b["displayId"] = 1083
+ b["health"] = 4576
+ b["dmgMin"] = 115.364
+ b["dmgMax"] = 142.718
+ b["armor"] = 2513
+ b["factionId"] = 44
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{52.22, 54.34, 28}, {52.53, 58.42, 28}, {52.85, 49.56, 28}, {53.39, 48.3, 28}, {53.39, 60.06, 28}, {54.95, 45.83, 28}, {55.78, 58.59, 28}, {55.78, 63.58, 28}, {56.71, 62.12, 28}, {57.11, 53.47, 28}, {57.13, 51.02, 28}, {57.69, 58.45, 28}, {57.83, 52.98, 28}, {58.04, 60.13, 28}, {58.99, 51.62, 28}, {60.43, 54.13, 28}, {60.46, 51.97, 28}, {61.88, 47.05, 28}, {63.71, 49.77, 28}, {65.29, 50.29, 28}, {65.71, 53.64, 28}, {65.85, 44.05, 28}, {66.25, 47.81, 28}, {66.55, 56.47, 28}, {66.74, 53.4, 28}, {67.55, 46.1, 28}}
+ b["scrapedAt"] = 1773749872
+ end
+ b = MTH_DS_Beasts[1817]
+ if b then
+ b["displayId"] = 4124
+ b["health"] = 3792
+ b["dmgMin"] = 110.607
+ b["dmgMax"] = 136.772
+ b["armor"] = 3216
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{39.62, 48.48, 28}, {42.57, 56.33, 28}, {43.46, 55.17, 28}, {44.78, 47.05, 28}, {44.88, 49.52, 28}, {44.95, 32.15, 28}, {44.95, 40.31, 28}, {45.67, 43.87, 28}, {45.88, 36.72, 28}, {46.57, 29.67, 28}, {47.27, 28.31, 28}, {47.34, 39.06, 28}, {47.41, 43.77, 28}, {48.02, 47.29, 28}, {48.11, 27.27, 28}, {49.36, 59.57, 28}, {49.64, 37.8, 28}, {50.32, 46.94, 28}, {50.34, 34.52, 28}, {51.13, 53.08, 28}, {51.83, 46.98, 28}, {51.95, 61.03, 28}, {52.53, 70.45, 28}}
+ b["scrapedAt"] = 1773749874
+ end
+ b = MTH_DS_Beasts[1821]
+ if b then
+ b["displayId"] = 1091
+ b["health"] = 3809
+ b["dmgMin"] = 110
+ b["dmgMax"] = 137.192
+ b["armor"] = 3136
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{43.13, 46.77, 28}, {44.9, 42.51, 28}, {44.95, 37.63, 28}, {44.95, 59.85, 28}, {46.39, 59.88, 28}, {46.46, 42.69, 28}, {46.6, 37.84, 28}, {47.22, 46.03, 28}, {47.34, 41.29, 28}, {48.55, 58.49, 28}, {48.57, 60.27, 28}, {48.76, 39.02, 28}, {48.92, 28.35, 28}, {48.95, 36.72, 28}, {50.29, 63.48, 28}, {51.02, 32.95, 28}, {51.09, 64.38, 28}, {51.18, 30.97, 28}, {51.22, 50.64, 28}, {51.5, 60.55, 28}}
+ b["scrapedAt"] = 1773749875
+ end
+ b = MTH_DS_Beasts[1822]
+ if b then
+ b["displayId"] = 1087
+ b["health"] = 3425
+ b["dmgMin"] = 107.529
+ b["dmgMax"] = 132.247
+ b["armor"] = 3026
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{28.92, 56.01, 28}, {29.11, 59.26, 28}, {29.76, 56.71, 28}, {29.99, 60.97, 28}, {32.55, 64.66, 28}, {33.18, 54.09, 28}, {33.41, 59.01, 28}, {33.41, 61.45, 28}, {34.27, 57.58, 28}, {35.53, 66.86, 28}, {35.76, 62.26, 28}, {37.13, 64.7, 28}, {37.92, 61.31, 28}, {39.88, 62.08, 28}}
+ b["scrapedAt"] = 1773749876
+ end
+ b = MTH_DS_Beasts[1824]
+ if b then
+ b["displayId"] = 1088
+ b["health"] = 3841
+ b["dmgMin"] = 111.92
+ b["dmgMax"] = 139.016
+ b["armor"] = 3244
+ b["factionId"] = 312
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{52.67, 51.69, 28}, {54.25, 47.15, 28}, {54.92, 62.26, 28}, {54.97, 50.71, 28}, {55.64, 54.02, 28}, {55.78, 49.59, 28}, {56.55, 60.02, 28}, {56.62, 57.55, 28}, {58.81, 50.57, 28}, {58.88, 53.92, 28}, {59.11, 59.57, 28}, {60.78, 53.57, 28}, {60.83, 51.06, 28}, {62.69, 50.33, 28}, {63.29, 46.45, 28}, {63.55, 45.2, 28}, {64.36, 49.73, 28}, {65.11, 46.45, 28}, {65.95, 57.44, 28}, {66.11, 45.83, 28}, {66.39, 54.55, 28}, {66.78, 49.94, 28}, {67.2, 48.2, 28}, {68.04, 45.55, 28}}
+ b["scrapedAt"] = 1773749877
+ end
+ b = MTH_DS_Beasts[1922]
+ if b then
+ b["displayId"] = 380
+ b["health"] = 151
+ b["dmgMin"] = 9.9
+ b["dmgMax"] = 13.2
+ b["armor"] = 316
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{59.68, 65.39, 12}, {60.06, 64.26, 12}, {60.4, 59.68, 12}, {61.29, 66.77, 12}, {61.81, 61.11, 12}, {62.22, 70.92, 12}, {63.11, 68.93, 12}, {64.58, 60.29, 12}, {65.1, 64.35, 12}, {67.58, 62.23, 12}, {68.12, 57.87, 12}, {68.15, 65.82, 12}, {68.99, 57.39, 12}, {71.38, 61.06, 12}, {71.58, 66.42, 12}, {74.0, 68.88, 12}, {74.17, 64.91, 12}}
+ b["scrapedAt"] = 1773751484
+ end
+ b = MTH_DS_Beasts[1923]
+ if b then
+ b["displayId"] = 741
+ b["health"] = 432
+ b["dmgMin"] = 33.3709
+ b["dmgMax"] = 42.0226
+ b["armor"] = 748
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{44.6, 80.67, 130}, {45.93, 79.31, 130}, {46.69, 77.1, 130}, {48.93, 81.95, 130}, {49.69, 84.2, 130}, {49.79, 77.67, 130}, {49.83, 73.95, 130}, {50.24, 84.85, 130}, {51.6, 76.42, 130}, {51.69, 79.45, 130}, {52.48, 81.85, 130}, {55.05, 80.27, 130}}
+ b["scrapedAt"] = 1773751485
+ end
+ b = MTH_DS_Beasts[1961]
+ if b then
+ b["displayId"] = 913
+ b["health"] = 260
+ b["dmgMin"] = 18.6701
+ b["dmgMax"] = 22.1707
+ b["armor"] = 538
+ b["factionId"] = 44
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{78.3, 37.73, 1}}
+ b["scrapedAt"] = 1773751486
+ end
+ b = MTH_DS_Beasts[1984]
+ if b then
+ b["displayId"] = 8869
+ b["health"] = 46
+ b["dmgMin"] = 1.1
+ b["dmgMax"] = 2.2
+ b["armor"] = 16
+ b["factionId"] = 189
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{55.61, 41.94, 141}, {56.73, 42.2, 141}, {57.46, 45.03, 141}, {57.63, 39.55, 141}, {59.11, 43.35, 141}, {59.5, 45.27, 141}, {60.62, 46.27, 141}, {62.09, 41.26, 141}, {63.23, 42.23, 141}}
+ b["scrapedAt"] = 1773751487
+ end
+ b = MTH_DS_Beasts[1985]
+ if b then
+ b["displayId"] = 6807
+ b["health"] = 61
+ b["dmgMin"] = 2.2
+ b["dmgMax"] = 4.4
+ b["armor"] = 41
+ b["factionId"] = 189
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{55.36, 37.08, 141}, {55.51, 39.46, 141}, {56.36, 37.9, 141}, {56.38, 36.96, 141}, {59.44, 34.63, 141}, {59.82, 37.61, 141}, {60.05, 31.6, 141}, {60.17, 39.11, 141}, {60.23, 34.87, 141}, {60.29, 34.16, 141}, {61.84, 38.67, 141}, {62.21, 35.9, 141}}
+ b["scrapedAt"] = 1773751489
+ end
+ b = MTH_DS_Beasts[1986]
+ if b then
+ b["displayId"] = 709
+ b["health"] = 78
+ b["dmgMin"] = 3.3
+ b["dmgMax"] = 5.5
+ b["armor"] = 59
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{56.04, 26.44, 141}, {56.08, 24.88, 141}, {56.22, 32.54, 141}, {56.24, 29.24, 141}, {56.44, 25.88, 141}, {57.56, 29.15, 141}, {57.56, 32.72, 141}, {57.69, 27.41, 141}, {58.77, 33.45, 141}}
+ b["scrapedAt"] = 1773751490
+ end
+ b = MTH_DS_Beasts[1994]
+ if b then
+ b["displayId"] = 759
+ b["health"] = 112
+ b["dmgMin"] = 6.6
+ b["dmgMax"] = 7.7
+ b["armor"] = 120
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{56.65, 26.32, 141}}
+ b["scrapedAt"] = 1773751491
+ end
+ b = MTH_DS_Beasts[1995]
+ if b then
+ b["displayId"] = 10832
+ b["health"] = 112
+ b["dmgMin"] = 7.7
+ b["dmgMax"] = 11
+ b["armor"] = 174
+ b["factionId"] = 15
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{45.87, 47.51, 141}, {49.78, 58.09, 141}, {50.03, 58.7, 141}, {51.9, 56.7, 141}, {52.21, 59.35, 141}, {52.39, 62.74, 141}, {52.57, 57.14, 141}, {53.04, 54.49, 141}, {53.49, 59.38, 141}, {54.83, 63.98, 141}, {55.44, 66.01, 141}, {57.62, 56.35, 141}, {57.95, 60.8, 141}, {58.73, 56.2, 141}, {58.87, 60.3, 141}, {62.01, 51.43, 141}, {63.37, 53.61, 141}, {63.41, 51.75, 141}, {64.02, 64.13, 141}, {64.21, 54.37, 141}, {64.76, 51.49, 141}, {64.88, 61.5, 141}, {67.22, 61.41, 141}, {67.49, 53.58, 141}, {68.71, 62.42, 141}}
+ b["scrapedAt"] = 1773751493
+ end
+ b = MTH_DS_Beasts[1996]
+ if b then
+ b["displayId"] = 4877
+ b["health"] = 151
+ b["dmgMin"] = 9.9
+ b["dmgMax"] = 14.3
+ b["armor"] = 316
+ b["factionId"] = 15
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{37.6, 51.31, 141}, {38.21, 55.58, 141}, {38.43, 62.48, 141}, {38.76, 63.39, 141}, {39.11, 51.37, 141}, {39.29, 65.33, 141}, {39.55, 54.55, 141}, {41.06, 68.4, 141}, {41.26, 49.66, 141}, {41.86, 71.55, 141}, {42.18, 75.35, 141}, {42.81, 48.95, 141}, {43.77, 77.44, 141}, {43.91, 50.57, 141}, {45.6, 76.53, 141}, {46.2, 75.56, 141}, {48.17, 74.2, 141}, {51.92, 77.39, 141}, {53.08, 77.92, 141}, {57.62, 75.03, 141}, {58.07, 76.21, 141}, {58.48, 75.03, 141}, {58.89, 76.97, 141}, {64.25, 69.25, 141}, {65.55, 66.45, 141}}
+ b["scrapedAt"] = 1773751494
+ end
+ b = MTH_DS_Beasts[1997]
+ if b then
+ b["displayId"] = 10830
+ b["health"] = 172
+ b["dmgMin"] = 12.1
+ b["dmgMax"] = 16.5
+ b["armor"] = 406
+ b["factionId"] = 15
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{37.56, 29.3, 141}, {38.07, 39.52, 141}, {38.49, 46.24, 141}, {38.55, 47.83, 141}, {39.04, 30.74, 141}, {39.29, 46.09, 141}, {40.82, 44.97, 141}, {44.4, 39.88, 141}, {45.58, 40.55, 141}, {46.26, 31.45, 141}}
+ b["scrapedAt"] = 1773751495
+ end
+ b = MTH_DS_Beasts[1998]
+ if b then
+ b["displayId"] = 760
+ b["health"] = 112
+ b["dmgMin"] = 7.7
+ b["dmgMax"] = 11
+ b["armor"] = 147
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{45.87, 46.71, 141}, {47.07, 46.98, 141}, {51.02, 65.27, 141}, {51.04, 53.87, 141}, {51.63, 59.41, 141}, {52.25, 55.58, 141}, {52.59, 67.43, 141}, {52.92, 64.3, 141}, {53.53, 61.92, 141}, {58.19, 55.85, 141}, {59.56, 59.71, 141}, {60.09, 58.26, 141}, {60.78, 57.14, 141}, {60.88, 54.55, 141}, {61.15, 61.27, 141}, {63.35, 63.18, 141}, {63.92, 60.86, 141}, {67.06, 66.31, 141}, {68.04, 64.1, 141}, {68.48, 63.6, 141}, {69.52, 57.17, 141}, {69.52, 60.35, 141}, {70.07, 60.27, 141}}
+ b["scrapedAt"] = 1773751497
+ end
+ b = MTH_DS_Beasts[1999]
+ if b then
+ b["displayId"] = 759
+ b["health"] = 151
+ b["dmgMin"] = 9.9
+ b["dmgMax"] = 14.3
+ b["armor"] = 278
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{37.17, 47.36, 141}, {38.74, 47.92, 141}, {38.86, 59.62, 141}, {38.86, 61.68, 141}, {40.74, 48.8, 141}, {41.84, 75.03, 141}, {42.87, 74.7, 141}, {43.75, 54.34, 141}, {44.69, 74.47, 141}, {44.83, 77.47, 141}, {45.36, 70.2, 141}, {46.52, 71.61, 141}, {48.52, 75.12, 141}, {54.36, 74.2, 141}, {54.49, 77.39, 141}, {59.62, 76.12, 141}, {60.19, 75.06, 141}, {61.01, 73.47, 141}, {65.22, 69.16, 141}}
+ b["scrapedAt"] = 1773751498
+ end
+ b = MTH_DS_Beasts[2000]
+ if b then
+ b["displayId"] = 1989
+ b["health"] = 172
+ b["dmgMin"] = 12.1
+ b["dmgMax"] = 16.5
+ b["armor"] = 361
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{33.32, 31.04, 141}, {34.62, 32.66, 141}, {36.31, 32.27, 141}, {39.94, 31.45, 141}, {42.45, 46.3, 141}, {43.1, 43.56, 141}, {43.26, 45.5, 141}, {43.71, 47.3, 141}, {45.1, 35.16, 141}, {45.81, 43.41, 141}, {47.83, 44.5, 141}, {47.95, 32.1, 141}, {48.58, 44.94, 141}}
+ b["scrapedAt"] = 1773751499
+ end
+ b = MTH_DS_Beasts[2001]
+ if b then
+ b["displayId"] = 6808
+ b["health"] = 231
+ b["dmgMin"] = 8.16816
+ b["dmgMax"] = 11.6688
+ b["armor"] = 20
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{38.03, 27.94, 141}, {40.16, 25.41, 141}, {41.22, 28.94, 141}, {45.71, 27.47, 141}}
+ b["scrapedAt"] = 1773751501
+ end
+ b = MTH_DS_Beasts[2031]
+ if b then
+ b["displayId"] = 11454
+ b["health"] = 46
+ b["dmgMin"] = 1.1
+ b["dmgMax"] = 2.2
+ b["armor"] = 15
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{56.63, 44.53, 141}, {57.87, 38.96, 141}, {58.4, 46.74, 141}, {58.81, 45.98, 141}, {61.48, 39.32, 141}, {61.58, 44.21, 141}, {62.01, 43.62, 141}, {62.84, 43.94, 141}, {63.35, 42.14, 141}, {64.33, 42.03, 141}, {64.37, 40.49, 141}}
+ b["scrapedAt"] = 1773751502
+ end
+ b = MTH_DS_Beasts[2032]
+ if b then
+ b["displayId"] = 11448
+ b["health"] = 61
+ b["dmgMin"] = 2.2
+ b["dmgMax"] = 2.2
+ b["armor"] = 16
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{59.19, 31.48, 141}, {59.85, 34.22, 141}, {60.01, 36.05, 141}, {60.99, 34.69, 141}, {61.25, 39.08, 141}, {62.05, 36.87, 141}, {62.39, 37.05, 141}, {62.56, 34.45, 141}, {63.45, 38.81, 141}}
+ b["scrapedAt"] = 1773751504
+ end
+ b = MTH_DS_Beasts[2033]
+ if b then
+ b["displayId"] = 3030
+ b["health"] = 172
+ b["dmgMin"] = 8.8
+ b["dmgMax"] = 11
+ b["armor"] = 351
+ b["factionId"] = 66
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{35.3, 29.8, 141}, {39.66, 35.43, 141}, {39.8, 44.5, 141}, {45.14, 36.66, 141}, {45.16, 42.65, 141}, {45.81, 33.78, 141}, {45.81, 37.87, 141}, {46.36, 44.56, 141}, {46.91, 45.56, 141}}
+ b["scrapedAt"] = 1773751505
+ end
+ b = MTH_DS_Beasts[2034]
+ if b then
+ b["displayId"] = 3030
+ b["health"] = 231
+ b["dmgMin"] = 12.8357
+ b["dmgMax"] = 16.3363
+ b["armor"] = 525
+ b["factionId"] = 66
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{37.39, 24.79, 141}, {38.03, 29.33, 141}, {38.35, 26.79, 141}, {39.92, 28.71, 141}, {40.67, 27.38, 141}, {41.35, 25.14, 141}}
+ b["scrapedAt"] = 1773751507
+ end
+ b = MTH_DS_Beasts[2042]
+ if b then
+ b["displayId"] = 6805
+ b["health"] = 112
+ b["dmgMin"] = 4.4
+ b["dmgMax"] = 6.6
+ b["armor"] = 147
+ b["factionId"] = 66
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{49.72, 55.32, 141}, {49.74, 52.46, 141}, {49.86, 55.82, 141}, {50.84, 57.29, 141}, {51.51, 60.24, 141}, {51.51, 62.3, 141}, {52.86, 58.56, 141}, {53.63, 55.61, 141}, {54.28, 63.3, 141}, {54.81, 65.16, 141}, {57.65, 54.7, 141}, {58.7, 58.29, 141}, {59.56, 63.01, 141}, {61.54, 59.03, 141}, {62.17, 61.71, 141}, {62.8, 61.06, 141}, {64.16, 56.05, 141}, {65.61, 53.49, 141}, {66.98, 54.31, 141}, {67.26, 51.25, 141}, {68.77, 55.4, 141}}
+ b["scrapedAt"] = 1773751508
+ end
+ b = MTH_DS_Beasts[2043]
+ if b then
+ b["displayId"] = 14318
+ b["health"] = 151
+ b["dmgMin"] = 8.8
+ b["dmgMax"] = 11
+ b["armor"] = 278
+ b["factionId"] = 66
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{38.25, 58.56, 141}, {38.51, 56.23, 141}, {38.9, 58.14, 141}, {40.45, 69.87, 141}, {40.67, 59.47, 141}, {40.8, 57.05, 141}, {41.18, 70.17, 141}, {43.16, 74.35, 141}, {44.97, 74.62, 141}, {45.2, 72.11, 141}, {46.6, 71.34, 141}, {46.99, 75.12, 141}, {50.01, 79.15, 141}, {50.33, 76.15, 141}, {50.96, 77.18, 141}, {53.9, 72.52, 141}, {55.81, 72.29, 141}, {56.93, 73.94, 141}, {61.46, 73.32, 141}, {63.43, 72.17, 141}}
+ b["scrapedAt"] = 1773751509
+ end
+ b = MTH_DS_Beasts[2069]
+ if b then
+ b["displayId"] = 321
+ b["health"] = 364
+ b["dmgMin"] = 15.4669
+ b["dmgMax"] = 20.2259
+ b["armor"] = 659
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{37.48, 63.4, 148}, {37.48, 78.99, 148}, {37.55, 77.27, 148}, {37.98, 59.76, 148}, {38.06, 77.46, 148}, {38.56, 77.53, 148}, {38.61, 64.54, 148}, {39.03, 72.44, 148}, {39.2, 69.24, 148}, {39.45, 67.77, 148}, {39.95, 70.63, 148}, {40.06, 65.98, 148}, {40.15, 67.47, 148}, {40.59, 70.04, 148}, {41.87, 67.68, 148}, {42.36, 64.22, 148}, {42.62, 71.85, 148}, {43.54, 67.79, 148}, {43.6, 69.95, 148}, {43.83, 65.66, 148}, {44.36, 67.4, 148}, {44.56, 68.71, 148}, {44.64, 24.76, 148}, {48.97, 27.76, 148}, {49.19, 32.48, 148}, {49.35, 26.66, 148}, {50.54, 27.05, 148}, {50.77, 28.56, 148}, {52.73, 29.44, 148}, {53.25, 27.21, 148}, {53.78, 27.85, 148}, {54.67, 21.95, 148}, {54.93, 30.12, 148}, {55.11, 21.44, 148}, {55.49, 23.3, 148}}
+ b["scrapedAt"] = 1773751510
+ end
+ b = MTH_DS_Beasts[2070]
+ if b then
+ b["displayId"] = 11449
+ b["health"] = 240
+ b["dmgMin"] = 14.8315
+ b["dmgMax"] = 19.7754
+ b["armor"] = 538
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{35.17, 89.69, 148}, {36.59, 90.81, 148}, {37.48, 93.01, 148}, {38.04, 50.07, 148}, {38.07, 36.88, 148}, {38.77, 50.73, 148}, {38.88, 48.79, 148}, {39.19, 34.29, 148}, {39.41, 39.08, 148}, {39.55, 90.56, 148}, {39.58, 37.77, 148}, {39.63, 33.44, 148}, {39.74, 40.43, 148}, {39.77, 91.79, 148}, {40.09, 50.07, 148}, {41.0, 43.06, 148}, {42.01, 48.19, 148}, {42.04, 54.51, 148}, {42.07, 45.28, 148}, {42.91, 90.33, 148}, {43.0, 26.14, 148}, {43.55, 24.26, 148}, {43.58, 28.95, 148}, {43.96, 55.75, 148}, {44.13, 43.84, 148}, {44.61, 55.68, 148}, {44.67, 24.33, 148}, {44.83, 42.67, 148}, {45.16, 28.02, 148}, {45.25, 58.79, 148}, {45.48, 33.28, 148}, {45.67, 31.73, 148}, {46.16, 23.73, 148}, {46.38, 42.15, 148}, {46.5, 54.21, 148}, {47.2, 40.86, 148}, {47.25, 44.53, 148}, {47.9, 40.13, 148}, {48.65, 24.26, 148}, {59.6, 11.76, 148}, {61.03, 13.04, 148}, {62.61, 7.015, 148}}
+ b["scrapedAt"] = 1773751511
+ end
+ b = MTH_DS_Beasts[2071]
+ if b then
+ b["displayId"] = 3031
+ b["health"] = 535
+ b["dmgMin"] = 20.2259
+ b["dmgMax"] = 26.1747
+ b["armor"] = 835
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{35.0, 88.86, 148}, {36.48, 90.47, 148}, {36.9, 89.69, 148}, {37.22, 93.42, 148}, {39.41, 91.82, 148}, {39.86, 90.35, 148}, {43.03, 90.79, 148}, {59.9, 11.8, 148}, {60.94, 11.87, 148}, {61.14, 13.68, 148}, {62.91, 7.313, 148}}
+ b["scrapedAt"] = 1773751513
+ end
+ b = MTH_DS_Beasts[2089]
+ if b then
+ b["displayId"] = 925
+ b["health"] = 871
+ b["dmgMin"] = 46.0845
+ b["dmgMax"] = 56.9993
+ b["armor"] = 1043
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{15.24, 29.21, 11}, {16.19, 26.2, 11}, {17.47, 23.51, 11}, {17.59, 29.1, 11}, {20.56, 24.17, 11}, {21.73, 19.99, 11}, {26.1, 22.53, 11}, {27.0, 19.34, 11}}
+ b["scrapedAt"] = 1773751514
+ end
+ b = MTH_DS_Beasts[2163]
+ if b then
+ b["displayId"] = 1006
+ b["health"] = 323
+ b["dmgMin"] = 19.837
+ b["dmgMax"] = 25.6714
+ b["armor"] = 241
+ b["factionId"] = 44
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{38.04, 48.65, 148}, {38.1, 47.02, 148}, {38.41, 38.6, 148}, {38.65, 38.27, 148}, {39.92, 39.51, 148}, {40.16, 36.51, 148}, {41.03, 48.49, 148}, {41.09, 34.13, 148}, {41.12, 41.89, 148}, {41.57, 33.9, 148}, {41.58, 47.98, 148}, {41.61, 34.82, 148}, {41.64, 56.96, 148}, {41.96, 47.09, 148}, {42.58, 55.82, 148}, {42.65, 47.92, 148}, {42.94, 24.95, 148}, {43.09, 22.93, 148}, {43.2, 44.21, 148}, {43.22, 56.44, 148}, {43.43, 34.66, 148}, {43.69, 29.44, 148}, {43.75, 42.72, 148}, {44.12, 32.18, 148}, {44.41, 25.95, 148}, {44.45, 31.63, 148}, {44.61, 43.22, 148}, {44.67, 60.21, 148}, {44.85, 27.17, 148}, {45.06, 32.3, 148}, {45.63, 23.87, 148}, {45.67, 28.86, 148}, {45.67, 55.29, 148}, {45.81, 22.98, 148}, {45.83, 41.76, 148}, {45.98, 26.57, 148}, {47.26, 23.73, 148}, {48.16, 40.79, 148}, {48.67, 22.2, 148}, {49.03, 38.34, 148}}
+ b["scrapedAt"] = 1773751515
+ end
+ b = MTH_DS_Beasts[2165]
+ if b then
+ b["displayId"] = 14316
+ b["health"] = 539
+ b["dmgMin"] = 29.663
+ b["dmgMax"] = 38.3148
+ b["armor"] = 350
+ b["factionId"] = 44
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{37.54, 82.04, 148}, {37.84, 78.63, 148}, {38.06, 82.06, 148}, {38.24, 71.11, 148}, {38.62, 82.45, 148}, {39.08, 69.97, 148}, {39.16, 76.34, 148}, {40.3, 75.9, 148}, {40.47, 81.79, 148}, {42.97, 82.45, 148}, {45.05, 81.42, 148}}
+ b["scrapedAt"] = 1773751516
+ end
+ b = MTH_DS_Beasts[2172]
+ if b then
+ b["displayId"] = 38
+ b["npcClass"] = "Rare"
+ b["health"] = 575
+ b["dmgMin"] = 49.9699
+ b["dmgMax"] = 61.8675
+ b["armor"] = 852
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{34.83, 87.33, 148}}
+ b["scrapedAt"] = 1773751517
+ end
+ b = MTH_DS_Beasts[2175]
+ if b then
+ b["displayId"] = 3030
+ b["npcClass"] = "Rare"
+ b["health"] = 242
+ b["dmgMin"] = 65.4368
+ b["dmgMax"] = 83.2832
+ b["armor"] = 608
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{40.3, 40.54, 148}}
+ b["scrapedAt"] = 1773751518
+ end
+ b = MTH_DS_Beasts[2231]
+ if b then
+ b["displayId"] = 1000
+ b["health"] = 206
+ b["dmgMin"] = 15.1694
+ b["dmgMax"] = 19.837
+ b["armor"] = 679
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{34.7, 47.98, 148}, {35.0, 44.41, 148}, {35.09, 49.38, 148}, {35.45, 51.17, 148}, {35.51, 41.18, 148}, {35.64, 47.14, 148}, {36.32, 40.4, 148}, {36.44, 37.68, 148}, {36.68, 48.42, 148}, {36.7, 36.35, 148}, {36.85, 35.89, 148}, {36.85, 41.8, 148}, {37.43, 40.34, 148}}
+ b["scrapedAt"] = 1773751519
+ end
+ b = MTH_DS_Beasts[2232]
+ if b then
+ b["displayId"] = 979
+ b["health"] = 294
+ b["dmgMin"] = 21.4157
+ b["dmgMax"] = 29.744
+ b["armor"] = 900
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{35.49, 68.96, 148}, {35.54, 65.23, 148}, {35.98, 62.73, 148}, {36.62, 69.83, 148}, {36.73, 65.82, 148}, {36.9, 66.65, 148}, {41.2, 28.61, 148}, {41.49, 26.89, 148}, {41.6, 30.1, 148}, {42.13, 24.81, 148}, {42.21, 21.03, 148}, {42.79, 20.57, 148}, {43.11, 19.77, 148}}
+ b["scrapedAt"] = 1773751521
+ end
+ b = MTH_DS_Beasts[2233]
+ if b then
+ b["displayId"] = 9566
+ b["health"] = 496
+ b["dmgMin"] = 33.3133
+ b["dmgMax"] = 44.0211
+ b["armor"] = 1211
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{31.74, 81.92, 148}, {32.71, 81.42, 148}, {32.96, 82.89, 148}, {51.29, 23.23, 148}, {51.7, 20.98, 148}, {52.22, 18.58, 148}, {52.24, 20.89, 148}, {52.28, 23.32, 148}, {52.83, 17.76, 148}, {54.03, 18.95, 148}}
+ b["scrapedAt"] = 1773751522
+ end
+ b = MTH_DS_Beasts[2234]
+ if b then
+ b["displayId"] = 999
+ b["health"] = 231
+ b["dmgMin"] = 16.3363
+ b["dmgMax"] = 22.1707
+ b["armor"] = 778
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{34.87, 54.4, 148}, {35.06, 56.09, 148}, {35.25, 52.66, 148}, {36.5, 52.2, 148}, {36.97, 34.34, 148}, {37.45, 32.96, 148}, {38.09, 32.44, 148}, {38.9, 30.74, 148}, {40.16, 31.43, 148}, {40.59, 31.84, 148}}
+ b["scrapedAt"] = 1773751523
+ end
+ b = MTH_DS_Beasts[2235]
+ if b then
+ b["displayId"] = 981
+ b["health"] = 397
+ b["dmgMin"] = 27.1911
+ b["dmgMax"] = 37.0788
+ b["armor"] = 1056
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{34.9, 72.28, 148}, {35.19, 72.37, 148}, {35.48, 77.55, 148}, {35.66, 73.56, 148}, {44.76, 21.81, 148}, {45.37, 20.05, 148}, {46.51, 21.05, 148}, {48.25, 20.71, 148}, {48.9, 20.09, 148}, {50.54, 22.45, 148}, {50.67, 22.54, 148}}
+ b["scrapedAt"] = 1773751524
+ end
+ b = MTH_DS_Beasts[2236]
+ if b then
+ b["displayId"] = 1001
+ b["health"] = 587
+ b["dmgMin"] = 36.8826
+ b["dmgMax"] = 45.2109
+ b["armor"] = 1290
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{28.62, 90.83, 148}, {29.7, 91.08, 148}, {30.59, 90.51, 148}, {32.91, 88.98, 148}, {54.76, 18.31, 148}, {55.54, 19.24, 148}, {55.78, 16.63, 148}, {55.95, 14.89, 148}, {56.36, 16.27, 148}, {56.56, 11.41, 148}, {57.48, 14.53, 148}}
+ b["scrapedAt"] = 1773751525
+ end
+ b = MTH_DS_Beasts[2237]
+ if b then
+ b["displayId"] = 11450
+ b["health"] = 459
+ b["dmgMin"] = 20.2259
+ b["dmgMax"] = 26.1747
+ b["armor"] = 765
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{36.18, 82.13, 148}, {36.59, 91.52, 148}, {37.61, 83.92, 148}, {38.32, 77.18, 148}, {38.54, 90.51, 148}, {39.32, 94.52, 148}, {39.81, 70.7, 148}, {39.9, 81.37, 148}, {40.15, 82.89, 148}, {40.39, 90.83, 148}, {41.67, 83.37, 148}, {42.56, 88.11, 148}, {43.75, 81.86, 148}, {43.83, 83.14, 148}, {44.65, 92.05, 148}, {60.06, 13.38, 148}, {61.38, 11.18, 148}}
+ b["scrapedAt"] = 1773751527
+ end
+ b = MTH_DS_Beasts[2275]
+ if b then
+ b["displayId"] = 11411
+ b["health"] = 791
+ b["dmgMin"] = 41.6416
+ b["dmgMax"] = 51.1597
+ b["armor"] = 992
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773749878
+ end
+ b = MTH_DS_Beasts[2321]
+ if b then
+ b["displayId"] = 1042
+ b["health"] = 264
+ b["dmgMin"] = 19.0362
+ b["dmgMax"] = 26.1747
+ b["armor"] = 573
+ b["factionId"] = 189
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{34.82, 87.31, 148}, {38.18, 62.66, 148}, {38.21, 56.62, 148}, {38.22, 47.5, 148}, {38.54, 58.2, 148}, {38.82, 67.02, 148}, {38.96, 48.69, 148}, {39.02, 68.82, 148}, {39.14, 60.67, 148}, {39.26, 38.5, 148}, {39.29, 34.84, 148}, {39.32, 65.62, 148}, {39.57, 33.95, 148}, {39.61, 59.71, 148}, {39.77, 57.4, 148}, {39.87, 67.13, 148}, {40.07, 39.83, 148}, {40.36, 41.27, 148}, {40.41, 35.0, 148}, {40.54, 36.69, 148}, {41.08, 43.18, 148}, {41.32, 41.48, 148}, {41.55, 34.68, 148}, {41.66, 65.78, 148}, {41.67, 67.52, 148}, {41.89, 33.76, 148}, {41.93, 45.97, 148}, {42.21, 70.13, 148}, {42.8, 33.49, 148}, {42.82, 42.65, 148}, {42.85, 26.39, 148}, {42.94, 55.29, 148}, {43.11, 70.54, 148}, {43.31, 44.53, 148}, {43.35, 53.46, 148}, {43.43, 40.7, 148}, {43.83, 70.68, 148}, {43.87, 29.32, 148}, {43.92, 67.29, 148}, {43.99, 31.56, 148}, {44.28, 55.82, 148}, {44.3, 68.87, 148}, {44.56, 29.92, 148}, {44.59, 44.37, 148}, {44.64, 25.73, 148}, {45.17, 58.04, 148}, {45.37, 22.95, 148}, {45.37, 27.47, 148}, {45.4, 32.18, 148}, {45.55, 42.92, 148}, {45.7, 54.76, 148}, {45.83, 24.95, 148}, {45.84, 22.18, 148}, {46.09, 53.02, 148}, {46.88, 24.49, 148}, {47.16, 44.8, 148}, {47.63, 40.15, 148}, {47.87, 41.07, 148}, {47.93, 23.64, 148}, {48.91, 22.79, 148}}
+ b["scrapedAt"] = 1773749879
+ end
+ b = MTH_DS_Beasts[2322]
+ if b then
+ b["displayId"] = 178
+ b["health"] = 356
+ b["dmgMin"] = 23.7952
+ b["dmgMax"] = 33.3133
+ b["armor"] = 678
+ b["factionId"] = 189
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{37.61, 78.86, 148}, {37.93, 72.4, 148}, {38.38, 76.61, 148}, {39.06, 75.05, 148}, {39.34, 70.22, 148}, {39.9, 76.4, 148}, {40.47, 70.77, 148}, {42.25, 70.82, 148}, {42.47, 69.05, 148}, {43.69, 70.52, 148}, {46.88, 31.08, 148}, {46.88, 33.65, 148}, {47.37, 28.47, 148}, {48.04, 26.8, 148}, {48.32, 30.65, 148}, {48.53, 32.16, 148}, {48.58, 34.7, 148}, {48.88, 27.33, 148}, {48.94, 31.15, 148}, {49.4, 34.95, 148}, {49.48, 36.53, 148}, {49.67, 26.0, 148}, {49.87, 32.23, 148}, {50.42, 30.28, 148}, {50.56, 29.27, 148}, {51.11, 33.79, 148}, {52.61, 35.37, 148}, {52.65, 26.16, 148}, {52.7, 27.9, 148}, {53.45, 28.89, 148}, {53.92, 26.11, 148}, {54.07, 30.51, 148}}
+ b["scrapedAt"] = 1773751528
+ end
+ b = MTH_DS_Beasts[2323]
+ if b then
+ b["displayId"] = 1283
+ b["health"] = 459
+ b["dmgMin"] = 33.3709
+ b["dmgMax"] = 43.2586
+ b["armor"] = 783
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{34.79, 88.06, 148}, {35.84, 80.05, 148}, {35.96, 82.43, 148}, {36.01, 89.64, 148}, {36.35, 91.56, 148}, {36.5, 94.29, 148}, {36.54, 91.61, 148}, {36.7, 93.63, 148}, {37.02, 83.6, 148}, {37.06, 88.18, 148}, {37.23, 80.62, 148}, {37.77, 89.11, 148}, {38.13, 81.24, 148}, {38.15, 83.05, 148}, {38.18, 95.6, 148}, {38.53, 92.3, 148}, {38.87, 90.1, 148}, {40.07, 91.91, 148}, {40.47, 93.58, 148}, {40.5, 89.5, 148}, {40.56, 81.08, 148}, {40.94, 82.29, 148}, {41.22, 83.32, 148}, {41.54, 88.06, 148}, {42.27, 80.48, 148}, {42.3, 89.66, 148}, {43.2, 80.21, 148}, {43.34, 82.22, 148}, {44.91, 91.79, 148}, {45.96, 91.38, 148}, {58.39, 14.23, 148}, {58.9, 13.31, 148}, {59.49, 12.63, 148}, {60.87, 10.31, 148}, {61.22, 14.87, 148}, {61.61, 8.893, 148}, {61.81, 11.96, 148}, {62.62, 9.259, 148}}
+ b["scrapedAt"] = 1773751529
+ end
+ b = MTH_DS_Beasts[2348]
+ if b then
+ b["displayId"] = 8014
+ b["health"] = 936
+ b["dmgMin"] = 46.9665
+ b["dmgMax"] = 59.3261
+ b["armor"] = 1079
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{56.71, 52.36, 267}, {58.61, 61.78, 267}, {59.36, 55.45, 267}, {60.15, 52.69, 267}, {60.71, 68.58, 267}, {61.08, 63.19, 267}, {61.96, 53.95, 267}, {63.86, 66.33, 267}, {63.93, 73.55, 267}, {66.02, 72.56, 267}, {66.33, 77.58, 267}, {66.58, 72.8, 267}, {67.27, 65.86, 267}, {68.93, 69.84, 267}, {69.18, 60.47, 267}, {72.52, 69.47, 267}, {12.93, 38.03, 45}}
+ b["scrapedAt"] = 1773751530
+ end
+ b = MTH_DS_Beasts[2349]
+ if b then
+ b["displayId"] = 6808
+ b["health"] = 791
+ b["dmgMin"] = 42.8314
+ b["dmgMax"] = 54.729
+ b["armor"] = 1009
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{23.52, 50.95, 267}, {24.55, 57.0, 267}, {26.08, 35.25, 267}, {26.65, 49.03, 267}, {27.55, 54.05, 267}, {27.58, 67.78, 267}, {27.71, 50.72, 267}, {28.71, 54.14, 267}, {31.74, 58.83, 267}, {31.77, 63.56, 267}, {32.05, 64.64, 267}, {32.18, 62.67, 267}, {32.74, 55.78, 267}, {32.93, 52.69, 267}, {35.68, 56.63, 267}, {36.08, 58.97, 267}, {36.36, 63.42, 267}, {38.05, 51.56, 267}, {39.55, 59.81, 267}, {40.27, 58.27, 267}, {40.86, 64.41, 267}, {41.24, 52.17, 267}, {41.24, 65.2, 267}, {42.43, 59.34, 267}, {44.61, 61.55, 267}, {61.83, 46.5, 267}, {62.93, 55.59, 267}, {64.05, 49.13, 267}, {64.9, 57.8, 267}, {64.99, 51.8, 267}, {66.68, 58.78, 267}, {67.18, 55.59, 267}, {67.3, 38.16, 267}, {68.71, 48.84, 267}, {68.99, 52.5, 267}, {70.3, 60.33, 267}, {71.36, 50.25, 267}, {73.02, 50.44, 267}, {73.27, 55.78, 267}, {73.46, 63.09, 267}, {74.96, 29.58, 267}, {75.3, 33.94, 267}, {75.74, 54.05, 267}, {77.58, 51.23, 267}, {81.46, 31.97, 267}, {84.02, 35.39, 267}, {85.55, 36.09, 267}, {14.58, 81.64, 36}, {14.58, 86.25, 36}, {15.8, 88.77, 36}, {20.26, 97.02, 36}, {22.37, 73.45, 36}, {22.44, 91.77, 36}, {22.58, 82.02, 36}, {23.19, 95.79, 36}, {23.37, 77.73, 36}, {23.73, 56.62, 36}, {24.15, 87.96, 36}, {25.05, 63.32, 36}, {25.9, 74.3, 36}, {26.58, 83.57, 36}, {27.69, 69.91, 36}, {28.44, 73.55, 36}, {28.83, 79.5, 36}, {29.4, 92.73, 36}, {30.08, 78.21, 36}, {32.05, 92.09, 36}, {32.19, 96.8, 36}, {69.26, 95.62, 36}, {69.65, 90.48, 36}, {72.23, 82.98, 36}, {75.3, 86.95, 36}, {15.06, 35.07, 45}, {15.98, 31.65, 45}, {17.93, 24.07, 45}, {19.59, 24.99, 45}, {20.98, 18.24, 45}, {23.48, 18.32, 45}, {26.43, 14.53, 45}}
+ b["scrapedAt"] = 1773751531
+ end
+ b = MTH_DS_Beasts[2350]
+ if b then
+ b["displayId"] = 1989
+ b["health"] = 587
+ b["dmgMin"] = 36.8826
+ b["dmgMax"] = 45.2109
+ b["armor"] = 870
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{51.4, 75.43, 36}, {54.44, 70.34, 36}, {54.48, 93.27, 36}, {54.62, 78.21, 36}, {55.15, 74.41, 36}, {55.94, 86.57, 36}, {56.23, 91.93, 36}, {59.4, 75.91, 36}, {60.48, 94.87, 36}, {62.65, 75.32, 36}, {62.87, 71.14, 36}, {63.58, 95.52, 36}, {64.94, 90.0, 36}, {65.44, 83.36, 36}, {66.69, 69.91, 36}, {67.98, 74.2, 36}, {69.94, 69.21, 36}, {18.15, 52.88, 267}, {19.08, 47.72, 267}, {20.52, 43.41, 267}, {21.21, 51.8, 267}, {23.02, 53.53, 267}, {23.55, 43.03, 267}, {25.68, 39.28, 267}, {58.99, 35.3, 267}, {62.15, 39.8, 267}, {63.27, 36.28, 267}, {70.4, 44.58, 267}, {71.4, 36.61, 267}, {71.74, 41.16, 267}, {71.86, 34.13, 267}, {78.52, 50.58, 267}}
+ b["scrapedAt"] = 1773751532
+ end
+ b = MTH_DS_Beasts[2351]
+ if b then
+ b["displayId"] = 806
+ b["health"] = 805
+ b["dmgMin"] = 38.3148
+ b["dmgMax"] = 48.2024
+ b["armor"] = 342
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{50.4, 68.84, 36}, {52.44, 77.09, 36}, {54.05, 68.79, 36}, {55.05, 92.04, 36}, {55.73, 76.18, 36}, {55.73, 85.93, 36}, {56.23, 97.82, 36}, {61.98, 93.37, 36}, {62.08, 66.21, 36}, {63.05, 68.73, 36}, {63.4, 97.71, 36}, {65.44, 85.29, 36}, {65.83, 98.04, 36}, {66.19, 76.93, 36}, {66.44, 85.18, 36}, {66.55, 81.16, 36}, {66.65, 88.61, 36}, {68.44, 69.8, 36}, {17.3, 44.77, 267}, {18.9, 43.55, 267}, {19.02, 49.83, 267}, {20.21, 53.53, 267}, {21.55, 42.75, 267}, {22.02, 56.44, 267}, {23.4, 48.19, 267}, {24.43, 40.03, 267}, {26.3, 38.2, 267}, {26.71, 41.58, 267}, {30.71, 48.05, 267}, {59.49, 36.52, 267}, {62.02, 36.28, 267}, {65.36, 35.91, 267}}
+ b["scrapedAt"] = 1773751533
+ end
+ b = MTH_DS_Beasts[2354]
+ if b then
+ b["displayId"] = 1007
+ b["health"] = 882
+ b["dmgMin"] = 39.5507
+ b["dmgMax"] = 50.6744
+ b["armor"] = 355
+ b["factionId"] = 44
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{38.77, 41.81, 267}, {40.4, 44.72, 267}, {41.02, 34.45, 267}, {41.08, 37.13, 267}, {44.24, 41.34, 267}, {44.52, 50.67, 267}, {44.68, 37.08, 267}, {45.33, 34.88, 267}, {45.52, 43.59, 267}, {46.52, 47.2, 267}, {47.77, 36.38, 267}, {48.11, 47.16, 267}, {49.21, 42.98, 267}, {51.43, 37.73, 267}, {52.3, 46.03, 267}, {53.3, 42.47, 267}, {54.43, 42.14, 267}, {54.83, 46.41, 267}, {54.83, 52.41, 267}, {56.61, 39.52, 267}, {56.86, 40.31, 267}, {66.46, 39.47, 267}, {70.11, 35.48, 267}, {74.02, 34.45, 267}, {76.49, 49.08, 267}, {46.94, 97.18, 36}, {50.37, 94.18, 36}, {70.44, 97.23, 36}}
+ b["scrapedAt"] = 1773751534
+ end
+ b = MTH_DS_Beasts[2356]
+ if b then
+ b["displayId"] = 3201
+ b["health"] = 1122
+ b["dmgMin"] = 46.0845
+ b["dmgMax"] = 56.9993
+ b["armor"] = 394
+ b["factionId"] = 44
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{24.24, 57.7, 267}, {25.21, 51.28, 267}, {25.74, 54.14, 267}, {26.55, 52.36, 267}, {26.71, 36.28, 267}, {27.02, 34.22, 267}, {28.8, 52.31, 267}, {28.9, 66.09, 267}, {29.36, 55.36, 267}, {29.43, 62.91, 267}, {32.43, 55.31, 267}, {33.15, 64.45, 267}, {34.9, 60.19, 267}, {36.11, 50.86, 267}, {37.58, 58.36, 267}, {37.71, 65.67, 267}, {38.96, 53.2, 267}, {40.08, 57.09, 267}, {40.11, 60.98, 267}, {41.55, 58.31, 267}, {42.33, 47.44, 267}, {42.99, 63.42, 267}, {45.18, 60.05, 267}, {46.71, 56.39, 267}, {62.36, 48.94, 267}, {63.11, 50.3, 267}, {63.4, 48.23, 267}, {68.05, 61.41, 267}, {70.24, 50.63, 267}, {70.99, 62.39, 267}, {72.21, 65.58, 267}, {73.65, 59.86, 267}, {74.52, 33.47, 267}, {74.74, 52.36, 267}, {75.02, 57.47, 267}, {77.33, 30.66, 267}, {78.49, 50.48, 267}, {81.49, 35.58, 267}, {82.93, 36.61, 267}, {84.71, 33.33, 267}, {87.02, 37.92, 267}, {15.44, 83.2, 36}, {21.26, 69.16, 36}, {21.33, 75.75, 36}, {22.62, 92.73, 36}, {23.55, 95.73, 36}, {24.73, 81.05, 36}, {24.8, 59.46, 36}, {24.83, 77.14, 36}, {25.05, 64.71, 36}, {26.94, 81.91, 36}, {28.26, 69.11, 36}, {30.9, 97.23, 36}, {69.12, 92.04, 36}, {70.37, 88.34, 36}, {73.76, 84.75, 36}, {74.19, 92.68, 36}, {12.81, 37.03, 45}, {14.76, 36.86, 45}, {15.48, 26.78, 45}, {16.73, 30.07, 45}, {19.37, 23.94, 45}, {20.48, 19.36, 45}, {20.48, 25.74, 45}, {22.4, 20.03, 45}, {24.23, 14.15, 45}, {25.98, 15.74, 45}}
+ b["scrapedAt"] = 1773751536
+ end
+ b = MTH_DS_Beasts[2384]
+ if b then
+ b["displayId"] = 1059
+ b["health"] = 735
+ b["dmgMin"] = 23.7952
+ b["dmgMax"] = 29.744
+ b["armor"] = 975
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{37.77, 36.19, 267}, {37.93, 44.44, 267}, {38.99, 45.61, 267}, {39.27, 37.83, 267}, {39.58, 34.83, 267}, {39.74, 40.55, 267}, {42.49, 40.36, 267}, {42.93, 35.39, 267}, {44.61, 45.84, 267}, {48.61, 34.45, 267}, {49.99, 41.2, 267}, {50.96, 35.44, 267}, {51.86, 44.67, 267}, {53.52, 39.84, 267}, {53.86, 44.3, 267}, {54.3, 39.61, 267}, {55.96, 50.39, 267}, {57.77, 41.58, 267}, {44.26, 88.71, 36}, {50.23, 95.73, 36}, {52.15, 95.68, 36}, {52.23, 92.04, 36}, {53.83, 88.34, 36}}
+ b["scrapedAt"] = 1773751537
+ end
+ b = MTH_DS_Beasts[2385]
+ if b then
+ b["displayId"] = 1056
+ b["health"] = 999
+ b["dmgMin"] = 30.899
+ b["dmgMax"] = 38.3148
+ b["armor"] = 1113
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{56.68, 60.05, 267}, {57.55, 49.97, 267}, {57.65, 59.3, 267}, {58.52, 55.55, 267}, {60.15, 58.45, 267}, {60.96, 50.91, 267}, {61.11, 66.84, 267}, {61.77, 69.0, 267}, {63.58, 67.92, 267}, {64.86, 69.23, 267}, {65.08, 72.98, 267}, {66.24, 74.06, 267}, {67.96, 80.86, 267}, {70.33, 67.97, 267}}
+ b["scrapedAt"] = 1773751539
+ end
+ b = MTH_DS_Beasts[2406]
+ if b then
+ b["displayId"] = 1058
+ b["health"] = 1437
+ b["dmgMin"] = 39.5507
+ b["dmgMax"] = 50.6744
+ b["armor"] = 1287
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{29.4, 70.39, 36}, {29.65, 74.57, 36}, {29.65, 84.7, 36}, {29.9, 77.14, 36}, {30.55, 88.29, 36}, {31.12, 72.27, 36}, {32.12, 82.77, 36}, {34.33, 82.87, 36}, {35.9, 84.75, 36}, {37.01, 86.36, 36}, {40.33, 91.82, 36}, {42.76, 78.59, 36}, {49.05, 75.21, 36}, {64.69, 48.64, 36}, {74.08, 59.84, 36}, {76.65, 51.32, 36}, {83.12, 58.18, 36}, {42.71, 97.73, 28}}
+ b["scrapedAt"] = 1773751540
+ end
+ b = MTH_DS_Beasts[2407]
+ if b then
+ b["displayId"] = 2300
+ b["health"] = 1453
+ b["dmgMin"] = 38.808
+ b["dmgMax"] = 49.7227
+ b["armor"] = 1322
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{30.9, 84.7, 36}, {37.08, 90.05, 36}, {39.58, 25.82, 36}, {39.8, 84.64, 36}, {43.69, 80.68, 36}, {44.19, 76.66, 36}, {45.51, 19.39, 36}, {45.69, 77.73, 36}, {48.87, 83.09, 36}, {50.4, 22.77, 36}, {51.73, 23.73, 36}, {52.48, 24.7, 36}, {53.48, 30.59, 36}, {56.15, 32.73, 36}, {66.73, 51.16, 36}, {74.37, 54.75, 36}, {78.37, 52.93, 36}, {83.12, 61.12, 36}, {83.19, 64.87, 36}, {44.48, 96.93, 28}}
+ b["scrapedAt"] = 1773751541
+ end
+ b = MTH_DS_Beasts[2408]
+ if b then
+ b["displayId"] = 1244
+ b["health"] = 1250
+ b["dmgMin"] = 49.4384
+ b["dmgMax"] = 46.9665
+ b["armor"] = 1806
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{10.58, 54.54, 36}, {12.9, 54.64, 36}, {17.73, 52.82, 36}, {18.98, 50.62, 36}, {21.26, 47.36, 36}, {22.87, 45.86, 36}, {24.87, 43.71, 36}, {26.76, 42.59, 36}, {29.65, 34.82, 36}, {29.69, 38.04, 36}, {30.8, 36.37, 36}, {31.65, 13.23, 36}, {31.87, 31.39, 36}, {32.9, 29.3, 36}, {33.37, 11.95, 36}, {34.23, 27.54, 36}, {35.76, 13.5, 36}, {36.8, 19.07, 36}, {67.3, 95.46, 36}, {67.65, 80.89, 36}, {67.69, 91.98, 36}, {68.05, 88.23, 36}, {68.83, 74.52, 36}, {72.48, 68.57, 36}, {72.76, 68.09, 36}, {74.98, 65.09, 36}, {78.73, 62.57, 36}, {79.58, 59.36, 36}, {80.26, 58.71, 36}, {82.65, 53.95, 36}, {55.93, 53.91, 267}, {56.36, 50.58, 267}, {56.8, 47.2, 267}, {61.68, 42.8, 267}, {63.93, 39.66, 267}, {67.74, 35.3, 267}, {46.71, 98.53, 28}, {48.09, 96.93, 28}, {51.04, 95.5, 28}, {95.19, 82.63, 1497}, {96.02, 82.17, 1497}}
+ b["scrapedAt"] = 1773751542
+ end
+ b = MTH_DS_Beasts[2476]
+ if b then
+ b["displayId"] = 831
+ b["npcClass"] = "Rare"
+ b["health"] = 682
+ b["dmgMin"] = 38.3148
+ b["dmgMax"] = 48.2024
+ b["armor"] = 922
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{58.89, 31.01, 38}}
+ b["scrapedAt"] = 1773751543
+ end
+ b = MTH_DS_Beasts[2505]
+ if b then
+ b["displayId"] = 5027
+ b["health"] = 3241
+ b["dmgMin"] = 105.057
+ b["dmgMax"] = 129.776
+ b["armor"] = 4426
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{74.62, 68.29, 47}, {75.74, 71.36, 47}, {76.1, 65.21, 47}, {76.16, 83.95, 47}, {76.73, 68.32, 47}, {77.35, 86.44, 47}, {78.62, 69.65, 47}, {79.17, 59.29, 47}, {79.74, 65.75, 47}, {79.95, 57.92, 47}, {80.26, 71.91, 47}, {80.55, 77.29, 47}, {80.68, 61.82, 47}, {80.68, 69.34, 47}, {81.32, 44.87, 47}, {81.53, 55.16, 47}, {81.79, 42.06, 47}, {82.36, 38.01, 47}, {82.39, 48.81, 47}, {82.7, 53.79, 47}, {82.73, 41.36, 47}, {83.04, 50.4, 47}, {83.45, 55.35, 47}, {84.03, 64.58, 47}, {84.39, 61.9, 47}, {84.91, 45.38, 47}, {85.12, 55.04, 47}, {85.14, 57.73, 47}, {85.3, 41.87, 47}, {85.95, 61.78, 47}, {85.97, 64.74, 47}}
+ b["scrapedAt"] = 1773749880
+ end
+ b = MTH_DS_Beasts[2521]
+ if b then
+ b["displayId"] = 809
+ b["health"] = 3356
+ b["dmgMin"] = 74.1576
+ b["dmgMax"] = 91.461
+ b["armor"] = 2101
+ b["factionId"] = 72
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{38.74, 85.9, 33}, {39.11, 86.56, 33}, {39.22, 78.71, 33}, {40.22, 80.44, 33}, {40.27, 82.02, 33}, {40.35, 83.85, 33}, {40.73, 79.13, 33}, {40.85, 80.54, 33}, {41.31, 85.01, 33}, {41.89, 84.14, 33}}
+ b["scrapedAt"] = 1773749882
+ end
+ b = MTH_DS_Beasts[2522]
+ if b then
+ b["displayId"] = 613
+ b["health"] = 3356
+ b["dmgMin"] = 74.1576
+ b["dmgMax"] = 91.461
+ b["armor"] = 2101
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{36.59, 85.69, 33}, {37.07, 83.29, 33}, {37.14, 80.35, 33}, {37.26, 78.56, 33}, {37.62, 83.55, 33}, {37.64, 86.13, 33}, {38.05, 81.29, 33}, {38.64, 86.56, 33}, {38.88, 77.74, 33}}
+ b["scrapedAt"] = 1773749884
+ end
+ b = MTH_DS_Beasts[2544]
+ if b then
+ b["displayId"] = 9573
+ b["health"] = 2175
+ b["dmgMin"] = 72.9216
+ b["dmgMax"] = 91.461
+ b["armor"] = 3023
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{25.79, 85.87, 33}, {26.31, 84.11, 33}, {26.73, 86.96, 33}, {26.92, 84.35, 33}, {27.77, 85.62, 33}, {28.74, 87.54, 33}, {29.27, 82.28, 33}, {29.94, 87.31, 33}, {30.1, 85.76, 33}, {30.76, 81.71, 33}, {31.25, 88.08, 33}, {31.32, 81.9, 33}, {31.35, 85.92, 33}, {33.82, 76.47, 33}, {33.96, 85.92, 33}, {35.12, 87.78, 33}}
+ b["scrapedAt"] = 1773751545
+ end
+ b = MTH_DS_Beasts[2559]
+ if b then
+ b["displayId"] = 11316
+ b["health"] = 1250
+ b["dmgMin"] = 64.2699
+ b["dmgMax"] = 80.3374
+ b["armor"] = 1217
+ b["factionId"] = 48
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{17.12, 42.07, 45}, {17.18, 42.69, 45}, {18.87, 38.11, 45}, {19.62, 42.19, 45}, {20.59, 44.99, 45}, {21.43, 36.4, 45}, {23.65, 35.36, 45}, {23.68, 39.61, 45}, {24.93, 36.78, 45}, {25.18, 40.11, 45}, {26.65, 23.99, 45}, {27.2, 20.69, 45}, {28.29, 17.24, 45}, {29.93, 19.86, 45}, {30.81, 20.32, 45}, {32.68, 36.11, 45}, {33.59, 35.03, 45}, {37.29, 50.32, 45}, {38.4, 51.65, 45}, {39.98, 61.86, 45}, {40.09, 58.9, 45}, {40.48, 49.24, 45}, {41.01, 44.78, 45}, {41.06, 74.24, 45}, {41.23, 49.74, 45}, {41.4, 53.36, 45}, {41.81, 41.9, 45}, {42.45, 43.82, 45}, {43.15, 77.78, 45}, {44.81, 54.94, 45}, {46.56, 64.28, 45}, {46.68, 39.44, 45}, {46.73, 50.49, 45}, {46.76, 41.11, 45}, {46.76, 52.99, 45}, {47.73, 56.19, 45}, {48.15, 33.65, 45}, {49.29, 49.32, 45}, {49.54, 52.07, 45}, {51.06, 47.36, 45}, {51.31, 40.53, 45}, {52.04, 44.86, 45}, {52.26, 32.4, 45}, {53.09, 43.94, 45}, {54.23, 46.69, 45}, {56.01, 48.03, 45}, {58.7, 41.11, 45}, {59.59, 45.11, 45}, {60.34, 37.24, 45}, {60.79, 42.24, 45}, {63.26, 45.11, 45}, {63.95, 50.49, 45}, {64.26, 46.36, 45}, {64.37, 40.9, 45}, {65.62, 37.99, 45}, {67.09, 56.28, 45}, {67.98, 36.82, 45}, {68.51, 41.15, 45}, {68.68, 49.11, 45}, {69.04, 38.57, 45}, {69.79, 26.99, 45}, {69.81, 35.78, 45}, {70.01, 30.32, 45}, {70.56, 51.03, 45}, {73.98, 48.28, 45}, {76.29, 31.11, 45}}
+ b["scrapedAt"] = 1773751546
+ end
+ b = MTH_DS_Beasts[2560]
+ if b then
+ b["displayId"] = 180
+ b["health"] = 1453
+ b["dmgMin"] = 67.914
+ b["dmgMax"] = 84.8925
+ b["armor"] = 1324
+ b["factionId"] = 48
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{18.04, 47.19, 45}, {18.51, 46.32, 45}, {19.04, 48.69, 45}, {19.79, 57.99, 45}, {20.04, 44.99, 45}, {21.84, 53.53, 45}, {23.15, 49.69, 45}, {30.06, 56.07, 45}, {31.06, 57.61, 45}, {32.06, 60.24, 45}, {32.34, 63.99, 45}, {34.09, 61.82, 45}, {35.43, 65.82, 45}, {36.51, 64.03, 45}, {37.06, 29.86, 45}, {37.37, 67.86, 45}, {37.87, 36.9, 45}, {38.06, 38.65, 45}, {39.51, 69.86, 45}, {39.84, 29.82, 45}, {39.84, 34.19, 45}, {40.06, 67.03, 45}, {40.18, 41.11, 45}, {41.04, 29.94, 45}, {43.01, 36.4, 45}, {43.84, 38.4, 45}, {46.51, 35.03, 45}, {54.06, 57.61, 45}, {54.48, 59.61, 45}, {55.95, 68.78, 45}, {58.81, 67.28, 45}, {62.43, 65.24, 45}}
+ b["scrapedAt"] = 1773749885
+ end
+ b = MTH_DS_Beasts[2561]
+ if b then
+ b["displayId"] = 961
+ b["health"] = 1747
+ b["dmgMin"] = 75.1905
+ b["dmgMax"] = 94.5945
+ b["armor"] = 1508
+ b["factionId"] = 48
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{46.48, 75.99, 45}, {46.84, 78.69, 45}, {47.59, 75.19, 45}, {48.01, 82.4, 45}, {50.04, 70.4, 45}, {50.15, 63.86, 45}, {53.73, 67.78, 45}, {54.01, 64.61, 45}, {55.09, 67.44, 45}}
+ b["scrapedAt"] = 1773751547
+ end
+ b = MTH_DS_Beasts[2563]
+ if b then
+ b["displayId"] = 1103
+ b["health"] = 1437
+ b["dmgMin"] = 56.8542
+ b["dmgMax"] = 71.6857
+ b["armor"] = 1287
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{16.9, 43.69, 45}, {17.18, 42.28, 45}, {17.31, 49.74, 45}, {18.06, 50.69, 45}, {18.18, 35.44, 45}, {19.4, 43.57, 45}, {20.73, 36.24, 45}, {20.84, 42.15, 45}, {21.59, 49.57, 45}, {22.59, 45.15, 45}, {22.7, 51.94, 45}, {23.59, 38.19, 45}, {23.79, 48.24, 45}, {26.34, 37.94, 45}, {26.54, 25.69, 45}, {28.26, 20.82, 45}, {29.06, 34.61, 45}, {32.7, 60.9, 45}, {32.81, 54.4, 45}, {33.95, 64.86, 45}, {36.09, 33.86, 45}, {39.09, 35.4, 45}, {39.37, 45.36, 45}, {40.04, 51.9, 45}, {40.76, 67.74, 45}, {41.06, 62.53, 45}, {41.2, 38.15, 45}, {41.43, 48.65, 45}, {41.98, 72.69, 45}, {42.01, 59.82, 45}, {42.95, 58.94, 45}, {43.09, 64.53, 45}, {45.29, 67.4, 45}, {45.65, 64.44, 45}, {45.81, 40.86, 45}, {47.9, 57.57, 45}, {47.93, 34.99, 45}, {48.06, 60.61, 45}, {48.68, 50.82, 45}, {50.18, 61.49, 45}, {50.54, 41.82, 45}, {51.23, 36.57, 45}, {53.29, 33.28, 45}, {55.31, 33.65, 45}, {57.81, 45.15, 45}, {57.9, 33.82, 45}, {60.59, 46.53, 45}, {60.79, 39.65, 45}, {61.56, 49.24, 45}, {62.23, 42.61, 45}, {62.81, 30.07, 45}, {64.23, 43.65, 45}, {65.59, 50.65, 45}, {66.56, 49.24, 45}, {68.04, 53.11, 45}, {68.37, 46.49, 45}, {68.9, 35.36, 45}, {68.93, 56.28, 45}, {69.12, 33.78, 45}, {69.81, 56.15, 45}, {69.87, 37.07, 45}, {71.06, 46.94, 45}, {71.06, 54.24, 45}, {71.81, 48.44, 45}}
+ b["scrapedAt"] = 1773749886
+ end
+ b = MTH_DS_Beasts[2565]
+ if b then
+ b["displayId"] = 1104
+ b["health"] = 1669
+ b["dmgMin"] = 61.798
+ b["dmgMax"] = 76.6295
+ b["armor"] = 1427
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{37.9, 26.9, 45}, {38.34, 25.36, 45}, {38.43, 29.24, 45}, {40.98, 31.86, 45}, {41.95, 34.11, 45}, {42.48, 32.32, 45}, {42.68, 29.49, 45}, {44.54, 31.61, 45}, {46.04, 74.44, 45}, {46.54, 36.74, 45}, {47.79, 77.19, 45}, {51.18, 66.57, 45}, {52.59, 60.99, 45}, {53.51, 65.94, 45}, {54.37, 54.86, 45}, {55.81, 54.57, 45}, {56.45, 57.82, 45}, {56.93, 61.94, 45}, {57.04, 68.99, 45}, {57.34, 64.99, 45}, {59.9, 68.44, 45}, {60.45, 64.53, 45}, {61.43, 65.86, 45}, {61.73, 68.99, 45}}
+ b["scrapedAt"] = 1773751548
+ end
+ b = MTH_DS_Beasts[2578]
+ if b then
+ b["displayId"] = 10824
+ b["health"] = 1316
+ b["dmgMin"] = 53.5392
+ b["dmgMax"] = 64.247
+ b["armor"] = 1871
+ b["factionId"] = 73
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{17.9, 43.57, 45}, {19.81, 37.44, 45}, {20.15, 47.03, 45}, {26.7, 24.82, 45}, {27.09, 37.99, 45}, {28.04, 34.36, 45}, {29.12, 19.78, 45}, {42.37, 56.61, 45}, {43.37, 61.24, 45}, {54.09, 46.15, 45}, {60.01, 41.53, 45}, {66.48, 40.78, 45}, {68.34, 53.19, 45}, {68.79, 49.57, 45}, {69.26, 52.4, 45}, {69.31, 37.19, 45}, {73.93, 46.57, 45}}
+ b["scrapedAt"] = 1773749887
+ end
+ b = MTH_DS_Beasts[2579]
+ if b then
+ b["displayId"] = 1105
+ b["health"] = 1521
+ b["dmgMin"] = 57.1085
+ b["dmgMax"] = 71.3856
+ b["armor"] = 1357
+ b["factionId"] = 73
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{32.79, 59.28, 45}, {37.4, 62.32, 45}, {37.79, 25.07, 45}, {38.56, 62.19, 45}, {38.62, 69.57, 45}, {38.79, 29.82, 45}, {42.93, 35.57, 45}, {48.2, 40.03, 45}, {49.34, 67.69, 45}, {49.87, 69.9, 45}, {56.7, 63.99, 45}, {57.15, 71.65, 45}, {61.68, 65.53, 45}}
+ b["scrapedAt"] = 1773751549
+ end
+ b = MTH_DS_Beasts[2580]
+ if b then
+ b["displayId"] = 388
+ b["health"] = 1899
+ b["dmgMin"] = 61.8675
+ b["dmgMax"] = 77.3344
+ b["armor"] = 1651
+ b["factionId"] = 73
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{15.98, 64.49, 45}, {17.01, 71.99, 45}, {18.62, 71.32, 45}, {20.87, 75.19, 45}, {23.43, 70.53, 45}, {31.59, 69.36, 45}, {49.12, 82.53, 45}}
+ b["scrapedAt"] = 1773751550
+ end
+ b = MTH_DS_Beasts[2635]
+ if b then
+ b["displayId"] = 1038
+ b["npcClass"] = "Elite"
+ b["health"] = 5172
+ b["dmgMin"] = 309.338
+ b["dmgMax"] = 402.139
+ b["armor"] = 2539
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{25.35, 19.21, 33}, {29.33, 22.27, 33}, {29.83, 25.46, 33}, {33.44, 32.51, 33}}
+ b["scrapedAt"] = 1773751551
+ end
+ b = MTH_DS_Beasts[2658]
+ if b then
+ b["displayId"] = 935
+ b["health"] = 2450
+ b["dmgMin"] = 86.5172
+ b["dmgMax"] = 114.945
+ b["armor"] = 2725
+ b["factionId"] = 1055
+ b["reactA"] = "friendly"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{45.06, 51.77, 47}}
+ b["scrapedAt"] = 1773749889
+ end
+ b = MTH_DS_Beasts[2659]
+ if b then
+ b["displayId"] = 1148
+ b["health"] = 2908
+ b["dmgMin"] = 97.6408
+ b["dmgMax"] = 123.596
+ b["armor"] = 2888
+ b["factionId"] = 1055
+ b["reactA"] = "friendly"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{54.21, 49.35, 47}, {63.82, 51.96, 47}}
+ b["scrapedAt"] = 1773749890
+ end
+ b = MTH_DS_Beasts[2680]
+ if b then
+ b["displayId"] = 781
+ b["health"] = 2908
+ b["dmgMin"] = 97.6408
+ b["dmgMax"] = 122.36
+ b["armor"] = 2835
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{43.56, 67.78, 47}, {44.62, 65.4, 47}, {46.42, 65.05, 47}, {46.52, 69.69, 47}, {63.53, 65.21, 47}, {63.53, 68.87, 47}, {65.79, 70.23, 47}, {66.7, 72.34, 47}, {67.97, 70.62, 47}}
+ b["scrapedAt"] = 1773749892
+ end
+ b = MTH_DS_Beasts[2681]
+ if b then
+ b["displayId"] = 782
+ b["npcClass"] = "Elite"
+ b["health"] = 7906
+ b["dmgMin"] = 463.485
+ b["dmgMax"] = 598.204
+ b["armor"] = 3052
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{58.42, 75.92, 47}, {58.57, 64.51, 47}, {60.78, 77.36, 47}, {61.77, 79.9, 47}, {84.51, 17.65, 45}, {85.95, 22.15, 45}}
+ b["scrapedAt"] = 1773749893
+ end
+ b = MTH_DS_Beasts[2686]
+ if b then
+ b["displayId"] = 1157
+ b["health"] = 2544
+ b["dmgMin"] = 90.2251
+ b["dmgMax"] = 114.945
+ b["armor"] = 2641
+ b["factionId"] = 312
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{29.48, 70.62, 47}, {30.65, 69.69, 47}, {31.97, 71.36, 47}, {33.25, 69.26, 47}, {34.34, 66.77, 47}, {35.45, 74.4, 47}, {36.94, 63.81, 47}, {37.71, 67.62, 47}}
+ b["scrapedAt"] = 1773749896
+ end
+ b = MTH_DS_Beasts[2707]
+ if b then
+ b["displayId"] = 7536
+ b["npcClass"] = "Elite"
+ b["health"] = 21352
+ b["dmgMin"] = 394.664
+ b["dmgMax"] = 508.939
+ b["armor"] = 3271
+ b["factionId"] = 312
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773749897
+ end
+ b = MTH_DS_Beasts[2727]
+ if b then
+ b["displayId"] = 161
+ b["health"] = 1669
+ b["dmgMin"] = 61.798
+ b["dmgMax"] = 76.6295
+ b["armor"] = 1480
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{46.67, 44.11, 3}, {46.83, 35.9, 3}, {46.87, 48.33, 3}, {49.64, 46.1, 3}, {49.84, 41.87, 3}, {50.12, 35.18, 3}, {52.29, 20.53, 3}, {52.74, 39.22, 3}, {52.86, 14.62, 3}, {53.18, 52.01, 3}, {53.7, 22.16, 3}, {55.03, 48.09, 3}, {58.08, 46.46, 3}}
+ b["scrapedAt"] = 1773751552
+ end
+ b = MTH_DS_Beasts[2728]
+ if b then
+ b["displayId"] = 557
+ b["health"] = 1899
+ b["dmgMin"] = 61.8675
+ b["dmgMax"] = 77.3344
+ b["armor"] = 1709
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{44.38, 71.96, 3}, {48.64, 76.25, 3}, {54.22, 74.68, 3}, {54.99, 52.01, 3}, {54.99, 63.7, 3}, {55.27, 68.47, 3}, {55.51, 56.65, 3}, {56.64, 60.93, 3}, {58.81, 50.44, 3}, {59.21, 70.76, 3}, {59.29, 60.45, 3}, {60.58, 55.62, 3}, {60.86, 50.2, 3}, {61.62, 65.63, 3}}
+ b["scrapedAt"] = 1773751553
+ end
+ b = MTH_DS_Beasts[2729]
+ if b then
+ b["displayId"] = 1164
+ b["health"] = 2034
+ b["dmgMin"] = 66.6266
+ b["dmgMax"] = 83.2832
+ b["armor"] = 1964
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{10.37, 67.02, 3}, {10.49, 63.64, 3}, {12.9, 65.81, 3}, {13.5, 63.76, 3}, {16.84, 65.63, 3}, {18.77, 53.87, 3}, {21.38, 56.29, 3}, {22.75, 58.16, 3}, {23.31, 51.58, 3}, {24.27, 58.52, 3}, {25.48, 55.98, 3}, {28.21, 47.54, 3}, {29.7, 64.07, 3}, {30.06, 63.82, 3}, {30.95, 70.88, 3}, {31.07, 60.15, 3}, {32.48, 57.79, 3}, {33.6, 71.12, 3}, {34.97, 64.25, 3}, {35.73, 73.47, 3}, {37.34, 57.73, 3}, {37.54, 62.98, 3}, {37.9, 66.72, 3}, {39.19, 67.38, 3}, {41.56, 71.36, 3}}
+ b["scrapedAt"] = 1773751554
+ end
+ b = MTH_DS_Beasts[2730]
+ if b then
+ b["displayId"] = 161
+ b["health"] = 2402
+ b["dmgMin"] = 80.3374
+ b["dmgMax"] = 102.585
+ b["armor"] = 2397
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{69.34, 36.21, 3}, {70.26, 32.71, 3}, {71.47, 34.76, 3}, {72.64, 33.37, 3}}
+ b["scrapedAt"] = 1773749898
+ end
+ b = MTH_DS_Beasts[2731]
+ if b then
+ b["displayId"] = 632
+ b["health"] = 1747
+ b["dmgMin"] = 38.808
+ b["dmgMax"] = 49.7227
+ b["armor"] = 1536
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{34.73, 41.69, 3}, {35.09, 40.37, 3}, {38.1, 46.4, 3}, {40.07, 37.71, 3}, {42.85, 40.19, 3}, {43.61, 38.32, 3}, {45.18, 40.49, 3}, {53.78, 15.46, 3}, {55.15, 15.04, 3}, {57.08, 28.25, 3}, {59.09, 25.53, 3}, {61.74, 39.34, 3}, {61.74, 40.19, 3}, {62.63, 46.34, 3}, {63.07, 29.57, 3}, {65.76, 37.47, 3}}
+ b["scrapedAt"] = 1773751556
+ end
+ b = MTH_DS_Beasts[2732]
+ if b then
+ b["displayId"] = 1055
+ b["health"] = 1909
+ b["dmgMin"] = 67.9778
+ b["dmgMax"] = 84.0453
+ b["armor"] = 1721
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{30.02, 45.49, 3}, {30.59, 47.84, 3}, {34.77, 51.16, 3}, {35.49, 55.98, 3}, {36.9, 49.83, 3}, {39.83, 73.11, 3}, {41.36, 50.92, 3}, {41.48, 66.96, 3}, {41.64, 59.9, 3}, {43.17, 69.49, 3}, {44.38, 72.81, 3}, {46.67, 49.71, 3}, {46.87, 76.73, 3}, {47.55, 51.82, 3}, {49.44, 58.34, 3}, {50.16, 57.07, 3}, {51.73, 58.1, 3}, {53.58, 39.46, 3}, {53.78, 45.91, 3}, {56.64, 74.92, 3}, {59.21, 45.91, 3}, {60.66, 62.2, 3}, {63.07, 73.71, 3}, {63.11, 64.31, 3}, {65.0, 68.35, 3}}
+ b["scrapedAt"] = 1773751557
+ end
+ b = MTH_DS_Beasts[2734]
+ if b then
+ b["displayId"] = 917
+ b["health"] = 2175
+ b["dmgMin"] = 46.9665
+ b["dmgMax"] = 59.3261
+ b["armor"] = 1982
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{8.355, 57.79, 3}, {10.32, 58.76, 3}, {10.77, 70.1, 3}, {14.63, 57.07, 3}, {16.11, 53.75, 3}, {16.52, 49.89, 3}, {18.49, 65.87, 3}, {19.45, 70.4, 3}, {21.26, 68.89, 3}, {22.83, 60.21, 3}, {25.36, 79.26, 3}, {25.88, 64.0, 3}, {26.04, 74.68, 3}, {28.25, 66.48, 3}}
+ b["scrapedAt"] = 1773751558
+ end
+ b = MTH_DS_Beasts[2753]
+ if b then
+ b["displayId"] = 9372
+ b["npcClass"] = "Rare"
+ b["health"] = 1294
+ b["dmgMin"] = 136.822
+ b["dmgMax"] = 166.566
+ b["armor"] = 1709
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{46.22, 74.32, 3}}
+ b["scrapedAt"] = 1773751559
+ end
+ b = MTH_DS_Beasts[2829]
+ if b then
+ b["displayId"] = 10824
+ b["health"] = 1669
+ b["dmgMin"] = 61.8503
+ b["dmgMax"] = 78.8288
+ b["armor"] = 1483
+ b["factionId"] = 73
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{54.02, 23.42, 3}, {56.56, 28.61, 3}, {60.7, 28.25, 3}, {63.87, 45.91, 3}, {65.24, 37.65, 3}}
+ b["scrapedAt"] = 1773751560
+ end
+ b = MTH_DS_Beasts[2830]
+ if b then
+ b["displayId"] = 1105
+ b["health"] = 1827
+ b["dmgMin"] = 63.034
+ b["dmgMax"] = 81.5734
+ b["armor"] = 1718
+ b["factionId"] = 73
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{50.2, 59.66, 3}, {51.41, 74.38, 3}, {52.66, 50.26, 3}, {56.48, 45.85, 3}, {58.97, 70.94, 3}, {60.82, 72.75, 3}, {62.67, 79.14, 3}, {62.83, 57.25, 3}, {70.1, 85.89, 3}}
+ b["scrapedAt"] = 1773751561
+ end
+ b = MTH_DS_Beasts[2831]
+ if b then
+ b["displayId"] = 1106
+ b["health"] = 2082
+ b["dmgMin"] = 70.4497
+ b["dmgMax"] = 90.2251
+ b["armor"] = 1968
+ b["factionId"] = 73
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{15.27, 49.53, 3}, {17.08, 58.34, 3}, {17.6, 73.59, 3}, {18.77, 64.43, 3}, {22.75, 72.45, 3}, {25.36, 78.78, 3}, {33.44, 59.6, 3}, {33.48, 53.45, 3}, {35.05, 72.27, 3}}
+ b["scrapedAt"] = 1773751563
+ end
+ b = MTH_DS_Beasts[2850]
+ if b then
+ b["displayId"] = 6082
+ b["npcClass"] = "Rare"
+ b["health"] = 1907
+ b["dmgMin"] = 23.0422
+ b["dmgMax"] = 27.8932
+ b["armor"] = 1593
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{43.93, 38.38, 3}, {54.75, 14.38, 3}, {60.38, 30.06, 3}}
+ b["scrapedAt"] = 1773751564
+ end
+ b = MTH_DS_Beasts[2923]
+ if b then
+ b["displayId"] = 11413
+ b["health"] = 2351
+ b["dmgMin"] = 72.5754
+ b["dmgMax"] = 92.8013
+ b["armor"] = 2246
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{15.09, 54.18, 47}, {15.14, 55.66, 47}, {17.17, 49.51, 47}, {18.18, 50.99, 47}, {19.66, 51.49, 47}, {20.1, 56.64, 47}, {20.96, 55.47, 47}, {21.74, 53.01, 47}, {22.49, 51.18, 47}, {23.58, 51.77, 47}}
+ b["scrapedAt"] = 1773749899
+ end
+ b = MTH_DS_Beasts[2924]
+ if b then
+ b["displayId"] = 11419
+ b["health"] = 2545
+ b["dmgMin"] = 80.9037
+ b["dmgMax"] = 104.699
+ b["armor"] = 2557
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{24.68, 51.1, 47}, {26.62, 55.27, 47}, {27.79, 53.44, 47}, {27.87, 69.42, 47}, {27.9, 61.55, 47}, {28.83, 63.18, 47}, {29.56, 54.18, 47}, {31.74, 60.65, 47}, {32.08, 63.42, 47}, {32.1, 55.31, 47}, {33.69, 53.68, 47}, {34.39, 58.74, 47}, {34.96, 44.09, 47}, {34.96, 61.55, 47}, {35.48, 47.75, 47}, {35.82, 45.03, 47}, {37.27, 49.74, 47}, {37.58, 55.04, 47}}
+ b["scrapedAt"] = 1773749900
+ end
+ b = MTH_DS_Beasts[2925]
+ if b then
+ b["displayId"] = 11417
+ b["health"] = 2748
+ b["dmgMin"] = 92.8013
+ b["dmgMax"] = 114.217
+ b["armor"] = 2780
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{37.38, 61.0, 47}, {39.25, 46.0, 47}, {39.38, 62.91, 47}, {39.84, 50.6, 47}, {40.55, 64.16, 47}, {40.94, 55.12, 47}, {41.3, 67.12, 47}, {41.48, 46.19, 47}, {42.7, 62.71, 47}, {43.95, 61.74, 47}, {46.73, 47.83, 47}, {47.79, 59.01, 47}, {48.03, 61.47, 47}, {49.79, 57.53, 47}, {51.06, 40.58, 47}, {51.82, 59.95, 47}}
+ b["scrapedAt"] = 1773749901
+ end
+ b = MTH_DS_Beasts[2926]
+ if b then
+ b["displayId"] = 11418
+ b["health"] = 3016
+ b["dmgMin"] = 100.113
+ b["dmgMax"] = 124.832
+ b["armor"] = 2888
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{51.09, 60.96, 47}, {51.45, 54.34, 47}, {52.21, 49.12, 47}, {53.48, 56.05, 47}, {54.18, 42.77, 47}, {54.31, 43.86, 47}, {58.31, 54.73, 47}, {58.83, 47.56, 47}, {59.66, 54.18, 47}, {60.18, 55.27, 47}, {61.19, 48.03, 47}, {61.95, 46.35, 47}, {62.73, 56.6, 47}, {63.01, 42.88, 47}, {63.12, 52.39, 47}, {63.61, 49.31, 47}, {65.35, 53.29, 47}, {66.62, 60.57, 47}, {66.73, 48.61, 47}, {66.78, 57.77, 47}, {67.04, 50.36, 47}, {68.6, 52.78, 47}, {68.68, 60.26, 47}, {69.35, 44.99, 47}, {69.58, 54.88, 47}, {70.52, 58.0, 47}, {71.27, 61.51, 47}, {72.03, 63.03, 47}, {72.36, 56.4, 47}, {73.06, 52.0, 47}, {74.65, 48.65, 47}, {76.42, 53.48, 47}, {76.55, 48.81, 47}, {78.03, 52.23, 47}}
+ b["scrapedAt"] = 1773749903
+ end
+ b = MTH_DS_Beasts[2931]
+ if b then
+ b["displayId"] = 1210
+ b["npcClass"] = "Rare-Elite"
+ b["health"] = 9151
+ b["dmgMin"] = 394.664
+ b["dmgMax"] = 508.939
+ b["armor"] = 3271
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{56.07, 61.71, 3}}
+ b["scrapedAt"] = 1773749904
+ end
+ b = MTH_DS_Beasts[2954]
+ if b then
+ b["displayId"] = 6807
+ b["health"] = 95
+ b["dmgMin"] = 3.3
+ b["dmgMax"] = 6.6
+ b["armor"] = 120
+ b["factionId"] = 111
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{58.98, 77.2, 215}, {59.77, 78.31, 215}, {61.0, 85.23, 215}, {61.08, 80.64, 215}, {61.47, 75.68, 215}, {63.57, 79.1, 215}, {63.73, 81.7, 215}, {63.94, 77.58, 215}, {64.25, 78.57, 215}, {65.63, 77.9, 215}}
+ b["scrapedAt"] = 1773751565
+ end
+ b = MTH_DS_Beasts[2955]
+ if b then
+ b["displayId"] = 1219
+ b["health"] = 46
+ b["dmgMin"] = 1.1
+ b["dmgMax"] = 2.2
+ b["armor"] = 16
+ b["factionId"] = 189
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{42.08, 77.26, 215}, {42.28, 82.28, 215}, {42.86, 76.53, 215}, {43.62, 79.1, 215}, {44.11, 84.97, 215}, {44.22, 87.65, 215}, {44.26, 73.99, 215}, {44.61, 83.74, 215}, {45.23, 87.86, 215}, {45.43, 79.13, 215}, {46.01, 85.2, 215}, {46.5, 74.98, 215}, {46.6, 82.22, 215}, {46.67, 78.19, 215}, {47.8, 84.09, 215}, {47.9, 77.4, 215}, {48.13, 81.81, 215}, {48.58, 87.68, 215}, {49.56, 85.96, 215}, {49.59, 77.84, 215}, {49.59, 81.72, 215}, {49.71, 78.57, 215}, {50.1, 74.16, 215}, {50.51, 88.7, 215}, {50.57, 85.84, 215}, {50.67, 81.23, 215}, {50.96, 76.15, 215}, {51.52, 74.92, 215}, {51.6, 87.94, 215}, {51.89, 79.8, 215}, {53.39, 84.06, 215}, {53.88, 82.75, 215}, {53.92, 86.92, 215}}
+ b["scrapedAt"] = 1773751566
+ end
+ b = MTH_DS_Beasts[2956]
+ if b then
+ b["displayId"] = 1220
+ b["health"] = 132
+ b["dmgMin"] = 7.7
+ b["dmgMax"] = 11
+ b["armor"] = 207
+ b["factionId"] = 189
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{33.28, 31.1, 215}, {34.16, 69.9, 215}, {34.35, 34.05, 215}, {34.8, 76.94, 215}, {34.9, 79.86, 215}, {34.98, 74.34, 215}, {35.07, 39.18, 215}, {35.33, 48.29, 215}, {35.64, 71.42, 215}, {35.7, 79.07, 215}, {35.74, 44.24, 215}, {35.89, 56.67, 215}, {36.32, 61.58, 215}, {36.36, 68.41, 215}, {36.46, 53.87, 215}, {36.63, 49.99, 215}, {36.67, 41.2, 215}, {36.81, 57.99, 215}, {36.85, 65.81, 215}, {36.9, 73.2, 215}, {36.92, 77.17, 215}, {36.98, 69.37, 215}, {37.0, 51.04, 215}, {37.6, 35.27, 215}, {37.78, 75.16, 215}, {38.21, 63.45, 215}, {38.83, 54.28, 215}, {39.47, 52.15, 215}, {39.47, 61.87, 215}, {39.65, 66.31, 215}, {39.96, 56.88, 215}, {40.17, 70.16, 215}, {40.47, 51.36, 215}, {40.78, 59.68, 215}, {40.82, 68.24, 215}, {40.87, 73.17, 215}, {41.09, 68.97, 215}, {41.58, 63.42, 215}, {41.96, 66.43, 215}, {42.06, 59.59, 215}, {42.2, 43.27, 215}, {42.94, 55.01, 215}, {43.44, 67.51, 215}, {43.46, 38.89, 215}, {43.68, 51.39, 215}, {43.72, 43.91, 215}, {44.85, 40.79, 215}, {45.12, 71.1, 215}, {45.39, 45.05, 215}, {45.82, 37.2, 215}, {46.48, 31.51, 215}, {46.64, 68.35, 215}, {47.88, 68.29, 215}, {48.84, 45.81, 215}, {48.97, 40.09, 215}, {49.11, 66.4, 215}, {50.18, 66.95, 215}, {52.46, 45.05, 215}, {52.51, 60.64, 215}, {53.88, 61.61, 215}, {54.48, 39.21, 215}, {54.62, 68.56, 215}, {54.64, 41.93, 215}, {55.08, 57.73, 215}, {55.1, 36.85, 215}, {55.67, 46.08, 215}, {56.54, 57.67, 215}, {57.19, 42.95, 215}, {57.38, 36.91, 215}, {58.08, 66.63, 215}, {58.37, 46.81, 215}, {58.43, 72.27, 215}, {59.46, 57.05, 215}, {61.64, 59.62, 215}, {62.58, 54.75, 215}}
+ b["scrapedAt"] = 1773751568
+ end
+ b = MTH_DS_Beasts[2957]
+ if b then
+ b["displayId"] = 1221
+ b["health"] = 172
+ b["dmgMin"] = 12.1
+ b["dmgMax"] = 16.5
+ b["armor"] = 361
+ b["factionId"] = 189
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{33.28, 26.48, 215}, {34.35, 18.13, 215}, {37.12, 43.04, 215}, {37.39, 14.78, 215}, {38.11, 46.95, 215}, {38.25, 18.89, 215}, {38.25, 39.77, 215}, {38.52, 12.53, 215}, {39.55, 18.75, 215}, {39.75, 8.761, 215}, {40.8, 50.05, 215}, {41.13, 13.2, 215}, {42.7, 18.54, 215}, {42.84, 21.52, 215}, {43.29, 46.98, 215}, {43.74, 10.19, 215}, {44.14, 17.84, 215}, {44.57, 28.41, 215}, {44.59, 31.51, 215}, {46.01, 17.0, 215}, {46.09, 10.72, 215}, {46.09, 44.24, 215}, {46.3, 32.15, 215}, {47.14, 7.564, 215}, {47.32, 10.13, 215}, {47.32, 18.63, 215}, {47.34, 27.04, 215}, {47.41, 41.87, 215}, {47.59, 13.64, 215}, {47.65, 25.23, 215}, {47.86, 36.53, 215}, {48.58, 16.09, 215}, {48.62, 14.72, 215}, {49.21, 29.61, 215}, {49.24, 25.58, 215}, {49.61, 38.13, 215}, {49.67, 13.49, 215}, {50.04, 33.46, 215}, {50.63, 46.13, 215}, {50.96, 23.62, 215}, {51.11, 17.73, 215}, {51.21, 42.16, 215}, {51.25, 10.05, 215}, {51.46, 27.86, 215}, {52.03, 22.1, 215}, {52.48, 35.21, 215}, {52.48, 39.71, 215}, {53.06, 18.37, 215}, {53.2, 14.05, 215}, {53.6, 34.08, 215}, {53.9, 44.06, 215}, {54.01, 28.94, 215}, {54.27, 22.95, 215}, {54.81, 20.94, 215}, {55.04, 19.54, 215}, {55.65, 50.63, 215}, {55.71, 25.58, 215}, {55.75, 33.73, 215}, {55.9, 56.41, 215}, {56.04, 29.49, 215}, {56.78, 32.53, 215}, {56.8, 44.73, 215}, {57.69, 53.87, 215}, {57.79, 30.28, 215}, {60.48, 53.61, 215}, {60.96, 64.53, 215}, {64.15, 63.51, 215}, {33.01, 34.3, 17}, {34.58, 36.98, 17}, {34.98, 41.57, 17}, {35.02, 38.36, 17}, {35.67, 39.54, 17}, {36.22, 41.41, 17}, {36.25, 40.4, 17}, {37.11, 41.21, 17}, {39.25, 58.66, 17}, {40.26, 58.13, 17}}
+ b["scrapedAt"] = 1773751569
+ end
+ b = MTH_DS_Beasts[2958]
+ if b then
+ b["displayId"] = 1100
+ b["health"] = 112
+ b["dmgMin"] = 3.3
+ b["dmgMax"] = 6.6
+ b["armor"] = 174
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{34.06, 79.3, 215}, {34.3, 73.43, 215}, {34.92, 71.24, 215}, {34.96, 52.59, 215}, {34.96, 76.12, 215}, {34.98, 68.38, 215}, {35.05, 72.35, 215}, {35.6, 59.3, 215}, {35.7, 69.37, 215}, {35.7, 75.24, 215}, {36.3, 70.37, 215}, {36.32, 52.18, 215}, {36.38, 60.97, 215}, {36.48, 51.83, 215}, {36.57, 65.23, 215}, {36.9, 56.41, 215}, {37.0, 67.45, 215}, {37.33, 62.45, 215}, {37.57, 54.81, 215}, {37.66, 66.4, 215}, {37.78, 69.46, 215}, {37.78, 75.56, 215}, {37.84, 58.57, 215}, {38.05, 52.15, 215}, {38.97, 72.44, 215}, {39.3, 53.55, 215}, {39.49, 71.21, 215}, {39.61, 55.62, 215}, {39.96, 68.62, 215}, {40.02, 58.72, 215}, {40.7, 66.43, 215}, {40.74, 51.8, 215}, {40.78, 60.73, 215}, {40.91, 71.16, 215}, {41.4, 63.94, 215}, {41.48, 60.53, 215}, {41.56, 51.77, 215}, {41.61, 68.18, 215}, {41.91, 73.64, 215}, {42.2, 55.68, 215}, {42.2, 61.7, 215}, {42.94, 66.63, 215}, {43.64, 70.34, 215}, {45.57, 70.43, 215}, {45.9, 69.29, 215}, {47.47, 65.43, 215}, {47.63, 69.05, 215}, {48.29, 69.75, 215}, {48.62, 67.45, 215}, {49.81, 65.29, 215}, {50.57, 68.35, 215}, {50.67, 64.59, 215}, {51.19, 69.52, 215}, {53.35, 68.35, 215}, {53.86, 57.7, 215}, {54.3, 59.27, 215}, {54.42, 70.4, 215}, {55.12, 67.42, 215}, {55.34, 70.37, 215}, {55.76, 62.69, 215}, {56.29, 65.78, 215}, {56.6, 69.29, 215}, {56.66, 66.31, 215}}
+ b["scrapedAt"] = 1773751570
+ end
+ b = MTH_DS_Beasts[2959]
+ if b then
+ b["displayId"] = 643
+ b["health"] = 151
+ b["dmgMin"] = 8.8
+ b["dmgMax"] = 11
+ b["armor"] = 316
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{33.75, 28.7, 215}, {34.35, 27.71, 215}, {34.72, 35.8, 215}, {35.02, 42.98, 215}, {35.17, 24.88, 215}, {35.37, 51.65, 215}, {35.62, 32.53, 215}, {35.72, 36.29, 215}, {36.28, 44.99, 215}, {37.08, 34.34, 215}, {37.16, 35.83, 215}, {38.34, 40.0, 215}, {38.95, 39.56, 215}, {39.53, 40.29, 215}, {40.12, 49.67, 215}, {40.93, 42.16, 215}, {41.44, 45.14, 215}, {41.46, 49.17, 215}, {41.69, 52.03, 215}, {41.71, 40.18, 215}, {42.72, 47.24, 215}, {42.8, 50.37, 215}, {42.82, 52.94, 215}, {44.07, 41.08, 215}, {44.55, 47.74, 215}, {44.79, 40.09, 215}, {45.0, 49.05, 215}, {46.13, 33.55, 215}, {46.6, 48.91, 215}, {46.66, 35.36, 215}, {46.67, 45.05, 215}, {47.36, 49.96, 215}, {47.4, 32.59, 215}, {47.75, 46.89, 215}, {48.0, 42.13, 215}, {48.02, 39.16, 215}, {48.66, 31.07, 215}, {49.01, 43.13, 215}, {49.24, 48.97, 215}, {49.3, 47.1, 215}, {49.32, 36.21, 215}, {50.49, 39.94, 215}, {50.96, 46.57, 215}, {51.15, 44.18, 215}, {51.21, 34.1, 215}, {51.87, 40.03, 215}, {53.8, 45.05, 215}, {54.36, 42.57, 215}, {54.46, 44.21, 215}, {54.48, 37.26, 215}, {55.16, 50.22, 215}, {55.41, 48.15, 215}, {55.76, 57.84, 215}, {55.98, 55.8, 215}, {56.5, 71.27, 215}, {56.85, 58.57, 215}, {56.99, 62.48, 215}, {57.13, 44.44, 215}, {57.19, 55.94, 215}, {57.19, 65.55, 215}, {57.54, 51.59, 215}, {57.56, 47.21, 215}, {57.79, 73.02, 215}, {57.87, 68.21, 215}, {58.12, 42.83, 215}, {58.59, 62.48, 215}, {58.82, 52.12, 215}, {58.92, 64.59, 215}, {58.98, 67.18, 215}, {59.11, 71.1, 215}, {60.24, 59.36, 215}, {60.26, 55.42, 215}, {60.63, 60.7, 215}, {60.86, 58.75, 215}, {60.9, 66.43, 215}, {60.92, 56.03, 215}, {61.78, 69.29, 215}, {35.76, 50.94, 17}, {37.61, 54.89, 17}}
+ b["scrapedAt"] = 1773751571
+ end
+ b = MTH_DS_Beasts[2960]
+ if b then
+ b["displayId"] = 161
+ b["health"] = 206
+ b["dmgMin"] = 10.5019
+ b["dmgMax"] = 14.0026
+ b["armor"] = 512
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{32.33, 20.09, 215}, {36.32, 15.83, 215}, {37.16, 15.51, 215}, {38.91, 17.75, 215}, {40.19, 10.05, 215}, {40.82, 11.1, 215}, {41.52, 8.031, 215}, {42.72, 10.08, 215}, {42.86, 14.72, 215}, {43.39, 9.024, 215}, {43.52, 24.7, 215}, {44.38, 30.31, 215}, {45.27, 18.78, 215}, {45.29, 15.89, 215}, {45.41, 26.57, 215}, {46.52, 28.79, 215}, {48.04, 28.5, 215}, {48.8, 23.68, 215}, {49.05, 30.69, 215}, {49.07, 27.16, 215}, {49.21, 7.71, 215}, {49.93, 11.83, 215}, {49.94, 14.19, 215}, {50.49, 19.71, 215}, {50.49, 32.21, 215}, {50.63, 12.91, 215}, {50.9, 16.59, 215}, {50.94, 21.9, 215}, {52.14, 23.18, 215}, {52.55, 17.35, 215}, {52.73, 20.64, 215}, {53.1, 32.47, 215}, {53.29, 29.43, 215}, {53.86, 24.09, 215}, {56.04, 31.3, 215}, {56.23, 20.85, 215}, {56.25, 24.59, 215}, {57.42, 31.27, 215}, {61.47, 57.61, 215}, {61.53, 61.58, 215}, {61.68, 68.29, 215}, {62.21, 66.34, 215}, {62.25, 57.7, 215}, {62.81, 61.7, 215}, {62.89, 65.52, 215}, {63.2, 58.69, 215}, {63.51, 69.2, 215}, {64.19, 65.4, 215}, {65.15, 67.71, 215}, {65.3, 63.16, 215}, {31.66, 32.51, 17}, {32.58, 34.49, 17}, {34.79, 40.5, 17}, {34.85, 39.25, 17}, {35.18, 42.04, 17}, {35.59, 42.59, 17}, {36.6, 41.97, 17}, {38.92, 56.93, 17}, {39.08, 58.18, 17}, {39.25, 56.62, 17}, {39.49, 57.69, 17}, {39.51, 61.62, 17}, {39.52, 60.13, 17}}
+ b["scrapedAt"] = 1773751573
+ end
+ b = MTH_DS_Beasts[2961]
+ if b then
+ b["displayId"] = 11451
+ b["health"] = 78
+ b["dmgMin"] = 3.3
+ b["dmgMax"] = 4.4
+ b["armor"] = 41
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{40.12, 83.27, 215}, {40.78, 88.85, 215}, {40.84, 82.05, 215}, {41.52, 84.21, 215}, {41.59, 88.64, 215}, {41.59, 90.66, 215}, {42.8, 83.62, 215}, {43.33, 88.5, 215}, {43.7, 92.09, 215}, {44.2, 94.43, 215}, {44.77, 88.24, 215}, {44.83, 92.82, 215}, {44.88, 91.8, 215}, {47.34, 89.81, 215}, {47.41, 92.7, 215}, {48.62, 91.39, 215}, {49.81, 87.74, 215}, {51.05, 88.94, 215}, {51.85, 89.84, 215}, {52.53, 89.23, 215}, {53.84, 90.72, 215}, {54.83, 89.23, 215}, {55.75, 91.8, 215}, {56.08, 94.66, 215}, {56.5, 91.04, 215}, {57.73, 93.81, 215}}
+ b["scrapedAt"] = 1773751574
+ end
+ b = MTH_DS_Beasts[2966]
+ if b then
+ b["displayId"] = 8869
+ b["health"] = 78
+ b["dmgMin"] = 3.3
+ b["dmgMax"] = 5.5
+ b["armor"] = 76
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{51.85, 77.17, 215}, {52.38, 75.01, 215}, {53.06, 77.64, 215}, {53.27, 79.27, 215}, {54.25, 81.84, 215}, {54.56, 84.0, 215}, {54.99, 81.84, 215}, {55.04, 75.21, 215}, {55.14, 78.05, 215}, {55.69, 80.15, 215}, {55.84, 87.89, 215}, {56.45, 85.87, 215}, {56.49, 87.48, 215}, {56.52, 81.96, 215}, {57.61, 90.05, 215}, {58.35, 88.85, 215}, {59.56, 90.43, 215}}
+ b["scrapedAt"] = 1773751576
+ end
+ b = MTH_DS_Beasts[2969]
+ if b then
+ b["displayId"] = 1228
+ b["health"] = 112
+ b["dmgMin"] = 6.6
+ b["dmgMax"] = 12.1
+ b["armor"] = 180
+ b["factionId"] = 73
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{34.2, 78.25, 215}, {35.13, 66.51, 215}, {36.92, 70.4, 215}, {37.08, 59.04, 215}, {37.58, 62.57, 215}, {37.95, 66.4, 215}, {38.97, 53.67, 215}, {38.97, 57.81, 215}, {39.51, 70.34, 215}, {40.68, 63.42, 215}, {40.85, 58.69, 215}, {40.99, 66.25, 215}, {44.67, 70.43, 215}, {49.91, 68.56, 215}, {53.88, 58.66, 215}, {55.14, 70.34, 215}}
+ b["scrapedAt"] = 1773751577
+ end
+ b = MTH_DS_Beasts[2970]
+ if b then
+ b["displayId"] = 1229
+ b["health"] = 151
+ b["dmgMin"] = 11
+ b["dmgMax"] = 16.5
+ b["armor"] = 323
+ b["factionId"] = 73
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{34.84, 42.75, 215}, {35.23, 49.43, 215}, {36.18, 44.91, 215}, {37.62, 41.14, 215}, {41.5, 48.56, 215}, {42.72, 45.14, 215}, {42.76, 39.83, 215}, {43.31, 49.2, 215}, {44.71, 34.86, 215}, {46.13, 49.64, 215}, {46.75, 34.83, 215}, {48.6, 44.09, 215}, {49.01, 48.0, 215}, {49.22, 38.37, 215}, {49.56, 40.67, 215}, {49.81, 44.35, 215}, {51.76, 40.32, 215}, {52.07, 37.17, 215}, {52.09, 44.09, 215}, {53.8, 45.02, 215}, {53.82, 40.73, 215}, {54.77, 37.37, 215}, {55.34, 42.28, 215}, {57.42, 48.62, 215}, {57.73, 68.35, 215}, {58.28, 51.94, 215}, {58.86, 64.5, 215}, {59.76, 59.74, 215}, {60.22, 54.89, 215}}
+ b["scrapedAt"] = 1773751578
+ end
+ b = MTH_DS_Beasts[2971]
+ if b then
+ b["displayId"] = 10824
+ b["health"] = 182
+ b["dmgMin"] = 11.6688
+ b["dmgMax"] = 17.5032
+ b["armor"] = 414
+ b["factionId"] = 73
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{37.6, 17.29, 215}, {42.16, 9.959, 215}, {46.58, 13.4, 215}, {46.67, 10.05, 215}, {48.91, 9.17, 215}, {51.68, 20.03, 215}, {51.83, 16.44, 215}, {52.22, 30.25, 215}, {52.59, 13.75, 215}, {53.16, 23.68, 215}, {53.33, 18.86, 215}, {53.74, 32.0, 215}, {53.86, 26.48, 215}, {55.49, 32.41, 215}, {34.95, 39.26, 17}, {35.07, 42.5, 17}, {38.57, 58.1, 17}, {39.54, 57.14, 17}}
+ b["scrapedAt"] = 1773751579
+ end
+ b = MTH_DS_Beasts[3035]
+ if b then
+ b["displayId"] = 1059
+ b["health"] = 151
+ b["dmgMin"] = 9.9
+ b["dmgMax"] = 14.3
+ b["armor"] = 279
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{33.65, 25.58, 215}, {34.16, 26.43, 215}, {34.45, 42.63, 215}, {34.47, 32.7, 215}, {34.82, 31.3, 215}, {34.98, 51.86, 215}, {35.03, 33.46, 215}, {35.74, 42.19, 215}, {36.88, 44.0, 215}, {36.88, 48.62, 215}, {38.36, 45.73, 215}, {38.77, 39.27, 215}, {38.97, 46.86, 215}, {39.03, 41.2, 215}, {39.63, 45.99, 215}, {41.96, 49.93, 215}, {42.12, 37.29, 215}, {42.76, 43.18, 215}, {43.31, 45.35, 215}, {43.89, 52.18, 215}, {44.2, 48.76, 215}, {44.65, 31.56, 215}, {45.18, 47.36, 215}, {45.6, 38.13, 215}, {45.97, 30.54, 215}, {46.29, 42.34, 215}, {46.66, 36.38, 215}, {47.3, 36.38, 215}, {47.32, 40.24, 215}, {48.06, 32.38, 215}, {49.26, 45.2, 215}, {49.77, 36.73, 215}, {49.77, 41.11, 215}, {50.41, 34.05, 215}, {50.49, 39.33, 215}, {50.61, 41.99, 215}, {51.11, 36.32, 215}, {52.09, 33.14, 215}, {53.14, 40.15, 215}, {53.9, 35.91, 215}, {54.09, 41.87, 215}, {54.42, 47.01, 215}, {54.91, 45.9, 215}, {55.14, 38.4, 215}, {55.82, 37.14, 215}, {56.06, 41.93, 215}, {56.23, 51.45, 215}, {56.52, 48.18, 215}, {56.8, 36.27, 215}, {57.03, 72.21, 215}, {57.09, 62.78, 215}, {57.26, 63.83, 215}, {57.28, 49.05, 215}, {58.65, 52.64, 215}, {58.98, 58.05, 215}, {59.7, 64.76, 215}, {37.46, 54.05, 17}}
+ b["scrapedAt"] = 1773751580
+ end
+ b = MTH_DS_Beasts[3068]
+ if b then
+ b["displayId"] = 1961
+ b["npcClass"] = "Rare"
+ b["health"] = 194
+ b["dmgMin"] = 23.1
+ b["dmgMax"] = 33
+ b["armor"] = 406
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{50.37, 42.57, 215}}
+ b["scrapedAt"] = 1773751581
+ end
+ b = MTH_DS_Beasts[3098]
+ if b then
+ b["displayId"] = 503
+ b["health"] = 46
+ b["dmgMin"] = 1.1
+ b["dmgMax"] = 2.2
+ b["armor"] = 16
+ b["factionId"] = 189
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{41.26, 65.09, 14}, {41.96, 62.14, 14}, {42.01, 61.2, 14}, {42.09, 71.9, 14}, {42.56, 65.12, 14}, {42.68, 72.69, 14}, {43.77, 63.04, 14}, {43.85, 72.55, 14}, {44.47, 66.02, 14}, {44.62, 59.27, 14}, {45.15, 70.45, 14}, {45.17, 66.9, 14}, {45.19, 65.14, 14}, {45.23, 60.38, 14}, {45.76, 62.99, 14}, {47.12, 65.09, 14}}
+ b["scrapedAt"] = 1773751582
+ end
+ b = MTH_DS_Beasts[3099]
+ if b then
+ b["displayId"] = 381
+ b["health"] = 132
+ b["dmgMin"] = 7.7
+ b["dmgMax"] = 11
+ b["armor"] = 239
+ b["factionId"] = 189
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{38.1, 35.87, 14}, {38.61, 44.97, 14}, {38.91, 47.07, 14}, {40.2, 49.0, 14}, {40.44, 32.78, 14}, {40.65, 40.69, 14}, {40.69, 50.79, 14}, {40.77, 44.89, 14}, {41.07, 36.83, 14}, {41.64, 50.36, 14}, {41.98, 31.53, 14}, {42.09, 44.26, 14}, {42.6, 32.92, 14}, {42.81, 47.7, 14}, {43.09, 43.98, 14}, {43.72, 46.45, 14}, {43.77, 34.0, 14}, {44.55, 37.09, 14}, {45.02, 43.47, 14}, {45.65, 38.34, 14}, {45.97, 34.93, 14}, {45.97, 48.29, 14}, {46.19, 39.16, 14}, {46.93, 46.31, 14}, {46.99, 42.76, 14}, {47.65, 43.41, 14}, {48.22, 40.21, 14}, {48.29, 36.69, 14}, {48.29, 45.91, 14}, {48.9, 35.04, 14}, {49.09, 39.3, 14}, {49.75, 35.04, 14}, {50.45, 71.75, 14}, {50.66, 36.66, 14}, {50.73, 55.9, 14}, {50.75, 53.85, 14}, {51.04, 51.78, 14}, {51.09, 33.12, 14}, {51.21, 56.72, 14}, {51.38, 37.65, 14}, {51.53, 62.08, 14}, {51.62, 72.46, 14}, {51.68, 53.57, 14}, {51.7, 46.05, 14}, {51.7, 59.02, 14}, {51.7, 65.85, 14}, {51.74, 78.11, 14}, {51.89, 66.93, 14}, {52.19, 47.87, 14}, {52.72, 64.97, 14}, {53.06, 31.33, 14}, {53.15, 58.59, 14}, {53.29, 48.8, 14}, {53.42, 46.17, 14}, {53.51, 68.09, 14}, {53.89, 62.56, 14}, {54.06, 70.76, 14}, {54.19, 53.03, 14}, {54.38, 35.87, 14}, {54.52, 38.76, 14}, {54.57, 34.68, 14}, {54.57, 56.29, 14}, {55.35, 32.78, 14}, {55.37, 39.58, 14}, {55.37, 43.98, 14}, {55.63, 58.73, 14}, {55.71, 56.21, 14}, {55.82, 35.36, 14}, {56.54, 36.72, 14}, {57.35, 44.41, 14}, {58.35, 41.57, 14}}
+ b["scrapedAt"] = 1773751584
+ end
+ b = MTH_DS_Beasts[3100]
+ if b then
+ b["displayId"] = 193
+ b["health"] = 172
+ b["dmgMin"] = 12.1
+ b["dmgMax"] = 16.5
+ b["armor"] = 406
+ b["factionId"] = 189
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{34.98, 43.27, 14}, {35.02, 46.48, 14}, {35.13, 49.34, 14}, {35.43, 55.64, 14}, {35.55, 39.39, 14}, {35.64, 30.99, 14}, {35.92, 34.96, 14}, {36.04, 26.02, 14}, {36.15, 24.26, 14}, {36.17, 31.92, 14}, {36.28, 35.75, 14}, {36.42, 55.44, 14}, {36.44, 38.56, 14}, {36.85, 48.26, 14}, {36.87, 46.14, 14}, {36.98, 28.09, 14}, {37.12, 52.38, 14}, {37.21, 19.02, 14}, {37.53, 55.64, 14}, {37.78, 55.75, 14}, {38.25, 28.89, 14}, {38.25, 42.14, 14}, {38.52, 48.86, 14}, {38.55, 44.32, 14}, {38.59, 33.71, 14}, {38.72, 21.23, 14}, {39.4, 17.65, 14}, {39.42, 51.64, 14}, {39.54, 18.73, 14}, {39.54, 44.32, 14}, {39.56, 49.51, 14}, {40.12, 17.06, 14}, {40.12, 33.8, 14}, {40.46, 21.57, 14}, {40.67, 42.51, 14}, {42.05, 22.79, 14}, {42.75, 28.29, 14}, {43.19, 16.95, 14}, {43.22, 21.46, 14}, {43.81, 15.56, 14}, {43.92, 22.42, 14}, {44.53, 19.56, 14}, {44.62, 27.04, 14}, {44.95, 17.68, 14}, {45.21, 16.75, 14}, {45.34, 27.36, 14}, {45.4, 25.09, 14}, {45.74, 15.75, 14}, {45.97, 19.44, 14}, {45.99, 22.25, 14}, {47.69, 12.72, 14}, {47.82, 18.45, 14}, {48.27, 15.84, 14}, {48.54, 20.69, 14}, {50.15, 14.79, 14}, {50.18, 12.92, 14}, {51.62, 16.66, 14}, {51.81, 11.84, 14}, {52.21, 14.79, 14}, {53.38, 13.06, 14}, {53.89, 9.286, 14}, {54.0, 18.93, 14}, {54.25, 17.43, 14}, {54.52, 11.02, 14}, {54.59, 28.8, 14}, {54.61, 15.78, 14}, {54.76, 19.39, 14}, {55.16, 28.12, 14}, {55.57, 12.95, 14}, {55.8, 9.995, 14}, {55.95, 21.71, 14}, {56.14, 17.06, 14}, {57.03, 29.77, 14}, {57.13, 19.33, 14}, {57.5, 18.56, 14}, {57.67, 22.51, 14}}
+ b["scrapedAt"] = 1773751584
+ end
+ b = MTH_DS_Beasts[3106]
+ if b then
+ b["displayId"] = 1307
+ b["health"] = 112
+ b["dmgMin"] = 7.7
+ b["dmgMax"] = 11
+ b["armor"] = 147
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{51.53, 84.01, 14}, {52.21, 83.1, 14}, {54.04, 82.17, 14}, {54.61, 82.0, 14}, {54.65, 83.92, 14}, {55.93, 79.3, 14}, {57.18, 78.05, 14}, {57.2, 79.24, 14}, {59.75, 73.57, 14}, {60.3, 45.14, 14}, {60.32, 47.07, 14}, {60.93, 43.84, 14}, {60.95, 52.29, 14}, {60.95, 69.94, 14}, {61.3, 61.74, 14}, {61.48, 39.53, 14}, {61.68, 53.46, 14}, {62.46, 44.01, 14}, {62.72, 62.53, 14}, {62.78, 51.58, 14}, {62.82, 48.97, 14}, {63.18, 44.24, 14}, {63.22, 54.7, 14}, {63.37, 61.03, 14}, {63.93, 57.14, 14}, {64.1, 48.8, 14}, {64.86, 54.99, 14}, {65.88, 50.9, 14}, {66.01, 53.46, 14}}
+ b["scrapedAt"] = 1773751586
+ end
+ b = MTH_DS_Beasts[3107]
+ if b then
+ b["displayId"] = 1938
+ b["health"] = 151
+ b["dmgMin"] = 9.9
+ b["dmgMax"] = 14.3
+ b["armor"] = 278
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{58.28, 83.53, 14}, {58.85, 28.35, 14}, {58.88, 86.19, 14}, {59.62, 81.31, 14}, {59.77, 23.64, 14}, {59.87, 27.19, 14}, {60.79, 25.4, 14}, {60.91, 17.71, 14}, {60.98, 86.73, 14}, {61.44, 82.11, 14}, {61.53, 87.39, 14}, {61.87, 94.93, 14}, {62.06, 80.92, 14}, {62.06, 90.53, 14}, {62.1, 76.61, 14}, {62.84, 81.34, 14}, {63.14, 74.02, 14}, {63.29, 97.97, 14}, {63.63, 76.97, 14}, {63.65, 93.17, 14}, {63.9, 89.03, 14}, {64.1, 72.15, 14}, {64.14, 78.85, 14}, {64.6, 98.22, 14}, {64.63, 96.49, 14}, {65.11, 72.58, 14}, {65.16, 93.34, 14}, {65.92, 75.61, 14}, {65.94, 91.47, 14}, {66.05, 79.39, 14}, {66.09, 69.94, 14}, {66.34, 72.86, 14}, {66.98, 90.76, 14}, {67.26, 75.47, 14}, {67.89, 68.72, 14}, {68.98, 76.24, 14}, {69.27, 78.25, 14}, {69.53, 87.5, 14}, {70.44, 80.09, 14}, {70.46, 75.92, 14}, {70.52, 68.97, 14}, {70.97, 73.94, 14}, {71.12, 71.44, 14}}
+ b["scrapedAt"] = 1773751587
+ end
+ b = MTH_DS_Beasts[3108]
+ if b then
+ b["displayId"] = 999
+ b["health"] = 206
+ b["dmgMin"] = 15.1694
+ b["dmgMax"] = 19.837
+ b["armor"] = 524
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{56.29, 11.1, 14}, {56.33, 94.79, 14}, {56.54, 9.116, 14}, {56.88, 95.22, 14}, {57.73, 13.17, 14}, {57.75, 96.58, 14}, {58.11, 12.07, 14}, {58.43, 15.7, 14}, {59.13, 16.63, 14}, {73.46, 50.04, 17}, {75.46, 50.64, 17}, {76.02, 49.62, 17}}
+ b["scrapedAt"] = 1773751588
+ end
+ b = MTH_DS_Beasts[3110]
+ if b then
+ b["displayId"] = 1250
+ b["health"] = 206
+ b["dmgMin"] = 15.1694
+ b["dmgMax"] = 21.0038
+ b["armor"] = 472
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{34.13, 46.05, 14}, {34.15, 34.87, 14}, {34.32, 48.15, 14}, {34.35, 25.74, 14}, {34.35, 37.14, 14}, {34.37, 44.18, 14}, {34.39, 55.44, 14}, {34.41, 32.29, 14}, {34.62, 52.07, 14}, {35.07, 39.24, 14}, {35.26, 56.21, 14}, {35.28, 28.32, 14}, {35.51, 21.54, 14}, {35.7, 23.44, 14}, {35.7, 25.31, 14}, {35.75, 57.37, 14}, {36.3, 20.95, 14}, {36.47, 61.09, 14}, {36.76, 17.23, 14}, {36.85, 62.19, 14}, {37.06, 15.84, 14}, {37.44, 66.05, 14}, {37.65, 68.09, 14}, {38.48, 71.53, 14}, {62.68, 15.49, 17}, {62.71, 23.69, 17}, {62.87, 20.89, 17}}
+ b["scrapedAt"] = 1773751589
+ end
+ b = MTH_DS_Beasts[3121]
+ if b then
+ b["displayId"] = 598
+ b["health"] = 151
+ b["dmgMin"] = 4.4
+ b["dmgMax"] = 5.5
+ b["armor"] = 278
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{59.6, 84.69, 14}, {59.83, 83.27, 14}, {60.17, 80.01, 14}, {60.66, 82.28, 14}, {60.74, 87.5, 14}, {61.66, 90.34, 14}, {63.97, 97.29, 14}, {64.07, 95.36, 14}, {64.63, 84.95, 14}, {65.26, 80.24, 14}, {65.3, 87.78, 14}, {65.88, 81.26, 14}, {67.21, 70.7, 14}, {67.66, 73.8, 14}, {69.0, 72.41, 14}, {69.06, 80.29, 14}, {69.13, 69.68, 14}, {69.13, 84.8, 14}, {69.23, 73.65, 14}, {69.76, 72.78, 14}}
+ b["scrapedAt"] = 1773751590
+ end
+ b = MTH_DS_Beasts[3122]
+ if b then
+ b["displayId"] = 1960
+ b["health"] = 132
+ b["dmgMin"] = 9.9
+ b["dmgMax"] = 14.3
+ b["armor"] = 222
+ b["factionId"] = 48
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{39.2, 47.07, 14}, {40.26, 47.75, 14}, {40.48, 46.56, 14}, {40.5, 38.22, 14}, {40.6, 34.65, 14}, {41.16, 50.34, 14}, {41.6, 47.02, 14}, {42.24, 49.12, 14}, {42.34, 34.42, 14}, {44.17, 33.63, 14}, {44.21, 45.4, 14}, {46.29, 37.65, 14}, {47.61, 36.8, 14}, {49.35, 19.24, 14}, {49.79, 37.0, 14}, {50.43, 35.39, 14}, {54.38, 32.46, 14}, {54.89, 34.48, 14}, {55.29, 30.51, 14}, {55.31, 37.31, 14}, {56.09, 29.26, 14}, {57.98, 23.13, 14}, {59.38, 83.87, 14}, {59.89, 88.01, 14}, {60.93, 78.79, 14}, {61.42, 78.11, 14}, {63.08, 94.39, 14}, {63.48, 74.51, 14}, {63.86, 83.75, 14}, {63.97, 86.79, 14}, {64.58, 73.31, 14}, {64.88, 82.31, 14}, {66.71, 88.97, 14}, {67.21, 80.49, 14}, {67.74, 69.83, 14}, {68.06, 80.49, 14}, {68.17, 88.49, 14}, {68.28, 71.75, 14}, {68.62, 74.68, 14}, {69.21, 82.05, 14}, {69.78, 70.39, 14}, {69.8, 74.65, 14}}
+ b["scrapedAt"] = 1773751592
+ end
+ b = MTH_DS_Beasts[3123]
+ if b then
+ b["displayId"] = 1959
+ b["health"] = 182
+ b["dmgMin"] = 11.6688
+ b["dmgMax"] = 17.5032
+ b["armor"] = 442
+ b["factionId"] = 48
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{36.0, 31.78, 14}, {36.02, 37.06, 14}, {36.62, 39.1, 14}, {36.74, 34.28, 14}, {36.76, 25.43, 14}, {36.89, 29.65, 14}, {37.0, 46.39, 14}, {37.08, 47.3, 14}, {37.19, 54.9, 14}, {37.93, 40.01, 14}, {38.35, 48.92, 14}, {38.46, 37.37, 14}, {39.18, 19.53, 14}, {39.25, 17.09, 14}, {40.43, 16.09, 14}, {42.07, 21.34, 14}, {42.85, 18.53, 14}, {51.81, 14.53, 14}, {52.09, 10.62, 14}, {53.21, 16.04, 14}, {53.93, 13.48, 14}, {54.04, 11.75, 14}, {54.86, 19.3, 14}, {55.22, 13.14, 14}, {55.76, 12.01, 14}, {55.86, 15.87, 14}, {56.78, 14.96, 14}}
+ b["scrapedAt"] = 1773751593
+ end
+ b = MTH_DS_Beasts[3124]
+ if b then
+ b["displayId"] = 2485
+ b["health"] = 78
+ b["dmgMin"] = 3.3
+ b["dmgMax"] = 4.4
+ b["armor"] = 41
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{39.39, 61.12, 14}, {40.05, 66.85, 14}, {40.67, 68.52, 14}, {41.28, 70.59, 14}, {41.35, 62.05, 14}, {41.39, 67.9, 14}, {41.41, 61.34, 14}, {41.48, 64.26, 14}, {41.75, 57.31, 14}, {42.58, 59.22, 14}, {43.19, 73.63, 14}, {43.3, 58.34, 14}, {43.94, 59.44, 14}, {43.94, 73.65, 14}, {45.1, 71.3, 14}, {45.19, 72.75, 14}, {45.78, 60.12, 14}, {46.5, 61.34, 14}, {47.08, 61.31, 14}}
+ b["scrapedAt"] = 1773751594
+ end
+ b = MTH_DS_Beasts[3125]
+ if b then
+ b["displayId"] = 2486
+ b["health"] = 112
+ b["dmgMin"] = 7.7
+ b["dmgMax"] = 11
+ b["armor"] = 147
+ b["factionId"] = 413
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{50.09, 73.46, 14}, {50.81, 72.49, 14}, {50.92, 70.59, 14}, {51.94, 54.73, 14}, {52.09, 62.79, 14}, {52.23, 73.65, 14}, {52.91, 60.58, 14}, {53.08, 51.78, 14}, {53.23, 67.02, 14}, {53.3, 74.42, 14}, {53.32, 76.43, 14}, {53.42, 53.54, 14}, {53.93, 49.03, 14}, {54.04, 64.09, 14}, {54.5, 56.63, 14}, {54.69, 63.56, 14}, {54.72, 50.14, 14}, {54.74, 59.36, 14}, {54.76, 80.26, 14}, {55.22, 45.4, 14}, {55.9, 47.56, 14}, {56.09, 69.63, 14}, {56.12, 70.51, 14}, {56.44, 43.19, 14}, {57.11, 44.21, 14}, {57.65, 46.82, 14}, {57.71, 71.33, 14}, {57.77, 49.46, 14}, {58.83, 50.53, 14}, {59.0, 43.24, 14}, {59.55, 45.94, 14}, {59.74, 48.07, 14}}
+ b["scrapedAt"] = 1773751595
+ end
+ b = MTH_DS_Beasts[3126]
+ if b then
+ b["displayId"] = 2487
+ b["health"] = 151
+ b["dmgMin"] = 9.9
+ b["dmgMax"] = 14.3
+ b["armor"] = 407
+ b["factionId"] = 413
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{35.74, 36.89, 14}, {36.3, 41.2, 14}, {37.25, 33.85, 14}, {37.93, 46.51, 14}, {38.23, 40.78, 14}, {38.29, 33.91, 14}, {38.95, 35.73, 14}, {39.22, 42.17, 14}, {39.61, 47.81, 14}, {40.07, 45.29, 14}, {40.67, 38.85, 14}, {41.11, 51.67, 14}, {41.39, 41.43, 14}, {41.39, 50.7, 14}, {41.92, 28.78, 14}, {42.49, 34.42, 14}, {42.51, 48.66, 14}, {42.56, 45.88, 14}, {43.34, 48.12, 14}, {43.36, 32.43, 14}, {44.44, 33.63, 14}, {44.55, 44.55, 14}, {45.21, 28.21, 14}, {45.27, 26.56, 14}, {45.51, 31.36, 14}, {45.63, 46.76, 14}, {46.84, 35.56, 14}, {47.54, 36.89, 14}, {47.56, 35.64, 14}, {48.33, 38.65, 14}, {48.56, 30.56, 14}, {49.3, 36.66, 14}, {50.49, 19.53, 14}, {50.64, 21.57, 14}, {50.98, 37.71, 14}, {51.09, 17.82, 14}, {52.83, 19.36, 14}, {54.4, 33.85, 14}, {54.74, 36.66, 14}, {55.03, 22.08, 14}, {55.71, 31.7, 14}, {56.46, 21.37, 14}, {57.41, 29.54, 14}, {57.54, 30.9, 14}}
+ b["scrapedAt"] = 1773751596
+ end
+ b = MTH_DS_Beasts[3127]
+ if b then
+ b["displayId"] = 2732
+ b["health"] = 206
+ b["dmgMin"] = 15.1694
+ b["dmgMax"] = 19.837
+ b["armor"] = 459
+ b["factionId"] = 413
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{35.02, 50.79, 14}, {35.28, 53.6, 14}, {35.47, 33.12, 14}, {35.7, 47.07, 14}, {35.79, 49.83, 14}, {35.92, 56.58, 14}, {36.21, 28.43, 14}, {36.3, 52.58, 14}, {36.51, 30.25, 14}, {36.61, 25.14, 14}, {36.79, 53.83, 14}, {37.93, 49.91, 14}, {38.14, 20.21, 14}, {38.84, 17.68, 14}, {39.42, 22.08, 14}, {41.01, 16.95, 14}, {41.41, 20.09, 14}, {43.87, 18.7, 14}, {43.94, 18.39, 14}, {49.71, 17.51, 14}, {53.53, 15.67, 14}, {53.61, 12.69, 14}, {55.88, 12.09, 14}, {55.88, 15.27, 14}, {55.99, 18.34, 14}, {56.97, 14.36, 14}}
+ b["scrapedAt"] = 1773751597
+ end
+ b = MTH_DS_Beasts[3225]
+ if b then
+ b["displayId"] = 744
+ b["health"] = 231
+ b["dmgMin"] = 16.3363
+ b["dmgMax"] = 22.1707
+ b["armor"] = 538
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{36.85, 40.09, 14}}
+ b["scrapedAt"] = 1773751599
+ end
+ b = MTH_DS_Beasts[3226]
+ if b then
+ b["displayId"] = 2488
+ b["health"] = 231
+ b["dmgMin"] = 16.3363
+ b["dmgMax"] = 22.1707
+ b["armor"] = 525
+ b["factionId"] = 413
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{36.4, 48.43, 14}, {36.55, 29.29, 14}, {51.38, 14.14, 14}}
+ b["scrapedAt"] = 1773751600
+ end
+ b = MTH_DS_Beasts[3227]
+ if b then
+ b["displayId"] = 787
+ b["health"] = 231
+ b["dmgMin"] = 16.3363
+ b["dmgMax"] = 22.1707
+ b["armor"] = 524
+ b["factionId"] = 48
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{37.61, 56.12, 14}, {38.84, 18.56, 14}, {39.76, 19.9, 14}, {43.72, 31.67, 14}, {44.04, 17.63, 14}}
+ b["scrapedAt"] = 1773751601
+ end
+ b = MTH_DS_Beasts[3228]
+ if b then
+ b["displayId"] = 1000
+ b["health"] = 231
+ b["dmgMin"] = 16.3363
+ b["dmgMax"] = 22.1707
+ b["armor"] = 525
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{56.88, 10.7, 14}, {60.34, 21.8, 14}}
+ b["scrapedAt"] = 1773751603
+ end
+ b = MTH_DS_Beasts[3231]
+ if b then
+ b["displayId"] = 1034
+ b["health"] = 260
+ b["dmgMin"] = 19.837
+ b["dmgMax"] = 25.6714
+ b["armor"] = 556
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{34.24, 52.69, 14}, {34.51, 25.94, 14}}
+ b["scrapedAt"] = 1773751604
+ end
+ b = MTH_DS_Beasts[3241]
+ if b then
+ b["displayId"] = 1977
+ b["health"] = 391
+ b["dmgMin"] = 17.8464
+ b["dmgMax"] = 22.6054
+ b["armor"] = 695
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{43.1, 15.03, 17}, {43.91, 16.66, 17}, {44.41, 15.79, 17}, {44.49, 14.07, 17}, {45.51, 16.6, 17}, {46.95, 13.71, 17}, {61.63, 32.72, 17}}
+ b["scrapedAt"] = 1773751605
+ end
+ b = MTH_DS_Beasts[3243]
+ if b then
+ b["displayId"] = 1973
+ b["health"] = 294
+ b["dmgMin"] = 15.4669
+ b["dmgMax"] = 20.2259
+ b["armor"] = 590
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{49.64, 16.07, 17}, {50.12, 15.83, 17}, {50.69, 20.65, 17}, {51.74, 26.22, 17}, {54.94, 30.48, 17}, {55.33, 30.33, 17}}
+ b["scrapedAt"] = 1773751607
+ end
+ b = MTH_DS_Beasts[3244]
+ if b then
+ b["displayId"] = 178
+ b["health"] = 260
+ b["dmgMin"] = 19.837
+ b["dmgMax"] = 25.6714
+ b["armor"] = 556
+ b["factionId"] = 189
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{47.33, 14.05, 17}, {47.74, 14.57, 17}, {47.74, 27.61, 17}, {47.75, 25.58, 17}, {48.09, 27.11, 17}, {48.1, 15.25, 17}, {48.21, 28.63, 17}, {48.45, 25.58, 17}, {48.5, 23.47, 17}, {48.55, 13.76, 17}, {48.58, 29.11, 17}, {49.06, 30.62, 17}, {49.06, 22.76, 17}, {49.27, 14.32, 17}, {49.32, 22.77, 17}, {49.37, 24.3, 17}, {49.63, 30.31, 17}, {49.81, 13.79, 17}, {50.41, 13.86, 17}, {50.72, 15.3, 17}, {50.76, 33.3, 17}, {50.87, 19.5, 17}, {51.02, 18.66, 17}, {51.02, 27.57, 17}, {51.02, 31.83, 17}, {51.15, 32.88, 17}, {51.18, 16.87, 17}, {51.37, 28.01, 17}, {51.41, 19.41, 17}, {51.63, 21.6, 17}, {51.7, 18.66, 17}, {51.7, 27.55, 17}, {51.72, 23.1, 17}, {52.19, 21.02, 17}, {52.35, 21.75, 17}, {52.69, 25.6, 17}, {52.72, 26.12, 17}, {52.75, 28.2, 17}, {52.93, 33.58, 17}, {53.01, 23.66, 17}, {53.01, 32.32, 17}, {53.05, 31.46, 17}, {53.29, 22.24, 17}, {53.63, 29.52, 17}, {53.69, 32.87, 17}, {53.93, 28.51, 17}, {53.99, 23.57, 17}, {54.07, 22.03, 17}, {54.56, 32.11, 17}, {54.71, 23.44, 17}, {55.43, 24.3, 17}, {55.53, 25.11, 17}}
+ b["scrapedAt"] = 1773751608
+ end
+ b = MTH_DS_Beasts[3245]
+ if b then
+ b["displayId"] = 6076
+ b["health"] = 432
+ b["dmgMin"] = 21.0113
+ b["dmgMax"] = 27.1911
+ b["armor"] = 731
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{37.21, 27.4, 17}, {37.96, 26.62, 17}, {38.01, 27.85, 17}, {38.83, 24.96, 17}, {39.91, 24.71, 17}, {42.09, 15.31, 17}, {42.11, 16.04, 17}, {43.27, 14.76, 17}, {44.07, 17.24, 17}, {44.19, 15.3, 17}, {44.56, 13.74, 17}, {45.24, 13.39, 17}, {45.32, 15.42, 17}, {45.36, 15.86, 17}, {45.78, 43.32, 17}, {46.74, 12.34, 17}, {46.79, 13.18, 17}, {47.09, 44.94, 17}, {47.63, 44.09, 17}, {48.03, 13.24, 17}, {48.75, 49.83, 17}, {48.97, 48.36, 17}, {49.08, 47.34, 17}, {49.38, 48.81, 17}, {49.73, 50.11, 17}, {49.81, 46.26, 17}, {50.15, 49.68, 17}, {50.46, 47.18, 17}, {51.72, 47.36, 17}, {52.63, 47.05, 17}, {53.35, 48.75, 17}, {53.46, 47.81, 17}, {53.68, 51.75, 17}, {54.2, 52.37, 17}, {54.26, 50.64, 17}, {54.32, 47.99, 17}, {54.71, 49.71, 17}, {55.06, 49.4, 17}, {55.33, 47.76, 17}, {55.54, 51.19, 17}, {55.98, 6.239, 17}, {55.99, 52.33, 17}, {56.01, 5.351, 17}, {56.03, 48.33, 17}, {57.15, 52.18, 17}, {57.28, 6.431, 17}, {58.01, 51.78, 17}, {58.29, 7.926, 17}, {58.95, 50.14, 17}, {59.09, 6.757, 17}, {59.27, 49.32, 17}, {59.35, 32.53, 17}, {59.46, 33.53, 17}, {59.51, 52.3, 17}, {59.56, 7.852, 17}, {59.56, 53.35, 17}, {59.61, 31.61, 17}, {59.95, 8.548, 17}, {60.71, 31.98, 17}, {60.89, 34.46, 17}, {60.91, 10.96, 17}, {61.01, 48.87, 17}, {61.08, 33.0, 17}, {61.16, 30.72, 17}, {61.27, 47.83, 17}, {61.36, 13.22, 17}, {61.96, 49.24, 17}}
+ b["scrapedAt"] = 1773751610
+ end
+ b = MTH_DS_Beasts[3246]
+ if b then
+ b["displayId"] = 1284
+ b["health"] = 294
+ b["dmgMin"] = 20.2259
+ b["dmgMax"] = 26.1747
+ b["armor"] = 877
+ b["factionId"] = 189
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{42.57, 25.08, 17}, {42.63, 29.94, 17}, {43.1, 31.43, 17}, {43.21, 33.0, 17}, {43.6, 24.8, 17}, {43.81, 31.87, 17}, {43.92, 34.6, 17}, {44.79, 25.08, 17}, {44.85, 31.84, 17}, {44.86, 32.5, 17}, {44.88, 34.45, 17}, {44.88, 35.9, 17}, {45.14, 26.72, 17}, {45.81, 32.81, 17}, {45.98, 30.88, 17}, {46.2, 30.1, 17}, {46.32, 30.82, 17}, {46.39, 28.63, 17}, {46.66, 19.34, 17}, {46.71, 20.83, 17}, {46.72, 24.43, 17}, {46.72, 34.15, 17}, {46.73, 32.64, 17}, {46.77, 26.06, 17}, {46.98, 21.66, 17}, {47.03, 37.65, 17}, {47.04, 26.61, 17}, {47.46, 29.79, 17}, {47.65, 37.94, 17}, {47.73, 33.03, 17}, {47.74, 34.14, 17}, {47.77, 20.18, 17}, {47.99, 31.15, 17}, {48.06, 37.88, 17}, {48.16, 38.53, 17}, {48.31, 37.14, 17}, {48.35, 18.23, 17}, {48.38, 20.14, 17}, {48.61, 15.81, 17}, {48.74, 31.71, 17}, {48.76, 21.5, 17}, {48.81, 32.02, 17}, {49.12, 32.84, 17}, {49.18, 38.88, 17}, {49.39, 35.89, 17}, {49.47, 19.26, 17}, {49.58, 21.16, 17}, {49.94, 17.5, 17}, {50.04, 36.64, 17}, {50.07, 35.86, 17}, {50.12, 21.78, 17}, {50.31, 13.24, 17}, {50.71, 12.63, 17}, {50.9, 34.69, 17}, {51.06, 35.56, 17}, {51.19, 13.28, 17}, {51.89, 14.81, 17}, {52.31, 15.24, 17}, {52.35, 36.95, 17}, {52.56, 16.23, 17}, {52.67, 21.13, 17}, {52.96, 35.19, 17}, {52.97, 34.3, 17}, {52.98, 18.85, 17}, {53.35, 37.42, 17}, {54.16, 34.78, 17}, {54.28, 33.46, 17}, {54.66, 35.46, 17}, {54.69, 38.49, 17}, {55.7, 29.58, 17}, {55.76, 22.68, 17}, {56.06, 33.04, 17}, {56.64, 21.16, 17}, {56.64, 27.97, 17}, {56.8, 34.51, 17}, {56.82, 22.7, 17}, {56.85, 26.69, 17}, {56.94, 30.47, 17}, {56.95, 31.49, 17}, {57.06, 28.44, 17}, {57.11, 20.83, 17}, {57.23, 27.03, 17}, {57.56, 23.38, 17}, {57.72, 29.91, 17}, {57.95, 30.99, 17}, {58.0, 26.12, 17}, {58.02, 28.84, 17}, {58.27, 20.79, 17}, {58.32, 31.93, 17}, {59.17, 20.65, 17}, {60.2, 22.98, 17}, {61.5, 22.52, 17}, {63.53, 31.07, 17}, {63.55, 28.57, 17}, {63.57, 29.57, 17}, {63.92, 30.08, 17}, {63.92, 35.86, 17}, {63.94, 32.13, 17}}
+ b["scrapedAt"] = 1773751611
+ end
+ b = MTH_DS_Beasts[3247]
+ if b then
+ b["displayId"] = 1742
+ b["health"] = 364
+ b["dmgMin"] = 28.5542
+ b["dmgMax"] = 39.2621
+ b["armor"] = 687
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{42.81, 46.02, 17}, {44.03, 45.4, 17}, {44.13, 53.14, 17}, {44.45, 47.19, 17}, {45.49, 52.74, 17}, {45.75, 48.79, 17}, {45.81, 46.62, 17}, {46.71, 49.13, 17}, {46.76, 50.94, 17}, {47.6, 50.85, 17}, {48.54, 56.68, 17}, {49.41, 54.99, 17}, {49.79, 54.02, 17}, {50.79, 53.2, 17}}
+ b["scrapedAt"] = 1773751612
+ end
+ b = MTH_DS_Beasts[3249]
+ if b then
+ b["displayId"] = 1974
+ b["health"] = 705
+ b["dmgMin"] = 38.0723
+ b["dmgMax"] = 48.7802
+ b["armor"] = 814
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{43.66, 75.05, 17}, {43.81, 78.78, 17}, {43.83, 76.93, 17}, {44.74, 78.16, 17}, {44.75, 75.4, 17}, {44.91, 73.85, 17}, {45.45, 81.18, 17}, {46.73, 79.15, 17}, {46.86, 76.17, 17}, {47.03, 73.66, 17}, {47.1, 74.38, 17}, {47.5, 75.24, 17}, {48.6, 76.23, 17}, {49.07, 76.25, 17}}
+ b["scrapedAt"] = 1773751613
+ end
+ b = MTH_DS_Beasts[3250]
+ if b then
+ b["displayId"] = 2730
+ b["health"] = 587
+ b["dmgMin"] = 36.8826
+ b["dmgMax"] = 45.2109
+ b["armor"] = 870
+ b["factionId"] = 413
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{42.11, 69.37, 17}, {42.45, 71.05, 17}, {42.5, 69.9, 17}, {42.5, 72.06, 17}, {43.16, 69.14, 17}, {43.74, 71.05, 17}, {43.77, 72.96, 17}, {44.18, 69.51, 17}, {44.72, 71.59, 17}, {44.89, 72.55, 17}, {45.19, 71.99, 17}, {45.38, 69.41, 17}, {47.09, 69.99, 17}, {47.32, 71.32, 17}, {48.07, 69.45, 17}, {48.15, 70.37, 17}, {49.43, 69.34, 17}}
+ b["scrapedAt"] = 1773751614
+ end
+ b = MTH_DS_Beasts[3252]
+ if b then
+ b["displayId"] = 2731
+ b["health"] = 631
+ b["dmgMin"] = 30.899
+ b["dmgMax"] = 39.5507
+ b["armor"] = 905
+ b["factionId"] = 413
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{41.87, 69.01, 17}, {42.09, 71.67, 17}, {42.68, 72.55, 17}, {42.81, 69.37, 17}, {42.83, 70.64, 17}, {43.53, 70.51, 17}, {43.81, 72.73, 17}, {44.02, 69.28, 17}, {44.57, 71.88, 17}, {44.85, 69.68, 17}, {45.1, 68.94, 17}, {45.38, 72.55, 17}, {47.59, 70.9, 17}, {47.67, 70.12, 17}, {48.19, 71.62, 17}, {48.42, 70.03, 17}, {49.09, 69.97, 17}}
+ b["scrapedAt"] = 1773751615
+ end
+ b = MTH_DS_Beasts[3254]
+ if b then
+ b["displayId"] = 1744
+ b["health"] = 210
+ b["dmgMin"] = 19.0362
+ b["dmgMax"] = 26.1747
+ b["armor"] = 576
+ b["factionId"] = 48
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{47.7, 14.48, 17}, {47.86, 26.03, 17}, {48.34, 25.1, 17}, {48.85, 23.82, 17}, {51.29, 22.62, 17}, {51.78, 18.72, 17}, {52.92, 33.03, 17}, {54.72, 23.14, 17}}
+ b["scrapedAt"] = 1773751617
+ end
+ b = MTH_DS_Beasts[3255]
+ if b then
+ b["displayId"] = 1747
+ b["health"] = 331
+ b["dmgMin"] = 21.4157
+ b["dmgMax"] = 30.9338
+ b["armor"] = 634
+ b["factionId"] = 48
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{39.81, 31.53, 17}, {40.15, 24.09, 17}, {40.27, 24.98, 17}, {40.49, 29.0, 17}, {40.74, 20.18, 17}, {41.14, 22.64, 17}, {41.19, 23.63, 17}, {41.39, 25.1, 17}, {41.49, 20.15, 17}, {41.75, 29.57, 17}, {41.8, 32.87, 17}, {41.86, 34.23, 17}, {41.87, 20.6, 17}, {42.23, 33.98, 17}, {42.45, 30.45, 17}, {42.82, 38.09, 17}, {42.86, 25.63, 17}, {43.26, 34.09, 17}, {43.53, 40.71, 17}, {43.82, 18.69, 17}, {43.82, 40.95, 17}, {44.11, 19.78, 17}, {44.17, 34.63, 17}, {44.17, 41.54, 17}, {44.2, 18.33, 17}, {44.32, 26.1, 17}, {44.44, 18.78, 17}, {44.49, 40.67, 17}, {44.74, 33.4, 17}, {45.61, 30.31, 17}, {48.84, 41.64, 17}, {49.68, 39.35, 17}, {50.05, 45.31, 17}, {50.33, 13.08, 17}, {50.76, 39.97, 17}, {51.11, 43.26, 17}, {51.74, 44.2, 17}, {51.88, 46.44, 17}, {52.06, 43.88, 17}, {52.14, 35.9, 17}, {52.78, 42.98, 17}, {53.01, 12.84, 17}, {53.07, 19.38, 17}, {53.25, 17.04, 17}, {53.33, 11.88, 17}, {53.34, 14.75, 17}, {53.34, 34.39, 17}, {53.5, 46.2, 17}, {53.56, 44.35, 17}, {53.71, 35.93, 17}, {54.0, 40.87, 17}, {54.36, 12.83, 17}, {54.42, 41.02, 17}, {54.58, 35.84, 17}, {54.67, 11.29, 17}, {54.68, 16.21, 17}, {54.68, 46.14, 17}, {54.69, 9.258, 17}, {54.82, 39.6, 17}, {54.89, 15.53, 17}, {54.99, 7.852, 17}, {55.0, 44.34, 17}, {55.24, 9.391, 17}, {55.36, 21.25, 17}, {55.87, 14.08, 17}, {55.91, 40.13, 17}, {55.95, 38.83, 17}, {55.99, 33.55, 17}, {56.2, 39.22, 17}, {56.29, 16.78, 17}, {56.3, 11.32, 17}, {56.41, 9.88, 17}, {56.41, 35.0, 17}, {56.61, 15.4, 17}, {57.1, 36.37, 17}, {57.22, 10.23, 17}, {57.34, 40.47, 17}, {57.57, 42.31, 17}, {57.6, 14.82, 17}, {57.62, 38.43, 17}, {57.63, 17.41, 17}, {57.71, 12.26, 17}, {57.95, 37.05, 17}, {57.99, 20.54, 17}, {58.32, 12.32, 17}, {58.34, 44.11, 17}, {58.39, 14.33, 17}, {58.62, 33.47, 17}, {58.64, 45.36, 17}, {58.75, 39.93, 17}, {58.8, 34.48, 17}, {58.83, 43.42, 17}, {58.87, 14.22, 17}, {58.87, 17.68, 17}, {58.88, 10.68, 17}, {59.01, 42.69, 17}, {59.16, 12.93, 17}, {59.17, 15.99, 17}, {59.29, 46.38, 17}, {59.45, 17.67, 17}, {59.48, 15.06, 17}, {59.51, 10.61, 17}, {59.61, 44.9, 17}, {59.96, 46.33, 17}, {59.97, 35.56, 17}, {60.12, 29.57, 17}, {60.17, 14.13, 17}, {60.19, 17.89, 17}, {60.21, 11.86, 17}, {60.26, 47.07, 17}, {60.33, 28.47, 17}, {60.37, 44.81, 17}, {60.4, 14.9, 17}, {60.45, 22.11, 17}, {60.5, 43.72, 17}, {60.58, 16.72, 17}, {60.8, 23.26, 17}, {60.92, 46.5, 17}, {61.52, 41.3, 17}, {61.7, 46.87, 17}, {61.93, 23.07, 17}, {62.3, 25.91, 17}, {63.59, 6.046, 17}}
+ b["scrapedAt"] = 1773751619
+ end
+ b = MTH_DS_Beasts[3256]
+ if b then
+ b["displayId"] = 4442
+ b["health"] = 424
+ b["dmgMin"] = 28.5542
+ b["dmgMax"] = 39.2621
+ b["armor"] = 771
+ b["factionId"] = 48
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{36.19, 28.78, 17}, {36.65, 26.41, 17}, {37.25, 26.77, 17}, {39.27, 25.64, 17}, {42.54, 15.65, 17}, {43.87, 43.43, 17}, {44.12, 14.41, 17}, {44.13, 16.63, 17}, {44.39, 44.25, 17}, {44.44, 43.82, 17}, {44.72, 14.28, 17}, {45.13, 44.38, 17}, {45.53, 14.69, 17}, {46.34, 44.13, 17}, {46.43, 15.03, 17}, {47.06, 43.37, 17}, {47.73, 12.93, 17}, {47.74, 45.8, 17}, {47.77, 43.21, 17}, {48.09, 50.26, 17}, {48.15, 11.27, 17}, {48.31, 47.36, 17}, {48.83, 48.66, 17}, {49.34, 49.61, 17}, {49.44, 51.16, 17}, {50.19, 46.68, 17}, {50.67, 51.8, 17}, {51.48, 50.78, 17}, {51.82, 49.35, 17}, {51.92, 47.99, 17}, {52.62, 46.26, 17}, {52.97, 51.22, 17}, {53.02, 48.27, 17}, {54.29, 49.43, 17}, {55.65, 50.78, 17}, {55.73, 5.75, 17}, {55.81, 51.87, 17}, {56.63, 4.359, 17}, {56.65, 48.95, 17}, {56.69, 47.39, 17}, {57.07, 51.87, 17}, {57.1, 54.4, 17}, {57.73, 6.224, 17}, {57.85, 8.222, 17}, {57.9, 53.93, 17}, {58.01, 53.99, 17}, {58.25, 7.378, 17}, {58.31, 50.02, 17}, {58.99, 6.342, 17}, {59.15, 7.408, 17}, {59.9, 8.858, 17}, {60.29, 30.47, 17}, {60.4, 8.858, 17}, {60.75, 33.35, 17}, {60.84, 12.74, 17}, {60.89, 50.02, 17}, {60.97, 32.04, 17}, {61.22, 34.04, 17}, {61.28, 31.02, 17}}
+ b["scrapedAt"] = 1773751620
+ end
+ b = MTH_DS_Beasts[3257]
+ if b then
+ b["displayId"] = 2571
+ b["health"] = 535
+ b["dmgMin"] = 53.1463
+ b["dmgMax"] = 61.798
+ b["armor"] = 817
+ b["factionId"] = 48
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773749905
+ end
+ b = MTH_DS_Beasts[3281]
+ if b then
+ b["displayId"] = 2864
+ b["health"] = 95
+ b["dmgMin"] = 4.4
+ b["dmgMax"] = 5.5
+ b["armor"] = 76
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{40.48, 66.82, 14}}
+ b["scrapedAt"] = 1773751621
+ end
+ b = MTH_DS_Beasts[3415]
+ if b then
+ b["displayId"] = 1056
+ b["health"] = 260
+ b["dmgMin"] = 12.8357
+ b["dmgMax"] = 16.3363
+ b["armor"] = 557
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{49.09, 27.58, 17}, {49.34, 26.9, 17}, {49.64, 15.59, 17}, {49.97, 23.56, 17}, {50.0, 31.79, 17}, {50.18, 16.29, 17}, {50.22, 23.01, 17}, {50.39, 15.21, 17}, {50.71, 31.45, 17}, {50.8, 23.2, 17}, {51.0, 20.37, 17}, {51.13, 21.29, 17}, {51.21, 23.99, 17}, {51.34, 26.19, 17}, {51.75, 25.98, 17}, {53.43, 27.18, 17}, {53.87, 31.06, 17}, {54.31, 29.37, 17}, {54.33, 31.39, 17}, {54.96, 29.0, 17}, {55.2, 30.73, 17}, {55.6, 30.44, 17}, {55.76, 16.64, 17}, {55.99, 16.73, 17}}
+ b["scrapedAt"] = 1773751622
+ end
+ b = MTH_DS_Beasts[3416]
+ if b then
+ b["displayId"] = 1058
+ b["health"] = 459
+ b["dmgMin"] = 24.985
+ b["dmgMax"] = 30.9338
+ b["armor"] = 765
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{58.85, 35.41, 17}, {59.85, 34.78, 17}, {61.72, 33.07, 17}, {62.17, 32.98, 17}}
+ b["scrapedAt"] = 1773751624
+ end
+ b = MTH_DS_Beasts[3424]
+ if b then
+ b["displayId"] = 1975
+ b["health"] = 557
+ b["dmgMin"] = 34.6069
+ b["dmgMax"] = 45.7305
+ b["armor"] = 745
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{44.76, 63.05, 17}, {45.52, 66.97, 17}, {46.69, 61.49, 17}, {48.13, 60.04, 17}, {48.81, 62.31, 17}, {50.04, 60.5, 17}}
+ b["scrapedAt"] = 1773751625
+ end
+ b = MTH_DS_Beasts[3425]
+ if b then
+ b["displayId"] = 1973
+ b["health"] = 364
+ b["dmgMin"] = 16.6566
+ b["dmgMax"] = 22.6054
+ b["armor"] = 660
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{40.29, 20.51, 17}, {40.4, 20.17, 17}, {40.84, 26.26, 17}, {40.91, 21.81, 17}, {41.19, 27.0, 17}, {41.56, 28.72, 17}, {41.72, 23.26, 17}, {42.5, 35.12, 17}, {42.59, 28.84, 17}, {42.72, 33.21, 17}, {42.89, 33.74, 17}, {43.21, 33.69, 17}, {43.22, 33.3, 17}, {43.46, 39.33, 17}, {43.56, 35.49, 17}, {43.57, 39.41, 17}, {43.83, 37.59, 17}, {44.18, 32.79, 17}, {44.54, 31.84, 17}, {53.47, 15.4, 17}, {53.55, 15.93, 17}, {53.69, 13.94, 17}, {54.99, 15.16, 17}, {55.01, 14.87, 17}, {55.6, 16.33, 17}, {57.73, 39.29, 17}, {58.59, 40.77, 17}, {59.0, 36.46, 17}, {59.22, 40.99, 17}, {59.34, 40.81, 17}, {59.67, 34.41, 17}, {60.61, 7.896, 17}, {62.61, 27.46, 17}, {62.81, 28.72, 17}, {63.12, 27.49, 17}, {63.16, 28.06, 17}, {63.21, 29.52, 17}, {63.26, 7.29, 17}, {63.52, 5.351, 17}, {63.68, 6.298, 17}}
+ b["scrapedAt"] = 1773751626
+ end
+ b = MTH_DS_Beasts[3461]
+ if b then
+ b["displayId"] = 6368
+ b["health"] = 391
+ b["dmgMin"] = 27.3645
+ b["dmgMax"] = 35.6928
+ b["armor"] = 695
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{45.73, 39.02, 17}, {45.93, 40.4, 17}, {46.41, 39.33, 17}, {46.42, 40.0, 17}, {47.62, 39.44, 17}, {48.11, 40.59, 17}, {55.33, 41.92, 17}, {55.66, 43.27, 17}, {56.08, 42.4, 17}}
+ b["scrapedAt"] = 1773751628
+ end
+ b = MTH_DS_Beasts[3472]
+ if b then
+ b["displayId"] = 2699
+ b["health"] = 843
+ b["dmgMin"] = 44.0211
+ b["dmgMax"] = 54.729
+ b["armor"] = 1026
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{43.17, 80.91, 17}}
+ b["scrapedAt"] = 1773751629
+ end
+ b = MTH_DS_Beasts[3475]
+ if b then
+ b["displayId"] = 1934
+ b["health"] = 424
+ b["dmgMin"] = 40.4518
+ b["dmgMax"] = 48.7802
+ b["armor"] = 713
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773749906
+ end
+ b = MTH_DS_Beasts[3503]
+ if b then
+ b["displayId"] = 1307
+ b["health"] = 496
+ b["dmgMin"] = 33.3709
+ b["dmgMax"] = 42.0226
+ b["armor"] = 800
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{45.47, 72.46, 17}}
+ b["scrapedAt"] = 1773749907
+ end
+ b = MTH_DS_Beasts[3566]
+ if b then
+ b["displayId"] = 1056
+ b["health"] = 194
+ b["dmgMin"] = 13.2
+ b["dmgMax"] = 15.4
+ b["armor"] = 406
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{32.29, 18.95, 215}, {35.37, 16.18, 215}, {37.41, 16.91, 215}, {37.57, 11.97, 215}, {38.11, 15.62, 215}, {38.81, 9.229, 215}, {39.76, 11.07, 215}, {41.61, 9.842, 215}, {42.16, 19.74, 215}, {42.47, 7.302, 215}, {42.61, 11.13, 215}, {42.84, 24.35, 215}, {44.05, 15.68, 215}, {44.2, 26.08, 215}, {44.24, 18.95, 215}, {44.42, 12.41, 215}, {44.51, 8.645, 215}, {44.98, 33.4, 215}, {45.02, 16.73, 215}, {45.43, 12.0, 215}, {46.27, 17.46, 215}, {46.3, 27.74, 215}, {47.32, 25.14, 215}, {47.41, 8.557, 215}, {47.78, 28.79, 215}, {47.92, 15.27, 215}, {47.96, 16.91, 215}, {48.31, 25.67, 215}, {48.45, 20.24, 215}, {48.47, 13.72, 215}, {48.74, 18.57, 215}, {48.8, 8.878, 215}, {48.91, 11.45, 215}, {50.63, 15.77, 215}, {50.7, 22.51, 215}, {51.02, 24.32, 215}, {51.91, 11.97, 215}, {51.97, 17.55, 215}, {52.49, 25.73, 215}, {53.31, 25.46, 215}, {53.35, 15.94, 215}, {53.43, 21.7, 215}, {53.86, 18.98, 215}, {54.99, 32.47, 215}, {55.28, 18.4, 215}, {55.86, 23.83, 215}, {56.31, 21.87, 215}, {56.33, 34.37, 215}, {56.41, 26.25, 215}, {57.03, 24.7, 215}, {57.19, 29.61, 215}, {62.79, 58.43, 215}, {32.74, 32.54, 17}, {32.74, 34.18, 17}, {34.5, 36.95, 17}, {35.92, 39.87, 17}, {36.04, 42.37, 17}, {36.89, 40.44, 17}, {37.26, 39.84, 17}}
+ b["scrapedAt"] = 1773751631
+ end
+ b = MTH_DS_Beasts[3581]
+ if b then
+ b["displayId"] = 2850
+ b["npcClass"] = "Rare"
+ b["health"] = 21490
+ b["dmgMin"] = 317.642
+ b["dmgMax"] = 409.103
+ b["armor"] = 2999
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{66.5, 56.24, 1519}}
+ b["scrapedAt"] = 1773749909
+ end
+ b = MTH_DS_Beasts[3619]
+ if b then
+ b["displayId"] = 4472
+ b["health"] = 535
+ b["dmgMin"] = 65.4368
+ b["dmgMax"] = 78.5242
+ b["armor"] = 835
+ b["factionId"] = 66
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773749910
+ end
+ b = MTH_DS_Beasts[3630]
+ if b then
+ b["displayId"] = 1742
+ b["npcClass"] = "Elite"
+ b["health"] = 1189
+ b["dmgMin"] = 35.6928
+ b["dmgMax"] = 46.4006
+ b["armor"] = 695
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{45.72, 34.02, 17}, {45.87, 33.03, 17}, {46.13, 35.25, 17}, {46.77, 34.51, 17}}
+ b["scrapedAt"] = 1773751632
+ end
+ b = MTH_DS_Beasts[3631]
+ if b then
+ b["displayId"] = 4091
+ b["npcClass"] = "Elite"
+ b["health"] = 1274
+ b["dmgMin"] = 38.3148
+ b["dmgMax"] = 49.4384
+ b["armor"] = 731
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{47.39, 32.57, 17}, {48.18, 34.36, 17}, {48.65, 32.08, 17}, {49.4, 33.16, 17}}
+ b["scrapedAt"] = 1773751634
+ end
+ b = MTH_DS_Beasts[3632]
+ if b then
+ b["displayId"] = 1744
+ b["npcClass"] = "Elite"
+ b["health"] = 1170
+ b["dmgMin"] = 35.6928
+ b["dmgMax"] = 46.4006
+ b["armor"] = 695
+ b["factionId"] = 270
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{45.78, 34.08, 17}, {45.9, 35.59, 17}, {46.08, 32.51, 17}, {46.17, 35.26, 17}, {46.32, 32.54, 17}, {46.59, 34.78, 17}}
+ b["scrapedAt"] = 1773751635
+ end
+ b = MTH_DS_Beasts[3633]
+ if b then
+ b["displayId"] = 949
+ b["npcClass"] = "Elite"
+ b["health"] = 1295
+ b["dmgMin"] = 38.3148
+ b["dmgMax"] = 50.6744
+ b["armor"] = 731
+ b["factionId"] = 270
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{47.41, 33.38, 17}, {47.53, 34.14, 17}, {48.33, 34.24, 17}, {48.44, 32.27, 17}, {48.83, 31.98, 17}, {49.18, 32.7, 17}}
+ b["scrapedAt"] = 1773751636
+ end
+ b = MTH_DS_Beasts[3634]
+ if b then
+ b["displayId"] = 1746
+ b["npcClass"] = "Elite"
+ b["health"] = 1194
+ b["dmgMin"] = 28.4271
+ b["dmgMax"] = 37.0788
+ b["armor"] = 695
+ b["factionId"] = 270
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{45.58, 33.77, 17}, {46.47, 35.0, 17}, {47.87, 32.07, 17}, {48.07, 34.01, 17}}
+ b["scrapedAt"] = 1773751637
+ end
+ b = MTH_DS_Beasts[3636]
+ if b then
+ b["displayId"] = 1747
+ b["npcClass"] = "Elite"
+ b["health"] = 1488
+ b["dmgMin"] = 56.8542
+ b["dmgMax"] = 71.6857
+ b["armor"] = 800
+ b["factionId"] = 270
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773751638
+ end
+ b = MTH_DS_Beasts[3637]
+ if b then
+ b["displayId"] = 755
+ b["npcClass"] = "Elite"
+ b["health"] = 1488
+ b["dmgMin"] = 56.8542
+ b["dmgMax"] = 71.6857
+ b["armor"] = 800
+ b["factionId"] = 270
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773751639
+ end
+ b = MTH_DS_Beasts[3653]
+ if b then
+ b["displayId"] = 5126
+ b["npcClass"] = "Elite"
+ b["health"] = 3078
+ b["dmgMin"] = 110.323
+ b["dmgMax"] = 142.771
+ b["armor"] = 4140
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["scrapedAt"] = 1773751640
+ end
+ b = MTH_DS_Beasts[3809]
+ if b then
+ b["displayId"] = 820
+ b["health"] = 785
+ b["dmgMin"] = 38.3148
+ b["dmgMax"] = 48.2024
+ b["armor"] = 431
+ b["factionId"] = 44
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{31.54, 40.69, 331}, {32.51, 42.46, 331}, {33.68, 35.85, 331}, {36.49, 70.03, 331}, {37.42, 71.54, 331}, {37.61, 60.25, 331}, {38.27, 62.78, 331}, {38.45, 37.54, 331}, {38.51, 70.32, 331}, {38.84, 64.15, 331}, {39.38, 69.33, 331}, {39.52, 40.53, 331}, {39.54, 62.23, 331}, {39.61, 65.22, 331}, {40.37, 42.61, 331}, {40.63, 66.16, 331}, {40.99, 66.6, 331}, {41.05, 71.15, 331}, {41.31, 43.89, 331}, {41.36, 69.75, 331}, {41.88, 61.37, 331}, {42.12, 64.49, 331}, {42.85, 59.84, 331}, {42.9, 44.07, 331}, {43.08, 62.93, 331}, {43.46, 45.97, 331}, {44.13, 63.84, 331}, {44.38, 51.3, 331}, {44.62, 66.76, 331}, {44.67, 62.54, 331}, {45.5, 54.61, 331}, {45.8, 64.96, 331}, {45.9, 60.38, 331}, {45.94, 42.61, 331}, {46.77, 61.86, 331}, {48.35, 53.46, 331}, {48.69, 63.35, 331}, {49.35, 51.07, 331}, {50.05, 51.85, 331}, {50.36, 56.17, 331}, {50.45, 44.98, 331}, {50.64, 47.56, 331}, {50.76, 53.41, 331}, {51.28, 56.22, 331}, {51.47, 50.26, 331}, {51.61, 44.02, 331}, {52.66, 53.9, 331}, {54.76, 51.33, 331}, {55.02, 53.83, 331}, {56.97, 55.85, 331}, {63.73, 77.24, 331}, {66.12, 86.53, 331}, {66.47, 78.72, 331}, {66.75, 83.87, 331}, {66.81, 87.67, 331}, {66.97, 76.8, 331}, {67.92, 85.54, 331}}
+ b["scrapedAt"] = 1773751642
+ end
+ b = MTH_DS_Beasts[3810]
+ if b then
+ b["displayId"] = 982
+ b["health"] = 1080
+ b["dmgMin"] = 46.0845
+ b["dmgMax"] = 56.9993
+ b["armor"] = 496
+ b["factionId"] = 44
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{61.06, 63.53, 331}, {62.08, 63.5, 331}, {62.2, 66.91, 331}, {62.29, 61.76, 331}, {63.21, 68.34, 331}, {63.87, 53.67, 331}, {64.32, 56.79, 331}, {64.7, 59.16, 331}, {65.12, 60.3, 331}, {65.84, 60.62, 331}, {66.02, 63.56, 331}, {67.39, 50.16, 331}, {67.4, 62.02, 331}, {69.03, 59.5, 331}, {69.55, 56.64, 331}, {69.95, 51.15, 331}, {70.73, 54.58, 331}, {71.72, 49.12, 331}, {71.91, 52.16, 331}, {73.14, 50.91, 331}, {73.21, 46.62, 331}, {73.63, 47.82, 331}, {82.63, 61.01, 331}, {83.62, 63.19, 331}, {84.69, 62.78, 331}, {85.84, 64.99, 331}, {88.68, 66.73, 331}, {88.94, 65.53, 331}, {90.02, 68.26, 331}, {90.35, 67.51, 331}, {90.73, 65.48, 331}, {91.28, 65.43, 331}}
+ b["scrapedAt"] = 1773751642
+ end
+ b = MTH_DS_Beasts[3811]
+ if b then
+ b["displayId"] = 14315
+ b["health"] = 1399
+ b["dmgMin"] = 51.9103
+ b["dmgMax"] = 65.5059
+ b["armor"] = 562
+ b["factionId"] = 44
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{82.58, 47.06, 331}, {82.92, 48.44, 331}, {88.92, 46.62, 331}}
+ b["scrapedAt"] = 1773751643
+ end
+ b = MTH_DS_Beasts[3812]
+ if b then
+ b["displayId"] = 9566
+ b["health"] = 535
+ b["dmgMin"] = 33.3133
+ b["dmgMax"] = 42.8314
+ b["armor"] = 1237
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{8.844, 31.14, 331}, {9.971, 35.43, 331}, {10.04, 29.76, 331}, {10.08, 33.4, 331}, {11.12, 28.56, 331}, {11.77, 32.7, 331}, {12.45, 22.94, 331}, {12.71, 18.81, 331}, {12.87, 26.64, 331}, {12.88, 30.67, 331}, {13.47, 28.56, 331}, {13.99, 29.42, 331}, {14.62, 21.41, 331}, {15.4, 27.37, 331}, {24.87, 95.27, 148}, {26.35, 98.85, 148}, {26.91, 98.02, 148}, {27.37, 95.87, 148}, {29.49, 96.01, 148}}
+ b["scrapedAt"] = 1773749911
+ end
+ b = MTH_DS_Beasts[3814]
+ if b then
+ b["displayId"] = 1001
+ b["health"] = 587
+ b["dmgMin"] = 36.8826
+ b["dmgMax"] = 45.2109
+ b["armor"] = 1290
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{8.965, 33.53, 331}, {9.017, 28.56, 331}, {9.503, 34.57, 331}, {10.63, 25.91, 331}, {10.73, 32.54, 331}, {10.86, 30.7, 331}, {11.31, 24.82, 331}, {11.46, 31.71, 331}, {12.47, 21.46, 331}, {13.54, 30.18, 331}, {13.63, 23.07, 331}, {14.06, 18.96, 331}, {24.12, 97.24, 148}, {24.45, 95.78, 148}, {25.38, 98.82, 148}, {25.84, 93.51, 148}, {26.5, 94.47, 148}, {27.34, 97.4, 148}, {28.39, 98.87, 148}, {28.87, 96.65, 148}, {29.35, 98.78, 148}, {30.33, 97.24, 148}, {32.13, 99.72, 148}}
+ b["scrapedAt"] = 1773751644
+ end
+ b = MTH_DS_Beasts[3819]
+ if b then
+ b["displayId"] = 1103
+ b["health"] = 587
+ b["dmgMin"] = 36.8826
+ b["dmgMax"] = 45.2109
+ b["armor"] = 870
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{15.28, 44.95, 331}, {17.03, 47.4, 331}, {17.67, 51.64, 331}, {18.29, 51.9, 331}, {18.73, 58.77, 331}, {18.97, 54.84, 331}, {19.21, 57.57, 331}, {19.39, 50.0, 331}, {20.58, 58.17, 331}, {20.71, 49.56, 331}, {20.91, 50.08, 331}, {21.23, 56.66, 331}, {22.42, 48.78, 331}, {23.15, 57.47, 331}, {23.29, 46.83, 331}, {23.83, 47.09, 331}, {24.62, 55.36, 331}, {24.64, 53.64, 331}, {25.75, 43.34, 331}, {26.05, 49.4, 331}, {26.05, 51.59, 331}, {26.98, 51.48, 331}, {27.14, 52.89, 331}, {28.58, 56.12, 331}, {28.96, 54.66, 331}, {28.96, 57.13, 331}, {29.32, 50.6, 331}, {30.24, 49.35, 331}, {30.59, 51.98, 331}, {30.87, 56.45, 331}, {30.88, 48.93, 331}, {30.95, 59.24, 331}, {31.08, 52.65, 331}, {32.05, 37.12, 331}, {33.03, 42.01, 331}, {33.24, 53.46, 331}, {33.31, 37.07, 331}, {34.35, 33.64, 331}, {34.75, 57.62, 331}, {34.89, 45.45, 331}, {34.94, 58.77, 331}, {34.99, 55.18, 331}, {35.5, 40.58, 331}, {35.67, 56.06, 331}, {35.67, 59.5, 331}, {37.7, 31.82, 331}, {38.24, 40.12, 331}, {38.79, 38.68, 331}, {40.66, 41.49, 331}, {40.66, 43.47, 331}, {41.01, 40.77, 331}, {41.57, 39.44, 331}, {42.0, 43.94, 331}, {42.52, 47.48, 331}, {43.04, 46.49, 331}, {44.24, 50.16, 331}, {61.46, 79.45, 331}, {62.74, 78.88, 331}, {63.36, 79.56, 331}, {63.54, 77.81, 331}, {64.16, 86.61, 331}, {64.91, 83.67, 331}, {64.96, 84.6, 331}, {65.55, 85.49, 331}, {68.57, 72.82, 331}, {70.37, 84.71, 331}, {70.54, 76.3, 331}, {73.02, 79.22, 331}, {73.72, 70.84, 331}, {73.73, 78.7, 331}, {77.13, 73.55, 331}, {78.33, 66.31, 331}}
+ b["scrapedAt"] = 1773751646
+ end
+ b = MTH_DS_Beasts[3820]
+ if b then
+ b["displayId"] = 336
+ b["health"] = 791
+ b["dmgMin"] = 42.8314
+ b["dmgMax"] = 54.729
+ b["armor"] = 1009
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{54.09, 71.18, 331}, {55.35, 76.88, 331}, {55.7, 75.91, 331}, {56.27, 71.59, 331}, {56.97, 77.86, 331}, {57.19, 73.52, 331}, {57.55, 70.37, 331}, {57.61, 66.52, 331}, {57.62, 72.84, 331}, {58.16, 70.61, 331}, {62.2, 62.2, 331}, {64.02, 55.31, 331}, {64.32, 54.66, 331}, {65.77, 62.88, 331}, {66.73, 48.6, 331}, {66.73, 63.09, 331}, {67.39, 49.87, 331}, {68.58, 49.12, 331}, {70.87, 54.09, 331}, {72.38, 46.96, 331}, {72.45, 49.04, 331}, {73.42, 50.76, 331}, {74.03, 47.58, 331}}
+ b["scrapedAt"] = 1773751647
+ end
+ b = MTH_DS_Beasts[3821]
+ if b then
+ b["displayId"] = 1104
+ b["health"] = 1086
+ b["dmgMin"] = 49.9699
+ b["dmgMax"] = 61.8675
+ b["armor"] = 1148
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{81.1, 46.41, 331}, {82.01, 62.28, 331}, {82.86, 55.05, 331}, {83.46, 47.82, 331}, {83.84, 44.67, 331}, {84.8, 60.04, 331}, {85.72, 62.46, 331}, {85.96, 59.31, 331}, {86.39, 57.42, 331}, {87.14, 62.2, 331}, {87.83, 63.63, 331}, {87.85, 62.49, 331}, {88.51, 66.26, 331}, {88.73, 68.32, 331}, {88.92, 47.19, 331}, {89.79, 68.29, 331}, {89.93, 45.99, 331}, {90.12, 67.48, 331}, {90.64, 47.56, 331}, {90.88, 61.34, 331}, {90.9, 63.84, 331}, {90.99, 55.36, 331}, {91.77, 45.92, 331}, {92.05, 51.51, 331}, {92.77, 51.35, 331}, {92.88, 55.59, 331}, {93.31, 53.51, 331}}
+ b["scrapedAt"] = 1773751648
+ end
+ b = MTH_DS_Beasts[3823]
+ if b then
+ b["displayId"] = 802
+ b["health"] = 535
+ b["dmgMin"] = 33.3133
+ b["dmgMax"] = 42.8314
+ b["armor"] = 852
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{15.68, 45.76, 331}, {16.51, 36.37, 331}, {16.53, 21.36, 331}, {16.82, 45.4, 331}, {17.71, 50.29, 331}, {18.4, 47.4, 331}, {18.8, 33.56, 331}, {19.04, 56.45, 331}, {19.21, 27.39, 331}, {19.32, 54.11, 331}, {19.32, 58.27, 331}, {19.54, 21.12, 331}, {19.99, 29.79, 331}, {20.1, 49.04, 331}, {21.85, 60.38, 331}, {21.9, 46.59, 331}, {22.61, 62.05, 331}, {22.87, 32.99, 331}, {22.92, 47.58, 331}, {23.2, 55.96, 331}, {23.24, 29.32, 331}, {23.48, 28.49, 331}, {23.81, 36.0, 331}, {24.5, 49.14, 331}, {24.68, 54.03, 331}, {25.51, 52.52, 331}, {25.72, 21.1, 331}, {25.99, 22.14, 331}, {26.34, 52.65, 331}, {27.03, 26.22, 331}, {27.1, 18.6, 331}, {27.43, 31.45, 331}, {28.11, 27.5, 331}, {28.3, 55.15, 331}, {29.79, 19.77, 331}, {30.05, 56.71, 331}, {30.09, 54.97, 331}, {30.14, 48.02, 331}, {30.66, 51.67, 331}, {31.34, 49.79, 331}, {32.31, 50.57, 331}, {33.23, 59.63, 331}, {33.64, 60.49, 331}, {35.2, 58.33, 331}, {60.88, 80.41, 331}, {62.72, 77.6, 331}, {63.83, 85.25, 331}, {65.57, 87.26, 331}, {66.12, 86.03, 331}, {66.8, 85.57, 331}, {72.23, 81.66, 331}, {73.3, 78.54, 331}, {76.01, 66.83, 331}, {42.28, 96.79, 148}, {44.97, 95.98, 148}}
+ b["scrapedAt"] = 1773751649
+ end
+ b = MTH_DS_Beasts[3824]
+ if b then
+ b["displayId"] = 1207
+ b["health"] = 735
+ b["dmgMin"] = 40.4518
+ b["dmgMax"] = 51.1597
+ b["armor"] = 992
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{53.6, 70.37, 331}, {54.45, 71.0, 331}, {54.76, 69.7, 331}, {55.01, 75.13, 331}, {55.16, 76.9, 331}, {56.6, 75.65, 331}, {56.79, 70.14, 331}, {57.36, 77.4, 331}, {57.61, 65.43, 331}, {58.02, 72.06, 331}, {58.96, 68.21, 331}, {59.13, 68.92, 331}, {59.45, 73.68, 331}, {59.93, 71.26, 331}, {62.18, 70.09, 331}}
+ b["scrapedAt"] = 1773751650
+ end
+ b = MTH_DS_Beasts[3825]
+ if b then
+ b["displayId"] = 776
+ b["health"] = 999
+ b["dmgMin"] = 38.3148
+ b["dmgMax"] = 46.9665
+ b["armor"] = 1130
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{57.26, 34.18, 331}, {58.91, 41.65, 331}, {60.54, 45.92, 331}, {60.95, 43.18, 331}, {63.09, 45.29, 331}, {64.37, 49.38, 331}, {65.25, 69.28, 331}, {67.61, 69.62, 331}, {68.46, 65.35, 331}, {69.19, 67.69, 331}, {69.94, 65.09, 331}, {70.37, 64.28, 331}, {71.9, 58.04, 331}, {71.98, 55.62, 331}, {73.37, 54.84, 331}, {74.57, 55.93, 331}, {76.28, 55.49, 331}, {77.84, 55.44, 331}}
+ b["scrapedAt"] = 1773751651
+ end
+ b = MTH_DS_Beasts[3861]
+ if b then
+ b["displayId"] = 801
+ b["npcClass"] = "Elite"
+ b["health"] = 1488
+ b["dmgMin"] = 181.686
+ b["dmgMax"] = 213.821
+ b["armor"] = 817
+ b["factionId"] = 24
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773751652
+ end
+ b = MTH_DS_Beasts[3862]
+ if b then
+ b["displayId"] = 11421
+ b["npcClass"] = "Elite"
+ b["health"] = 1488
+ b["dmgMin"] = 110
+ b["dmgMax"] = 142.135
+ b["armor"] = 817
+ b["factionId"] = 24
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773751654
+ end
+ b = MTH_DS_Beasts[3866]
+ if b then
+ b["displayId"] = 8808
+ b["npcClass"] = "Elite"
+ b["health"] = 2005
+ b["dmgMin"] = 110
+ b["dmgMax"] = 142.135
+ b["armor"] = 852
+ b["factionId"] = 24
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773751655
+ end
+ b = MTH_DS_Beasts[3868]
+ if b then
+ b["displayId"] = 1955
+ b["npcClass"] = "Elite"
+ b["health"] = 2160
+ b["dmgMin"] = 126.115
+ b["dmgMax"] = 161.808
+ b["armor"] = 852
+ b["factionId"] = 24
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773751656
+ end
+ b = MTH_DS_Beasts[4005]
+ if b then
+ b["displayId"] = 760
+ b["health"] = 432
+ b["dmgMin"] = 32.135
+ b["dmgMax"] = 37.0788
+ b["armor"] = 731
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{54.59, 75.2, 406}, {54.94, 75.91, 406}, {56.27, 76.4, 406}, {58.95, 75.66, 406}, {59.18, 78.09, 406}, {60.14, 75.14, 406}, {60.55, 76.46, 406}, {60.84, 71.94, 406}, {61.61, 81.8, 406}, {64.28, 93.44, 406}, {64.95, 83.46, 406}, {67.31, 87.76, 406}, {68.76, 88.65, 406}}
+ b["scrapedAt"] = 1773751658
+ end
+ b = MTH_DS_Beasts[4006]
+ if b then
+ b["displayId"] = 1989
+ b["health"] = 535
+ b["dmgMin"] = 35.6928
+ b["dmgMax"] = 41.6416
+ b["armor"] = 835
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{52.97, 71.73, 406}, {53.44, 71.73, 406}, {60.75, 47.16, 406}, {60.8, 48.76, 406}, {61.72, 48.54, 406}, {68.06, 45.16, 406}, {69.17, 41.02, 406}, {70.15, 46.12, 406}, {73.02, 45.32, 406}, {73.59, 42.68, 406}, {74.13, 44.55, 406}, {74.82, 51.46, 406}, {74.9, 46.88, 406}, {75.7, 45.99, 406}, {76.09, 53.15, 406}, {77.36, 45.01, 406}, {77.61, 50.94, 406}, {78.63, 52.87, 406}}
+ b["scrapedAt"] = 1773751659
+ end
+ b = MTH_DS_Beasts[4007]
+ if b then
+ b["displayId"] = 759
+ b["health"] = 344
+ b["dmgMin"] = 33.3133
+ b["dmgMax"] = 38.0723
+ b["armor"] = 765
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{46.85, 46.18, 406}, {47.18, 47.38, 406}, {48.32, 44.12, 406}, {48.55, 48.57, 406}, {49.08, 47.31, 406}, {50.9, 39.64, 406}, {51.25, 42.37, 406}, {51.78, 47.28, 406}, {51.85, 56.62, 406}, {52.03, 54.16, 406}, {52.3, 58.46, 406}, {52.46, 41.85, 406}, {52.48, 61.13, 406}, {52.87, 72.34, 406}, {52.87, 72.93, 406}, {53.22, 73.11, 406}, {53.26, 55.45, 406}, {53.44, 44.95, 406}, {53.98, 61.47, 406}, {58.99, 60.7, 406}, {60.02, 61.59, 406}, {61.0, 66.42, 406}, {61.12, 59.38, 406}, {61.18, 57.26, 406}, {61.57, 63.74, 406}, {62.74, 60.37, 406}, {63.15, 61.41, 406}, {64.85, 60.95, 406}}
+ b["scrapedAt"] = 1773751660
+ end
+ b = MTH_DS_Beasts[4040]
+ if b then
+ b["displayId"] = 959
+ b["health"] = 631
+ b["dmgMin"] = 38.3148
+ b["dmgMax"] = 48.2024
+ b["armor"] = 905
+ b["factionId"] = 312
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{45.66, 61.21, 11}, {46.68, 63.82, 11}, {47.45, 63.24, 11}, {47.48, 59.58, 11}, {50.33, 59.21, 11}, {50.77, 62.04, 11}}
+ b["scrapedAt"] = 1773751661
+ end
+ b = MTH_DS_Beasts[4067]
+ if b then
+ b["displayId"] = 11453
+ b["health"] = 735
+ b["dmgMin"] = 26.1747
+ b["dmgMax"] = 30.9338
+ b["armor"] = 975
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{32.13, 11.54, 406}, {32.23, 8.896, 406}, {32.72, 11.11, 406}, {33.31, 12.3, 406}, {34.34, 7.974, 406}, {38.99, 12.12, 406}, {39.58, 17.74, 406}}
+ b["scrapedAt"] = 1773751662
+ end
+ b = MTH_DS_Beasts[4117]
+ if b then
+ b["displayId"] = 2705
+ b["health"] = 851
+ b["dmgMin"] = 41.2335
+ b["dmgMax"] = 52.1483
+ b["armor"] = 867
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{37.06, 41.91, 400}, {37.33, 55.03, 400}, {40.49, 50.19, 400}, {40.86, 58.24, 400}, {45.43, 94.54, 17}}
+ b["scrapedAt"] = 1773751663
+ end
+ b = MTH_DS_Beasts[4118]
+ if b then
+ b["displayId"] = 10991
+ b["health"] = 991
+ b["dmgMin"] = 46.9665
+ b["dmgMax"] = 60.562
+ b["armor"] = 1112
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{21.31, 38.09, 400}, {28.02, 42.22, 400}, {33.15, 52.89, 400}, {34.9, 54.42, 400}, {37.49, 53.77, 400}, {37.79, 54.01, 400}, {52.63, 55.07, 400}, {40.0, 92.87, 17}, {41.62, 93.68, 17}, {42.89, 94.76, 17}}
+ b["scrapedAt"] = 1773749912
+ end
+ b = MTH_DS_Beasts[4119]
+ if b then
+ b["displayId"] = 2703
+ b["health"] = 899
+ b["dmgMin"] = 45.2109
+ b["dmgMax"] = 57.1085
+ b["armor"] = 945
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{14.97, 31.72, 400}, {17.54, 36.66, 400}, {18.72, 32.94, 400}, {19.4, 39.18, 400}, {51.61, 43.92, 400}, {54.56, 48.66, 400}, {56.04, 51.22, 400}, {56.24, 46.89, 400}, {56.27, 49.82, 400}, {57.22, 49.92, 400}, {59.11, 51.59, 400}, {59.61, 46.41, 400}}
+ b["scrapedAt"] = 1773751665
+ end
+ b = MTH_DS_Beasts[4124]
+ if b then
+ b["displayId"] = 1056
+ b["health"] = 999
+ b["dmgMin"] = 35.8428
+ b["dmgMax"] = 44.4946
+ b["armor"] = 1013
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{14.08, 26.67, 400}, {15.13, 32.57, 400}, {15.74, 16.61, 400}, {15.92, 35.12, 400}, {20.04, 39.18, 400}, {21.49, 41.84, 400}, {21.88, 36.73, 400}, {22.36, 37.99, 400}, {24.77, 42.8, 400}, {25.02, 29.74, 400}, {27.92, 42.83, 400}, {30.99, 47.33, 400}, {34.04, 54.11, 400}, {36.24, 47.74, 400}, {36.42, 46.85, 400}, {38.86, 50.47, 400}, {48.67, 55.78, 400}, {50.95, 44.16, 400}, {54.13, 46.92, 400}, {57.83, 55.34, 400}, {58.79, 50.98, 400}, {59.61, 58.78, 400}, {59.67, 48.45, 400}, {60.33, 46.31, 400}, {63.61, 59.81, 400}, {63.95, 48.45, 400}, {64.06, 49.48, 400}, {64.79, 55.58, 400}, {64.88, 61.38, 400}, {66.67, 62.26, 400}, {67.54, 59.84, 400}, {91.39, 40.04, 357}, {91.59, 44.88, 357}, {92.24, 42.98, 357}, {41.39, 94.91, 17}}
+ b["scrapedAt"] = 1773751666
+ end
+ b = MTH_DS_Beasts[4126]
+ if b then
+ b["displayId"] = 1043
+ b["health"] = 871
+ b["dmgMin"] = 33.957
+ b["dmgMax"] = 43.659
+ b["armor"] = 1044
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{33.04, 34.14, 400}, {33.06, 31.34, 400}, {36.15, 31.95, 400}, {36.83, 40.95, 400}, {40.08, 56.12, 400}, {40.38, 51.66, 400}, {41.4, 58.72, 400}, {41.7, 52.37, 400}, {44.15, 59.23, 400}, {47.77, 59.23, 400}, {49.31, 46.78, 400}, {51.08, 48.49, 400}, {44.73, 93.39, 17}, {45.25, 94.78, 17}, {45.38, 94.05, 17}}
+ b["scrapedAt"] = 1773751667
+ end
+ b = MTH_DS_Beasts[4127]
+ if b then
+ b["displayId"] = 2710
+ b["health"] = 391
+ b["dmgMin"] = 27.3645
+ b["dmgMax"] = 35.6928
+ b["armor"] = 695
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{40.47, 22.65, 17}, {40.49, 28.56, 17}, {40.56, 29.22, 17}, {41.13, 32.42, 17}, {41.18, 25.15, 17}, {41.48, 22.27, 17}, {41.53, 26.37, 17}, {42.0, 28.28, 17}, {42.14, 21.17, 17}, {42.16, 31.03, 17}, {42.24, 21.56, 17}, {42.38, 35.59, 17}, {42.52, 19.75, 17}, {43.0, 36.95, 17}, {43.35, 41.7, 17}, {43.77, 39.69, 17}, {43.91, 20.73, 17}, {43.92, 36.48, 17}, {44.12, 36.17, 17}, {44.46, 42.21, 17}, {44.63, 18.26, 17}, {44.79, 39.97, 17}, {45.11, 42.56, 17}, {45.83, 42.83, 17}, {46.04, 42.04, 17}, {46.74, 41.85, 17}, {48.06, 42.4, 17}, {49.0, 41.55, 17}, {49.01, 40.49, 17}, {49.27, 39.82, 17}, {49.45, 41.82, 17}, {50.03, 44.93, 17}, {51.03, 42.81, 17}, {51.05, 44.2, 17}, {52.03, 14.23, 17}, {52.07, 13.14, 17}, {53.68, 12.28, 17}, {53.92, 45.05, 17}, {53.96, 11.11, 17}, {53.96, 45.98, 17}, {54.15, 40.22, 17}, {54.2, 44.94, 17}, {54.24, 45.39, 17}, {54.43, 11.77, 17}, {54.68, 13.31, 17}, {54.7, 10.16, 17}, {55.06, 11.92, 17}, {55.21, 44.94, 17}, {55.24, 38.71, 17}, {55.53, 39.73, 17}, {55.7, 9.761, 17}, {55.99, 46.87, 17}, {56.32, 15.5, 17}, {56.34, 41.47, 17}, {56.49, 39.94, 17}, {56.63, 17.43, 17}, {57.22, 42.0, 17}, {57.31, 18.3, 17}, {57.5, 17.21, 17}, {57.86, 34.69, 17}, {58.24, 37.5, 17}, {58.28, 18.27, 17}, {59.24, 18.12, 17}, {59.3, 37.81, 17}, {59.46, 30.51, 17}, {59.54, 41.79, 17}, {60.13, 27.18, 17}, {60.32, 41.75, 17}, {60.35, 35.46, 17}, {60.82, 30.1, 17}, {61.55, 8.429, 17}, {61.89, 41.7, 17}, {62.29, 8.696, 17}, {62.54, 28.88, 17}, {62.8, 27.09, 17}, {63.45, 7.63, 17}, {64.05, 4.625, 17}}
+ b["scrapedAt"] = 1773751668
+ end
+ b = MTH_DS_Beasts[4128]
+ if b then
+ b["displayId"] = 2712
+ b["health"] = 682
+ b["dmgMin"] = 39.5507
+ b["dmgMax"] = 50.6744
+ b["armor"] = 940
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{43.88, 76.54, 17}, {43.97, 74.92, 17}, {44.11, 79.42, 17}, {44.26, 74.49, 17}, {44.93, 74.93, 17}, {45.08, 77.43, 17}, {45.28, 78.96, 17}, {45.41, 75.97, 17}, {45.49, 74.66, 17}, {45.51, 76.68, 17}, {46.38, 80.94, 17}, {46.72, 79.92, 17}, {47.1, 77.37, 17}, {47.36, 81.5, 17}, {47.53, 72.96, 17}, {47.77, 74.71, 17}, {48.09, 75.52, 17}, {48.31, 74.49, 17}, {48.32, 80.94, 17}, {48.42, 79.58, 17}, {48.93, 79.25, 17}, {49.46, 75.6, 17}, {49.75, 76.97, 17}, {28.0, 48.33, 15}, {28.17, 48.65, 15}, {28.32, 44.85, 15}, {28.7, 42.48, 15}}
+ b["scrapedAt"] = 1773751669
+ end
+ b = MTH_DS_Beasts[4129]
+ if b then
+ b["displayId"] = 2711
+ b["health"] = 496
+ b["dmgMin"] = 33.3709
+ b["dmgMax"] = 42.0226
+ b["armor"] = 800
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{42.87, 57.57, 17}, {43.19, 45.12, 17}, {43.23, 56.83, 17}, {43.46, 53.53, 17}, {43.48, 45.8, 17}, {44.7, 52.82, 17}, {44.75, 45.37, 17}, {45.41, 44.69, 17}, {45.44, 52.45, 17}, {45.86, 48.45, 17}, {46.33, 49.32, 17}, {46.55, 47.22, 17}, {46.81, 46.75, 17}, {46.85, 55.6, 17}, {47.43, 45.79, 17}, {47.43, 48.33, 17}, {47.45, 47.79, 17}, {49.8, 55.17, 17}, {50.33, 56.15, 17}, {50.4, 59.12, 17}}
+ b["scrapedAt"] = 1773751670
+ end
+ b = MTH_DS_Beasts[4139]
+ if b then
+ b["displayId"] = 2491
+ b["health"] = 1453
+ b["dmgMin"] = 58.212
+ b["dmgMax"] = 72.765
+ b["armor"] = 1642
+ b["factionId"] = 413
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{69.99, 79.1, 400}, {70.79, 76.75, 400}, {71.47, 74.64, 400}, {71.81, 72.93, 400}, {73.04, 81.11, 400}, {73.47, 89.74, 400}, {81.38, 86.81, 400}, {82.49, 87.8, 400}, {82.74, 79.72, 400}, {83.74, 72.18, 400}, {86.56, 68.53, 400}, {88.2, 69.01, 400}}
+ b["scrapedAt"] = 1773751672
+ end
+ b = MTH_DS_Beasts[4140]
+ if b then
+ b["displayId"] = 3247
+ b["health"] = 1316
+ b["dmgMin"] = 53.5392
+ b["dmgMax"] = 66.6266
+ b["armor"] = 1555
+ b["factionId"] = 413
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{69.31, 65.33, 400}, {70.13, 63.05, 400}, {70.33, 68.88, 400}, {71.24, 57.15, 400}, {71.83, 73.65, 400}, {72.36, 57.45, 400}, {73.67, 70.1, 400}, {73.88, 55.2, 400}, {73.9, 61.0, 400}, {75.15, 59.5, 400}, {75.4, 58.41, 400}, {75.47, 67.75, 400}, {76.13, 55.07, 400}, {77.58, 51.73, 400}, {78.04, 56.74, 400}, {78.33, 52.78, 400}, {78.38, 66.9, 400}, {79.9, 68.67, 400}, {82.67, 69.08, 400}, {82.83, 66.35, 400}, {82.88, 59.26, 400}, {83.65, 62.98, 400}, {86.38, 61.27, 400}, {86.56, 57.73, 400}}
+ b["scrapedAt"] = 1773751673
+ end
+ b = MTH_DS_Beasts[4142]
+ if b then
+ b["displayId"] = 5052
+ b["health"] = 1250
+ b["dmgMin"] = 54.3822
+ b["dmgMax"] = 67.9778
+ b["armor"] = 1217
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{69.29, 67.1, 400}, {70.81, 55.1, 400}, {70.9, 64.1, 400}, {72.65, 68.64, 400}, {72.7, 58.34, 400}, {73.04, 55.78, 400}, {74.67, 56.33, 400}, {74.67, 60.86, 400}, {75.08, 53.12, 400}, {76.2, 58.58, 400}, {76.72, 54.32, 400}, {77.56, 53.91, 400}, {81.31, 52.65, 400}, {81.47, 54.86, 400}}
+ b["scrapedAt"] = 1773751674
+ end
+ b = MTH_DS_Beasts[4143]
+ if b then
+ b["displayId"] = 2308
+ b["health"] = 1521
+ b["dmgMin"] = 57.1085
+ b["dmgMax"] = 71.3856
+ b["armor"] = 1356
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{70.22, 77.98, 400}, {70.49, 76.78, 400}, {72.08, 78.8, 400}, {77.17, 70.85, 400}, {79.02, 51.62, 400}, {79.9, 66.25, 400}, {81.4, 56.5, 400}, {81.58, 53.47, 400}, {82.27, 54.15, 400}, {82.92, 70.0, 400}, {83.67, 74.53, 400}, {83.77, 60.73, 400}, {83.92, 67.38, 400}, {85.99, 58.14, 400}, {87.33, 61.07, 400}, {87.47, 70.95, 400}, {87.49, 73.31, 400}, {88.24, 79.14, 400}}
+ b["scrapedAt"] = 1773751675
+ end
+ b = MTH_DS_Beasts[4144]
+ if b then
+ b["displayId"] = 2307
+ b["health"] = 1437
+ b["dmgMin"] = 56.8542
+ b["dmgMax"] = 71.6857
+ b["armor"] = 1287
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{72.4, 88.82, 400}, {79.88, 85.72, 400}, {81.7, 89.19, 400}, {82.15, 85.03, 400}, {84.24, 84.45, 400}, {84.83, 81.8, 400}}
+ b["scrapedAt"] = 1773751676
+ end
+ b = MTH_DS_Beasts[4154]
+ if b then
+ b["displayId"] = 2305
+ b["health"] = 1250
+ b["dmgMin"] = 52.3494
+ b["dmgMax"] = 67.8163
+ b["armor"] = 1235
+ b["factionId"] = 73
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{69.08, 76.95, 400}, {70.42, 68.98, 400}, {71.17, 89.98, 400}, {71.61, 73.34, 400}, {73.72, 58.85, 400}, {75.74, 88.41, 400}, {78.31, 86.02, 400}, {80.7, 59.47, 400}, {82.88, 80.02, 400}, {84.04, 81.93, 400}, {84.47, 81.73, 400}, {87.95, 65.3, 400}}
+ b["scrapedAt"] = 1773751677
+ end
+ b = MTH_DS_Beasts[4158]
+ if b then
+ b["displayId"] = 10825
+ b["health"] = 1382
+ b["dmgMin"] = 55.7865
+ b["dmgMax"] = 70.3395
+ b["factionId"] = 73
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{70.99, 75.32, 400}, {77.99, 89.84, 400}, {84.2, 70.72, 400}}
+ b["scrapedAt"] = 1773751678
+ end
+ b = MTH_DS_Beasts[4242]
+ if b then
+ b["displayId"] = 9956
+ b["health"] = 3045
+ b["dmgMin"] = 93.5
+ b["dmgMax"] = 119.9
+ b["armor"] = 2999
+ b["factionId"] = 80
+ b["reactA"] = "friendly"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{22.85, 47.15, 141}, {25.09, 45.56, 141}, {28.29, 45.89, 141}}
+ b["scrapedAt"] = 1773749913
+ end
+ b = MTH_DS_Beasts[4243]
+ if b then
+ b["displayId"] = 613
+ b["health"] = 3045
+ b["dmgMin"] = 96.8
+ b["dmgMax"] = 117.7
+ b["armor"] = 2999
+ b["factionId"] = 80
+ b["reactA"] = "friendly"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{25.5, 48.07, 141}}
+ b["scrapedAt"] = 1773749914
+ end
+ b = MTH_DS_Beasts[4248]
+ if b then
+ b["displayId"] = 2713
+ b["health"] = 936
+ b["dmgMin"] = 51.9103
+ b["dmgMax"] = 64.2699
+ b["armor"] = 1148
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{22.24, 38.19, 400}, {22.77, 42.52, 400}, {24.42, 43.72, 400}, {24.52, 44.91, 400}, {25.22, 37.34, 400}, {25.27, 32.43, 400}, {25.33, 29.02, 400}, {27.15, 39.93, 400}, {27.81, 44.7, 400}, {28.08, 30.28, 400}, {28.15, 41.74, 400}, {28.74, 40.03, 400}, {29.74, 51.39, 400}, {31.61, 47.06, 400}, {31.92, 49.37, 400}, {32.15, 50.67, 400}, {32.86, 51.59, 400}, {35.29, 46.17, 400}, {35.47, 50.64, 400}, {35.74, 54.9, 400}, {36.08, 49.51, 400}, {36.97, 46.85, 400}, {37.17, 51.01, 400}, {37.22, 50.12, 400}, {38.24, 33.73, 400}, {39.99, 55.75, 400}, {41.08, 57.66, 400}, {47.49, 54.56, 400}, {48.67, 53.98, 400}, {49.15, 57.56, 400}, {40.62, 93.88, 17}, {41.62, 94.31, 17}, {42.23, 94.99, 17}, {45.99, 95.21, 17}}
+ b["scrapedAt"] = 1773751679
+ end
+ b = MTH_DS_Beasts[4249]
+ if b then
+ b["displayId"] = 10903
+ b["health"] = 1086
+ b["dmgMin"] = 49.9699
+ b["dmgMax"] = 61.8675
+ b["armor"] = 1148
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{11.77, 21.45, 400}, {12.17, 25.78, 400}, {15.65, 30.83, 400}, {17.7, 19.85, 400}, {17.9, 20.02, 400}, {18.77, 33.93, 400}, {20.13, 33.28, 400}, {21.72, 34.2, 400}, {53.15, 46.68, 400}, {53.88, 54.59, 400}, {58.7, 49.14, 400}, {58.77, 57.73, 400}, {59.63, 53.7, 400}, {60.22, 57.39, 400}, {60.4, 55.48, 400}, {62.17, 60.28, 400}, {62.97, 45.83, 400}, {63.81, 56.47, 400}, {63.97, 50.53, 400}, {64.22, 60.56, 400}, {64.81, 52.78, 400}, {65.79, 49.92, 400}, {67.52, 51.05, 400}, {67.83, 57.49, 400}, {68.31, 61.85, 400}, {90.61, 40.41, 357}, {90.92, 44.45, 357}, {92.71, 41.51, 357}, {92.94, 42.85, 357}, {93.42, 43.67, 357}}
+ b["scrapedAt"] = 1773751681
+ end
+ b = MTH_DS_Beasts[4250]
+ if b then
+ b["displayId"] = 2726
+ b["health"] = 791
+ b["dmgMin"] = 30.9338
+ b["dmgMax"] = 36.8826
+ b["armor"] = 992
+ b["factionId"] = 131
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773749915
+ end
+ b = MTH_DS_Beasts[4263]
+ if b then
+ b["displayId"] = 957
+ b["health"] = 356
+ b["dmgMin"] = 36.8826
+ b["dmgMax"] = 41.6416
+ b["armor"] = 642
+ b["factionId"] = 312
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773751682
+ end
+ b = MTH_DS_Beasts[4264]
+ if b then
+ b["displayId"] = 336
+ b["health"] = 682
+ b["dmgMin"] = 67.9778
+ b["dmgMax"] = 81.5734
+ b["armor"] = 922
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773751683
+ end
+ b = MTH_DS_Beasts[4304]
+ if b then
+ b["displayId"] = 2709
+ b["npcClass"] = "Elite"
+ b["health"] = 3962
+ b["dmgMin"] = 211.019
+ b["dmgMax"] = 240.124
+ b["armor"] = 1304
+ b["factionId"] = 67
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{0.0, 0.0, 796}, {0.0, 0.0, 796}, {0.0, 0.0, 796}}
+ b["scrapedAt"] = 1773751685
+ end
+ b = MTH_DS_Beasts[4316]
+ if b then
+ b["displayId"] = 1535
+ b["health"] = 325
+ b["dmgMin"] = 22.6054
+ b["dmgMax"] = 27.3645
+ b["armor"] = 608
+ b["factionId"] = 130
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{47.7, 37.26, 17}, {48.7, 41.57, 17}, {52.35, 44.85, 17}, {52.8, 38.88, 17}, {53.33, 40.9, 17}, {54.07, 42.75, 17}, {55.32, 46.44, 17}, {56.76, 40.61, 17}, {56.96, 42.86, 17}}
+ b["scrapedAt"] = 1773751686
+ end
+ b = MTH_DS_Beasts[4341]
+ if b then
+ b["displayId"] = 1080
+ b["health"] = 1669
+ b["dmgMin"] = 61.798
+ b["dmgMax"] = 76.6295
+ b["armor"] = 1427
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{36.82, 17.99, 15}, {36.91, 16.79, 15}, {36.97, 26.33, 15}, {37.33, 22.5, 15}, {37.41, 25.22, 15}, {37.54, 13.42, 15}, {38.02, 29.48, 15}, {38.13, 28.53, 15}, {38.19, 22.48, 15}, {38.72, 17.65, 15}, {38.88, 23.42, 15}, {40.15, 25.25, 15}, {40.38, 19.82, 15}, {41.2, 26.85, 15}, {41.37, 21.39, 15}, {41.73, 24.25, 15}, {41.79, 14.22, 15}, {42.38, 21.1, 15}, {42.82, 19.42, 15}, {43.26, 16.73, 15}, {45.01, 19.1, 15}, {45.98, 20.53, 15}, {49.43, 21.99, 15}, {50.36, 20.42, 15}, {50.7, 27.45, 15}, {51.18, 28.73, 15}, {51.39, 16.28, 15}, {51.6, 29.13, 15}, {51.77, 23.68, 15}, {52.04, 20.28, 15}, {53.7, 29.68, 15}, {53.71, 20.7, 15}, {53.71, 33.5, 15}, {53.75, 23.76, 15}, {54.8, 32.25, 15}, {56.91, 28.5, 15}, {58.1, 24.88, 15}, {58.4, 30.36, 15}, {59.41, 34.59, 15}, {59.52, 35.1, 15}}
+ b["scrapedAt"] = 1773751687
+ end
+ b = MTH_DS_Beasts[4342]
+ if b then
+ b["displayId"] = 925
+ b["health"] = 1747
+ b["dmgMin"] = 116.424
+ b["dmgMax"] = 139.466
+ b["armor"] = 1537
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{33.35, 42.62, 15}, {34.1, 40.73, 15}, {34.51, 33.82, 15}, {34.76, 45.05, 15}, {35.6, 35.76, 15}, {35.77, 43.42, 15}, {36.95, 42.76, 15}, {37.09, 23.33, 15}, {37.49, 21.76, 15}, {37.54, 34.96, 15}, {38.02, 41.99, 15}, {38.25, 15.25, 15}, {38.78, 34.42, 15}, {39.1, 13.68, 15}, {39.26, 44.93, 15}, {39.92, 44.56, 15}, {40.06, 38.33, 15}, {40.34, 41.99, 15}, {40.42, 14.05, 15}, {41.07, 33.02, 15}, {41.12, 30.85, 15}, {41.33, 28.96, 15}, {41.77, 41.68, 15}, {42.15, 14.93, 15}, {42.32, 28.22, 15}, {42.38, 39.19, 15}, {42.97, 37.19, 15}, {43.3, 45.1, 15}, {43.56, 17.13, 15}, {44.5, 45.16, 15}, {44.69, 39.3, 15}, {44.84, 42.02, 15}, {45.09, 19.76, 15}, {48.69, 21.79, 15}, {51.26, 18.02, 15}, {52.63, 21.13, 15}, {54.34, 30.7, 15}, {56.11, 27.96, 15}, {56.17, 35.59, 15}, {58.4, 27.33, 15}}
+ b["scrapedAt"] = 1773751689
+ end
+ b = MTH_DS_Beasts[4343]
+ if b then
+ b["displayId"] = 814
+ b["health"] = 1899
+ b["dmgMin"] = 61.8675
+ b["dmgMax"] = 77.3344
+ b["armor"] = 1651
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{34.27, 46.88, 15}, {34.42, 49.5, 15}, {34.8, 58.33, 15}, {34.82, 60.56, 15}, {35.12, 34.39, 15}, {35.12, 55.59, 15}, {35.18, 44.28, 15}, {36.19, 59.45, 15}, {36.42, 48.19, 15}, {36.84, 60.73, 15}, {36.91, 51.16, 15}, {37.89, 46.82, 15}, {37.92, 59.59, 15}, {38.21, 49.13, 15}, {38.97, 53.53, 15}, {39.52, 48.82, 15}, {39.56, 53.08, 15}, {40.23, 50.33, 15}, {40.8, 54.82, 15}, {40.91, 60.56, 15}, {41.39, 57.73, 15}, {41.71, 56.02, 15}, {41.75, 64.68, 15}, {42.42, 49.82, 15}, {42.44, 61.08, 15}, {42.48, 53.93, 15}, {42.57, 48.02, 15}, {43.16, 58.45, 15}, {43.33, 63.76, 15}, {43.35, 56.62, 15}, {43.43, 47.45, 15}, {43.68, 49.59, 15}, {44.7, 62.13, 15}, {45.79, 49.45, 15}, {45.98, 52.93, 15}, {46.32, 61.36, 15}, {46.46, 59.59, 15}, {46.7, 63.7, 15}, {47.77, 53.53, 15}, {47.94, 55.42, 15}, {47.96, 50.22, 15}, {48.86, 65.62, 15}, {49.12, 57.96, 15}, {49.41, 56.25, 15}, {49.49, 64.42, 15}, {50.32, 53.7, 15}, {50.32, 63.25, 15}, {51.03, 61.96, 15}}
+ b["scrapedAt"] = 1773751689
+ end
+ b = MTH_DS_Beasts[4344]
+ if b then
+ b["displayId"] = 2548
+ b["health"] = 1909
+ b["dmgMin"] = 61.798
+ b["dmgMax"] = 76.6295
+ b["armor"] = 1468
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{37.85, 57.7, 15}, {38.59, 57.5, 15}, {40.36, 51.79, 15}, {41.1, 60.62, 15}}
+ b["scrapedAt"] = 1773751691
+ end
+ b = MTH_DS_Beasts[4345]
+ if b then
+ b["displayId"] = 807
+ b["npcClass"] = "Elite"
+ b["health"] = 5657
+ b["dmgMin"] = 148.315
+ b["dmgMax"] = 197.754
+ b["armor"] = 1899
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{37.62, 71.93, 15}, {38.44, 71.19, 15}, {39.83, 71.53, 15}, {41.2, 66.5, 15}, {42.06, 69.13, 15}, {42.17, 68.56, 15}, {43.18, 78.25, 15}, {43.94, 76.1, 15}, {43.98, 68.22, 15}, {44.13, 79.48, 15}, {44.53, 73.08, 15}, {44.9, 69.79, 15}, {46.08, 76.65, 15}, {46.32, 69.65, 15}, {46.63, 73.82, 15}, {46.69, 79.1, 15}, {46.95, 68.93, 15}, {47.14, 70.82, 15}, {47.31, 78.82, 15}, {47.68, 77.48, 15}, {47.75, 71.93, 15}, {48.38, 68.65, 15}, {49.05, 72.16, 15}, {49.14, 79.45, 15}, {50.32, 70.02, 15}, {50.5, 68.16, 15}, {50.53, 80.9, 15}, {50.74, 76.5, 15}, {51.03, 74.82, 15}, {52.13, 72.88, 15}, {52.29, 69.22, 15}, {52.99, 71.62, 15}, {54.23, 72.08, 15}, {54.97, 71.28, 15}, {55.35, 73.93, 15}, {56.72, 69.59, 15}}
+ b["scrapedAt"] = 1773751692
+ end
+ b = MTH_DS_Beasts[4351]
+ if b then
+ b["displayId"] = 2571
+ b["health"] = 1669
+ b["dmgMin"] = 64.2699
+ b["dmgMax"] = 80.3374
+ b["armor"] = 1520
+ b["factionId"] = 48
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{33.96, 27.68, 15}, {35.68, 14.79, 15}, {36.97, 14.76, 15}, {37.12, 12.16, 15}, {37.73, 27.68, 15}, {38.74, 25.96, 15}, {38.91, 19.56, 15}, {39.35, 22.36, 15}, {39.62, 14.25, 15}, {40.19, 17.53, 15}, {40.91, 25.33, 15}, {41.35, 17.65, 15}, {41.45, 19.25, 15}, {42.63, 9.648, 15}, {43.68, 20.22, 15}, {43.73, 12.48, 15}, {44.0, 22.42, 15}, {46.32, 28.22, 15}, {46.67, 15.48, 15}, {47.45, 17.59, 15}, {48.34, 18.73, 15}, {48.42, 27.76, 15}, {49.54, 26.7, 15}, {50.23, 19.45, 15}, {50.78, 31.85, 15}, {50.84, 21.5, 15}, {50.9, 15.96, 15}, {50.93, 33.76, 15}, {51.33, 12.9, 15}, {51.98, 21.33, 15}, {52.21, 27.22, 15}, {52.27, 16.99, 15}, {52.29, 34.88, 15}, {52.91, 27.93, 15}, {54.74, 35.65, 15}, {55.47, 21.19, 15}, {56.34, 38.33, 15}, {56.42, 25.22, 15}, {57.3, 29.99, 15}, {57.9, 38.53, 15}, {58.74, 20.53, 15}, {60.0, 24.62, 15}, {60.06, 29.42, 15}, {60.25, 27.3, 15}, {61.5, 36.73, 15}, {62.1, 37.9, 15}, {63.6, 40.19, 15}}
+ b["scrapedAt"] = 1773751693
+ end
+ b = MTH_DS_Beasts[4352]
+ if b then
+ b["displayId"] = 1962
+ b["health"] = 1747
+ b["dmgMin"] = 63.063
+ b["dmgMax"] = 78.8288
+ b["armor"] = 1542
+ b["factionId"] = 48
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{45.89, 17.59, 15}, {46.0, 19.48, 15}, {47.98, 14.85, 15}, {48.36, 19.56, 15}, {49.2, 20.59, 15}, {49.7, 19.76, 15}, {50.51, 15.68, 15}, {51.54, 21.93, 15}, {52.19, 15.19, 15}, {52.38, 19.28, 15}}
+ b["scrapedAt"] = 1773751694
+ end
+ b = MTH_DS_Beasts[4355]
+ if b then
+ b["displayId"] = 2574
+ b["health"] = 1899
+ b["dmgMin"] = 120.166
+ b["dmgMax"] = 142.771
+ b["armor"] = 1667
+ b["factionId"] = 48
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{33.16, 57.82, 15}, {33.89, 54.76, 15}, {35.43, 40.9, 15}, {35.43, 59.36, 15}, {36.29, 51.02, 15}, {36.42, 56.65, 15}, {36.86, 54.08, 15}, {37.26, 48.45, 15}, {37.37, 38.22, 15}, {37.54, 44.22, 15}, {38.15, 43.16, 15}, {38.23, 55.68, 15}, {38.51, 52.36, 15}, {38.88, 51.02, 15}, {39.07, 46.42, 15}, {39.62, 55.56, 15}, {40.1, 54.7, 15}, {40.17, 47.33, 15}, {40.17, 60.08, 15}, {40.93, 51.59, 15}, {40.99, 43.7, 15}, {41.22, 40.16, 15}, {41.49, 50.45, 15}, {41.49, 52.82, 15}, {41.52, 43.05, 15}, {41.62, 34.82, 15}, {41.71, 47.59, 15}, {41.9, 59.76, 15}, {42.7, 44.3, 15}, {43.3, 61.68, 15}, {43.52, 35.16, 15}, {43.77, 60.65, 15}, {43.89, 52.99, 15}, {44.02, 32.59, 15}, {44.32, 30.28, 15}, {44.59, 55.22, 15}, {44.84, 48.68, 15}, {44.86, 60.39, 15}, {44.95, 28.59, 15}, {45.26, 54.9, 15}, {45.49, 42.08, 15}, {45.6, 38.3, 15}, {45.62, 60.02, 15}, {46.59, 61.9, 15}, {46.88, 44.88, 15}, {47.92, 59.28, 15}, {48.5, 44.76, 15}, {48.9, 62.08, 15}, {49.49, 63.65, 15}, {49.6, 59.53, 15}, {49.68, 61.73, 15}}
+ b["scrapedAt"] = 1773751695
+ end
+ b = MTH_DS_Beasts[4356]
+ if b then
+ b["displayId"] = 11315
+ b["health"] = 2034
+ b["dmgMin"] = 65.4368
+ b["dmgMax"] = 80.9037
+ b["armor"] = 1758
+ b["factionId"] = 48
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{31.54, 64.1, 15}, {32.08, 64.45, 15}, {32.72, 66.19, 15}, {33.66, 69.73, 15}, {33.94, 65.1, 15}, {34.51, 71.02, 15}, {35.03, 72.1, 15}, {35.07, 66.53, 15}, {36.04, 69.9, 15}, {37.5, 67.99, 15}, {37.98, 70.33, 15}, {38.06, 68.76, 15}}
+ b["scrapedAt"] = 1773751697
+ end
+ b = MTH_DS_Beasts[4357]
+ if b then
+ b["displayId"] = 2573
+ b["health"] = 2175
+ b["dmgMin"] = 67.9778
+ b["dmgMax"] = 84.0453
+ b["armor"] = 1758
+ b["factionId"] = 48
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{31.35, 65.76, 15}, {33.66, 64.08, 15}, {36.4, 66.08, 15}}
+ b["scrapedAt"] = 1773749917
+ end
+ b = MTH_DS_Beasts[4376]
+ if b then
+ b["displayId"] = 545
+ b["health"] = 1669
+ b["dmgMin"] = 64.2699
+ b["dmgMax"] = 80.3374
+ b["armor"] = 1537
+ b["factionId"] = 312
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{30.8, 20.28, 15}, {31.3, 21.88, 15}, {32.3, 22.28, 15}, {33.85, 22.42, 15}, {34.76, 24.25, 15}, {35.01, 20.33, 15}}
+ b["scrapedAt"] = 1773751698
+ end
+ b = MTH_DS_Beasts[4377]
+ if b then
+ b["displayId"] = 2539
+ b["health"] = 1899
+ b["dmgMin"] = 122.546
+ b["dmgMax"] = 141.581
+ b["factionId"] = 312
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{32.55, 22.56, 15}}
+ b["scrapedAt"] = 1773751699
+ end
+ b = MTH_DS_Beasts[4378]
+ if b then
+ b["displayId"] = 2538
+ b["health"] = 1747
+ b["dmgMin"] = 47.2973
+ b["dmgMax"] = 89.7435
+ b["armor"] = 1537
+ b["factionId"] = 312
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{30.57, 20.3, 15}, {31.28, 22.02, 15}, {32.78, 21.25, 15}, {34.84, 23.1, 15}}
+ b["scrapedAt"] = 1773751700
+ end
+ b = MTH_DS_Beasts[4379]
+ if b then
+ b["displayId"] = 2541
+ b["health"] = 1909
+ b["dmgMin"] = 64.2699
+ b["dmgMax"] = 80.3374
+ b["armor"] = 1537
+ b["factionId"] = 312
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{31.81, 21.53, 15}, {32.0, 22.48, 15}, {34.8, 22.82, 15}, {35.71, 21.05, 15}}
+ b["scrapedAt"] = 1773751701
+ end
+ b = MTH_DS_Beasts[4380]
+ if b then
+ b["displayId"] = 2537
+ b["npcClass"] = "Rare"
+ b["health"] = 2125
+ b["dmgMin"] = 402.139
+ b["dmgMax"] = 517.546
+ b["armor"] = 1709
+ b["factionId"] = 312
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{31.14, 20.39, 15}}
+ b["scrapedAt"] = 1773749918
+ end
+ b = MTH_DS_Beasts[4389]
+ if b then
+ b["displayId"] = 2601
+ b["health"] = 2307
+ b["dmgMin"] = 64.2699
+ b["dmgMax"] = 80.3374
+ b["armor"] = 1537
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{57.41, 60.22, 15}, {59.18, 63.16, 15}, {59.45, 53.25, 15}, {60.86, 62.42, 15}, {61.66, 57.56, 15}}
+ b["scrapedAt"] = 1773749919
+ end
+ b = MTH_DS_Beasts[4390]
+ if b then
+ b["displayId"] = 6431
+ b["health"] = 2450
+ b["dmgMin"] = 64.2699
+ b["dmgMax"] = 80.3374
+ b["armor"] = 1648
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{63.75, 65.33, 15}, {64.5, 63.88, 15}, {66.8, 62.28, 15}, {66.91, 65.85, 15}, {69.47, 62.68, 15}, {70.78, 62.33, 15}, {72.0, 60.68, 15}}
+ b["scrapedAt"] = 1773749920
+ end
+ b = MTH_DS_Beasts[4396]
+ if b then
+ b["displayId"] = 4829
+ b["health"] = 1747
+ b["dmgMin"] = 105.509
+ b["dmgMax"] = 110.36
+ b["armor"] = 2282
+ b["factionId"] = 15
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{54.25, 11.36, 15}, {54.3, 12.9, 15}, {60.02, 15.42, 15}, {60.32, 10.85, 15}, {61.43, 20.96, 15}, {61.66, 30.73, 15}, {62.0, 26.56, 15}, {62.19, 33.45, 15}, {62.38, 25.08, 15}, {62.84, 33.82, 15}, {63.26, 20.05, 15}, {63.3, 36.42, 15}, {63.41, 29.28, 15}, {63.52, 38.16, 15}, {64.72, 39.65, 15}, {64.78, 40.82, 15}, {65.03, 24.79, 15}, {65.24, 30.1, 15}, {65.56, 28.05, 15}}
+ b["scrapedAt"] = 1773751702
+ end
+ b = MTH_DS_Beasts[4397]
+ if b then
+ b["displayId"] = 7836
+ b["health"] = 1899
+ b["dmgMin"] = 59.488
+ b["dmgMax"] = 73.7651
+ b["armor"] = 2117
+ b["factionId"] = 15
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{55.03, 13.19, 15}, {55.79, 15.88, 15}, {56.06, 9.048, 15}, {56.72, 9.191, 15}, {57.49, 7.791, 15}, {59.12, 6.762, 15}, {59.56, 14.48, 15}, {60.21, 18.62, 15}, {60.91, 7.562, 15}, {61.83, 28.19, 15}, {62.13, 9.105, 15}, {62.13, 31.1, 15}, {62.17, 20.76, 15}, {62.38, 28.62, 15}, {62.99, 5.305, 15}, {63.05, 35.7, 15}, {63.07, 25.93, 15}, {63.12, 29.96, 15}, {63.33, 17.08, 15}, {63.58, 20.22, 15}, {64.36, 18.73, 15}, {64.59, 7.162, 15}, {65.01, 42.16, 15}, {65.85, 30.56, 15}, {66.1, 28.08, 15}}
+ b["scrapedAt"] = 1773751704
+ end
+ b = MTH_DS_Beasts[4398]
+ if b then
+ b["displayId"] = 7837
+ b["health"] = 2034
+ b["dmgMin"] = 128.494
+ b["dmgMax"] = 154.669
+ b["armor"] = 2824
+ b["factionId"] = 15
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{47.05, 33.99, 15}, {48.3, 39.1, 15}, {49.28, 40.65, 15}, {49.96, 39.68, 15}, {51.28, 41.99, 15}, {51.98, 43.45, 15}, {54.44, 47.68, 15}, {55.39, 42.5, 15}, {55.73, 48.65, 15}, {56.38, 45.82, 15}, {56.8, 42.68, 15}, {57.33, 45.36, 15}, {57.77, 48.42, 15}, {58.86, 51.5, 15}, {60.65, 47.85, 15}}
+ b["scrapedAt"] = 1773751704
+ end
+ b = MTH_DS_Beasts[4399]
+ if b then
+ b["displayId"] = 7840
+ b["health"] = 2402
+ b["dmgMin"] = 152.023
+ b["dmgMax"] = 181.686
+ b["armor"] = 3455
+ b["factionId"] = 15
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{58.34, 63.96, 15}, {59.22, 65.25, 15}, {59.96, 52.82, 15}, {60.42, 61.76, 15}, {60.86, 65.62, 15}, {61.5, 61.02, 15}}
+ b["scrapedAt"] = 1773749921
+ end
+ b = MTH_DS_Beasts[4400]
+ if b then
+ b["displayId"] = 7839
+ b["health"] = 2351
+ b["dmgMin"] = 140.392
+ b["dmgMax"] = 166.566
+ b["armor"] = 2282
+ b["factionId"] = 15
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{56.95, 62.02, 15}, {59.47, 56.39, 15}, {59.81, 54.7, 15}, {59.92, 58.39, 15}, {60.7, 54.13, 15}, {60.76, 51.85, 15}, {60.76, 59.9, 15}, {61.73, 55.53, 15}}
+ b["scrapedAt"] = 1773749922
+ end
+ b = MTH_DS_Beasts[4411]
+ if b then
+ b["displayId"] = 2424
+ b["health"] = 1747
+ b["dmgMin"] = 116.424
+ b["dmgMax"] = 139.466
+ b["armor"] = 1537
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{34.67, 41.73, 15}, {35.41, 45.19, 15}, {36.78, 45.22, 15}, {38.29, 40.7, 15}, {38.91, 21.3, 15}, {39.2, 39.5, 15}, {39.35, 14.79, 15}, {40.53, 20.5, 15}, {42.46, 22.56, 15}, {43.33, 20.96, 15}, {44.21, 37.56, 15}, {47.94, 25.88, 15}, {49.6, 23.42, 15}, {52.3, 31.9, 15}, {52.59, 12.82, 15}, {52.82, 23.82, 15}, {52.82, 30.82, 15}, {53.16, 22.85, 15}, {53.28, 32.08, 15}, {55.26, 34.28, 15}, {57.37, 34.59, 15}, {58.84, 25.45, 15}, {62.86, 39.25, 15}}
+ b["scrapedAt"] = 1773751706
+ end
+ b = MTH_DS_Beasts[4412]
+ if b then
+ b["displayId"] = 2546
+ b["health"] = 1909
+ b["dmgMin"] = 64.2699
+ b["dmgMax"] = 80.3374
+ b["armor"] = 1651
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{38.23, 36.42, 15}, {44.42, 53.53, 15}}
+ b["scrapedAt"] = 1773751707
+ end
+ b = MTH_DS_Beasts[4413]
+ if b then
+ b["displayId"] = 2543
+ b["health"] = 1669
+ b["dmgMin"] = 118.653
+ b["dmgMax"] = 142.135
+ b["armor"] = 1427
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{39.85, 18.02, 15}, {44.34, 15.08, 15}, {48.55, 29.05, 15}, {50.34, 30.88, 15}, {52.06, 32.85, 15}, {52.59, 13.96, 15}, {52.82, 17.13, 15}, {54.15, 34.85, 15}, {55.18, 23.65, 15}, {57.28, 37.73, 15}}
+ b["scrapedAt"] = 1773751708
+ end
+ b = MTH_DS_Beasts[4414]
+ if b then
+ b["displayId"] = 2542
+ b["health"] = 1899
+ b["dmgMin"] = 61.8675
+ b["dmgMax"] = 77.3344
+ b["armor"] = 1537
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{41.33, 26.08, 15}, {46.67, 42.56, 15}, {50.06, 30.56, 15}, {50.93, 33.76, 15}, {51.01, 15.28, 15}, {56.36, 19.39, 15}, {56.78, 39.39, 15}, {60.0, 22.99, 15}}
+ b["scrapedAt"] = 1773751710
+ end
+ b = MTH_DS_Beasts[4415]
+ if b then
+ b["displayId"] = 11348
+ b["health"] = 2175
+ b["dmgMin"] = 82.8093
+ b["dmgMax"] = 103.821
+ b["armor"] = 1899
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{48.8, 46.36, 15}, {49.2, 45.13, 15}, {49.58, 46.36, 15}, {51.6, 64.56, 15}, {52.13, 49.9, 15}, {52.25, 48.42, 15}, {52.59, 60.85, 15}, {52.63, 67.19, 15}, {53.05, 50.7, 15}, {53.62, 60.42, 15}, {54.67, 67.08, 15}, {55.1, 59.76, 15}, {56.0, 53.99, 15}, {56.06, 56.02, 15}, {56.23, 66.82, 15}, {56.8, 56.02, 15}}
+ b["scrapedAt"] = 1773751711
+ end
+ b = MTH_DS_Beasts[4425]
+ if b then
+ b["displayId"] = 4735
+ b["npcClass"] = "Rare-Elite"
+ b["health"] = 6288
+ b["dmgMin"] = 247.47
+ b["dmgMax"] = 316.477
+ b["armor"] = 1097
+ b["factionId"] = 411
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773749923
+ end
+ b = MTH_DS_Beasts[4511]
+ if b then
+ b["displayId"] = 4713
+ b["npcClass"] = "Elite"
+ b["health"] = 2323
+ b["dmgMin"] = 236.762
+ b["dmgMax"] = 270.075
+ b["armor"] = 1026
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773749924
+ end
+ b = MTH_DS_Beasts[4512]
+ if b then
+ b["displayId"] = 4714
+ b["npcClass"] = "Elite"
+ b["health"] = 3044
+ b["dmgMin"] = 165.618
+ b["dmgMax"] = 213.821
+ b["armor"] = 1061
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773749926
+ end
+ b = MTH_DS_Beasts[4514]
+ if b then
+ b["displayId"] = 2453
+ b["npcClass"] = "Elite"
+ b["health"] = 2495
+ b["dmgMin"] = 128.551
+ b["dmgMax"] = 164.934
+ b["armor"] = 1026
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773749927
+ end
+ b = MTH_DS_Beasts[4538]
+ if b then
+ b["displayId"] = 1955
+ b["npcClass"] = "Elite"
+ b["health"] = 3409
+ b["dmgMin"] = 165.618
+ b["dmgMax"] = 213.821
+ b["armor"] = 1061
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773751712
+ end
+ b = MTH_DS_Beasts[4539]
+ if b then
+ b["displayId"] = 1954
+ b["npcClass"] = "Elite"
+ b["health"] = 3773
+ b["dmgMin"] = 173.705
+ b["dmgMax"] = 224.864
+ b["armor"] = 1061
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773751714
+ end
+ b = MTH_DS_Beasts[4548]
+ if b then
+ b["displayId"] = 2609
+ b["health"] = 1192
+ b["dmgMin"] = 53.1463
+ b["dmgMax"] = 65.5059
+ b["armor"] = 1200
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{17.79, 19.78, 400}}
+ b["scrapedAt"] = 1773751715
+ end
+ b = MTH_DS_Beasts[4660]
+ if b then
+ b["displayId"] = 2710
+ b["health"] = 1899
+ b["dmgMin"] = 104.699
+ b["dmgMax"] = 126.115
+ b["armor"] = 1656
+ b["factionId"] = 134
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773749928
+ end
+ b = MTH_DS_Beasts[4662]
+ if b then
+ b["displayId"] = 2716
+ b["health"] = 1899
+ b["dmgMin"] = 61.8675
+ b["dmgMax"] = 77.3344
+ b["armor"] = 1656
+ b["factionId"] = 133
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{65.49, 80.56, 405}, {72.3, 74.49, 405}}
+ b["scrapedAt"] = 1773751716
+ end
+ b = MTH_DS_Beasts[4688]
+ if b then
+ b["displayId"] = 10902
+ b["health"] = 528
+ b["dmgMin"] = 17.8464
+ b["dmgMax"] = 21.4157
+ b["armor"] = 1339
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{37.06, 72.65, 405}, {45.38, 30.26, 405}, {55.95, 41.0, 405}}
+ b["scrapedAt"] = 1773751717
+ end
+ b = MTH_DS_Beasts[4689]
+ if b then
+ b["displayId"] = 2726
+ b["health"] = 340
+ b["dmgMin"] = 15.4669
+ b["dmgMax"] = 20.2259
+ b["armor"] = 1235
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{61.24, 22.52, 405}, {62.0, 32.29, 405}, {71.25, 34.79, 405}}
+ b["scrapedAt"] = 1773751719
+ end
+ b = MTH_DS_Beasts[4690]
+ if b then
+ b["displayId"] = 10271
+ b["health"] = 630
+ b["dmgMin"] = 17.8464
+ b["dmgMax"] = 22.6054
+ b["armor"] = 1595
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{43.09, 50.3, 405}, {56.53, 47.64, 405}}
+ b["scrapedAt"] = 1773751720
+ end
+ b = MTH_DS_Beasts[4692]
+ if b then
+ b["displayId"] = 1192
+ b["health"] = 1437
+ b["dmgMin"] = 56.8542
+ b["dmgMax"] = 71.6857
+ b["armor"] = 1287
+ b["factionId"] = 73
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{35.68, 74.49, 405}, {38.24, 33.49, 405}, {38.53, 75.66, 405}, {41.91, 65.38, 405}, {42.98, 71.05, 405}, {43.36, 29.59, 405}, {43.4, 69.75, 405}, {44.14, 73.42, 405}, {44.25, 22.89, 405}, {44.27, 37.8, 405}, {44.63, 24.95, 405}, {44.89, 16.85, 405}, {45.52, 31.22, 405}, {45.96, 34.26, 405}, {46.65, 14.71, 405}, {46.98, 38.83, 405}, {47.25, 32.29, 405}, {47.65, 29.22, 405}, {47.81, 41.03, 405}, {48.34, 66.35, 405}, {48.72, 27.86, 405}, {48.76, 39.93, 405}, {49.61, 34.06, 405}, {50.03, 7.775, 405}, {50.16, 32.19, 405}, {50.3, 26.39, 405}, {51.43, 35.36, 405}, {52.1, 24.32, 405}, {52.79, 21.95, 405}, {53.7, 23.42, 405}, {54.5, 66.75, 405}, {56.06, 64.78, 405}, {56.53, 41.1, 405}, {56.75, 18.82, 405}, {57.37, 12.38, 405}, {57.42, 34.59, 405}, {58.93, 28.92, 405}, {59.68, 13.35, 405}, {59.77, 24.29, 405}, {60.11, 35.93, 405}, {61.09, 18.45, 405}, {61.95, 16.75, 405}, {64.8, 65.52, 405}, {65.38, 27.72, 405}, {65.49, 54.37, 405}, {65.65, 20.15, 405}, {65.67, 58.44, 405}, {67.09, 63.58, 405}, {67.11, 53.71, 405}, {67.14, 53.27, 405}, {67.94, 71.59, 405}, {68.11, 59.54, 405}, {68.14, 60.85, 405}, {68.85, 68.15, 405}, {69.09, 62.21, 405}, {69.16, 58.08, 405}, {69.38, 66.15, 405}, {69.52, 20.35, 405}, {70.16, 56.41, 405}, {70.23, 41.23, 405}, {70.29, 35.73, 405}, {71.03, 64.11, 405}, {71.54, 27.86, 405}, {71.83, 56.74, 405}, {71.85, 58.21, 405}, {72.85, 62.08, 405}, {73.9, 60.14, 405}, {74.01, 55.57, 405}, {74.03, 64.68, 405}, {74.63, 56.81, 405}, {75.05, 34.43, 405}, {76.17, 33.39, 405}, {80.62, 35.69, 405}}
+ b["scrapedAt"] = 1773751722
+ end
+ b = MTH_DS_Beasts[4693]
+ if b then
+ b["displayId"] = 10273
+ b["health"] = 1747
+ b["dmgMin"] = 63.063
+ b["dmgMax"] = 78.8288
+ b["armor"] = 1537
+ b["factionId"] = 73
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{35.8, 38.76, 405}, {39.18, 39.2, 405}, {40.49, 43.13, 405}, {40.51, 37.4, 405}, {41.67, 48.47, 405}, {41.71, 45.8, 405}, {41.71, 50.3, 405}, {42.18, 44.67, 405}, {42.31, 53.57, 405}, {42.76, 40.93, 405}, {42.8, 47.67, 405}, {43.87, 52.41, 405}, {44.07, 59.18, 405}, {45.43, 48.07, 405}, {51.28, 45.17, 405}, {53.59, 49.27, 405}, {55.39, 46.57, 405}, {55.44, 49.14, 405}, {58.24, 50.14, 405}, {58.86, 48.2, 405}, {59.75, 45.57, 405}, {60.15, 51.27, 405}, {60.51, 56.34, 405}, {61.02, 47.9, 405}, {61.95, 58.88, 405}, {62.62, 55.11, 405}, {62.71, 51.97, 405}, {63.42, 60.34, 405}, {63.93, 46.94, 405}, {63.98, 45.63, 405}, {73.76, 11.21, 405}}
+ b["scrapedAt"] = 1773749930
+ end
+ b = MTH_DS_Beasts[4694]
+ if b then
+ b["displayId"] = 14319
+ b["health"] = 2034
+ b["dmgMin"] = 66.6266
+ b["dmgMax"] = 83.2832
+ b["armor"] = 1900
+ b["factionId"] = 73
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{29.84, 81.16, 405}, {55.17, 85.66, 405}, {57.39, 85.63, 405}, {59.55, 75.59, 405}, {59.62, 79.09, 405}, {61.18, 74.42, 405}, {61.2, 77.86, 405}, {62.31, 79.76, 405}, {62.51, 75.92, 405}, {62.73, 70.99, 405}}
+ b["scrapedAt"] = 1773751723
+ end
+ b = MTH_DS_Beasts[4695]
+ if b then
+ b["displayId"] = 10825
+ b["health"] = 1669
+ b["dmgMin"] = 63.063
+ b["dmgMax"] = 77.616
+ b["armor"] = 1483
+ b["factionId"] = 73
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{47.96, 57.68, 405}, {49.23, 59.98, 405}, {50.25, 56.54, 405}, {51.48, 57.64, 405}, {53.01, 60.44, 405}, {53.32, 58.78, 405}, {53.41, 60.28, 405}, {53.63, 63.61, 405}}
+ b["scrapedAt"] = 1773751724
+ end
+ b = MTH_DS_Beasts[4696]
+ if b then
+ b["displayId"] = 2729
+ b["health"] = 1250
+ b["dmgMin"] = 54.3822
+ b["dmgMax"] = 67.9778
+ b["armor"] = 1217
+ b["factionId"] = 413
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{50.25, 6.174, 405}, {50.83, 7.775, 405}, {52.23, 11.28, 405}, {53.17, 68.85, 405}, {54.26, 18.75, 405}, {54.32, 22.02, 405}, {54.44, 13.88, 405}, {54.64, 6.874, 405}, {55.77, 14.88, 405}, {56.01, 64.61, 405}, {57.35, 11.61, 405}, {57.66, 19.38, 405}, {58.37, 8.942, 405}, {58.44, 11.68, 405}, {58.88, 26.89, 405}, {59.46, 64.21, 405}, {59.86, 33.46, 405}, {61.04, 29.72, 405}, {62.53, 14.75, 405}, {62.64, 16.85, 405}, {63.29, 33.16, 405}, {63.51, 34.96, 405}, {63.62, 37.6, 405}, {64.07, 20.08, 405}, {64.07, 63.78, 405}, {64.16, 24.89, 405}, {64.42, 22.35, 405}, {65.49, 29.19, 405}, {65.51, 35.63, 405}, {66.89, 25.82, 405}, {67.16, 19.12, 405}, {68.63, 34.76, 405}, {68.74, 22.18, 405}, {68.85, 31.82, 405}, {69.38, 17.92, 405}, {69.94, 25.65, 405}, {70.85, 23.92, 405}, {71.14, 36.59, 405}, {71.56, 33.16, 405}, {72.67, 29.99, 405}, {74.39, 30.16, 405}, {76.03, 34.66, 405}, {78.21, 35.53, 405}, {78.32, 32.86, 405}, {80.46, 36.66, 405}}
+ b["scrapedAt"] = 1773751725
+ end
+ b = MTH_DS_Beasts[4697]
+ if b then
+ b["displayId"] = 2765
+ b["health"] = 1521
+ b["dmgMin"] = 57.1085
+ b["dmgMax"] = 71.3856
+ b["armor"] = 1357
+ b["factionId"] = 413
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{36.93, 73.09, 405}, {38.06, 74.52, 405}, {40.4, 40.8, 405}, {41.8, 57.31, 405}, {42.69, 50.14, 405}, {42.91, 72.25, 405}, {44.14, 45.5, 405}, {45.25, 47.94, 405}, {45.47, 73.62, 405}, {55.5, 45.67, 405}, {57.1, 48.47, 405}, {58.53, 54.34, 405}, {60.84, 54.51, 405}, {62.73, 48.3, 405}, {64.13, 57.68, 405}, {65.96, 56.54, 405}, {67.8, 67.98, 405}, {68.85, 59.08, 405}, {70.27, 61.85, 405}, {71.41, 59.24, 405}, {71.63, 64.61, 405}, {71.65, 55.84, 405}, {73.28, 58.74, 405}, {77.59, 44.03, 405}}
+ b["scrapedAt"] = 1773751727
+ end
+ b = MTH_DS_Beasts[4699]
+ if b then
+ b["displayId"] = 2766
+ b["health"] = 1909
+ b["dmgMin"] = 67.9778
+ b["dmgMax"] = 84.0453
+ b["armor"] = 1772
+ b["factionId"] = 413
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{29.28, 82.69, 405}, {45.67, 86.93, 405}, {47.43, 86.83, 405}, {48.45, 91.27, 405}, {50.7, 92.37, 405}, {55.3, 83.23, 405}, {56.97, 86.7, 405}, {58.95, 72.12, 405}, {61.13, 73.25, 405}, {61.15, 79.26, 405}, {62.13, 75.59, 405}, {62.71, 69.78, 405}, {63.93, 71.52, 405}}
+ b["scrapedAt"] = 1773751728
+ end
+ b = MTH_DS_Beasts[4821]
+ if b then
+ b["displayId"] = 981
+ b["npcClass"] = "Elite"
+ b["health"] = 2005
+ b["dmgMin"] = 117.416
+ b["dmgMax"] = 150.787
+ b["armor"] = 922
+ b["factionId"] = 350
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["scrapedAt"] = 1773751729
+ end
+ b = MTH_DS_Beasts[4822]
+ if b then
+ b["displayId"] = 1001
+ b["npcClass"] = "Elite"
+ b["health"] = 2160
+ b["dmgMin"] = 133.253
+ b["dmgMax"] = 171.325
+ b["armor"] = 940
+ b["factionId"] = 350
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["scrapedAt"] = 1773751730
+ end
+ b = MTH_DS_Beasts[4823]
+ if b then
+ b["displayId"] = 9565
+ b["npcClass"] = "Elite"
+ b["health"] = 1912
+ b["dmgMin"] = 128.551
+ b["dmgMax"] = 164.934
+ b["armor"] = 1419
+ b["factionId"] = 128
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773751731
+ end
+ b = MTH_DS_Beasts[4824]
+ if b then
+ b["displayId"] = 1244
+ b["npcClass"] = "Elite"
+ b["health"] = 2160
+ b["dmgMin"] = 133.253
+ b["dmgMax"] = 171.325
+ b["armor"] = 1848
+ b["factionId"] = 350
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["scrapedAt"] = 1773749931
+ end
+ b = MTH_DS_Beasts[4825]
+ if b then
+ b["displayId"] = 5026
+ b["npcClass"] = "Elite"
+ b["health"] = 2243
+ b["dmgMin"] = 101.4
+ b["dmgMax"] = 133.7
+ b["armor"] = 1882
+ b["factionId"] = 128
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773749932
+ end
+ b = MTH_DS_Beasts[4841]
+ if b then
+ b["displayId"] = 2850
+ b["health"] = 2638
+ b["dmgMin"] = 74.1576
+ b["dmgMax"] = 91.461
+ b["armor"] = 2101
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{48.8, 56.73, 15}}
+ b["scrapedAt"] = 1773749934
+ end
+ b = MTH_DS_Beasts[4861]
+ if b then
+ b["displayId"] = 1954
+ b["npcClass"] = "Elite"
+ b["health"] = 4979
+ b["dmgMin"] = 190.337
+ b["dmgMax"] = 237.304
+ b["armor"] = 1709
+ b["factionId"] = 411
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773751733
+ end
+ b = MTH_DS_Beasts[4887]
+ if b then
+ b["displayId"] = 5027
+ b["npcClass"] = "Elite"
+ b["health"] = 5236
+ b["dmgMin"] = 91.6115
+ b["dmgMax"] = 113.027
+ b["armor"] = 925032
+ b["factionId"] = 128
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773751734
+ end
+ b = MTH_DS_Beasts[4950]
+ if b then
+ b["displayId"] = 1100
+ b["health"] = 1476
+ b["dmgMin"] = 55
+ b["dmgMax"] = 67.1
+ b["armor"] = 1373
+ b["factionId"] = 150
+ b["reactA"] = "friendly"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{67.94, 46.73, 15}}
+ b["scrapedAt"] = 1773751735
+ end
+ b = MTH_DS_Beasts[5048]
+ if b then
+ b["displayId"] = 4317
+ b["npcClass"] = "Elite"
+ b["health"] = 1488
+ b["dmgMin"] = 91.461
+ b["dmgMax"] = 118.653
+ b["armor"] = 800
+ b["factionId"] = 270
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773751736
+ end
+ b = MTH_DS_Beasts[5053]
+ if b then
+ b["displayId"] = 2996
+ b["health"] = 496
+ b["dmgMin"] = 33.3709
+ b["dmgMax"] = 42.0226
+ b["armor"] = 800
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773751737
+ end
+ b = MTH_DS_Beasts[5056]
+ if b then
+ b["displayId"] = 3006
+ b["npcClass"] = "Elite"
+ b["health"] = 1790
+ b["dmgMin"] = 123.735
+ b["dmgMax"] = 154.669
+ b["armor"] = 817
+ b["factionId"] = 270
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773751739
+ end
+ b = MTH_DS_Beasts[5186]
+ if b then
+ b["displayId"] = 1557
+ b["npcClass"] = "Elite"
+ b["health"] = 6856
+ b["dmgMin"] = 236.762
+ b["dmgMax"] = 304.579
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773749935
+ end
+ b = MTH_DS_Beasts[5224]
+ if b then
+ b["displayId"] = 4767
+ b["npcClass"] = "Elite"
+ b["health"] = 6597
+ b["dmgMin"] = 280.784
+ b["dmgMax"] = 362.877
+ b["armor"] = 2753
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{73.64, 44.81, 8}, {77.04, 43.17, 8}}
+ b["scrapedAt"] = 1773749936
+ end
+ b = MTH_DS_Beasts[5225]
+ if b then
+ b["displayId"] = 4768
+ b["npcClass"] = "Elite"
+ b["health"] = 6982
+ b["dmgMin"] = 332.473
+ b["dmgMax"] = 427.643
+ b["armor"] = 2808
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{76.65, 46.18, 8}, {77.21, 38.2, 8}}
+ b["scrapedAt"] = 1773749938
+ end
+ b = MTH_DS_Beasts[5226]
+ if b then
+ b["displayId"] = 7549
+ b["npcClass"] = "Elite"
+ b["health"] = 7240
+ b["dmgMin"] = 370.788
+ b["dmgMax"] = 479.553
+ b["armor"] = 2888
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773749939
+ end
+ b = MTH_DS_Beasts[5260]
+ if b then
+ b["displayId"] = 3186
+ b["health"] = 2402
+ b["dmgMin"] = 98.8768
+ b["dmgMax"] = 126.068
+ b["armor"] = 1694
+ b["factionId"] = 72
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{56.3, 54.91, 357}, {56.51, 60.09, 357}, {57.22, 57.14, 357}, {57.42, 53.51, 357}, {57.53, 54.31, 357}, {57.77, 60.27, 357}, {57.81, 57.94, 357}, {57.97, 57.89, 357}, {59.58, 60.48, 357}, {60.64, 61.22, 357}, {61.74, 63.98, 357}, {61.74, 64.39, 357}, {68.3, 52.04, 357}, {73.36, 53.73, 357}, {74.74, 51.35, 357}}
+ b["scrapedAt"] = 1773749941
+ end
+ b = MTH_DS_Beasts[5262]
+ if b then
+ b["displayId"] = 3188
+ b["health"] = 3241
+ b["dmgMin"] = 128.539
+ b["dmgMax"] = 160.675
+ b["armor"] = 2705
+ b["factionId"] = 72
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{37.68, 23.36, 357}, {39.94, 18.63, 357}, {40.63, 20.53, 357}, {41.13, 24.14, 357}, {41.15, 17.1, 357}, {41.29, 15.87, 357}, {41.62, 16.88, 357}, {41.79, 21.57, 357}, {42.24, 9.029, 357}, {42.77, 25.0, 357}, {42.97, 11.47, 357}, {43.56, 25.67, 357}, {43.71, 8.273, 357}, {43.71, 22.15, 357}, {43.94, 23.75, 357}, {44.1, 20.27, 357}, {44.8, 12.14, 357}, {45.12, 19.78, 357}, {45.75, 22.06, 357}, {46.33, 29.36, 357}, {46.46, 24.18, 357}, {48.77, 35.36, 357}, {48.84, 34.73, 357}, {49.84, 32.73, 357}, {50.23, 29.88, 357}, {50.25, 31.91, 357}, {50.27, 28.71, 357}, {50.71, 32.7, 357}}
+ b["scrapedAt"] = 1773749942
+ end
+ b = MTH_DS_Beasts[5268]
+ if b then
+ b["displayId"] = 3201
+ b["health"] = 2351
+ b["dmgMin"] = 72.5754
+ b["dmgMax"] = 92.8013
+ b["armor"] = 3342
+ b["factionId"] = 44
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{54.73, 52.73, 357}, {55.68, 53.77, 357}, {57.09, 60.05, 357}, {57.79, 55.32, 357}, {57.89, 58.32, 357}, {58.01, 55.8, 357}, {58.25, 60.42, 357}, {59.05, 59.53, 357}, {60.89, 59.99, 357}, {61.28, 61.58, 357}, {68.12, 44.77, 357}, {69.39, 42.42, 357}, {69.71, 44.17, 357}, {70.34, 36.24, 357}, {70.56, 44.92, 357}, {70.9, 46.54, 357}, {70.97, 40.8, 357}, {71.62, 35.32, 357}, {72.2, 45.94, 357}, {72.61, 43.43, 357}, {73.15, 41.9, 357}, {75.94, 36.46, 357}, {76.1, 39.94, 357}, {76.89, 40.84, 357}, {77.58, 38.38, 357}, {78.86, 46.17, 357}, {78.93, 37.02, 357}, {79.23, 41.23, 357}, {79.33, 39.03, 357}, {79.92, 43.63, 357}, {80.1, 46.56, 357}, {80.34, 38.25, 357}, {81.56, 45.87, 357}, {81.68, 39.03, 357}, {82.86, 38.62, 357}, {82.86, 44.21, 357}, {83.3, 42.44, 357}, {83.42, 40.6, 357}, {84.34, 45.85, 357}, {85.03, 38.94, 357}, {85.09, 38.45, 357}, {86.05, 45.57, 357}, {86.11, 44.25, 357}, {86.64, 38.58, 357}, {86.82, 44.12, 357}, {87.05, 38.29, 357}, {87.74, 39.27, 357}, {87.88, 38.06, 357}, {89.58, 39.33, 357}}
+ b["scrapedAt"] = 1773749943
+ end
+ b = MTH_DS_Beasts[5272]
+ if b then
+ b["displayId"] = 8838
+ b["health"] = 2544
+ b["dmgMin"] = 90.2251
+ b["dmgMax"] = 114.945
+ b["armor"] = 4059
+ b["factionId"] = 44
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{50.02, 47.47, 357}, {50.97, 48.37, 357}, {51.53, 46.63, 357}, {52.17, 47.88, 357}, {52.59, 46.47, 357}, {53.18, 47.25, 357}, {55.02, 49.8, 357}, {56.97, 47.81, 357}, {57.22, 50.12, 357}, {57.52, 48.37, 357}, {58.21, 50.64, 357}, {59.81, 51.18, 357}, {61.36, 50.92, 357}, {67.95, 60.57, 357}, {68.24, 59.1, 357}, {69.53, 60.78, 357}, {69.91, 58.35, 357}, {69.94, 63.57, 357}, {71.2, 62.68, 357}, {71.78, 60.14, 357}, {73.42, 57.85, 357}}
+ b["scrapedAt"] = 1773749945
+ end
+ b = MTH_DS_Beasts[5274]
+ if b then
+ b["displayId"] = 3200
+ b["health"] = 3125
+ b["dmgMin"] = 102.585
+ b["dmgMax"] = 127.304
+ b["armor"] = 4385
+ b["factionId"] = 44
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{38.47, 23.1, 357}, {39.62, 25.0, 357}, {39.92, 21.76, 357}, {40.92, 19.11, 357}, {41.29, 17.77, 357}, {42.14, 24.07, 357}, {42.9, 20.27, 357}, {43.05, 9.676, 357}, {43.09, 23.86, 357}, {44.14, 21.63, 357}, {44.47, 11.73, 357}, {44.61, 22.02, 357}, {45.87, 24.18, 357}, {46.48, 25.99, 357}, {46.7, 25.41, 357}, {48.94, 37.45, 357}, {49.49, 31.32, 357}, {49.61, 33.5, 357}, {49.94, 28.19, 357}, {50.57, 31.28, 357}}
+ b["scrapedAt"] = 1773749946
+ end
+ b = MTH_DS_Beasts[5286]
+ if b then
+ b["displayId"] = 165
+ b["health"] = 2175
+ b["dmgMin"] = 82.8093
+ b["dmgMax"] = 93.933
+ b["armor"] = 2101
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{25.85, 47.23, 357}, {26.86, 44.1, 357}, {27.09, 45.22, 357}, {27.29, 43.63, 357}, {27.61, 47.29, 357}, {28.31, 45.61, 357}, {28.71, 44.92, 357}, {28.74, 49.54, 357}, {28.84, 46.6, 357}, {29.16, 47.23, 357}, {30.97, 51.5, 357}, {31.03, 48.46, 357}, {31.48, 49.45, 357}, {31.92, 50.53, 357}, {64.54, 48.59, 357}, {68.66, 42.27, 357}, {68.67, 48.83, 357}, {69.0, 42.94, 357}, {70.31, 42.09, 357}, {70.73, 45.31, 357}, {70.82, 36.22, 357}, {70.84, 40.32, 357}, {70.93, 43.95, 357}, {71.1, 42.16, 357}, {72.01, 45.5, 357}, {72.44, 43.52, 357}, {74.25, 39.14, 357}, {74.9, 36.24, 357}, {75.49, 38.62, 357}, {75.66, 37.09, 357}, {76.86, 41.38, 357}, {76.87, 38.88, 357}, {78.31, 37.88, 357}, {78.43, 44.66, 357}, {79.3, 37.73, 357}, {79.59, 40.17, 357}, {79.65, 46.6, 357}, {80.61, 45.81, 357}, {81.22, 39.03, 357}, {82.08, 45.16, 357}, {82.77, 38.7, 357}, {82.79, 44.32, 357}, {83.45, 45.89, 357}, {84.69, 38.53, 357}, {85.0, 40.35, 357}, {85.69, 45.94, 357}, {85.82, 44.73, 357}, {86.18, 38.36, 357}, {86.47, 41.94, 357}, {86.56, 45.14, 357}, {86.77, 37.82, 357}, {86.87, 39.65, 357}, {87.72, 42.68, 357}, {87.72, 43.69, 357}, {88.17, 38.42, 357}, {88.94, 39.22, 357}, {89.2, 40.17, 357}}
+ b["scrapedAt"] = 1773751740
+ end
+ b = MTH_DS_Beasts[5287]
+ if b then
+ b["displayId"] = 3202
+ b["health"] = 2545
+ b["dmgMin"] = 80.9037
+ b["dmgMax"] = 104.699
+ b["armor"] = 2557
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{50.8, 47.96, 357}, {51.56, 46.91, 357}, {52.23, 47.38, 357}, {52.3, 45.85, 357}, {52.79, 49.5, 357}, {53.51, 48.63, 357}, {55.36, 49.06, 357}, {56.11, 46.58, 357}, {57.32, 48.91, 357}, {57.42, 50.49, 357}, {59.03, 51.4, 357}, {60.79, 50.01, 357}, {61.95, 51.14, 357}, {67.98, 58.52, 357}, {68.47, 50.53, 357}, {68.87, 60.27, 357}, {69.38, 61.63, 357}, {69.58, 63.5, 357}, {70.04, 59.21, 357}, {70.66, 58.67, 357}, {71.29, 60.09, 357}, {71.84, 61.11, 357}, {72.34, 59.4, 357}, {73.92, 52.82, 357}, {73.92, 54.31, 357}, {74.48, 58.78, 357}}
+ b["scrapedAt"] = 1773749948
+ end
+ b = MTH_DS_Beasts[5288]
+ if b then
+ b["displayId"] = 3203
+ b["health"] = 3016
+ b["dmgMin"] = 100.113
+ b["dmgMax"] = 124.832
+ b["armor"] = 2862
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{38.35, 21.81, 357}, {39.65, 19.54, 357}, {39.77, 22.76, 357}, {40.44, 18.65, 357}, {41.53, 15.33, 357}, {41.66, 20.4, 357}, {42.6, 23.36, 357}, {42.74, 25.95, 357}, {43.12, 21.14, 357}, {43.71, 22.86, 357}, {44.1, 12.91, 357}, {44.38, 11.01, 357}, {44.5, 13.28, 357}, {44.51, 9.115, 357}, {44.97, 24.01, 357}, {45.85, 21.94, 357}, {46.64, 29.51, 357}, {48.84, 37.11, 357}, {48.97, 26.6, 357}, {49.09, 32.23, 357}, {49.53, 30.61, 357}, {50.61, 33.5, 357}}
+ b["scrapedAt"] = 1773749949
+ end
+ b = MTH_DS_Beasts[5291]
+ if b then
+ b["displayId"] = 7569
+ b["npcClass"] = "Elite"
+ b["health"] = 6180
+ b["dmgMin"] = 341.125
+ b["dmgMax"] = 440.002
+ b["armor"] = 2367
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773749950
+ end
+ b = MTH_DS_Beasts[5300]
+ if b then
+ b["displayId"] = 3210
+ b["health"] = 2545
+ b["dmgMin"] = 80.9037
+ b["dmgMax"] = 104.699
+ b["armor"] = 2477
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{54.93, 60.81, 357}, {55.29, 64.78, 357}, {55.66, 62.75, 357}, {56.41, 62.17, 357}, {57.02, 62.23, 357}, {58.0, 62.81, 357}}
+ b["scrapedAt"] = 1773749952
+ end
+ b = MTH_DS_Beasts[5304]
+ if b then
+ b["displayId"] = 10890
+ b["health"] = 2544
+ b["dmgMin"] = 90.2251
+ b["dmgMax"] = 114.945
+ b["armor"] = 2641
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{53.62, 67.97, 357}, {53.87, 70.41, 357}, {54.33, 66.22, 357}, {55.51, 71.45, 357}, {55.52, 66.46, 357}, {55.65, 68.27, 357}, {55.98, 63.61, 357}, {56.17, 63.68, 357}, {56.97, 65.77, 357}, {57.84, 74.34, 357}}
+ b["scrapedAt"] = 1773749953
+ end
+ b = MTH_DS_Beasts[5305]
+ if b then
+ b["displayId"] = 3211
+ b["health"] = 2198
+ b["dmgMin"] = 86.8525
+ b["dmgMax"] = 107.078
+ b["armor"] = 2233
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{53.85, 64.37, 357}, {53.91, 73.02, 357}, {54.08, 67.6, 357}, {54.11, 70.19, 357}, {54.54, 71.29, 357}, {55.39, 67.19, 357}, {55.56, 71.01, 357}, {55.82, 69.89, 357}, {55.94, 74.14, 357}, {56.07, 71.86, 357}, {56.3, 73.39, 357}, {58.87, 73.82, 357}}
+ b["scrapedAt"] = 1773749954
+ end
+ b = MTH_DS_Beasts[5306]
+ if b then
+ b["displayId"] = 6756
+ b["health"] = 2908
+ b["dmgMin"] = 97.6408
+ b["dmgMax"] = 122.36
+ b["armor"] = 2808
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{53.68, 72.35, 357}, {54.63, 75.42, 357}, {55.0, 71.96, 357}, {56.94, 74.64, 357}, {58.12, 74.53, 357}}
+ b["scrapedAt"] = 1773749955
+ end
+ b = MTH_DS_Beasts[5307]
+ if b then
+ b["displayId"] = 2699
+ b["health"] = 2307
+ b["dmgMin"] = 75.3936
+ b["dmgMax"] = 100.113
+ b["armor"] = 2245
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{57.06, 54.78, 357}, {57.65, 59.38, 357}, {58.2, 57.74, 357}, {60.0, 61.3, 357}}
+ b["scrapedAt"] = 1773749956
+ end
+ b = MTH_DS_Beasts[5308]
+ if b then
+ b["displayId"] = 3204
+ b["health"] = 2650
+ b["dmgMin"] = 90.4218
+ b["dmgMax"] = 115.407
+ b["armor"] = 2637
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{42.02, 36.27, 357}, {43.07, 36.94, 357}, {44.86, 36.14, 357}, {45.87, 49.22, 357}, {46.01, 37.67, 357}, {46.14, 50.04, 357}, {46.47, 39.35, 357}, {46.56, 40.65, 357}, {46.56, 47.6, 357}, {47.88, 59.23, 357}, {47.89, 55.71, 357}, {49.45, 49.86, 357}, {52.3, 49.19, 357}, {53.16, 46.78, 357}, {55.68, 46.97, 357}, {56.89, 48.09, 357}, {58.99, 51.07, 357}, {60.82, 49.76, 357}}
+ b["scrapedAt"] = 1773749957
+ end
+ b = MTH_DS_Beasts[5347]
+ if b then
+ b["displayId"] = 10889
+ b["npcClass"] = "Rare"
+ b["health"] = 3125
+ b["dmgMin"] = 325.058
+ b["dmgMax"] = 418.99
+ b["armor"] = 2888
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{55.66, 74.01, 357}}
+ b["scrapedAt"] = 1773749958
+ end
+ b = MTH_DS_Beasts[5349]
+ if b then
+ b["displayId"] = 7569
+ b["npcClass"] = "Rare"
+ b["health"] = 3241
+ b["dmgMin"] = 537.643
+ b["dmgMax"] = 694.609
+ b["armor"] = 2944
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{44.8, 25.0, 357}}
+ b["scrapedAt"] = 1773749959
+ end
+ b = MTH_DS_Beasts[5352]
+ if b then
+ b["displayId"] = 706
+ b["npcClass"] = "Rare"
+ b["health"] = 3122
+ b["dmgMin"] = 278.091
+ b["dmgMax"] = 359.665
+ b["armor"] = 2397
+ b["factionId"] = 44
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{59.48, 59.42, 357}}
+ b["scrapedAt"] = 1773749960
+ end
+ b = MTH_DS_Beasts[5356]
+ if b then
+ b["displayId"] = 780
+ b["npcClass"] = "Rare"
+ b["health"] = 2449
+ b["dmgMin"] = 384.293
+ b["dmgMax"] = 423.555
+ b["armor"] = 2246
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{80.21, 39.57, 357}}
+ b["scrapedAt"] = 1773749962
+ end
+ b = MTH_DS_Beasts[5419]
+ if b then
+ b["displayId"] = 141
+ b["health"] = 2402
+ b["dmgMin"] = 80.3374
+ b["dmgMax"] = 102.585
+ b["armor"] = 2397
+ b["factionId"] = 49
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{34.35, 22.52, 440}, {34.39, 32.61, 440}, {34.54, 25.67, 440}, {35.37, 32.8, 440}, {35.67, 31.5, 440}, {36.71, 20.48, 440}, {36.71, 32.85, 440}, {37.67, 28.57, 440}, {37.67, 31.35, 440}, {38.73, 32.89, 440}, {39.76, 22.22, 440}, {40.48, 24.07, 440}, {40.64, 39.91, 440}, {40.71, 36.85, 440}, {40.9, 33.17, 440}, {41.51, 40.37, 440}, {41.58, 25.5, 440}, {42.0, 34.24, 440}, {42.12, 31.26, 440}, {43.25, 34.15, 440}, {43.34, 37.04, 440}, {43.58, 31.35, 440}, {43.68, 38.67, 440}, {44.35, 27.13, 440}, {44.42, 29.74, 440}, {44.44, 32.96, 440}, {44.48, 36.17, 440}, {45.44, 23.48, 440}, {45.63, 32.26, 440}, {45.73, 23.04, 440}, {46.05, 27.07, 440}, {46.21, 37.24, 440}, {46.26, 28.93, 440}, {46.34, 35.59, 440}, {47.02, 29.5, 440}, {47.02, 37.0, 440}, {48.09, 38.72, 440}, {48.41, 28.89, 440}, {48.45, 35.54, 440}, {48.99, 38.65, 440}, {49.13, 27.48, 440}, {49.28, 32.78, 440}, {50.5, 35.61, 440}, {51.09, 39.85, 440}, {51.13, 31.26, 440}, {51.19, 36.39, 440}, {51.95, 40.04, 440}, {52.22, 24.17, 440}, {53.03, 22.59, 440}, {53.11, 38.52, 440}, {54.12, 38.63, 440}, {56.02, 35.67, 440}, {57.02, 34.2, 440}, {57.76, 26.41, 440}, {57.9, 24.13, 440}, {60.68, 29.3, 440}, {63.6, 19.57, 440}, {65.24, 27.07, 440}}
+ b["scrapedAt"] = 1773749963
+ end
+ b = MTH_DS_Beasts[5420]
+ if b then
+ b["displayId"] = 7344
+ b["health"] = 2748
+ b["dmgMin"] = 91.6115
+ b["dmgMax"] = 114.217
+ b["armor"] = 2780
+ b["factionId"] = 49
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{32.64, 64.57, 440}, {34.67, 54.74, 440}, {34.71, 35.46, 440}, {34.74, 33.46, 440}, {34.79, 53.09, 440}, {34.82, 59.04, 440}, {34.86, 56.11, 440}, {35.32, 58.76, 440}, {35.51, 57.22, 440}, {35.7, 53.09, 440}, {35.84, 55.76, 440}, {36.22, 34.3, 440}, {36.66, 64.48, 440}, {36.76, 66.02, 440}, {37.06, 58.91, 440}, {37.73, 60.48, 440}, {38.28, 45.76, 440}, {38.63, 64.74, 440}, {38.64, 63.09, 440}, {38.66, 69.2, 440}, {39.15, 41.28, 440}, {39.42, 40.22, 440}, {39.6, 45.17, 440}, {39.61, 38.65, 440}, {39.61, 66.02, 440}, {39.7, 35.87, 440}, {40.57, 61.91, 440}, {40.64, 41.3, 440}, {41.26, 50.13, 440}, {41.47, 60.39, 440}, {41.48, 48.7, 440}, {41.53, 40.7, 440}, {41.54, 45.8, 440}, {41.58, 42.7, 440}, {41.63, 67.65, 440}, {42.38, 58.85, 440}, {42.47, 66.11, 440}, {42.5, 60.3, 440}, {42.53, 42.46, 440}, {43.37, 45.85, 440}, {43.42, 60.57, 440}, {43.76, 44.74, 440}, {44.19, 53.0, 440}, {44.31, 61.7, 440}, {44.32, 55.76, 440}, {44.48, 68.98, 440}, {45.35, 59.96, 440}, {45.37, 48.76, 440}, {46.32, 50.8, 440}, {46.45, 60.39, 440}, {46.5, 52.96, 440}, {48.02, 54.43, 440}, {48.05, 57.43, 440}, {48.34, 50.41, 440}, {49.22, 54.48, 440}, {49.39, 46.78, 440}, {50.26, 47.24, 440}, {50.28, 61.65, 440}, {50.66, 44.0, 440}, {51.06, 51.48, 440}, {51.13, 57.43, 440}, {51.16, 58.76, 440}, {51.5, 47.28, 440}, {52.06, 58.89, 440}, {52.08, 55.87, 440}, {52.18, 41.89, 440}, {53.11, 55.87, 440}, {54.03, 56.17, 440}, {54.05, 53.07, 440}, {54.06, 51.61, 440}, {54.18, 50.5, 440}, {54.97, 54.52, 440}, {55.05, 56.02, 440}, {55.31, 47.78, 440}, {55.89, 47.43, 440}, {55.99, 42.89, 440}, {56.34, 51.52, 440}, {56.76, 55.93, 440}, {56.86, 44.33, 440}, {56.92, 45.87, 440}, {56.96, 60.22, 440}, {56.99, 48.65, 440}, {57.05, 59.0, 440}, {57.92, 45.91, 440}, {58.34, 54.61, 440}, {58.92, 47.3, 440}, {58.92, 51.57, 440}, {58.93, 61.39, 440}, {59.58, 55.67, 440}, {59.82, 57.46, 440}, {59.84, 47.24, 440}, {60.8, 48.65, 440}, {60.83, 58.98, 440}, {60.84, 41.57, 440}, {61.12, 51.85, 440}, {61.21, 54.52, 440}, {61.79, 55.91, 440}, {61.84, 58.83, 440}, {62.79, 44.48, 440}, {62.83, 55.78, 440}}
+ b["scrapedAt"] = 1773749964
+ end
+ b = MTH_DS_Beasts[5421]
+ if b then
+ b["displayId"] = 12339
+ b["health"] = 3125
+ b["dmgMin"] = 102.585
+ b["dmgMax"] = 127.304
+ b["armor"] = 2944
+ b["factionId"] = 49
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{25.61, 53.91, 440}, {26.03, 60.3, 440}, {26.06, 57.41, 440}, {26.12, 61.59, 440}, {27.93, 58.83, 440}, {28.0, 56.67, 440}, {28.93, 55.83, 440}, {28.95, 73.41, 440}, {29.58, 54.57, 440}, {29.73, 57.61, 440}, {29.9, 74.76, 440}, {29.96, 76.3, 440}, {29.97, 70.5, 440}, {30.86, 73.28, 440}, {30.92, 71.98, 440}, {30.93, 74.76, 440}, {31.95, 77.93, 440}, {32.76, 66.0, 440}, {32.96, 70.35, 440}, {33.68, 76.28, 440}, {33.73, 68.98, 440}, {33.79, 56.93, 440}, {33.79, 70.46, 440}, {33.82, 79.11, 440}, {34.74, 76.22, 440}, {34.95, 68.83, 440}, {35.63, 65.96, 440}, {35.64, 67.59, 440}, {35.73, 74.93, 440}, {35.8, 70.46, 440}, {36.7, 71.89, 440}, {36.7, 74.83, 440}, {39.53, 77.63, 440}, {42.57, 76.3, 440}, {43.45, 74.8, 440}, {45.34, 70.43, 440}, {45.61, 68.96, 440}, {46.26, 71.89, 440}, {47.34, 77.65, 440}, {47.41, 74.91, 440}, {48.31, 69.8, 440}, {48.34, 74.43, 440}, {49.34, 77.85, 440}}
+ b["scrapedAt"] = 1773749965
+ end
+ b = MTH_DS_Beasts[5422]
+ if b then
+ b["displayId"] = 2414
+ b["health"] = 2175
+ b["dmgMin"] = 72.9216
+ b["dmgMax"] = 91.461
+ b["armor"] = 2033
+ b["factionId"] = 413
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{47.71, 26.96, 440}, {48.15, 30.15, 440}, {48.25, 28.78, 440}, {48.32, 24.2, 440}, {49.09, 28.43, 440}, {49.16, 31.09, 440}, {50.39, 32.96, 440}, {51.99, 32.65, 440}, {51.99, 35.63, 440}, {52.84, 30.93, 440}, {53.95, 35.74, 440}, {53.99, 32.33, 440}, {54.19, 31.54, 440}, {54.58, 35.76, 440}, {54.6, 29.85, 440}, {54.6, 32.78, 440}, {55.08, 36.78, 440}, {55.18, 24.22, 440}, {55.79, 26.98, 440}, {55.83, 32.67, 440}, {55.92, 34.96, 440}, {56.96, 31.09, 440}, {57.21, 22.89, 440}, {57.84, 32.96, 440}, {58.42, 31.35, 440}, {58.51, 27.28, 440}, {59.51, 25.52, 440}, {61.58, 30.37, 440}, {61.93, 28.59, 440}, {61.95, 25.13, 440}, {62.5, 22.72, 440}, {62.8, 24.24, 440}, {63.12, 28.11, 440}, {63.29, 22.67, 440}, {63.48, 20.98, 440}, {63.51, 27.13, 440}, {64.31, 21.89, 440}, {64.57, 29.17, 440}, {65.66, 19.85, 440}, {65.8, 25.2, 440}, {65.8, 28.89, 440}, {66.09, 26.98, 440}, {78.31, 99.66, 400}}
+ b["scrapedAt"] = 1773751742
+ end
+ b = MTH_DS_Beasts[5423]
+ if b then
+ b["displayId"] = 10987
+ b["health"] = 2545
+ b["dmgMin"] = 80.9037
+ b["dmgMax"] = 104.699
+ b["armor"] = 2477
+ b["factionId"] = 413
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{34.68, 21.2, 440}, {34.77, 27.24, 440}, {34.82, 23.93, 440}, {36.11, 21.87, 440}, {36.58, 31.24, 440}, {36.84, 28.54, 440}, {37.73, 32.93, 440}, {39.6, 33.41, 440}, {39.66, 23.96, 440}, {40.41, 42.98, 440}, {40.6, 38.5, 440}, {42.48, 40.39, 440}, {42.92, 32.85, 440}, {43.38, 43.04, 440}, {43.42, 35.35, 440}, {44.38, 37.54, 440}, {44.39, 42.39, 440}, {44.45, 24.02, 440}, {44.5, 30.8, 440}, {45.35, 36.04, 440}, {45.68, 29.76, 440}, {46.29, 22.96, 440}, {46.31, 41.74, 440}, {46.39, 32.85, 440}, {46.47, 25.59, 440}, {46.51, 38.67, 440}, {47.22, 41.57, 440}, {47.25, 42.93, 440}, {47.37, 25.2, 440}, {48.09, 40.0, 440}, {48.19, 32.87, 440}, {48.28, 41.48, 440}, {48.31, 37.35, 440}, {49.84, 36.98, 440}, {50.18, 39.35, 440}, {50.21, 36.37, 440}, {50.21, 42.22, 440}, {50.25, 34.07, 440}, {51.26, 42.74, 440}, {51.96, 43.0, 440}, {52.03, 53.26, 440}, {52.12, 37.17, 440}, {52.22, 47.65, 440}, {53.16, 40.85, 440}, {53.19, 49.83, 440}, {53.24, 40.04, 440}, {53.31, 53.3, 440}, {54.13, 54.28, 440}, {55.0, 45.67, 440}, {55.02, 44.35, 440}, {55.05, 42.89, 440}, {55.11, 50.15, 440}, {55.32, 48.43, 440}, {55.87, 50.07, 440}, {55.99, 41.28, 440}, {56.0, 53.15, 440}, {56.26, 40.41, 440}, {57.15, 42.74, 440}, {57.96, 47.33, 440}, {57.97, 42.96, 440}, {58.21, 53.09, 440}, {59.11, 44.8, 440}, {59.84, 51.67, 440}, {59.86, 48.65, 440}, {60.02, 44.57, 440}, {60.87, 47.2, 440}, {61.74, 44.3, 440}, {61.82, 45.83, 440}, {61.84, 41.5, 440}, {62.84, 41.13, 440}, {63.77, 44.35, 440}}
+ b["scrapedAt"] = 1773749967
+ end
+ b = MTH_DS_Beasts[5424]
+ if b then
+ b["displayId"] = 10986
+ b["health"] = 2908
+ b["dmgMin"] = 97.6408
+ b["dmgMax"] = 122.36
+ b["armor"] = 2808
+ b["factionId"] = 413
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773749968
+ end
+ b = MTH_DS_Beasts[5425]
+ if b then
+ b["displayId"] = 1535
+ b["health"] = 2351
+ b["dmgMin"] = 72.5754
+ b["dmgMax"] = 92.8013
+ b["armor"] = 2174
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{34.73, 28.46, 440}, {34.87, 30.87, 440}, {35.58, 28.74, 440}, {35.64, 30.33, 440}, {37.58, 29.87, 440}, {38.47, 27.35, 440}, {39.6, 22.59, 440}, {40.06, 25.61, 440}, {40.48, 33.26, 440}, {41.93, 27.09, 440}, {43.41, 26.7, 440}, {43.71, 28.43, 440}, {43.73, 25.43, 440}, {44.09, 22.48, 440}, {44.19, 25.15, 440}, {44.38, 28.41, 440}, {44.99, 26.63, 440}, {45.97, 24.0, 440}, {46.37, 29.41, 440}, {47.21, 25.7, 440}, {47.31, 32.04, 440}, {48.25, 29.67, 440}, {48.32, 31.96, 440}, {49.19, 27.17, 440}, {49.21, 28.26, 440}, {49.31, 35.61, 440}, {49.44, 36.57, 440}, {51.13, 32.72, 440}, {51.47, 32.83, 440}, {52.13, 32.0, 440}, {52.13, 35.8, 440}, {52.86, 32.35, 440}, {53.53, 25.35, 440}, {54.13, 34.02, 440}, {54.21, 37.33, 440}, {54.53, 38.65, 440}, {55.11, 25.96, 440}, {55.22, 31.67, 440}, {55.9, 30.72, 440}, {55.93, 25.28, 440}, {55.97, 37.43, 440}, {57.02, 32.83, 440}, {57.86, 31.04, 440}, {58.28, 25.61, 440}, {58.71, 32.65, 440}, {60.16, 30.02, 440}, {61.08, 28.33, 440}, {61.89, 20.48, 440}, {62.8, 21.39, 440}, {65.53, 29.59, 440}}
+ b["scrapedAt"] = 1773749969
+ end
+ b = MTH_DS_Beasts[5426]
+ if b then
+ b["displayId"] = 1536
+ b["health"] = 2544
+ b["dmgMin"] = 90.2251
+ b["dmgMax"] = 114.945
+ b["armor"] = 2521
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{35.38, 34.37, 440}, {36.67, 37.07, 440}, {37.58, 38.22, 440}, {37.63, 48.78, 440}, {37.68, 50.5, 440}, {37.7, 33.76, 440}, {38.87, 35.61, 440}, {39.51, 44.33, 440}, {39.57, 48.0, 440}, {39.6, 36.8, 440}, {39.68, 46.96, 440}, {40.38, 35.54, 440}, {41.37, 37.15, 440}, {41.41, 38.83, 440}, {41.44, 34.33, 440}, {42.48, 41.43, 440}, {42.54, 35.8, 440}, {42.67, 37.0, 440}, {44.37, 41.41, 440}, {44.38, 57.43, 440}, {44.39, 60.37, 440}, {44.82, 40.11, 440}, {45.13, 51.5, 440}, {45.45, 39.3, 440}, {45.47, 34.54, 440}, {45.73, 41.52, 440}, {45.82, 37.96, 440}, {45.87, 31.28, 440}, {46.18, 43.09, 440}, {46.35, 52.41, 440}, {47.03, 46.5, 440}, {47.12, 51.72, 440}, {47.28, 57.59, 440}, {47.5, 35.72, 440}, {48.25, 58.91, 440}, {48.26, 50.96, 440}, {48.71, 45.8, 440}, {48.83, 45.02, 440}, {49.19, 57.39, 440}, {49.22, 53.67, 440}, {49.6, 42.33, 440}, {50.22, 55.87, 440}, {50.29, 57.48, 440}, {50.63, 52.07, 440}, {51.16, 60.28, 440}, {51.19, 36.0, 440}, {51.34, 54.67, 440}, {51.87, 57.3, 440}, {52.12, 63.17, 440}, {52.16, 51.41, 440}, {52.29, 48.7, 440}, {52.32, 41.76, 440}, {53.03, 55.17, 440}, {53.21, 43.41, 440}, {53.21, 58.61, 440}, {53.22, 57.35, 440}, {53.25, 48.96, 440}, {54.08, 48.87, 440}, {54.25, 45.93, 440}, {54.96, 41.63, 440}, {55.06, 50.91, 440}, {55.08, 53.04, 440}, {55.48, 40.04, 440}, {56.0, 44.33, 440}, {56.0, 45.96, 440}, {56.03, 56.07, 440}, {56.06, 58.43, 440}, {56.93, 49.33, 440}, {56.95, 51.61, 440}, {56.96, 39.89, 440}, {57.02, 53.13, 440}, {57.03, 54.93, 440}, {57.92, 60.3, 440}, {57.96, 57.48, 440}, {58.03, 49.43, 440}, {58.47, 50.13, 440}, {58.68, 58.96, 440}, {58.9, 55.39, 440}, {58.92, 43.0, 440}, {59.79, 41.5, 440}, {59.9, 60.33, 440}, {60.74, 56.52, 440}, {60.8, 45.39, 440}, {60.86, 54.43, 440}, {60.87, 42.96, 440}, {60.9, 53.04, 440}, {61.71, 60.59, 440}, {61.82, 57.3, 440}, {62.7, 45.8, 440}, {62.77, 42.78, 440}, {63.68, 57.24, 440}, {65.54, 41.98, 440}}
+ b["scrapedAt"] = 1773749971
+ end
+ b = MTH_DS_Beasts[5427]
+ if b then
+ b["displayId"] = 2609
+ b["health"] = 3016
+ b["dmgMin"] = 100.113
+ b["dmgMax"] = 124.832
+ b["armor"] = 2862
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{25.66, 56.35, 440}, {27.71, 56.13, 440}, {28.6, 57.43, 440}, {28.99, 71.87, 440}, {29.03, 59.26, 440}, {29.48, 48.87, 440}, {29.9, 77.67, 440}, {30.05, 69.2, 440}, {30.15, 73.46, 440}, {30.26, 60.91, 440}, {30.42, 53.15, 440}, {30.84, 57.11, 440}, {30.9, 77.65, 440}, {31.31, 55.96, 440}, {31.34, 61.04, 440}, {31.86, 74.87, 440}, {31.87, 67.52, 440}, {32.12, 63.72, 440}, {32.31, 58.91, 440}, {32.74, 60.98, 440}, {32.76, 77.76, 440}, {32.79, 60.17, 440}, {32.86, 76.26, 440}, {32.89, 67.46, 440}, {33.29, 57.41, 440}, {33.68, 64.61, 440}, {33.82, 66.15, 440}, {33.96, 55.98, 440}, {33.96, 58.89, 440}, {34.12, 63.28, 440}, {34.66, 74.91, 440}, {34.67, 77.72, 440}, {35.66, 71.93, 440}, {35.71, 68.87, 440}, {35.71, 73.37, 440}, {35.79, 60.54, 440}, {37.09, 68.37, 440}, {37.68, 72.2, 440}, {37.84, 70.5, 440}, {38.18, 67.67, 440}, {38.44, 60.48, 440}, {38.82, 76.13, 440}, {40.51, 64.57, 440}, {40.54, 44.98, 440}, {40.55, 49.15, 440}, {40.55, 77.78, 440}, {41.41, 62.37, 440}, {41.55, 63.35, 440}, {42.42, 44.26, 440}, {42.48, 63.28, 440}, {43.11, 47.3, 440}, {43.35, 77.5, 440}, {43.37, 51.72, 440}, {43.9, 50.15, 440}, {44.28, 44.37, 440}, {44.39, 50.11, 440}, {44.44, 76.3, 440}, {45.39, 47.35, 440}, {45.44, 74.83, 440}, {46.34, 76.3, 440}, {46.51, 69.2, 440}, {47.06, 70.61, 440}, {48.22, 49.48, 440}, {48.25, 77.61, 440}, {48.28, 76.24, 440}, {49.26, 69.3, 440}, {50.39, 46.02, 440}, {51.09, 49.35, 440}}
+ b["scrapedAt"] = 1773749972
+ end
+ b = MTH_DS_Beasts[5428]
+ if b then
+ b["displayId"] = 3248
+ b["health"] = 2307
+ b["dmgMin"] = 75.3936
+ b["dmgMax"] = 100.113
+ b["armor"] = 2249
+ b["factionId"] = 73
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{35.29, 28.98, 440}, {40.66, 33.04, 440}, {40.9, 24.89, 440}, {45.84, 28.98, 440}, {48.9, 36.41, 440}, {49.25, 35.52, 440}, {49.35, 28.24, 440}, {49.83, 35.24, 440}, {49.92, 31.2, 440}, {56.08, 25.37, 440}, {57.38, 31.91, 440}, {59.21, 31.04, 440}}
+ b["scrapedAt"] = 1773749973
+ end
+ b = MTH_DS_Beasts[5429]
+ if b then
+ b["displayId"] = 7348
+ b["health"] = 1960
+ b["dmgMin"] = 77.8655
+ b["dmgMax"] = 105.057
+ b["armor"] = 2085
+ b["factionId"] = 73
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{36.7, 34.83, 440}, {37.71, 43.15, 440}, {40.37, 35.57, 440}, {41.48, 38.78, 440}, {43.34, 41.33, 440}, {43.83, 39.87, 440}, {44.02, 41.02, 440}, {44.45, 40.7, 440}, {44.89, 37.78, 440}, {45.44, 37.85, 440}, {47.09, 48.22, 440}, {47.5, 35.96, 440}, {47.68, 44.98, 440}, {48.0, 45.61, 440}, {48.22, 41.33, 440}, {48.63, 39.24, 440}, {48.79, 52.91, 440}, {48.87, 42.39, 440}, {49.34, 43.11, 440}, {50.71, 53.37, 440}, {52.29, 53.07, 440}, {55.13, 51.11, 440}, {55.16, 47.04, 440}, {58.63, 46.04, 440}}
+ b["scrapedAt"] = 1773749975
+ end
+ b = MTH_DS_Beasts[5430]
+ if b then
+ b["displayId"] = 10827
+ b["health"] = 3016
+ b["dmgMin"] = 101.349
+ b["dmgMax"] = 128.539
+ b["armor"] = 2890
+ b["factionId"] = 73
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{29.24, 55.35, 440}, {31.89, 61.13, 440}, {31.93, 60.28, 440}, {31.95, 74.89, 440}, {32.8, 59.59, 440}, {33.31, 60.33, 440}, {36.64, 70.43, 440}, {37.25, 69.13, 440}, {40.03, 64.63, 440}, {41.13, 63.91, 440}}
+ b["scrapedAt"] = 1773749977
+ end
+ b = MTH_DS_Beasts[5431]
+ if b then
+ b["displayId"] = 7114
+ b["health"] = 3125
+ b["dmgMin"] = 101.349
+ b["dmgMax"] = 129.776
+ b["armor"] = 4385
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{24.28, 82.65, 440}, {24.92, 81.78, 440}, {25.29, 82.83, 440}, {26.05, 82.02, 440}, {26.54, 83.54, 440}, {27.09, 84.37, 440}, {47.77, 90.07, 440}, {48.22, 87.83, 440}, {48.77, 92.93, 440}, {49.18, 88.0, 440}, {49.21, 90.5, 440}, {49.21, 92.24, 440}, {49.29, 86.35, 440}, {49.99, 92.2, 440}, {50.13, 93.48, 440}, {50.58, 90.17, 440}, {51.21, 94.65, 440}, {52.24, 96.04, 440}, {52.61, 92.89, 440}, {52.71, 97.28, 440}, {53.0, 91.7, 440}, {53.13, 93.72, 440}, {53.53, 95.89, 440}, {54.15, 93.67, 440}, {54.21, 97.74, 440}, {54.25, 96.65, 440}, {55.68, 95.89, 440}, {56.74, 93.35, 440}, {56.83, 92.7, 440}, {57.02, 92.24, 440}, {58.03, 93.13, 440}, {58.25, 90.13, 440}, {58.45, 91.54, 440}, {58.45, 92.93, 440}, {59.41, 90.15, 440}, {59.86, 84.61, 440}, {59.86, 87.8, 440}, {59.99, 89.35, 440}, {60.24, 84.96, 440}, {60.57, 86.7, 440}, {60.84, 81.96, 440}, {60.86, 83.5, 440}, {61.35, 83.96, 440}, {61.47, 85.15, 440}, {64.42, 63.17, 440}, {64.74, 65.57, 440}, {65.13, 61.98, 440}, {65.55, 59.24, 440}, {65.67, 62.74, 440}, {65.9, 60.26, 440}, {65.97, 61.87, 440}, {66.96, 57.48, 440}, {67.13, 61.98, 440}, {68.15, 59.11, 440}, {68.19, 57.22, 440}, {68.93, 59.0, 440}, {69.79, 56.7, 440}, {69.84, 55.72, 440}, {70.66, 55.04, 440}, {71.15, 57.22, 440}, {71.38, 53.59, 440}, {71.92, 56.28, 440}, {72.47, 55.46, 440}}
+ b["scrapedAt"] = 1773749978
+ end
+ b = MTH_DS_Beasts[5432]
+ if b then
+ b["displayId"] = 5127
+ b["npcClass"] = "Elite"
+ b["health"] = 8127
+ b["dmgMin"] = 564.833
+ b["dmgMax"] = 727.98
+ b["armor"] = 4385
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773749983
+ end
+ b = MTH_DS_Beasts[5434]
+ if b then
+ b["displayId"] = 12192
+ b["npcClass"] = "Elite"
+ b["health"] = 8146
+ b["dmgMin"] = 310.226
+ b["dmgMax"] = 401.687
+ b["armor"] = 2052
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{62.27, 28.48, 15}, {68.04, 60.7, 15}, {68.82, 59.1, 15}, {71.81, 55.99, 15}, {98.94, 0.0282, 33}, {66.12, 64.91, 440}, {66.29, 63.98, 440}}
+ b["scrapedAt"] = 1773749984
+ end
+ b = MTH_DS_Beasts[5708]
+ if b then
+ b["displayId"] = 4065
+ b["npcClass"] = "Elite"
+ b["health"] = 8181
+ b["dmgMin"] = 370.788
+ b["dmgMax"] = 479.553
+ b["armor"] = 2944
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773749985
+ end
+ b = MTH_DS_Beasts[5755]
+ if b then
+ b["displayId"] = 4312
+ b["npcClass"] = "Elite"
+ b["health"] = 1335
+ b["dmgMin"] = 118.976
+ b["dmgMax"] = 149.91
+ b["armor"] = 817
+ b["factionId"] = 270
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773751743
+ end
+ b = MTH_DS_Beasts[5756]
+ if b then
+ b["displayId"] = 2706
+ b["npcClass"] = "Elite"
+ b["health"] = 1752
+ b["dmgMin"] = 105.889
+ b["dmgMax"] = 136.822
+ b["armor"] = 817
+ b["factionId"] = 270
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773751744
+ end
+ b = MTH_DS_Beasts[5762]
+ if b then
+ b["displayId"] = 4305
+ b["npcClass"] = "Elite"
+ b["health"] = 1727
+ b["dmgMin"] = 105.889
+ b["dmgMax"] = 136.822
+ b["armor"] = 817
+ b["factionId"] = 270
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773751745
+ end
+ b = MTH_DS_Beasts[5766]
+ if b then
+ b["displayId"] = 2278
+ b["health"] = 95
+ b["dmgMin"] = 3.3
+ b["dmgMax"] = 5.5
+ b["armor"] = 98
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{58.87, 35.72, 17}, {58.95, 35.41, 17}, {61.71, 33.06, 17}, {62.3, 33.41, 17}}
+ b["scrapedAt"] = 1773751746
+ end
+ b = MTH_DS_Beasts[5807]
+ if b then
+ b["displayId"] = 1973
+ b["npcClass"] = "Rare"
+ b["health"] = 231
+ b["dmgMin"] = 12.8357
+ b["dmgMax"] = 22.1707
+ b["armor"] = 20
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{53.37, 17.02, 215}}
+ b["scrapedAt"] = 1773751748
+ end
+ b = MTH_DS_Beasts[5823]
+ if b then
+ b["displayId"] = 2491
+ b["npcClass"] = "Rare"
+ b["health"] = 260
+ b["dmgMin"] = 24.5045
+ b["dmgMax"] = 30.3389
+ b["armor"] = 667
+ b["factionId"] = 413
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{38.16, 51.1, 14}}
+ b["scrapedAt"] = 1773751749
+ end
+ b = MTH_DS_Beasts[5828]
+ if b then
+ b["displayId"] = 4424
+ b["npcClass"] = "Rare-Elite"
+ b["health"] = 2160
+ b["dmgMin"] = 128.539
+ b["dmgMax"] = 164.383
+ b["armor"] = 957
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{62.12, 33.27, 17}}
+ b["scrapedAt"] = 1773751750
+ end
+ b = MTH_DS_Beasts[5829]
+ if b then
+ b["displayId"] = 2713
+ b["npcClass"] = "Rare"
+ b["health"] = 468
+ b["dmgMin"] = 42.0226
+ b["dmgMax"] = 51.9103
+ b["armor"] = 748
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{41.15, 22.24, 17}}
+ b["scrapedAt"] = 1773751751
+ end
+ b = MTH_DS_Beasts[5833]
+ if b then
+ b["displayId"] = 10933
+ b["npcClass"] = "Elite"
+ b["health"] = 7502
+ b["dmgMin"] = 320.113
+ b["dmgMax"] = 412.81
+ b["armor"] = 2397
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{72.88, 77.71, 51}}
+ b["scrapedAt"] = 1773749986
+ end
+ b = MTH_DS_Beasts[5834]
+ if b then
+ b["displayId"] = 2702
+ b["npcClass"] = "Rare"
+ b["health"] = 740
+ b["dmgMin"] = 57.1085
+ b["dmgMax"] = 69.0061
+ b["armor"] = 858
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{45.03, 63.61, 17}}
+ b["scrapedAt"] = 1773751752
+ end
+ b = MTH_DS_Beasts[5842]
+ if b then
+ b["displayId"] = 1337
+ b["npcClass"] = "Rare-Elite"
+ b["health"] = 1603
+ b["dmgMin"] = 190.337
+ b["dmgMax"] = 244.72
+ b["armor"] = 817
+ b["factionId"] = 48
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{59.61, 8.34, 17}}
+ b["scrapedAt"] = 1773749987
+ end
+ b = MTH_DS_Beasts[5856]
+ if b then
+ b["displayId"] = 4456
+ b["health"] = 2450
+ b["dmgMin"] = 81.5734
+ b["dmgMax"] = 105.057
+ b["armor"] = 2641
+ b["factionId"] = 575
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{58.89, 52.57, 51}, {60.01, 69.92, 51}, {61.72, 51.09, 51}, {62.39, 70.99, 51}, {64.0, 67.97, 51}, {64.59, 75.23, 51}, {64.94, 38.25, 51}, {65.48, 48.81, 51}, {65.98, 34.42, 51}, {66.56, 52.97, 51}, {69.34, 50.62, 51}, {71.85, 16.13, 51}, {73.55, 16.54, 51}}
+ b["scrapedAt"] = 1773749988
+ end
+ b = MTH_DS_Beasts[5857]
+ if b then
+ b["displayId"] = 4457
+ b["health"] = 2802
+ b["dmgMin"] = 97.6408
+ b["dmgMax"] = 122.36
+ b["armor"] = 2780
+ b["factionId"] = 575
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{47.42, 62.52, 51}, {48.72, 73.48, 51}, {49.17, 65.61, 51}, {50.56, 34.22, 51}, {51.1, 61.58, 51}, {51.23, 69.65, 51}, {52.17, 72.81, 51}, {53.38, 38.59, 51}, {55.26, 38.05, 51}, {55.89, 33.34, 51}, {56.38, 72.81, 51}, {56.7, 26.22, 51}, {56.74, 82.89, 51}, {56.79, 69.38, 51}, {57.59, 22.72, 51}, {59.75, 25.82, 51}, {59.75, 81.82, 51}}
+ b["scrapedAt"] = 1773749989
+ end
+ b = MTH_DS_Beasts[5858]
+ if b then
+ b["displayId"] = 7510
+ b["health"] = 3016
+ b["dmgMin"] = 101.349
+ b["dmgMax"] = 128.539
+ b["armor"] = 2890
+ b["factionId"] = 575
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{13.22, 76.71, 51}, {15.11, 75.23, 51}, {19.95, 80.81, 51}, {22.01, 77.24, 51}, {24.83, 76.64, 51}, {26.04, 69.11, 51}, {26.22, 51.03, 51}, {27.7, 43.43, 51}, {27.97, 50.35, 51}, {28.91, 77.58, 51}, {29.27, 62.39, 51}, {29.45, 43.76, 51}, {29.54, 56.47, 51}, {30.35, 70.79, 51}, {31.02, 40.81, 51}, {31.33, 67.97, 51}, {37.96, 33.28, 51}, {40.34, 68.97, 51}, {43.84, 68.1, 51}, {12.71, 17.81, 46}, {12.98, 14.38, 46}, {14.66, 17.71, 46}, {15.54, 15.41, 46}}
+ b["scrapedAt"] = 1773749990
+ end
+ b = MTH_DS_Beasts[5865]
+ if b then
+ b["displayId"] = 1043
+ b["npcClass"] = "Rare"
+ b["health"] = 325
+ b["dmgMin"] = 71.3856
+ b["dmgMax"] = 95.1808
+ b["armor"] = 608
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{50.93, 18.23, 17}}
+ b["scrapedAt"] = 1773751754
+ end
+ b = MTH_DS_Beasts[5937]
+ if b then
+ b["displayId"] = 10988
+ b["npcClass"] = "Rare-Elite"
+ b["health"] = 4354
+ b["dmgMin"] = 309.338
+ b["dmgMax"] = 402.139
+ b["armor"] = 1373
+ b["factionId"] = 413
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{71.45, 63.59, 400}}
+ b["scrapedAt"] = 1773751755
+ end
+ b = MTH_DS_Beasts[5955]
+ if b then
+ b["displayId"] = 2902
+ b["health"] = 2439
+ b["dmgMin"] = 79.2
+ b["dmgMax"] = 102.3
+ b["armor"] = 1500
+ b["factionId"] = 35
+ b["reactA"] = "friendly"
+ b["reactH"] = "friendly"
+ b["coordsTDB"] = {{52.74, 54.85, 440}}
+ b["scrapedAt"] = 1773749992
+ end
+ b = MTH_DS_Beasts[5982]
+ if b then
+ b["displayId"] = 10824
+ b["health"] = 2908
+ b["dmgMin"] = 100.113
+ b["dmgMax"] = 124.832
+ b["armor"] = 2888
+ b["factionId"] = 73
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{45.41, 35.57, 4}, {46.01, 18.86, 4}, {47.77, 23.52, 4}, {49.95, 16.98, 4}, {50.19, 17.34, 4}, {53.56, 39.06, 4}, {54.43, 36.28, 4}, {54.91, 44.61, 4}, {58.16, 44.34, 4}, {58.61, 28.31, 4}, {62.7, 26.52, 4}}
+ b["scrapedAt"] = 1773749993
+ end
+ b = MTH_DS_Beasts[5983]
+ if b then
+ b["displayId"] = 1105
+ b["health"] = 3370
+ b["dmgMin"] = 95.1689
+ b["dmgMax"] = 66.7418
+ b["armor"] = 2999
+ b["factionId"] = 73
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773749994
+ end
+ b = MTH_DS_Beasts[5984]
+ if b then
+ b["displayId"] = 8050
+ b["health"] = 2748
+ b["dmgMin"] = 92.8013
+ b["dmgMax"] = 114.217
+ b["armor"] = 2753
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{43.92, 25.54, 4}, {45.47, 21.37, 4}, {48.28, 17.83, 4}, {48.61, 24.51, 4}, {50.76, 28.04, 4}, {56.01, 17.57, 4}}
+ b["scrapedAt"] = 1773749996
+ end
+ b = MTH_DS_Beasts[5985]
+ if b then
+ b["displayId"] = 2714
+ b["health"] = 3241
+ b["dmgMin"] = 119.888
+ b["dmgMax"] = 149.552
+ b["armor"] = 2972
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{44.91, 33.64, 4}, {46.04, 35.07, 4}, {50.97, 36.51, 4}, {50.99, 39.42, 4}, {52.37, 57.19, 4}, {54.99, 42.55, 4}, {59.02, 44.12, 4}, {59.32, 35.97, 4}, {60.16, 38.3, 4}, {60.97, 45.6, 4}}
+ b["scrapedAt"] = 1773749997
+ end
+ b = MTH_DS_Beasts[5988]
+ if b then
+ b["displayId"] = 6068
+ b["health"] = 3425
+ b["dmgMin"] = 97.6408
+ b["dmgMax"] = 122.36
+ b["armor"] = 2808
+ b["factionId"] = 413
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{43.95, 23.03, 4}, {44.01, 29.07, 4}, {44.67, 19.98, 4}, {45.47, 24.69, 4}, {46.67, 14.39, 4}, {47.71, 18.77, 4}, {48.73, 19.4, 4}, {49.32, 16.76, 4}, {49.74, 21.95, 4}, {50.85, 29.97, 4}, {52.46, 30.46, 4}, {56.55, 21.91, 4}, {57.08, 18.82, 4}, {58.58, 40.98, 4}}
+ b["scrapedAt"] = 1773750002
+ end
+ b = MTH_DS_Beasts[5990]
+ if b then
+ b["displayId"] = 2743
+ b["health"] = 3016
+ b["dmgMin"] = 100.113
+ b["dmgMax"] = 124.832
+ b["armor"] = 2888
+ b["factionId"] = 49
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{54.99, 29.03, 4}, {56.88, 33.46, 4}, {57.92, 29.12, 4}, {57.92, 34.98, 4}, {61.11, 30.37, 4}}
+ b["scrapedAt"] = 1773750007
+ end
+ b = MTH_DS_Beasts[5991]
+ if b then
+ b["displayId"] = 798
+ b["health"] = 3682
+ b["dmgMin"] = 107.529
+ b["dmgMax"] = 134.719
+ b["armor"] = 3108
+ b["factionId"] = 49
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{45.29, 54.91, 4}, {46.52, 51.06, 4}, {48.04, 38.07, 4}, {64.1, 52.45, 4}}
+ b["scrapedAt"] = 1773750007
+ end
+ b = MTH_DS_Beasts[5992]
+ if b then
+ b["displayId"] = 3026
+ b["health"] = 3125
+ b["dmgMin"] = 102.585
+ b["dmgMax"] = 127.304
+ b["armor"] = 2944
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{44.1, 32.75, 4}, {44.55, 23.16, 4}, {44.76, 29.83, 4}, {45.17, 49.22, 4}, {45.2, 44.79, 4}, {45.83, 39.64, 4}, {45.89, 38.25, 4}, {46.7, 22.98, 4}, {47.05, 18.06, 4}, {48.07, 35.43, 4}, {48.99, 20.79, 4}, {49.86, 23.92, 4}, {50.07, 52.04, 4}, {50.73, 26.88, 4}, {51.26, 37.63, 4}, {51.86, 29.12, 4}, {52.61, 40.31, 4}, {55.35, 41.61, 4}, {55.38, 15.51, 4}, {55.86, 23.57, 4}, {55.98, 19.67, 4}, {57.68, 42.73, 4}, {57.86, 36.15, 4}, {58.25, 27.28, 4}, {60.91, 40.45, 4}, {61.89, 26.12, 4}, {62.49, 36.86, 4}, {62.76, 30.86, 4}, {64.31, 54.73, 4}}
+ b["scrapedAt"] = 1773750008
+ end
+ b = MTH_DS_Beasts[6013]
+ if b then
+ b["displayId"] = 1105
+ b["health"] = 1669
+ b["dmgMin"] = 93.3818
+ b["dmgMax"] = 111.573
+ b["armor"] = 1483
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["scrapedAt"] = 1773751756
+ end
+ b = MTH_DS_Beasts[6015]
+ if b then
+ b["displayId"] = 1244
+ b["health"] = 2439
+ b["dmgMin"] = 79.2
+ b["dmgMax"] = 102.3
+ b["armor"] = 4059
+ b["factionId"] = 35
+ b["reactA"] = "friendly"
+ b["reactH"] = "friendly"
+ b["coordsTDB"] = {{66.57, 25.67, 440}}
+ b["scrapedAt"] = 1773750010
+ end
+ b = MTH_DS_Beasts[6347]
+ if b then
+ b["displayId"] = 10900
+ b["health"] = 3682
+ b["dmgMin"] = 107.529
+ b["dmgMax"] = 134.719
+ b["armor"] = 3080
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{57.98, 9.927, 16}, {84.17, 11.85, 16}, {84.26, 8.389, 16}, {85.53, 11.7, 16}, {86.3, 12.62, 16}, {88.15, 17.44, 16}, {88.29, 13.54, 16}}
+ b["scrapedAt"] = 1773750015
+ end
+ b = MTH_DS_Beasts[6348]
+ if b then
+ b["displayId"] = 10899
+ b["health"] = 3809
+ b["dmgMin"] = 110
+ b["dmgMax"] = 137.192
+ b["armor"] = 3136
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{52.53, 42.02, 16}, {54.17, 42.28, 16}, {67.78, 33.17, 16}, {83.59, 29.24, 16}, {84.13, 32.32, 16}, {86.16, 31.1, 16}, {86.28, 25.6, 16}, {86.91, 26.49, 16}, {88.19, 32.08, 16}, {88.88, 29.09, 16}, {88.92, 37.25, 16}, {89.61, 22.44, 16}, {90.24, 31.1, 16}, {90.91, 32.52, 16}, {90.91, 38.23, 16}, {91.52, 37.34, 16}}
+ b["scrapedAt"] = 1773750026
+ end
+ b = MTH_DS_Beasts[6349]
+ if b then
+ b["displayId"] = 10897
+ b["health"] = 3792
+ b["dmgMin"] = 110.607
+ b["dmgMax"] = 136.772
+ b["armor"] = 3190
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{46.12, 93.71, 16}, {50.31, 95.58, 16}, {52.55, 95.19, 16}, {53.8, 68.84, 16}, {55.85, 71.71, 16}, {57.86, 95.22, 16}, {59.95, 94.3, 16}, {60.72, 93.62, 16}, {61.13, 86.88, 16}, {62.75, 96.29, 16}, {64.31, 97.47, 16}, {65.79, 71.68, 16}, {67.4, 86.08, 16}, {68.61, 88.33, 16}, {69.16, 73.04, 16}, {69.18, 75.14, 16}, {76.14, 90.76, 16}, {77.66, 94.22, 16}, {77.84, 75.44, 16}, {78.39, 88.63, 16}, {79.0, 84.75, 16}, {79.61, 87.41, 16}, {79.71, 79.66, 16}, {80.06, 91.82, 16}, {80.77, 83.78, 16}}
+ b["scrapedAt"] = 1773750028
+ end
+ b = MTH_DS_Beasts[6352]
+ if b then
+ b["displayId"] = 10947
+ b["health"] = 3792
+ b["dmgMin"] = 109.417
+ b["dmgMax"] = 141.529
+ b["armor"] = 4248
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{45.28, 92.35, 16}, {47.31, 93.36, 16}, {49.99, 96.67, 16}, {52.2, 42.76, 16}, {52.55, 44.38, 16}, {52.55, 99.48, 16}, {54.03, 95.16, 16}, {54.72, 69.34, 16}, {54.8, 98.62, 16}, {54.98, 96.88, 16}, {56.18, 72.48, 16}, {59.1, 95.28, 16}, {60.64, 95.46, 16}, {61.47, 72.74, 16}, {63.03, 83.48, 16}, {63.06, 95.31, 16}, {65.35, 72.54, 16}, {65.77, 97.05, 16}, {68.37, 34.27, 16}, {69.83, 36.49, 16}, {71.17, 36.34, 16}, {71.86, 74.9, 16}, {72.25, 73.54, 16}, {73.18, 71.83, 16}, {75.17, 74.55, 16}, {77.84, 87.74, 16}, {77.91, 77.62, 16}, {78.9, 77.74, 16}, {79.12, 86.35, 16}, {80.3, 85.31, 16}, {84.38, 30.36, 16}, {85.68, 26.37, 16}, {86.24, 27.7, 16}, {86.85, 30.54, 16}, {86.93, 34.33, 16}, {88.07, 22.61, 16}, {88.17, 26.1, 16}, {88.78, 31.58, 16}, {88.94, 27.49, 16}, {92.0, 34.45, 16}, {62.53, 44.44, 0}, {62.6, 44.76, 0}, {62.69, 44.36, 0}, {62.78, 44.19, 0}}
+ b["scrapedAt"] = 1773750029
+ end
+ b = MTH_DS_Beasts[6369]
+ if b then
+ b["displayId"] = 2308
+ b["health"] = 3559
+ b["dmgMin"] = 108.764
+ b["dmgMax"] = 135.956
+ b["armor"] = 4548
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{68.53, 7.887, 16}, {82.25, 8.863, 16}, {83.67, 10.52, 16}, {84.84, 12.74, 16}, {84.88, 10.84, 16}, {87.62, 14.69, 16}}
+ b["scrapedAt"] = 1773750034
+ end
+ b = MTH_DS_Beasts[6375]
+ if b then
+ b["displayId"] = 6757
+ b["health"] = 2908
+ b["dmgMin"] = 97.6408
+ b["dmgMax"] = 123.596
+ b["armor"] = 2834
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{16.37, 56.21, 16}, {16.86, 52.13, 16}, {17.83, 57.01, 16}, {17.96, 61.86, 16}, {18.14, 63.25, 16}, {18.54, 51.86, 16}, {18.89, 54.97, 16}, {19.09, 49.32, 16}, {19.23, 52.87, 16}, {19.25, 65.65, 16}, {19.9, 58.1, 16}, {21.1, 54.2, 16}, {21.16, 57.16, 16}, {98.79, 92.62, 361}, {99.66, 90.11, 361}}
+ b["scrapedAt"] = 1773750044
+ end
+ b = MTH_DS_Beasts[6377]
+ if b then
+ b["displayId"] = 10894
+ b["health"] = 3125
+ b["dmgMin"] = 103.821
+ b["dmgMax"] = 131.012
+ b["armor"] = 2944
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{16.62, 79.78, 16}, {17.37, 78.75, 16}, {17.67, 79.78, 16}, {20.69, 78.75, 16}, {25.2, 79.69, 16}, {25.81, 79.04, 16}, {30.76, 80.94, 16}, {32.81, 80.55, 16}, {33.84, 79.64, 16}, {34.79, 84.31, 16}, {35.61, 82.15, 16}, {35.81, 44.23, 16}, {36.24, 42.87, 16}, {36.8, 84.66, 16}, {38.83, 38.85, 16}, {39.26, 41.84, 16}, {40.45, 37.34, 16}, {40.56, 40.92, 16}, {40.74, 32.37, 16}, {40.9, 34.39, 16}, {41.21, 31.16, 16}, {41.65, 27.67, 16}, {42.34, 23.27, 16}, {44.45, 36.63, 16}, {44.8, 35.21, 16}, {44.92, 34.89, 16}, {47.66, 34.83, 16}}
+ b["scrapedAt"] = 1773750046
+ end
+ b = MTH_DS_Beasts[6378]
+ if b then
+ b["displayId"] = 10893
+ b["health"] = 2846
+ b["dmgMin"] = 101.349
+ b["dmgMax"] = 127.304
+ b["armor"] = 2477
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{48.1, 22.53, 16}, {48.2, 25.6, 16}, {48.27, 18.77, 16}, {48.43, 16.02, 16}, {49.44, 28.15, 16}, {49.95, 34.45, 16}, {50.6, 23.89, 16}, {51.25, 29.51, 16}, {51.98, 28.86, 16}, {52.02, 25.22, 16}, {52.69, 34.0, 16}, {53.15, 32.73, 16}, {53.52, 27.35, 16}, {53.82, 14.45, 16}, {54.27, 23.8, 16}, {54.55, 16.79, 16}, {54.78, 15.61, 16}, {55.22, 17.65, 16}, {55.24, 22.26, 16}, {55.28, 14.33, 16}, {57.11, 19.33, 16}, {57.13, 22.67, 16}, {57.19, 17.32, 16}, {58.27, 24.51, 16}, {58.81, 21.46, 16}, {60.13, 17.47, 16}, {60.5, 14.3, 16}, {60.56, 18.8, 16}, {60.74, 20.31, 16}, {61.41, 21.37, 16}, {61.86, 14.75, 16}, {62.59, 21.2, 16}, {64.09, 19.63, 16}}
+ b["scrapedAt"] = 1773750047
+ end
+ b = MTH_DS_Beasts[6379]
+ if b then
+ b["displayId"] = 10892
+ b["health"] = 3665
+ b["dmgMin"] = 107.039
+ b["dmgMax"] = 135.583
+ b["armor"] = 3162
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{46.01, 77.77, 16}, {48.91, 81.65, 16}, {49.46, 70.02, 16}, {51.31, 81.94, 16}, {52.83, 79.61, 16}, {53.93, 74.84, 16}, {55.3, 79.64, 16}, {57.68, 83.78, 16}, {58.49, 88.18, 16}, {60.92, 82.59, 16}, {62.97, 87.71, 16}, {65.21, 23.41, 16}, {66.95, 26.31, 16}, {67.96, 27.32, 16}, {69.32, 25.37, 16}, {69.97, 26.4, 16}, {72.31, 30.48, 16}, {72.61, 28.53, 16}, {75.67, 29.51, 16}, {77.11, 16.46, 16}, {78.15, 24.74, 16}, {80.52, 26.28, 16}, {83.38, 18.36, 16}, {83.75, 23.21, 16}}
+ b["scrapedAt"] = 1773750048
+ end
+ b = MTH_DS_Beasts[6380]
+ if b then
+ b["displayId"] = 10891
+ b["health"] = 2933
+ b["dmgMin"] = 101.092
+ b["dmgMax"] = 127.257
+ b["armor"] = 2566
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{44.86, 83.92, 16}, {45.51, 78.27, 16}, {46.26, 81.44, 16}, {46.52, 73.9, 16}, {47.39, 84.01, 16}, {48.71, 74.08, 16}, {48.75, 85.58, 16}, {52.87, 83.6, 16}, {56.91, 85.55, 16}, {57.76, 75.91, 16}, {57.78, 79.61, 16}, {59.02, 85.05, 16}, {60.7, 79.78, 16}, {63.83, 23.62, 16}, {64.68, 87.53, 16}, {65.04, 81.14, 16}, {65.16, 25.51, 16}, {65.23, 20.6, 16}, {67.21, 23.62, 16}, {67.52, 12.91, 16}, {69.99, 28.38, 16}, {70.01, 30.3, 16}, {71.43, 17.05, 16}, {71.6, 20.43, 16}, {72.33, 32.02, 16}, {73.08, 28.8, 16}, {73.54, 30.39, 16}, {73.79, 34.0, 16}, {73.87, 24.33, 16}, {75.27, 34.15, 16}, {76.36, 26.31, 16}, {76.87, 27.29, 16}, {78.88, 28.29, 16}, {78.94, 24.51, 16}, {81.44, 26.64, 16}, {81.72, 24.15, 16}, {82.27, 21.31, 16}, {85.11, 20.19, 16}}
+ b["scrapedAt"] = 1773750050
+ end
+ b = MTH_DS_Beasts[6498]
+ if b then
+ b["displayId"] = 5239
+ b["npcClass"] = "Elite"
+ b["health"] = 8867
+ b["dmgMin"] = 442.966
+ b["dmgMax"] = 599.653
+ b["armor"] = 3244
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{31.17, 36.42, 490}, {34.58, 22.35, 490}, {50.12, 60.7, 490}, {56.79, 23.97, 490}, {56.87, 51.3, 490}, {70.98, 52.27, 490}}
+ b["scrapedAt"] = 1773750052
+ end
+ b = MTH_DS_Beasts[6499]
+ if b then
+ b["displayId"] = 5238
+ b["npcClass"] = "Elite"
+ b["health"] = 8867
+ b["dmgMin"] = 536.383
+ b["dmgMax"] = 740.947
+ b["armor"] = 4087
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750053
+ end
+ b = MTH_DS_Beasts[6500]
+ if b then
+ b["displayId"] = 5240
+ b["npcClass"] = "Elite"
+ b["health"] = 8867
+ b["dmgMin"] = 607.9
+ b["dmgMax"] = 822.314
+ b["armor"] = 3244
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750067
+ end
+ b = MTH_DS_Beasts[6501]
+ if b then
+ b["displayId"] = 5241
+ b["npcClass"] = "Elite"
+ b["health"] = 8791
+ b["dmgMin"] = 390.564
+ b["dmgMax"] = 504.272
+ b["armor"] = 3136
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{26.52, 67.03, 490}, {28.25, 64.51, 490}, {30.01, 61.51, 490}, {30.01, 67.15, 490}, {30.31, 77.49, 490}, {30.39, 72.38, 490}, {35.5, 74.73, 490}, {37.23, 77.69, 490}, {38.95, 69.66, 490}, {38.98, 63.95, 490}, {40.93, 72.5, 490}, {41.06, 77.69, 490}}
+ b["scrapedAt"] = 1773750069
+ end
+ b = MTH_DS_Beasts[6502]
+ if b then
+ b["displayId"] = 5287
+ b["npcClass"] = "Elite"
+ b["health"] = 8460
+ b["dmgMin"] = 368.689
+ b["dmgMax"] = 475.728
+ b["armor"] = 4710
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{28.36, 58.31, 490}, {33.71, 77.12, 490}, {33.98, 61.8, 490}, {34.2, 67.19, 490}, {37.52, 67.15, 490}, {37.66, 61.19, 490}, {39.23, 58.92, 490}}
+ b["scrapedAt"] = 1773750070
+ end
+ b = MTH_DS_Beasts[6503]
+ if b then
+ b["displayId"] = 5288
+ b["npcClass"] = "Elite"
+ b["health"] = 8753
+ b["dmgMin"] = 390.097
+ b["dmgMax"] = 500.703
+ b["armor"] = 3190
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{32.28, 74.65, 490}, {35.63, 69.26, 490}, {38.9, 80.69, 490}}
+ b["scrapedAt"] = 1773750071
+ end
+ b = MTH_DS_Beasts[6504]
+ if b then
+ b["displayId"] = 5289
+ b["npcClass"] = "Elite"
+ b["health"] = 8867
+ b["dmgMin"] = 394.664
+ b["dmgMax"] = 508.939
+ b["armor"] = 3244
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{28.77, 68.97, 490}, {34.33, 72.3, 490}}
+ b["scrapedAt"] = 1773750072
+ end
+ b = MTH_DS_Beasts[6505]
+ if b then
+ b["displayId"] = 5242
+ b["health"] = 3251
+ b["dmgMin"] = 100.113
+ b["dmgMax"] = 124.832
+ b["armor"] = 2921
+ b["factionId"] = 48
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{57.98, 78.5, 490}, {58.31, 76.03, 490}, {59.55, 81.09, 490}, {60.87, 73.43, 490}, {61.31, 78.74, 490}, {61.6, 70.88, 490}, {61.66, 66.3, 490}, {62.47, 80.41, 490}, {62.66, 76.23, 490}, {63.12, 66.26, 490}, {63.39, 78.09, 490}, {63.6, 62.65, 490}, {64.04, 72.09, 490}, {64.5, 61.84, 490}, {64.6, 75.14, 490}, {66.25, 68.04, 490}, {66.31, 77.77, 490}, {66.77, 71.12, 490}, {67.23, 65.65, 490}, {67.47, 60.18, 490}, {67.58, 72.91, 490}, {67.63, 72.14, 490}, {67.9, 78.7, 490}}
+ b["scrapedAt"] = 1773750073
+ end
+ b = MTH_DS_Beasts[6506]
+ if b then
+ b["displayId"] = 5290
+ b["health"] = 3370
+ b["dmgMin"] = 102.585
+ b["dmgMax"] = 127.304
+ b["armor"] = 2955
+ b["factionId"] = 48
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750074
+ end
+ b = MTH_DS_Beasts[6507]
+ if b then
+ b["displayId"] = 5292
+ b["health"] = 3370
+ b["dmgMin"] = 102.585
+ b["dmgMax"] = 127.304
+ b["armor"] = 2979
+ b["factionId"] = 48
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{62.41, 50.49, 490}, {62.68, 53.24, 490}, {64.04, 47.81, 490}, {64.28, 58.64, 490}, {65.44, 46.8, 490}, {66.85, 49.07, 490}, {67.77, 49.39, 490}, {67.95, 45.14, 490}, {68.04, 53.85, 490}, {69.14, 57.46, 490}, {70.6, 45.34, 490}, {70.6, 60.09, 490}, {70.85, 53.45, 490}, {71.55, 61.47, 490}, {71.77, 50.28, 490}, {72.58, 50.2, 490}}
+ b["scrapedAt"] = 1773750075
+ end
+ b = MTH_DS_Beasts[6508]
+ if b then
+ b["displayId"] = 5291
+ b["health"] = 3425
+ b["dmgMin"] = 105.057
+ b["dmgMax"] = 131.012
+ b["armor"] = 3031
+ b["factionId"] = 48
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750076
+ end
+ b = MTH_DS_Beasts[6513]
+ if b then
+ b["displayId"] = 5294
+ b["health"] = 3682
+ b["dmgMin"] = 107.529
+ b["dmgMax"] = 134.719
+ b["armor"] = 3108
+ b["factionId"] = 72
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{60.39, 16.72, 490}, {62.6, 19.64, 490}, {64.12, 16.27, 490}, {66.2, 17.32, 490}, {67.04, 15.26, 490}, {67.36, 15.09, 490}, {67.66, 16.59, 490}}
+ b["scrapedAt"] = 1773750077
+ end
+ b = MTH_DS_Beasts[6514]
+ if b then
+ b["displayId"] = 844
+ b["health"] = 3425
+ b["dmgMin"] = 107.529
+ b["dmgMax"] = 132.247
+ b["armor"] = 3052
+ b["factionId"] = 72
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750079
+ end
+ b = MTH_DS_Beasts[6516]
+ if b then
+ b["displayId"] = 5244
+ b["health"] = 3809
+ b["dmgMin"] = 110
+ b["dmgMax"] = 137.192
+ b["armor"] = 3163
+ b["factionId"] = 72
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750080
+ end
+ b = MTH_DS_Beasts[6581]
+ if b then
+ b["displayId"] = 11319
+ b["npcClass"] = "Rare"
+ b["health"] = 3491
+ b["dmgMin"] = 346.069
+ b["dmgMax"] = 446.182
+ b["armor"] = 2999
+ b["factionId"] = 48
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{62.33, 65.93, 490}}
+ b["scrapedAt"] = 1773750081
+ end
+ b = MTH_DS_Beasts[6583]
+ if b then
+ b["displayId"] = 10932
+ b["npcClass"] = "Rare-Elite"
+ b["health"] = 16718
+ b["dmgMin"] = 413.075
+ b["dmgMax"] = 532.098
+ b["armor"] = 3380
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{38.04, 75.5, 490}}
+ b["scrapedAt"] = 1773750083
+ end
+ b = MTH_DS_Beasts[6584]
+ if b then
+ b["displayId"] = 5305
+ b["npcClass"] = "Rare-Elite"
+ b["health"] = 67144
+ b["dmgMin"] = 729.3
+ b["dmgMax"] = 966.9
+ b["armor"] = 3791
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{35.28, 35.97, 490}}
+ b["scrapedAt"] = 1773750084
+ end
+ b = MTH_DS_Beasts[6585]
+ if b then
+ b["displayId"] = 8129
+ b["npcClass"] = "Rare"
+ b["health"] = 3809
+ b["dmgMin"] = 619.216
+ b["dmgMax"] = 799.666
+ b["armor"] = 3136
+ b["factionId"] = 72
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{68.47, 12.62, 490}}
+ b["scrapedAt"] = 1773750090
+ end
+ b = MTH_DS_Beasts[6648]
+ if b then
+ b["displayId"] = 3212
+ b["npcClass"] = "Rare"
+ b["health"] = 3356
+ b["dmgMin"] = 346.069
+ b["dmgMax"] = 446.182
+ b["armor"] = 2999
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{16.58, 54.11, 16}}
+ b["scrapedAt"] = 1773750095
+ end
+ b = MTH_DS_Beasts[6788]
+ if b then
+ b["displayId"] = 1007
+ b["health"] = 620
+ b["dmgMin"] = 33.3709
+ b["dmgMax"] = 42.0226
+ b["armor"] = 383
+ b["factionId"] = 44
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{51.48, 38.27, 148}}
+ b["scrapedAt"] = 1773751757
+ end
+ b = MTH_DS_Beasts[6789]
+ if b then
+ b["displayId"] = 5510
+ b["health"] = 257
+ b["dmgMin"] = 19.837
+ b["dmgMax"] = 25.6714
+ b["armor"] = 241
+ b["factionId"] = 44
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{51.49, 38.18, 148}}
+ b["scrapedAt"] = 1773751758
+ end
+ b = MTH_DS_Beasts[7022]
+ if b then
+ b["displayId"] = 2488
+ b["npcClass"] = "Elite"
+ b["health"] = 5309
+ b["dmgMin"] = 203.449
+ b["dmgMax"] = 247.47
+ b["armor"] = 1651
+ b["factionId"] = 413
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773751759
+ end
+ b = MTH_DS_Beasts[7055]
+ if b then
+ b["displayId"] = 741
+ b["health"] = 3841
+ b["dmgMin"] = 111.92
+ b["dmgMax"] = 139.016
+ b["armor"] = 3271
+ b["factionId"] = 40
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{38.66, 54.49, 46}, {44.56, 57.98, 46}, {49.14, 58.44, 46}, {51.02, 53.37, 46}, {55.69, 54.08, 46}, {59.37, 61.39, 0}}
+ b["scrapedAt"] = 1773750108
+ end
+ b = MTH_DS_Beasts[7078]
+ if b then
+ b["displayId"] = 5985
+ b["health"] = 1089
+ b["dmgMin"] = 75.3936
+ b["dmgMax"] = 92.697
+ b["armor"] = 1480
+ b["factionId"] = 413
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773751760
+ end
+ b = MTH_DS_Beasts[7097]
+ if b then
+ b["displayId"] = 4877
+ b["health"] = 3125
+ b["dmgMin"] = 102.585
+ b["dmgMax"] = 127.304
+ b["armor"] = 2944
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{37.65, 72.79, 361}, {39.86, 69.06, 361}, {42.15, 81.48, 361}, {44.52, 81.48, 361}, {46.46, 87.69, 361}, {46.92, 73.83, 361}, {47.79, 77.2, 361}, {48.95, 81.56, 361}, {50.66, 82.16, 361}, {51.47, 85.63, 361}, {53.77, 84.35, 361}, {56.78, 83.64, 361}, {57.5, 26.61, 331}}
+ b["scrapedAt"] = 1773750109
+ end
+ b = MTH_DS_Beasts[7098]
+ if b then
+ b["displayId"] = 10831
+ b["health"] = 3809
+ b["dmgMin"] = 110
+ b["dmgMax"] = 137.192
+ b["armor"] = 3163
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{51.25, 16.16, 361}, {53.19, 11.59, 361}, {53.72, 27.06, 361}, {53.84, 16.21, 361}, {55.54, 23.36, 361}, {55.72, 10.81, 361}, {56.34, 21.45, 361}, {56.72, 26.38, 361}, {57.49, 15.92, 361}, {62.45, 15.97, 361}, {62.46, 19.47, 361}, {63.73, 21.87, 361}}
+ b["scrapedAt"] = 1773750111
+ end
+ b = MTH_DS_Beasts[7099]
+ if b then
+ b["displayId"] = 10829
+ b["health"] = 3425
+ b["dmgMin"] = 80.6406
+ b["dmgMax"] = 99.18
+ b["armor"] = 3052
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{38.06, 53.75, 361}, {38.22, 42.03, 361}, {38.59, 49.39, 361}, {39.19, 36.97, 361}, {39.52, 56.83, 361}, {40.55, 34.29, 361}, {41.32, 57.01, 361}, {41.54, 53.67, 361}, {41.77, 50.15, 361}, {43.16, 63.43, 361}, {44.9, 69.9, 361}, {45.02, 66.9, 361}, {45.16, 17.62, 361}, {47.92, 15.4, 361}, {49.49, 33.58, 361}, {50.15, 15.97, 361}, {51.65, 29.57, 361}}
+ b["scrapedAt"] = 1773750113
+ end
+ b = MTH_DS_Beasts[7167]
+ if b then
+ b["displayId"] = 5865
+ b["npcClass"] = "Elite"
+ b["health"] = 3356
+ b["dmgMin"] = 56.8542
+ b["dmgMax"] = 65.5059
+ b["armor"] = 20
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750122
+ end
+ b = MTH_DS_Beasts[7268]
+ if b then
+ b["displayId"] = 4305
+ b["npcClass"] = "Elite"
+ b["health"] = 6597
+ b["dmgMin"] = 65.4368
+ b["dmgMax"] = 83.2832
+ b["armor"] = 2725
+ b["factionId"] = 37
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750135
+ end
+ b = MTH_DS_Beasts[7269]
+ if b then
+ b["displayId"] = 7470
+ b["health"] = 2120
+ b["dmgMin"] = 114.217
+ b["dmgMax"] = 139.202
+ b["armor"] = 2557
+ b["factionId"] = 15
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["scrapedAt"] = 1773750147
+ end
+ b = MTH_DS_Beasts[7273]
+ if b then
+ b["displayId"] = 7271
+ b["npcClass"] = "Elite"
+ b["health"] = 34899
+ b["dmgMin"] = 312.204
+ b["dmgMax"] = 404.248
+ b["armor"] = 2500
+ b["factionId"] = 107
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750148
+ end
+ b = MTH_DS_Beasts[7319]
+ if b then
+ b["displayId"] = 6214
+ b["health"] = 268
+ b["dmgMin"] = 15.1694
+ b["dmgMax"] = 21.0038
+ b["armor"] = 20
+ b["factionId"] = 312
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{48.09, 25.1134, 141}}
+ b["scrapedAt"] = 1773751761
+ end
+ b = MTH_DS_Beasts[7376]
+ if b then
+ b["displayId"] = 10826
+ b["health"] = 4116
+ b["dmgMin"] = 115.364
+ b["dmgMax"] = 142.718
+ b["armor"] = 3299
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{35.55, 41.12, 41}, {36.63, 39.5, 41}, {37.91, 41.24, 41}, {38.07, 30.62, 41}, {39.99, 52.64, 41}, {40.91, 41.24, 41}, {41.31, 58.82, 41}, {41.35, 49.34, 41}, {44.71, 62.66, 41}, {47.19, 24.92, 41}, {48.07, 50.84, 41}, {50.07, 46.94, 41}}
+ b["scrapedAt"] = 1773750149
+ end
+ b = MTH_DS_Beasts[7405]
+ if b then
+ b["displayId"] = 5985
+ b["health"] = 1502
+ b["dmgMin"] = 81.5734
+ b["dmgMax"] = 102.585
+ b["armor"] = 1651
+ b["factionId"] = 413
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750150
+ end
+ b = MTH_DS_Beasts[7430]
+ if b then
+ b["displayId"] = 9958
+ b["health"] = 4116
+ b["dmgMin"] = 88.0097
+ b["dmgMax"] = 107.039
+ b["armor"] = 3299
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{48.48, 7.824, 618}, {48.88, 18.85, 618}, {48.91, 11.42, 618}, {49.61, 8.88, 618}, {50.22, 17.08, 618}, {51.65, 11.29, 618}, {51.88, 9.282, 618}, {52.09, 14.71, 618}, {54.64, 10.72, 618}, {55.69, 14.54, 618}}
+ b["scrapedAt"] = 1773750153
+ end
+ b = MTH_DS_Beasts[7431]
+ if b then
+ b["displayId"] = 9953
+ b["health"] = 4376
+ b["dmgMin"] = 86.3491
+ b["dmgMax"] = 106.186
+ b["armor"] = 3348
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{49.72, 18.75, 618}, {50.51, 20.08, 618}, {50.69, 21.43, 618}, {53.06, 15.24, 618}, {53.65, 18.13, 618}, {54.46, 17.23, 618}, {54.84, 12.18, 618}, {54.89, 13.51, 618}, {54.92, 15.18, 618}, {55.53, 17.14, 618}, {56.33, 13.02, 618}, {56.36, 11.71, 618}, {56.75, 15.28, 618}, {56.88, 13.99, 618}}
+ b["scrapedAt"] = 1773750154
+ end
+ b = MTH_DS_Beasts[7432]
+ if b then
+ b["displayId"] = 11445
+ b["health"] = 4397
+ b["dmgMin"] = 84.7
+ b["dmgMax"] = 105.6
+ b["armor"] = 3640
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{48.31, 13.99, 618}, {48.33, 15.22, 618}, {48.37, 17.75, 618}, {48.93, 16.04, 618}, {49.71, 14.39, 618}, {49.79, 19.99, 618}, {49.85, 15.62, 618}, {50.12, 20.82, 618}, {50.71, 17.39, 618}, {50.85, 13.21, 618}, {51.27, 19.36, 618}, {51.51, 21.51, 618}, {51.61, 14.23, 618}, {52.5, 14.58, 618}, {52.65, 15.79, 618}, {53.1, 12.24, 618}, {53.46, 13.02, 618}, {53.99, 13.65, 618}, {54.0, 12.24, 618}, {55.0, 16.53, 618}, {55.46, 14.27, 618}, {56.24, 15.87, 618}, {56.61, 17.2, 618}}
+ b["scrapedAt"] = 1773751763
+ end
+ b = MTH_DS_Beasts[7433]
+ if b then
+ b["displayId"] = 11444
+ b["health"] = 4263
+ b["dmgMin"] = 84.7
+ b["dmgMax"] = 104.5
+ b["armor"] = 3462
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{48.57, 12.07, 618}, {48.61, 13.0, 618}, {49.26, 8.098, 618}, {49.26, 15.13, 618}, {50.19, 8.056, 618}, {50.4, 16.63, 618}, {50.77, 15.98, 618}, {51.19, 13.91, 618}, {51.33, 7.993, 618}, {51.61, 15.85, 618}, {51.67, 10.19, 618}, {52.57, 11.67, 618}, {52.99, 14.23, 618}, {53.06, 10.99, 618}, {54.92, 11.1, 618}}
+ b["scrapedAt"] = 1773750173
+ end
+ b = MTH_DS_Beasts[7434]
+ if b then
+ b["displayId"] = 9954
+ b["health"] = 4397
+ b["dmgMin"] = 84.7
+ b["dmgMax"] = 105.6
+ b["armor"] = 3640
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{48.26, 9.514, 618}, {49.26, 12.35, 618}, {50.67, 7.38, 618}, {50.68, 8.796, 618}, {51.71, 8.88, 618}}
+ b["scrapedAt"] = 1773750174
+ end
+ b = MTH_DS_Beasts[7443]
+ if b then
+ b["displayId"] = 8842
+ b["health"] = 4880
+ b["dmgMin"] = 115.364
+ b["dmgMax"] = 142.718
+ b["armor"] = 2350
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{51.93, 32.65, 618}, {54.29, 49.02, 618}, {54.58, 45.47, 618}, {56.44, 45.98, 618}, {56.5, 38.44, 618}, {56.62, 30.77, 618}, {57.13, 38.99, 618}, {57.34, 28.51, 618}, {57.58, 46.13, 618}, {57.75, 40.46, 618}, {58.23, 43.8, 618}, {58.29, 41.33, 618}, {58.69, 45.87, 618}, {59.61, 34.42, 618}, {59.74, 41.31, 618}, {60.34, 45.39, 618}, {60.51, 42.09, 618}, {61.64, 43.95, 618}, {61.77, 48.13, 618}, {62.36, 44.77, 618}, {62.38, 33.39, 618}, {62.5, 44.94, 618}, {62.88, 47.75, 618}, {62.96, 31.72, 618}, {64.08, 26.48, 618}, {64.38, 31.97, 618}, {64.88, 27.68, 618}, {65.75, 30.81, 618}, {65.99, 25.99, 618}, {66.08, 51.39, 618}, {66.29, 48.26, 618}, {67.16, 52.89, 618}, {67.85, 32.73, 618}, {68.02, 28.63, 618}, {68.55, 32.88, 618}, {68.93, 53.8, 618}, {68.98, 48.28, 618}, {41.4, 42.73, 0}}
+ b["scrapedAt"] = 1773750175
+ end
+ b = MTH_DS_Beasts[7444]
+ if b then
+ b["displayId"] = 865
+ b["health"] = 4376
+ b["dmgMin"] = 110.607
+ b["dmgMax"] = 136.772
+ b["armor"] = 2429
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{30.23, 47.18, 618}, {30.4, 39.39, 618}, {31.64, 39.26, 618}, {33.71, 39.01, 618}, {34.37, 43.89, 618}, {35.75, 39.32, 618}, {39.47, 38.88, 618}, {40.43, 37.25, 618}, {42.24, 37.0, 618}, {42.65, 34.06, 618}, {44.17, 43.0, 618}, {44.62, 37.95, 618}, {45.44, 45.83, 618}, {45.91, 34.93, 618}, {45.95, 41.94, 618}, {46.3, 46.7, 618}, {47.16, 37.02, 618}, {48.05, 45.75, 618}, {48.1, 34.84, 618}, {48.17, 46.74, 618}, {48.54, 34.34, 618}, {48.54, 46.44, 618}, {50.68, 39.22, 618}, {52.02, 38.69, 618}, {53.37, 37.02, 618}, {54.89, 37.74, 618}}
+ b["scrapedAt"] = 1773750176
+ end
+ b = MTH_DS_Beasts[7445]
+ if b then
+ b["displayId"] = 8837
+ b["health"] = 4899
+ b["dmgMin"] = 111.1
+ b["dmgMax"] = 137.5
+ b["armor"] = 2594
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{54.71, 20.23, 618}, {55.81, 22.19, 618}, {55.82, 23.61, 618}, {56.06, 19.4, 618}, {56.64, 26.46, 618}, {56.89, 24.96, 618}, {57.6, 19.49, 618}, {57.77, 12.6, 618}, {57.93, 15.35, 618}, {58.05, 16.72, 618}, {58.33, 60.51, 618}, {58.44, 20.86, 618}, {58.67, 15.26, 618}, {58.68, 13.85, 618}, {59.1, 12.07, 618}, {59.24, 16.57, 618}, {59.29, 23.67, 618}, {59.3, 25.93, 618}, {59.78, 17.9, 618}, {59.79, 20.35, 618}, {60.44, 24.6, 618}, {60.54, 14.42, 618}, {60.6, 15.18, 618}, {60.65, 21.11, 618}, {60.82, 63.96, 618}, {61.05, 24.22, 618}, {61.15, 58.7, 618}, {61.53, 27.28, 618}, {61.57, 21.54, 618}, {61.85, 26.88, 618}, {62.27, 29.5, 618}, {62.6, 24.96, 618}, {62.71, 26.2, 618}, {62.72, 55.13, 618}, {41.4, 42.8, 0}}
+ b["scrapedAt"] = 1773750192
+ end
+ b = MTH_DS_Beasts[7446]
+ if b then
+ b["displayId"] = 3200
+ b["health"] = 5211
+ b["dmgMin"] = 114.4
+ b["dmgMax"] = 143
+ b["armor"] = 2861
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{56.74, 69.28, 618}, {56.75, 70.91, 618}, {57.31, 68.69, 618}, {57.62, 70.84, 618}, {57.95, 72.24, 618}, {58.44, 72.28, 618}, {58.69, 74.04, 618}, {59.2, 71.48, 618}, {59.74, 72.18, 618}, {61.1, 72.96, 618}, {63.43, 74.39, 618}, {67.05, 69.05, 618}, {67.08, 69.77, 618}, {41.43, 42.77, 0}}
+ b["scrapedAt"] = 1773750200
+ end
+ b = MTH_DS_Beasts[7447]
+ if b then
+ b["displayId"] = 10807
+ b["health"] = 3720
+ b["dmgMin"] = 108.385
+ b["dmgMax"] = 137.838
+ b["armor"] = 3217
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{29.55, 48.51, 618}, {33.79, 44.65, 618}, {37.17, 44.48, 618}, {38.51, 38.54, 618}, {42.79, 34.99, 618}, {43.71, 43.8, 618}, {44.88, 42.22, 618}, {44.96, 36.32, 618}, {45.77, 44.94, 618}, {48.09, 42.77, 618}, {48.53, 45.18, 618}, {48.98, 40.82, 618}, {51.47, 38.67, 618}, {53.19, 37.76, 618}}
+ b["scrapedAt"] = 1773750206
+ end
+ b = MTH_DS_Beasts[7448]
+ if b then
+ b["displayId"] = 10810
+ b["health"] = 4237
+ b["dmgMin"] = 112.021
+ b["dmgMax"] = 141.193
+ b["armor"] = 3326
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{55.19, 46.63, 618}, {55.46, 48.51, 618}, {55.58, 37.06, 618}, {56.15, 46.93, 618}, {57.65, 41.63, 618}, {57.99, 44.56, 618}, {58.84, 43.51, 618}, {59.65, 41.96, 618}, {59.72, 45.87, 618}, {61.19, 41.71, 618}, {63.4, 45.81, 618}, {63.41, 47.12, 618}, {64.86, 24.58, 618}, {65.43, 53.14, 618}, {65.6, 30.73, 618}, {66.1, 27.62, 618}, {66.13, 26.8, 618}, {66.51, 51.24, 618}, {66.57, 49.61, 618}, {66.69, 49.76, 618}, {66.82, 47.44, 618}, {67.09, 30.77, 618}, {67.98, 53.27, 618}, {68.16, 51.79, 618}, {68.19, 30.28, 618}, {68.48, 52.8, 618}}
+ b["scrapedAt"] = 1773750214
+ end
+ b = MTH_DS_Beasts[7449]
+ if b then
+ b["displayId"] = 10809
+ b["health"] = 4134
+ b["dmgMin"] = 110
+ b["dmgMax"] = 138.6
+ b["armor"] = 3435
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{54.4, 21.83, 618}, {54.77, 19.82, 618}, {55.85, 21.49, 618}, {56.27, 24.15, 618}, {56.54, 25.57, 618}, {57.23, 22.84, 618}, {57.85, 13.55, 618}, {58.03, 19.06, 618}, {58.05, 23.01, 618}, {58.36, 16.04, 618}, {58.46, 25.53, 618}, {58.57, 21.54, 618}, {58.65, 17.48, 618}, {59.03, 14.31, 618}, {59.33, 19.42, 618}, {59.5, 23.08, 618}, {59.89, 17.37, 618}, {60.06, 11.54, 618}, {60.08, 23.37, 618}, {60.36, 21.83, 618}, {60.38, 14.77, 618}, {61.05, 15.77, 618}, {61.55, 13.95, 618}, {61.85, 25.95, 618}, {61.88, 54.68, 618}, {61.99, 29.96, 618}, {62.78, 54.47, 618}, {63.34, 62.08, 618}}
+ b["scrapedAt"] = 1773750218
+ end
+ b = MTH_DS_Beasts[7455]
+ if b then
+ b["displayId"] = 6212
+ b["health"] = 2956
+ b["dmgMin"] = 111.796
+ b["dmgMax"] = 140.34
+ b["armor"] = 3327
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{50.75, 32.8, 618}, {50.88, 33.96, 618}, {55.17, 29.77, 618}, {55.36, 47.2, 618}, {55.47, 46.7, 618}, {55.82, 29.31, 618}, {56.37, 34.61, 618}, {57.08, 32.92, 618}, {57.22, 37.59, 618}, {57.54, 34.32, 618}, {57.69, 43.42, 618}, {58.15, 30.07, 618}, {58.15, 40.0, 618}, {59.03, 28.93, 618}, {59.05, 30.96, 618}, {59.1, 46.23, 618}, {59.27, 43.57, 618}, {59.36, 33.75, 618}, {60.69, 41.18, 618}, {60.89, 33.92, 618}, {61.22, 32.9, 618}, {62.62, 32.96, 618}, {62.86, 45.45, 618}, {63.17, 43.95, 618}, {63.22, 34.11, 618}, {63.31, 27.51, 618}, {63.46, 48.34, 618}, {64.2, 36.85, 618}, {64.44, 29.04, 618}, {64.86, 32.96, 618}, {65.54, 26.96, 618}, {66.13, 54.24, 618}, {66.43, 51.94, 618}, {67.19, 29.31, 618}, {67.26, 31.97, 618}, {67.26, 49.51, 618}, {68.27, 51.56, 618}, {68.31, 31.32, 618}}
+ b["scrapedAt"] = 1773750219
+ end
+ b = MTH_DS_Beasts[7456]
+ if b then
+ b["displayId"] = 10833
+ b["health"] = 4134
+ b["dmgMin"] = 110
+ b["dmgMax"] = 138.6
+ b["armor"] = 3489
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{54.57, 20.61, 618}, {54.86, 23.27, 618}, {57.1, 13.17, 618}, {57.78, 26.99, 618}, {57.82, 20.99, 618}, {57.84, 59.67, 618}, {58.38, 17.69, 618}, {58.4, 26.54, 618}, {58.6, 21.49, 618}, {59.13, 11.84, 618}, {59.29, 19.44, 618}, {59.98, 61.59, 618}, {60.05, 14.42, 618}, {60.08, 15.89, 618}, {60.13, 59.92, 618}, {60.29, 58.23, 618}, {60.29, 64.49, 618}, {60.64, 55.76, 618}, {61.1, 60.64, 618}, {61.23, 21.03, 618}, {61.4, 24.11, 618}, {61.51, 62.27, 618}, {62.05, 55.17, 618}, {62.09, 53.96, 618}, {62.51, 55.68, 618}, {62.54, 27.89, 618}, {62.99, 63.62, 618}}
+ b["scrapedAt"] = 1773750220
+ end
+ b = MTH_DS_Beasts[7803]
+ if b then
+ b["displayId"] = 2414
+ b["health"] = 2908
+ b["dmgMin"] = 195.282
+ b["dmgMax"] = 233.596
+ b["armor"] = 2808
+ b["factionId"] = 413
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750223
+ end
+ b = MTH_DS_Beasts[7808]
+ if b then
+ b["displayId"] = 12238
+ b["health"] = 2853
+ b["dmgMin"] = 148.72
+ b["dmgMax"] = 177.274
+ b["armor"] = 2780
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750225
+ end
+ b = MTH_DS_Beasts[7977]
+ if b then
+ b["displayId"] = 7114
+ b["npcClass"] = "Elite"
+ b["health"] = 8127
+ b["dmgMin"] = 310.226
+ b["dmgMax"] = 401.687
+ b["armor"] = 5716
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{80.3896, 58.1949, 47}}
+ b["scrapedAt"] = 1773750226
+ end
+ b = MTH_DS_Beasts[8024]
+ if b then
+ b["displayId"] = 7269
+ b["health"] = 3738
+ b["dmgMin"] = 155.1
+ b["dmgMax"] = 187
+ b["armor"] = 2999
+ b["factionId"] = 534
+ b["reactA"] = "friendly"
+ b["reactH"] = "neutral"
+ b["scrapedAt"] = 1773750228
+ end
+ b = MTH_DS_Beasts[8025]
+ if b then
+ b["displayId"] = 7270
+ b["health"] = 3738
+ b["dmgMin"] = 155.1
+ b["dmgMax"] = 187
+ b["armor"] = 3271
+ b["factionId"] = 534
+ b["reactA"] = "friendly"
+ b["reactH"] = "neutral"
+ b["scrapedAt"] = 1773750230
+ end
+ b = MTH_DS_Beasts[8095]
+ if b then
+ b["displayId"] = 7345
+ b["npcClass"] = "Elite"
+ b["health"] = 6723
+ b["dmgMin"] = 274.383
+ b["dmgMax"] = 341.125
+ b["armor"] = 4225
+ b["factionId"] = 37
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750233
+ end
+ b = MTH_DS_Beasts[8207]
+ if b then
+ b["displayId"] = 7349
+ b["npcClass"] = "Rare"
+ b["health"] = 2853
+ b["dmgMin"] = 295.061
+ b["dmgMax"] = 380.723
+ b["armor"] = 2780
+ b["factionId"] = 73
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{54.16, 39.89, 440}}
+ b["scrapedAt"] = 1773750235
+ end
+ b = MTH_DS_Beasts[8208]
+ if b then
+ b["displayId"] = 1534
+ b["npcClass"] = "Rare"
+ b["health"] = 2642
+ b["dmgMin"] = 267.696
+ b["dmgMax"] = 346.221
+ b["armor"] = 2397
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{47.42, 25.0, 440}}
+ b["scrapedAt"] = 1773750235
+ end
+ b = MTH_DS_Beasts[8211]
+ if b then
+ b["displayId"] = 11414
+ b["npcClass"] = "Rare"
+ b["health"] = 2449
+ b["dmgMin"] = 402.139
+ b["dmgMax"] = 517.546
+ b["armor"] = 2246
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{11.9, 53.71, 47}}
+ b["scrapedAt"] = 1773750237
+ end
+ b = MTH_DS_Beasts[8213]
+ if b then
+ b["displayId"] = 7840
+ b["npcClass"] = "Rare"
+ b["health"] = 3544
+ b["dmgMin"] = 599.441
+ b["dmgMax"] = 773.711
+ b["armor"] = 6040
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{81.48, 49.19, 47}}
+ b["scrapedAt"] = 1773750238
+ end
+ b = MTH_DS_Beasts[8277]
+ if b then
+ b["displayId"] = 4458
+ b["npcClass"] = "Rare"
+ b["health"] = 3125
+ b["dmgMin"] = 325.058
+ b["dmgMax"] = 418.99
+ b["armor"] = 2888
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{61.9, 73.21, 51}}
+ b["scrapedAt"] = 1773750239
+ end
+ b = MTH_DS_Beasts[8299]
+ if b then
+ b["displayId"] = 388
+ b["npcClass"] = "Rare"
+ b["health"] = 3809
+ b["dmgMin"] = 359.665
+ b["dmgMax"] = 477.081
+ b["armor"] = 3108
+ b["factionId"] = 73
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{61.05, 35.34, 4}}
+ b["scrapedAt"] = 1773750240
+ end
+ b = MTH_DS_Beasts[8300]
+ if b then
+ b["displayId"] = 10904
+ b["npcClass"] = "Rare"
+ b["health"] = 3544
+ b["dmgMin"] = 389.327
+ b["dmgMax"] = 503.035
+ b["armor"] = 3052
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{61.08, 36.6, 4}}
+ b["scrapedAt"] = 1773750241
+ end
+ b = MTH_DS_Beasts[8301]
+ if b then
+ b["displayId"] = 10983
+ b["npcClass"] = "Rare"
+ b["health"] = 3940
+ b["dmgMin"] = 619.216
+ b["dmgMax"] = 799.666
+ b["armor"] = 3163
+ b["factionId"] = 413
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{48.31, 38.66, 4}}
+ b["scrapedAt"] = 1773750243
+ end
+ b = MTH_DS_Beasts[8302]
+ if b then
+ b["displayId"] = 2174
+ b["npcClass"] = "Rare"
+ b["health"] = 3241
+ b["dmgMin"] = 333.709
+ b["dmgMax"] = 431.35
+ b["armor"] = 2944
+ b["factionId"] = 49
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{44.1, 24.95, 4}}
+ b["scrapedAt"] = 1773750244
+ end
+ b = MTH_DS_Beasts[8303]
+ if b then
+ b["displayId"] = 8870
+ b["npcClass"] = "Rare"
+ b["health"] = 3356
+ b["dmgMin"] = 346.069
+ b["dmgMax"] = 446.182
+ b["armor"] = 2999
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{56.07, 31.09, 4}}
+ b["scrapedAt"] = 1773750245
+ end
+ b = MTH_DS_Beasts[8311]
+ if b then
+ b["displayId"] = 7571
+ b["health"] = 1649
+ b["dmgMin"] = 118.976
+ b["dmgMax"] = 148.72
+ b["armor"] = 2752
+ b["factionId"] = 15
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["scrapedAt"] = 1773750246
+ end
+ b = MTH_DS_Beasts[8336]
+ if b then
+ b["displayId"] = 1336
+ b["npcClass"] = "Elite"
+ b["health"] = 6222
+ b["dmgMin"] = 341.125
+ b["dmgMax"] = 440.002
+ b["armor"] = 2367
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750247
+ end
+ b = MTH_DS_Beasts[8600]
+ if b then
+ b["displayId"] = 7894
+ b["health"] = 3720
+ b["dmgMin"] = 108.385
+ b["dmgMax"] = 137.838
+ b["armor"] = 3271
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{16.26, 66.17, 139}, {17.43, 70.0, 139}, {18.18, 66.25, 139}, {18.2, 74.11, 139}, {19.47, 78.22, 139}, {20.06, 80.23, 139}, {21.22, 68.46, 139}, {21.51, 64.7, 139}, {21.79, 62.06, 139}, {24.2, 66.67, 139}, {24.74, 85.27, 139}, {27.09, 63.96, 139}, {27.63, 67.49, 139}, {29.29, 68.03, 139}, {30.94, 68.61, 139}, {31.2, 64.23, 139}, {31.95, 82.36, 139}, {31.97, 84.42, 139}, {33.19, 76.2, 139}, {33.32, 69.11, 139}, {33.55, 84.46, 139}, {33.7, 82.29, 139}, {33.86, 73.07, 139}, {35.25, 84.3, 139}, {36.05, 70.59, 139}, {36.78, 72.48, 139}, {39.98, 68.15, 139}, {40.81, 66.67, 139}, {42.07, 74.89, 139}, {42.1, 82.63, 139}, {42.9, 85.85, 139}, {42.93, 70.31, 139}, {44.32, 77.17, 139}, {44.4, 82.56, 139}, {44.58, 88.95, 139}, {46.34, 70.12, 139}, {47.19, 85.58, 139}, {48.2, 71.13, 139}, {50.57, 80.62, 139}, {52.85, 77.79, 139}, {54.94, 75.7, 139}, {55.74, 80.81, 139}, {56.05, 77.37, 139}, {60.57, 85.97, 139}, {61.22, 87.32, 139}, {61.94, 86.7, 139}, {64.52, 84.96, 139}, {65.45, 76.98, 139}, {68.81, 79.96, 139}, {71.94, 83.68, 139}, {74.0, 83.99, 139}, {72.97, 54.86, 28}, {74.02, 52.87, 28}, {74.34, 55.84, 28}, {74.83, 42.23, 28}, {77.39, 58.56, 28}, {82.43, 68.53, 28}, {83.09, 64.73, 28}, {84.13, 69.06, 28}}
+ b["scrapedAt"] = 1773750248
+ end
+ b = MTH_DS_Beasts[8601]
+ if b then
+ b["displayId"] = 7896
+ b["health"] = 3990
+ b["dmgMin"] = 111.796
+ b["dmgMax"] = 140.34
+ b["armor"] = 3327
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{45.35, 64.89, 139}, {46.18, 65.78, 139}, {47.24, 63.81, 139}, {48.84, 58.65, 139}, {49.57, 65.51, 139}, {49.77, 60.82, 139}, {50.11, 54.28, 139}, {52.12, 56.33, 139}, {52.82, 63.3, 139}, {53.29, 50.32, 139}, {55.27, 53.15, 139}, {55.46, 51.02, 139}, {56.26, 62.14, 139}, {56.36, 55.09, 139}, {57.7, 58.92, 139}, {60.11, 54.9, 139}, {60.88, 61.02, 139}, {60.96, 57.1, 139}, {61.86, 59.97, 139}, {62.48, 62.99, 139}, {64.76, 64.93, 139}, {65.07, 69.11, 139}, {66.64, 59.97, 139}, {67.29, 62.3, 139}, {67.42, 65.78, 139}, {68.58, 71.55, 139}, {69.2, 62.06, 139}, {69.82, 56.45, 139}, {70.72, 54.82, 139}, {72.22, 72.79, 139}, {73.18, 55.44, 139}, {73.57, 61.37, 139}, {74.0, 59.7, 139}, {76.48, 60.2, 139}, {78.16, 72.21, 139}, {80.77, 70.59, 139}}
+ b["scrapedAt"] = 1773750250
+ end
+ b = MTH_DS_Beasts[8602]
+ if b then
+ b["displayId"] = 7897
+ b["health"] = 4007
+ b["dmgMin"] = 106.7
+ b["dmgMax"] = 135.3
+ b["armor"] = 3435
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{19.08, 23.13, 139}, {19.21, 36.38, 139}, {19.47, 28.05, 139}, {19.83, 35.84, 139}, {20.22, 22.97, 139}, {20.76, 20.11, 139}, {22.23, 37.15, 139}, {29.6, 41.84, 139}, {31.25, 37.66, 139}, {31.89, 43.39, 139}, {33.34, 41.61, 139}, {33.5, 39.44, 139}, {43.52, 43.0, 139}, {45.74, 39.94, 139}, {46.18, 36.53, 139}, {47.47, 28.16, 139}, {48.27, 35.53, 139}, {49.51, 25.07, 139}, {49.69, 27.2, 139}, {51.12, 27.7, 139}, {51.45, 24.91, 139}, {51.63, 38.7, 139}, {51.71, 44.4, 139}, {55.25, 20.77, 139}, {55.61, 32.89, 139}, {55.82, 42.77, 139}, {57.73, 20.92, 139}, {60.11, 47.46, 139}, {60.13, 29.79, 139}, {60.62, 34.21, 139}, {62.15, 48.77, 139}, {62.22, 38.2, 139}, {62.25, 29.48, 139}, {63.33, 26.07, 139}, {63.52, 34.29, 139}, {64.39, 28.16, 139}, {65.12, 44.01, 139}, {66.74, 29.64, 139}, {67.65, 50.87, 139}, {67.75, 33.63, 139}, {69.92, 39.05, 139}, {71.55, 43.35, 139}, {75.17, 32.0, 139}, {75.81, 33.78, 139}}
+ b["scrapedAt"] = 1773750251
+ end
+ b = MTH_DS_Beasts[8603]
+ if b then
+ b["displayId"] = 7898
+ b["health"] = 3841
+ b["dmgMin"] = 111.92
+ b["dmgMax"] = 139.016
+ b["armor"] = 3244
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{17.25, 65.16, 139}, {20.73, 69.19, 139}, {21.38, 71.86, 139}, {21.95, 79.38, 139}, {23.09, 72.91, 139}, {23.63, 79.88, 139}, {25.8, 70.2, 139}, {30.19, 69.66, 139}, {30.94, 78.02, 139}, {31.07, 85.46, 139}, {32.26, 63.54, 139}, {33.78, 74.46, 139}, {34.22, 83.14, 139}, {34.79, 70.55, 139}, {36.13, 82.71, 139}, {36.85, 69.08, 139}, {36.96, 74.27, 139}, {39.8, 81.82, 139}, {41.14, 65.28, 139}, {41.3, 70.39, 139}, {43.08, 68.03, 139}, {43.16, 83.56, 139}, {44.29, 71.86, 139}, {44.53, 91.0, 139}, {46.52, 79.65, 139}, {47.16, 73.69, 139}, {47.52, 66.21, 139}, {47.63, 61.52, 139}, {48.38, 60.32, 139}, {49.51, 66.05, 139}, {49.75, 79.34, 139}, {51.14, 53.85, 139}, {51.37, 78.57, 139}, {51.43, 62.92, 139}, {51.45, 56.33, 139}, {54.55, 79.54, 139}, {54.63, 78.18, 139}, {54.96, 49.7, 139}, {55.2, 59.39, 139}, {55.69, 53.31, 139}, {57.42, 80.85, 139}, {58.48, 55.01, 139}, {59.15, 61.44, 139}, {59.28, 58.27, 139}, {60.85, 54.24, 139}, {61.68, 86.28, 139}, {64.37, 85.15, 139}, {65.5, 64.77, 139}, {66.1, 71.36, 139}, {66.46, 57.14, 139}, {66.74, 61.37, 139}, {68.63, 65.55, 139}, {68.71, 71.09, 139}, {69.59, 59.08, 139}, {70.03, 74.31, 139}, {70.62, 80.43, 139}, {70.72, 62.88, 139}, {72.38, 54.51, 139}, {72.38, 76.4, 139}, {72.95, 71.79, 139}, {75.45, 73.92, 139}, {75.55, 58.85, 139}, {75.79, 67.49, 139}, {77.65, 63.69, 139}, {78.06, 72.52, 139}, {78.63, 69.97, 139}, {80.08, 68.84, 139}, {65.76, 26.29, 28}, {66.62, 22.91, 28}, {67.48, 26.54, 28}, {69.5, 37.14, 28}, {72.16, 54.48, 28}, {75.41, 52.38, 28}, {75.9, 53.64, 28}, {76.6, 56.67, 28}, {82.99, 65.85, 28}, {83.16, 71.15, 28}}
+ b["scrapedAt"] = 1773750252
+ end
+ b = MTH_DS_Beasts[8605]
+ if b then
+ b["displayId"] = 7900
+ b["health"] = 4376
+ b["dmgMin"] = 115.521
+ b["dmgMax"] = 142.36
+ b["armor"] = 3354
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{18.72, 28.94, 139}, {23.06, 39.01, 139}, {31.79, 39.9, 139}, {32.2, 42.23, 139}, {32.26, 45.17, 139}, {32.85, 44.13, 139}, {35.8, 39.63, 139}, {45.02, 41.26, 139}, {46.62, 39.67, 139}, {48.92, 39.59, 139}, {48.95, 27.85, 139}, {50.6, 44.75, 139}, {52.28, 41.57, 139}, {53.8, 38.7, 139}, {54.5, 33.32, 139}, {56.28, 38.86, 139}, {58.48, 48.5, 139}, {59.05, 32.77, 139}, {60.11, 26.5, 139}, {61.29, 23.55, 139}, {61.58, 32.39, 139}, {61.94, 34.09, 139}, {62.87, 44.63, 139}, {63.44, 37.62, 139}, {64.01, 32.58, 139}, {65.4, 27.82, 139}, {66.9, 31.54, 139}, {67.47, 44.75, 139}, {68.71, 34.09, 139}, {68.84, 26.73, 139}, {68.99, 35.95, 139}, {69.2, 41.69, 139}, {69.87, 48.97, 139}, {70.26, 46.53, 139}, {71.94, 44.32, 139}, {73.85, 39.55, 139}, {75.12, 33.16, 139}}
+ b["scrapedAt"] = 1773750253
+ end
+ b = MTH_DS_Beasts[8612]
+ if b then
+ b["displayId"] = 7906
+ b["health"] = 3045
+ b["dmgMin"] = 144.1
+ b["dmgMax"] = 151.8
+ b["armor"] = 20
+ b["factionId"] = 35
+ b["reactA"] = "friendly"
+ b["reactH"] = "friendly"
+ b["scrapedAt"] = 1773750255
+ end
+ b = MTH_DS_Beasts[8660]
+ if b then
+ b["displayId"] = 10807
+ b["npcClass"] = "Rare"
+ b["health"] = 3125
+ b["dmgMin"] = 325.058
+ b["dmgMax"] = 418.99
+ b["armor"] = 2888
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{17.87, 65.62, 16}}
+ b["scrapedAt"] = 1773750256
+ end
+ b = MTH_DS_Beasts[8759]
+ if b then
+ b["displayId"] = 8013
+ b["health"] = 2802
+ b["dmgMin"] = 97.6408
+ b["dmgMax"] = 122.36
+ b["armor"] = 2780
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{12.66, 75.32, 16}, {17.85, 59.73, 16}, {18.44, 51.36, 16}, {18.63, 54.26, 16}, {18.81, 58.76, 16}, {19.5, 66.59, 16}, {19.72, 70.91, 16}, {19.76, 50.92, 16}, {20.51, 54.2, 16}, {20.51, 56.54, 16}, {20.67, 49.08, 16}, {20.69, 68.49, 16}, {21.47, 57.57, 16}, {22.09, 64.17, 16}, {22.38, 54.47, 16}, {22.87, 61.48, 16}, {22.97, 46.81, 16}, {99.63, 93.4, 361}}
+ b["scrapedAt"] = 1773750257
+ end
+ b = MTH_DS_Beasts[8760]
+ if b then
+ b["displayId"] = 2161
+ b["health"] = 3241
+ b["dmgMin"] = 105.057
+ b["dmgMax"] = 131.012
+ b["armor"] = 2972
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{13.72, 82.12, 16}, {20.33, 75.64, 16}, {25.85, 81.5, 16}, {33.82, 79.01, 16}, {34.02, 81.17, 16}}
+ b["scrapedAt"] = 1773750259
+ end
+ b = MTH_DS_Beasts[8761]
+ if b then
+ b["displayId"] = 10957
+ b["health"] = 3809
+ b["dmgMin"] = 110
+ b["dmgMax"] = 137.192
+ b["armor"] = 3136
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{35.14, 65.91, 16}, {36.6, 69.31, 16}, {36.94, 67.01, 16}, {37.33, 70.7, 16}, {37.72, 71.24, 16}, {40.25, 71.71, 16}, {40.58, 69.96, 16}, {42.3, 70.94, 16}, {43.13, 71.65, 16}, {43.92, 78.78, 16}, {45.47, 80.76, 16}, {45.51, 76.74, 16}, {46.11, 83.39, 16}, {46.16, 18.59, 16}, {46.7, 74.9, 16}, {46.8, 84.4, 16}, {47.51, 26.43, 16}, {47.54, 85.88, 16}, {48.04, 74.73, 16}, {48.12, 80.7, 16}, {48.47, 20.63, 16}, {48.69, 26.25, 16}, {49.0, 24.95, 16}, {49.32, 78.84, 16}, {49.34, 75.67, 16}, {49.36, 27.17, 16}, {49.56, 80.76, 16}, {50.31, 30.66, 16}, {50.68, 82.59, 16}, {50.74, 25.66, 16}, {50.76, 75.64, 16}, {50.86, 80.55, 16}, {50.98, 31.55, 16}, {51.0, 78.6, 16}, {51.04, 27.79, 16}, {51.94, 82.59, 16}, {52.1, 33.03, 16}, {52.1, 35.42, 16}, {52.3, 14.39, 16}, {52.79, 24.36, 16}, {52.85, 30.93, 16}, {53.4, 80.79, 16}, {53.6, 15.01, 16}, {54.55, 78.75, 16}, {54.59, 84.57, 16}, {54.72, 80.58, 16}, {55.24, 16.94, 16}, {55.95, 84.34, 16}, {56.0, 86.41, 16}, {56.06, 24.03, 16}, {56.52, 18.45, 16}, {56.6, 21.55, 16}, {57.21, 86.47, 16}, {57.25, 84.84, 16}, {57.27, 88.57, 16}, {57.6, 21.43, 16}, {58.45, 17.32, 16}, {58.49, 76.83, 16}, {58.51, 19.45, 16}, {58.57, 82.33, 16}, {58.63, 84.34, 16}, {59.99, 80.43, 16}, {61.19, 15.69, 16}, {61.27, 13.71, 16}, {61.82, 20.66, 16}, {61.86, 18.3, 16}, {62.59, 17.56, 16}, {63.3, 16.29, 16}, {64.43, 24.27, 16}, {64.58, 22.53, 16}, {66.42, 27.44, 16}, {66.46, 23.56, 16}, {68.35, 26.34, 16}, {68.41, 15.25, 16}, {70.5, 29.33, 16}, {70.99, 30.27, 16}, {72.93, 31.25, 16}, {73.04, 22.2, 16}, {73.16, 33.32, 16}, {75.65, 22.56, 16}, {76.26, 28.35, 16}, {78.29, 25.31, 16}, {79.63, 25.45, 16}, {81.03, 27.26, 16}, {81.15, 18.59, 16}, {82.98, 24.15, 16}}
+ b["scrapedAt"] = 1773750260
+ end
+ b = MTH_DS_Beasts[8762]
+ if b then
+ b["displayId"] = 8014
+ b["health"] = 3016
+ b["dmgMin"] = 100.113
+ b["dmgMax"] = 124.832
+ b["armor"] = 2862
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{24.95, 48.23, 16}, {25.64, 47.99, 16}, {29.68, 45.8, 16}, {30.37, 48.35, 16}, {32.32, 48.64, 16}, {36.95, 42.02, 16}, {38.49, 41.13, 16}, {38.73, 37.34, 16}, {40.29, 39.32, 16}, {40.39, 33.97, 16}, {40.76, 35.72, 16}, {41.17, 42.76, 16}, {41.33, 28.94, 16}, {45.08, 35.92, 16}, {46.11, 31.25, 16}, {47.01, 33.56, 16}}
+ b["scrapedAt"] = 1773750261
+ end
+ b = MTH_DS_Beasts[8763]
+ if b then
+ b["displayId"] = 12682
+ b["health"] = 2592
+ b["dmgMin"] = 97.6408
+ b["dmgMax"] = 121.124
+ b["armor"] = 2411
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{20.03, 79.46, 16}, {25.04, 80.73, 16}, {29.28, 80.61, 16}, {32.16, 81.79, 16}, {34.45, 67.04, 16}, {34.53, 68.43, 16}, {35.46, 82.15, 16}, {36.6, 83.33, 16}, {36.94, 68.63, 16}, {37.57, 67.75, 16}, {39.99, 65.88, 16}, {40.68, 68.46, 16}}
+ b["scrapedAt"] = 1773750262
+ end
+ b = MTH_DS_Beasts[8764]
+ if b then
+ b["displayId"] = 4269
+ b["health"] = 3048
+ b["dmgMin"] = 105.057
+ b["dmgMax"] = 129.776
+ b["armor"] = 2544
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{64.45, 26.08, 16}, {65.71, 22.38, 16}, {68.63, 23.95, 16}, {71.09, 26.76, 16}, {73.56, 28.5, 16}, {74.38, 16.82, 16}, {74.5, 33.41, 16}, {78.25, 27.05, 16}, {82.29, 16.85, 16}}
+ b["scrapedAt"] = 1773750263
+ end
+ b = MTH_DS_Beasts[8925]
+ if b then
+ b["displayId"] = 8182
+ b["npcClass"] = "Elite"
+ b["health"] = 4928
+ b["dmgMin"] = 170.563
+ b["dmgMax"] = 203.933
+ b["armor"] = 1500
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750264
+ end
+ b = MTH_DS_Beasts[8926]
+ if b then
+ b["displayId"] = 7347
+ b["npcClass"] = "Elite"
+ b["health"] = 8214
+ b["dmgMin"] = 210.113
+ b["dmgMax"] = 252.135
+ b["armor"] = 1500
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750265
+ end
+ b = MTH_DS_Beasts[8927]
+ if b then
+ b["displayId"] = 1955
+ b["npcClass"] = "Elite"
+ b["health"] = 2738
+ b["dmgMin"] = 210.113
+ b["dmgMax"] = 252.135
+ b["armor"] = 1500
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750266
+ end
+ b = MTH_DS_Beasts[8928]
+ if b then
+ b["displayId"] = 8184
+ b["npcClass"] = "Elite"
+ b["health"] = 6843
+ b["dmgMin"] = 158.203
+ b["dmgMax"] = 189.102
+ b["armor"] = 1500
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750267
+ end
+ b = MTH_DS_Beasts[8932]
+ if b then
+ b["displayId"] = 7470
+ b["npcClass"] = "Elite"
+ b["health"] = 2738
+ b["dmgMin"] = 158.203
+ b["dmgMax"] = 189.102
+ b["armor"] = 2000
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750268
+ end
+ b = MTH_DS_Beasts[8933]
+ if b then
+ b["displayId"] = 8014
+ b["npcClass"] = "Elite"
+ b["health"] = 6843
+ b["dmgMin"] = 223.709
+ b["dmgMax"] = 268.203
+ b["armor"] = 1500
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750269
+ end
+ b = MTH_DS_Beasts[8956]
+ if b then
+ b["displayId"] = 9276
+ b["health"] = 3620
+ b["dmgMin"] = 100.113
+ b["dmgMax"] = 124.832
+ b["armor"] = 1898
+ b["factionId"] = 44
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{37.39, 71.96, 361}, {39.72, 70.1, 361}, {41.46, 78.71, 361}, {41.54, 75.27, 361}, {41.61, 70.08, 361}, {43.77, 82.83, 361}, {45.06, 84.87, 361}, {45.54, 82.05, 361}, {45.56, 87.56, 361}, {45.72, 85.29, 361}, {46.38, 77.17, 361}, {46.64, 72.5, 361}, {46.76, 74.2, 361}, {47.91, 74.57, 361}, {48.43, 78.79, 361}, {48.46, 86.41, 361}, {48.53, 76.81, 361}, {49.06, 79.7, 361}, {49.63, 84.71, 361}, {55.46, 83.17, 361}, {56.22, 83.72, 361}, {57.94, 86.7, 361}, {57.36, 25.55, 331}}
+ b["scrapedAt"] = 1773750271
+ end
+ b = MTH_DS_Beasts[8957]
+ if b then
+ b["displayId"] = 9277
+ b["health"] = 4390
+ b["dmgMin"] = 107.529
+ b["dmgMax"] = 134.719
+ b["armor"] = 2042
+ b["factionId"] = 44
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{49.61, 12.17, 361}, {49.92, 13.16, 361}, {50.88, 12.74, 361}, {50.93, 12.24, 361}, {51.32, 15.43, 361}, {52.08, 16.1, 361}, {53.44, 28.08, 361}, {53.94, 15.37, 361}, {54.43, 28.16, 361}, {55.09, 24.11, 361}, {55.37, 10.81, 361}, {55.96, 9.896, 361}, {56.05, 22.18, 361}, {56.12, 11.67, 361}, {56.24, 6.661, 361}, {56.38, 23.98, 361}, {56.67, 26.51, 361}, {57.59, 17.8, 361}, {60.19, 14.85, 361}, {60.6, 17.1, 361}, {61.92, 13.55, 361}, {62.43, 16.13, 361}, {62.99, 19.73, 361}, {63.59, 13.55, 361}, {64.59, 19.7, 361}}
+ b["scrapedAt"] = 1773750272
+ end
+ b = MTH_DS_Beasts[8958]
+ if b then
+ b["displayId"] = 1083
+ b["health"] = 3889
+ b["dmgMin"] = 105.057
+ b["dmgMax"] = 129.776
+ b["armor"] = 1971
+ b["factionId"] = 44
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{37.68, 45.01, 361}, {37.87, 43.26, 361}, {38.13, 56.02, 361}, {38.2, 41.9, 361}, {38.78, 44.28, 361}, {39.28, 30.97, 361}, {39.63, 51.63, 361}, {39.77, 30.77, 361}, {39.98, 32.88, 361}, {41.18, 23.57, 361}, {41.65, 24.53, 361}, {41.96, 58.57, 361}, {42.29, 62.54, 361}, {43.82, 67.57, 361}, {44.1, 63.4, 361}, {44.19, 65.3, 361}, {44.46, 18.03, 361}, {46.24, 15.61, 361}, {46.78, 19.65, 361}, {49.07, 35.96, 361}, {49.68, 16.29, 361}}
+ b["scrapedAt"] = 1773750273
+ end
+ b = MTH_DS_Beasts[8959]
+ if b then
+ b["displayId"] = 4124
+ b["health"] = 3016
+ b["dmgMin"] = 100.113
+ b["dmgMax"] = 124.832
+ b["armor"] = 2888
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{37.3, 73.57, 361}, {41.52, 81.71, 361}, {41.98, 81.82, 361}, {42.01, 76.18, 361}, {43.32, 80.43, 361}, {44.55, 80.54, 361}, {46.38, 78.56, 361}, {47.35, 77.04, 361}, {47.42, 80.49, 361}, {48.03, 79.57, 361}, {48.66, 82.1, 361}, {49.07, 83.2, 361}, {49.72, 80.23, 361}, {50.29, 80.15, 361}, {51.19, 86.17, 361}, {51.4, 80.64, 361}, {51.51, 85.63, 361}, {52.53, 88.99, 361}, {52.57, 87.32, 361}, {53.58, 82.83, 361}, {53.61, 83.28, 361}, {53.77, 84.14, 361}, {55.02, 85.78, 361}, {55.06, 27.32, 331}, {55.94, 24.97, 331}, {57.16, 27.55, 331}}
+ b["scrapedAt"] = 1773750275
+ end
+ b = MTH_DS_Beasts[8960]
+ if b then
+ b["displayId"] = 9278
+ b["health"] = 3241
+ b["dmgMin"] = 105.057
+ b["dmgMax"] = 129.776
+ b["armor"] = 2999
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{36.99, 39.35, 361}, {38.01, 54.43, 361}, {38.03, 52.76, 361}, {38.17, 50.8, 361}, {38.26, 47.12, 361}, {38.27, 39.74, 361}, {38.76, 46.0, 361}, {40.39, 25.31, 361}, {41.19, 33.56, 361}, {41.33, 33.43, 361}, {42.39, 57.71, 361}, {42.9, 24.14, 361}, {43.33, 22.18, 361}, {44.39, 70.21, 361}, {44.5, 68.36, 361}, {45.0, 24.01, 361}, {45.46, 18.53, 361}, {45.49, 68.2, 361}, {45.7, 70.05, 361}, {47.65, 15.97, 361}, {49.59, 33.63, 361}, {50.27, 15.37, 361}, {50.27, 32.62, 361}, {51.89, 31.86, 361}, {51.96, 29.85, 361}, {52.24, 30.95, 361}, {52.29, 30.61, 361}}
+ b["scrapedAt"] = 1773750276
+ end
+ b = MTH_DS_Beasts[8961]
+ if b then
+ b["displayId"] = 9280
+ b["health"] = 3682
+ b["dmgMin"] = 107.529
+ b["dmgMax"] = 134.719
+ b["armor"] = 3108
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{52.72, 27.5, 361}, {53.8, 13.52, 361}, {53.8, 27.74, 361}, {55.54, 26.96, 361}, {56.13, 8.252, 361}, {56.52, 21.24, 361}, {56.6, 19.47, 361}, {56.72, 12.92, 361}, {57.26, 18.63, 361}, {58.26, 16.89, 361}, {61.98, 19.03, 361}, {64.78, 20.41, 361}}
+ b["scrapedAt"] = 1773750277
+ end
+ b = MTH_DS_Beasts[9032]
+ if b then
+ b["displayId"] = 8271
+ b["npcClass"] = "Elite"
+ b["health"] = 34327
+ b["dmgMin"] = 461.575
+ b["dmgMax"] = 595.958
+ b["armor"] = 2000
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750279
+ end
+ b = MTH_DS_Beasts[9162]
+ if b then
+ b["displayId"] = 8510
+ b["health"] = 3241
+ b["dmgMin"] = 105.057
+ b["dmgMax"] = 129.776
+ b["armor"] = 2972
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{58.06, 33.86, 490}, {60.68, 38.93, 490}, {62.71, 35.85, 490}, {65.41, 35.28, 490}, {66.12, 30.42, 490}, {69.01, 26.36, 490}, {70.44, 20.57, 490}, {72.44, 31.59, 490}}
+ b["scrapedAt"] = 1773750280
+ end
+ b = MTH_DS_Beasts[9163]
+ if b then
+ b["displayId"] = 8511
+ b["health"] = 3682
+ b["dmgMin"] = 107.529
+ b["dmgMax"] = 134.719
+ b["armor"] = 3080
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{43.01, 65.2, 490}, {43.23, 61.43, 490}, {43.98, 72.7, 490}, {45.2, 69.42, 490}, {46.17, 24.7, 490}, {46.5, 27.95, 490}, {46.71, 69.91, 490}, {47.04, 63.82, 490}, {47.04, 67.03, 490}, {48.85, 60.38, 490}, {49.44, 66.66, 490}, {49.9, 60.05, 490}, {50.77, 19.88, 490}, {50.77, 71.16, 490}, {50.98, 69.78, 490}, {51.28, 60.18, 490}, {52.14, 66.26, 490}, {52.33, 58.96, 490}, {52.77, 31.8, 490}, {54.28, 63.86, 490}, {54.52, 28.43, 490}, {56.25, 72.5, 490}, {56.41, 65.08, 490}, {57.06, 70.55, 490}, {57.2, 80.36, 490}, {57.66, 51.01, 490}, {57.74, 53.93, 490}, {58.25, 72.5, 490}, {58.31, 46.27, 490}, {58.55, 56.93, 490}, {58.77, 63.05, 490}, {59.79, 51.42, 490}, {60.71, 60.38, 490}}
+ b["scrapedAt"] = 1773750281
+ end
+ b = MTH_DS_Beasts[9164]
+ if b then
+ b["displayId"] = 8512
+ b["health"] = 3841
+ b["dmgMin"] = 111.92
+ b["dmgMax"] = 139.016
+ b["armor"] = 3244
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{24.5, 54.14, 490}, {26.55, 58.92, 490}, {26.95, 60.18, 490}, {27.47, 66.05, 490}, {28.36, 44.0, 490}, {28.44, 56.04, 490}, {29.2, 73.39, 490}, {29.28, 54.82, 490}, {29.31, 45.05, 490}, {30.01, 76.03, 490}, {30.06, 38.45, 490}, {30.87, 68.24, 490}, {31.14, 62.89, 490}, {31.55, 78.01, 490}, {32.23, 38.41, 490}, {33.01, 68.65, 490}, {33.6, 30.01, 490}, {33.79, 46.96, 490}, {34.12, 64.39, 490}, {34.79, 76.8, 490}, {34.85, 69.05, 490}, {35.6, 61.11, 490}, {37.28, 43.84, 490}, {37.41, 38.61, 490}, {37.93, 71.24, 490}, {38.25, 23.49, 490}, {38.87, 66.95, 490}, {38.95, 76.03, 490}, {39.17, 61.43, 490}, {39.36, 83.53, 490}, {39.95, 34.31, 490}, {40.01, 56.12, 490}, {40.14, 81.14, 490}, {40.58, 50.16, 490}, {40.63, 67.23, 490}, {40.87, 41.36, 490}, {40.93, 35.65, 490}, {42.14, 69.09, 490}, {42.47, 57.3, 490}, {42.47, 73.51, 490}, {42.79, 46.72, 490}}
+ b["scrapedAt"] = 1773750282
+ end
+ b = MTH_DS_Beasts[9165]
+ if b then
+ b["displayId"] = 8410
+ b["health"] = 3095
+ b["dmgMin"] = 77.8655
+ b["dmgMax"] = 98.2588
+ b["armor"] = 2944
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{57.66, 35.28, 490}, {66.06, 34.47, 490}, {68.23, 21.3, 490}, {70.9, 22.31, 490}, {77.17, 59.69, 490}, {77.31, 39.95, 490}, {78.09, 40.96, 490}, {31.67, 22.59, 440}, {31.74, 34.98, 440}, {31.9, 33.65, 440}, {32.39, 34.17, 440}}
+ b["scrapedAt"] = 1773750283
+ end
+ b = MTH_DS_Beasts[9166]
+ if b then
+ b["displayId"] = 8411
+ b["health"] = 3559
+ b["dmgMin"] = 108.764
+ b["dmgMax"] = 135.956
+ b["armor"] = 3054
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{43.6, 92.65, 490}, {43.9, 87.09, 490}, {44.09, 66.22, 490}, {44.47, 88.64, 490}, {50.12, 10.15, 490}, {50.12, 60.95, 490}, {50.14, 11.49, 490}, {50.6, 87.34, 490}, {50.63, 90.14, 490}, {52.23, 69.78, 490}, {53.47, 62.89, 490}, {56.25, 11.65, 490}, {56.28, 88.47, 490}, {56.93, 12.42, 490}, {57.25, 10.23, 490}, {57.33, 7.351, 490}, {57.58, 87.34, 490}, {57.98, 91.35, 490}}
+ b["scrapedAt"] = 1773750284
+ end
+ b = MTH_DS_Beasts[9167]
+ if b then
+ b["displayId"] = 8412
+ b["health"] = 3665
+ b["dmgMin"] = 107.039
+ b["dmgMax"] = 135.583
+ b["armor"] = 3162
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{20.2, 40.31, 490}, {21.01, 58.64, 490}, {21.04, 38.45, 490}, {21.09, 61.31, 490}, {23.14, 50.08, 490}, {23.71, 39.86, 490}, {23.74, 59.89, 490}, {25.09, 39.22, 490}, {25.14, 60.74, 490}, {25.66, 42.74, 490}, {26.44, 64.47, 490}, {26.6, 38.65, 490}, {27.04, 55.03, 490}, {27.41, 57.66, 490}, {27.47, 45.18, 490}, {28.33, 30.3, 490}, {29.33, 31.76, 490}, {31.2, 45.18, 490}, {31.2, 70.88, 490}, {31.79, 67.47, 490}, {32.09, 43.88, 490}, {32.85, 78.99, 490}, {32.98, 37.19, 490}, {34.63, 66.09, 490}, {35.25, 45.5, 490}, {35.44, 33.01, 490}, {36.23, 76.59, 490}, {36.5, 42.74, 490}, {36.52, 71.12, 490}, {36.55, 62.32, 490}, {36.58, 27.91, 490}, {36.74, 36.74, 490}, {37.98, 37.07, 490}, {38.09, 28.39, 490}, {38.09, 45.78, 490}, {38.41, 51.26, 490}, {39.12, 19.43, 490}, {39.63, 76.39, 490}, {41.12, 51.95, 490}, {41.63, 37.31, 490}, {42.14, 40.07, 490}, {42.44, 31.64, 490}}
+ b["scrapedAt"] = 1773750285
+ end
+ b = MTH_DS_Beasts[9274]
+ if b then
+ b["displayId"] = 9342
+ b["health"] = 2439
+ b["dmgMin"] = 79.2
+ b["dmgMax"] = 102.3
+ b["armor"] = 4059
+ b["factionId"] = 113
+ b["reactA"] = "friendly"
+ b["reactH"] = "friendly"
+ b["coordsTDB"] = {{43.63, 7.149, 490}}
+ b["scrapedAt"] = 1773750286
+ end
+ b = MTH_DS_Beasts[9297]
+ if b then
+ b["displayId"] = 2157
+ b["health"] = 9151
+ b["dmgMin"] = 166.112
+ b["dmgMax"] = 200.277
+ b["armor"] = 5900
+ b["factionId"] = 104
+ b["reactA"] = "hostile"
+ b["reactH"] = "friendly"
+ b["scrapedAt"] = 1773750288
+ end
+ b = MTH_DS_Beasts[9318]
+ if b then
+ b["displayId"] = 8509
+ b["health"] = 3016
+ b["dmgMin"] = 101.349
+ b["dmgMax"] = 128.539
+ b["armor"] = 3390
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{43.39, 28.1, 51}, {45.14, 21.45, 51}, {46.26, 20.1, 51}, {49.98, 38.86, 51}, {50.33, 25.88, 51}, {51.1, 33.55, 51}, {51.14, 29.18, 51}, {51.72, 37.31, 51}}
+ b["scrapedAt"] = 1773750289
+ end
+ b = MTH_DS_Beasts[9416]
+ if b then
+ b["displayId"] = 11420
+ b["health"] = 3792
+ b["dmgMin"] = 280.679
+ b["dmgMax"] = 348.471
+ b["armor"] = 3216
+ b["factionId"] = 40
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750291
+ end
+ b = MTH_DS_Beasts[9521]
+ if b then
+ b["displayId"] = 9074
+ b["npcClass"] = "Elite"
+ b["health"] = 8626
+ b["dmgMin"] = 341
+ b["dmgMax"] = 440
+ b["armor"] = 3271
+ b["factionId"] = 71
+ b["reactA"] = "hostile"
+ b["reactH"] = "friendly"
+ b["scrapedAt"] = 1773750292
+ end
+ b = MTH_DS_Beasts[9526]
+ if b then
+ b["displayId"] = 1149
+ b["health"] = 8626
+ b["dmgMin"] = 338.8
+ b["dmgMax"] = 383.9
+ b["armor"] = 5900
+ b["factionId"] = 55
+ b["reactA"] = "friendly"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750293
+ end
+ b = MTH_DS_Beasts[9527]
+ if b then
+ b["displayId"] = 479
+ b["health"] = 8626
+ b["dmgMin"] = 155.1
+ b["dmgMax"] = 187
+ b["armor"] = 3271
+ b["factionId"] = 80
+ b["reactA"] = "friendly"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750294
+ end
+ b = MTH_DS_Beasts[9622]
+ if b then
+ b["displayId"] = 8844
+ b["health"] = 3966
+ b["dmgMin"] = 111.92
+ b["dmgMax"] = 137.838
+ b["armor"] = 3271
+ b["factionId"] = 72
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{68.12, 12.54, 490}}
+ b["scrapedAt"] = 1773750296
+ end
+ b = MTH_DS_Beasts[9683]
+ if b then
+ b["displayId"] = 5242
+ b["health"] = 3241
+ b["dmgMin"] = 148.315
+ b["dmgMax"] = 177.978
+ b["factionId"] = 48
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{66.31, 63.91, 490}}
+ b["scrapedAt"] = 1773750297
+ end
+ b = MTH_DS_Beasts[9684]
+ if b then
+ b["displayId"] = 11318
+ b["health"] = 4252
+ b["dmgMin"] = 167.694
+ b["dmgMax"] = 202.184
+ b["factionId"] = 48
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750299
+ end
+ b = MTH_DS_Beasts[9690]
+ if b then
+ b["displayId"] = 9371
+ b["health"] = 3682
+ b["dmgMin"] = 126.068
+ b["dmgMax"] = 156.967
+ b["armor"] = 3108
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{79.28, 30.57, 46}, {84.06, 60.59, 46}, {86.66, 55.52, 46}, {89.9, 51.68, 46}, {90.58, 39.94, 46}, {91.85, 59.31, 46}}
+ b["scrapedAt"] = 1773750300
+ end
+ b = MTH_DS_Beasts[9691]
+ if b then
+ b["displayId"] = 8970
+ b["health"] = 3809
+ b["dmgMin"] = 110
+ b["dmgMax"] = 137.192
+ b["armor"] = 3136
+ b["factionId"] = 413
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{84.71, 22.68, 46}, {86.21, 29.96, 46}, {86.83, 59.67, 46}, {88.84, 45.43, 46}, {89.05, 31.29, 46}, {89.7, 55.47, 46}, {90.86, 32.88, 46}, {91.91, 44.25, 46}, {92.53, 36.97, 46}}
+ b["scrapedAt"] = 1773750301
+ end
+ b = MTH_DS_Beasts[9694]
+ if b then
+ b["displayId"] = 11420
+ b["health"] = 3792
+ b["dmgMin"] = 123.689
+ b["dmgMax"] = 154.612
+ b["armor"] = 3216
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{58.39, 63.92, 46}, {61.5, 59.82, 46}, {63.03, 54.29, 46}, {68.15, 60.95, 46}, {72.42, 46.86, 46}}
+ b["scrapedAt"] = 1773750302
+ end
+ b = MTH_DS_Beasts[9695]
+ if b then
+ b["displayId"] = 10984
+ b["health"] = 3841
+ b["dmgMin"] = 111.92
+ b["dmgMax"] = 139.016
+ b["armor"] = 3244
+ b["factionId"] = 413
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{48.05, 29.14, 46}, {55.15, 65.81, 46}, {57.19, 26.63, 46}, {62.21, 57.62, 46}, {62.52, 55.57, 46}, {64.94, 60.9, 46}, {70.51, 27.96, 46}, {70.95, 45.17, 46}, {73.27, 64.79, 46}, {75.94, 26.93, 46}}
+ b["scrapedAt"] = 1773750303
+ end
+ b = MTH_DS_Beasts[9696]
+ if b then
+ b["displayId"] = 9562
+ b["health"] = 3242
+ b["dmgMin"] = 238.043
+ b["dmgMax"] = 295.22
+ b["armor"] = 3380
+ b["factionId"] = 40
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750306
+ end
+ b = MTH_DS_Beasts[9697]
+ if b then
+ b["displayId"] = 9370
+ b["health"] = 4116
+ b["dmgMin"] = 137.961
+ b["dmgMax"] = 171.262
+ b["armor"] = 3327
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{23.64, 59.46, 46}, {24.46, 69.2, 46}, {26.47, 62.74, 46}}
+ b["scrapedAt"] = 1773750307
+ end
+ b = MTH_DS_Beasts[9698]
+ if b then
+ b["displayId"] = 10985
+ b["health"] = 4376
+ b["dmgMin"] = 115.521
+ b["dmgMax"] = 142.36
+ b["armor"] = 3354
+ b["factionId"] = 413
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{26.67, 60.38, 46}, {27.32, 55.31, 46}, {27.8, 57.82, 46}, {32.68, 55.26, 46}}
+ b["scrapedAt"] = 1773750308
+ end
+ b = MTH_DS_Beasts[9701]
+ if b then
+ b["displayId"] = 2864
+ b["health"] = 4263
+ b["dmgMin"] = 165
+ b["dmgMax"] = 196.9
+ b["armor"] = 3435
+ b["factionId"] = 413
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750309
+ end
+ b = MTH_DS_Beasts[10077]
+ if b then
+ b["displayId"] = 9562
+ b["npcClass"] = "Rare"
+ b["health"] = 3940
+ b["dmgMin"] = 558.654
+ b["dmgMax"] = 721.8
+ b["armor"] = 3163
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{86.62, 49.58, 46}}
+ b["scrapedAt"] = 1773750311
+ end
+ b = MTH_DS_Beasts[10177]
+ if b then
+ b["displayId"] = 9469
+ b["health"] = 4263
+ b["dmgMin"] = 169.4
+ b["dmgMax"] = 202.4
+ b["armor"] = 3435
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750312
+ end
+ b = MTH_DS_Beasts[10200]
+ if b then
+ b["displayId"] = 10054
+ b["npcClass"] = "Rare-Elite"
+ b["health"] = 4512
+ b["dmgMin"] = 364.067
+ b["dmgMax"] = 469.086
+ b["armor"] = 3380
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{51.13, 10.68, 618}}
+ b["scrapedAt"] = 1773750313
+ end
+ b = MTH_DS_Beasts[10204]
+ if b then
+ b["displayId"] = 9492
+ b["npcClass"] = "Elite"
+ b["health"] = 161850
+ b["dmgMin"] = 755
+ b["dmgMax"] = 1002
+ b["armor"] = 3677
+ b["factionId"] = 83
+ b["reactA"] = "hostile"
+ b["reactH"] = "friendly"
+ b["coordsTDB"] = {{53.46, 6.841, 405}}
+ b["scrapedAt"] = 1773750314
+ end
+ b = MTH_DS_Beasts[10220]
+ if b then
+ b["displayId"] = 9567
+ b["npcClass"] = "Elite"
+ b["health"] = 30688
+ b["dmgMin"] = 424.8
+ b["dmgMax"] = 547.2
+ b["armor"] = 3489
+ b["factionId"] = 40
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750315
+ end
+ b = MTH_DS_Beasts[10221]
+ if b then
+ b["displayId"] = 9563
+ b["health"] = 3809
+ b["dmgMin"] = 110
+ b["dmgMax"] = 137.192
+ b["armor"] = 3163
+ b["factionId"] = 40
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750317
+ end
+ b = MTH_DS_Beasts[10268]
+ if b then
+ b["displayId"] = 9564
+ b["npcClass"] = "Elite"
+ b["health"] = 42811
+ b["dmgMin"] = 707.2
+ b["dmgMax"] = 913.9
+ b["armor"] = 3791
+ b["factionId"] = 40
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750318
+ end
+ b = MTH_DS_Beasts[10356]
+ if b then
+ b["displayId"] = 7892
+ b["npcClass"] = "Rare"
+ b["health"] = 231
+ b["dmgMin"] = 24.5045
+ b["dmgMax"] = 40.8408
+ b["armor"] = 512
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{45.57, 47.55, 85}}
+ b["scrapedAt"] = 1773750319
+ end
+ b = MTH_DS_Beasts[10357]
+ if b then
+ b["displayId"] = 9750
+ b["npcClass"] = "Rare"
+ b["health"] = 323
+ b["dmgMin"] = 22.1707
+ b["dmgMax"] = 26.8382
+ b["armor"] = 538
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{42.87, 67.57, 85}}
+ b["scrapedAt"] = 1773751764
+ end
+ b = MTH_DS_Beasts[10359]
+ if b then
+ b["displayId"] = 418
+ b["npcClass"] = "Rare"
+ b["health"] = 406
+ b["dmgMin"] = 84.473
+ b["dmgMax"] = 107.078
+ b["armor"] = 20
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{88.15, 51.47, 85}}
+ b["scrapedAt"] = 1773750320
+ end
+ b = MTH_DS_Beasts[10374]
+ if b then
+ b["displayId"] = 9755
+ b["npcClass"] = "Elite"
+ b["health"] = 9187
+ b["dmgMin"] = 389.4
+ b["dmgMax"] = 501.6
+ b["armor"] = 3408
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750321
+ end
+ b = MTH_DS_Beasts[10375]
+ if b then
+ b["displayId"] = 9756
+ b["health"] = 3050
+ b["dmgMin"] = 156.99
+ b["dmgMax"] = 193.86
+ b["armor"] = 3299
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750322
+ end
+ b = MTH_DS_Beasts[10376]
+ if b then
+ b["displayId"] = 9755
+ b["npcClass"] = "Rare-Elite"
+ b["health"] = 10072
+ b["dmgMin"] = 1130.8
+ b["dmgMax"] = 1460.8
+ b["armor"] = 3791
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750324
+ end
+ b = MTH_DS_Beasts[10430]
+ if b then
+ b["displayId"] = 10193
+ b["npcClass"] = "Boss"
+ b["health"] = 121902
+ b["dmgMin"] = 1298.35
+ b["dmgMax"] = 1703.15
+ b["armor"] = 4061
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750325
+ end
+ b = MTH_DS_Beasts[10577]
+ if b then
+ b["displayId"] = 10005
+ b["health"] = 157
+ b["dmgMin"] = 33
+ b["dmgMax"] = 36.3
+ b["armor"] = 20
+ b["factionId"] = 21
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750326
+ end
+ b = MTH_DS_Beasts[10596]
+ if b then
+ b["displayId"] = 9929
+ b["npcClass"] = "Elite"
+ b["health"] = 39883
+ b["dmgMin"] = 670.8
+ b["dmgMax"] = 864
+ b["armor"] = 3489
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750327
+ end
+ b = MTH_DS_Beasts[10619]
+ if b then
+ b["displayId"] = 9954
+ b["health"] = 5374
+ b["dmgMin"] = 273.148
+ b["dmgMax"] = 333.709
+ b["armor"] = 2999
+ b["factionId"] = 874
+ b["reactA"] = "friendly"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{49.93, 9.831, 618}}
+ b["scrapedAt"] = 1773750328
+ end
+ b = MTH_DS_Beasts[10644]
+ if b then
+ b["displayId"] = 165
+ b["npcClass"] = "Rare"
+ b["health"] = 682
+ b["dmgMin"] = 33.3709
+ b["dmgMax"] = 40.7867
+ b["armor"] = 922
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{20.93, 36.94, 331}}
+ b["scrapedAt"] = 1773751765
+ end
+ b = MTH_DS_Beasts[10717]
+ if b then
+ b["displayId"] = 10046
+ b["health"] = 3389
+ b["dmgMin"] = 108.52
+ b["dmgMax"] = 151.694
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750329
+ end
+ b = MTH_DS_Beasts[10737]
+ if b then
+ b["displayId"] = 10113
+ b["npcClass"] = "Elite"
+ b["health"] = 15107
+ b["dmgMin"] = 612.7
+ b["dmgMax"] = 790.9
+ b["armor"] = 3791
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750330
+ end
+ b = MTH_DS_Beasts[10741]
+ if b then
+ b["displayId"] = 10114
+ b["npcClass"] = "Elite"
+ b["health"] = 15107
+ b["dmgMin"] = 628.1
+ b["dmgMax"] = 810.7
+ b["armor"] = 1739
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750331
+ end
+ b = MTH_DS_Beasts[10806]
+ if b then
+ b["displayId"] = 10618
+ b["npcClass"] = "Elite"
+ b["health"] = 14172
+ b["dmgMin"] = 478.106
+ b["dmgMax"] = 616.068
+ b["armor"] = 2513
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{64.0, 24.15, 618}}
+ b["scrapedAt"] = 1773750333
+ end
+ b = MTH_DS_Beasts[10807]
+ if b then
+ b["displayId"] = 12683
+ b["npcClass"] = "Elite"
+ b["health"] = 12632
+ b["dmgMin"] = 397.1
+ b["dmgMax"] = 513.7
+ b["armor"] = 3435
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{62.54, 57.92, 618}}
+ b["scrapedAt"] = 1773750334
+ end
+ b = MTH_DS_Beasts[10882]
+ if b then
+ b["displayId"] = 10183
+ b["npcClass"] = "Elite"
+ b["health"] = 3044
+ b["dmgMin"] = 144.607
+ b["dmgMax"] = 186.63
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750335
+ end
+ b = MTH_DS_Beasts[10942]
+ if b then
+ b["displayId"] = 10244
+ b["npcClass"] = "Elite"
+ b["health"] = 323700
+ b["dmgMin"] = 1347
+ b["dmgMax"] = 1454
+ b["armor"] = 4391
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["scrapedAt"] = 1773750336
+ end
+ b = MTH_DS_Beasts[10979]
+ if b then
+ b["displayId"] = 2709
+ b["health"] = 3662
+ b["dmgMin"] = 74.1576
+ b["dmgMax"] = 91.461
+ b["armor"] = 2862
+ b["factionId"] = 89
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750337
+ end
+ b = MTH_DS_Beasts[10981]
+ if b then
+ b["displayId"] = 10278
+ b["health"] = 2687
+ b["dmgMin"] = 198.99
+ b["dmgMax"] = 238.54
+ b["armor"] = 2200
+ b["factionId"] = 1275
+ b["reactA"] = "hostile"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{45.15, 53.5, 2597}, {46.47, 55.48, 2597}, {46.71, 58.17, 2597}, {49.4, 68.9, 2597}, {49.96, 77.15, 2597}, {50.72, 74.1, 2597}, {52.04, 77.04, 2597}, {52.96, 68.76, 2597}, {53.43, 58.24, 2597}, {53.74, 75.52, 2597}, {54.24, 85.01, 2597}, {54.92, 81.15, 2597}, {55.18, 78.46, 2597}}
+ b["scrapedAt"] = 1773750338
+ end
+ b = MTH_DS_Beasts[10985]
+ if b then
+ b["displayId"] = 10278
+ b["health"] = 19492
+ b["dmgMin"] = 177.1
+ b["dmgMax"] = 212.3
+ b["factionId"] = 35
+ b["reactA"] = "friendly"
+ b["reactH"] = "friendly"
+ b["scrapedAt"] = 1773750339
+ end
+ b = MTH_DS_Beasts[10988]
+ if b then
+ b["displayId"] = 10283
+ b["health"] = 4532
+ b["dmgMin"] = 259.6
+ b["dmgMax"] = 312.4
+ b["armor"] = 3791
+ b["factionId"] = 35
+ b["reactA"] = "friendly"
+ b["reactH"] = "friendly"
+ b["scrapedAt"] = 1773750340
+ end
+ b = MTH_DS_Beasts[10989]
+ if b then
+ b["displayId"] = 13340
+ b["health"] = 12183
+ b["dmgMin"] = 177.1
+ b["dmgMax"] = 212.3
+ b["factionId"] = 35
+ b["reactA"] = "friendly"
+ b["reactH"] = "friendly"
+ b["scrapedAt"] = 1773750341
+ end
+ b = MTH_DS_Beasts[10990]
+ if b then
+ b["displayId"] = 13340
+ b["health"] = 3425
+ b["dmgMin"] = 198.99
+ b["dmgMax"] = 238.54
+ b["armor"] = 2200
+ b["factionId"] = 1274
+ b["reactA"] = "neutral"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{42.67, 22.46, 2597}, {42.96, 26.95, 2597}, {43.62, 20.48, 2597}, {44.56, 27.09, 2597}, {44.82, 25.75, 2597}, {46.14, 21.18, 2597}, {46.4, 26.78, 2597}, {46.57, 40.37, 2597}, {47.35, 23.52, 2597}, {47.63, 15.06, 2597}, {48.1, 13.57, 2597}, {49.09, 27.98, 2597}, {49.54, 22.49, 2597}, {49.63, 34.6, 2597}, {50.2, 24.65, 2597}, {51.05, 42.56, 2597}, {51.95, 30.88, 2597}, {51.99, 29.5, 2597}, {53.29, 19.77, 2597}, {53.98, 40.65, 2597}}
+ b["scrapedAt"] = 1773750342
+ end
+ b = MTH_DS_Beasts[11024]
+ if b then
+ b["displayId"] = 1030
+ b["health"] = 2939
+ b["dmgMin"] = 93.5
+ b["dmgMax"] = 114.4
+ b["armor"] = 2944
+ b["factionId"] = 35
+ b["reactA"] = "friendly"
+ b["reactH"] = "friendly"
+ b["coordsTDB"] = {{51.3, 82.0, 361}}
+ b["scrapedAt"] = 1773750343
+ end
+ b = MTH_DS_Beasts[11181]
+ if b then
+ b["displayId"] = 11452
+ b["health"] = 4007
+ b["dmgMin"] = 108.9
+ b["dmgMax"] = 139.7
+ b["armor"] = 2481
+ b["factionId"] = 80
+ b["reactA"] = "friendly"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{61.79, 23.67, 361}}
+ b["scrapedAt"] = 1773750345
+ end
+ b = MTH_DS_Beasts[11357]
+ if b then
+ b["displayId"] = 15275
+ b["npcClass"] = "Elite"
+ b["health"] = 16786
+ b["dmgMin"] = 1764.4
+ b["dmgMax"] = 2026.2
+ b["armor"] = 5721
+ b["factionId"] = 28
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750346
+ end
+ b = MTH_DS_Beasts[11359]
+ if b then
+ b["displayId"] = 7829
+ b["npcClass"] = "Elite"
+ b["health"] = 48418
+ b["dmgMin"] = 1397
+ b["dmgMax"] = 1852.4
+ b["armor"] = 4091
+ b["factionId"] = 28
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750347
+ end
+ b = MTH_DS_Beasts[11360]
+ if b then
+ b["displayId"] = 15151
+ b["health"] = 3357
+ b["dmgMin"] = 398.2
+ b["dmgMax"] = 424.6
+ b["armor"] = 3791
+ b["factionId"] = 28
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750349
+ end
+ b = MTH_DS_Beasts[11361]
+ if b then
+ b["displayId"] = 11031
+ b["npcClass"] = "Elite"
+ b["health"] = 10072
+ b["dmgMin"] = 1111
+ b["dmgMax"] = 1237.5
+ b["armor"] = 3791
+ b["factionId"] = 28
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750350
+ end
+ b = MTH_DS_Beasts[11365]
+ if b then
+ b["displayId"] = 633
+ b["npcClass"] = "Elite"
+ b["health"] = 23500
+ b["dmgMin"] = 1923.9
+ b["dmgMax"] = 2246.2
+ b["armor"] = 3791
+ b["factionId"] = 28
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750352
+ end
+ b = MTH_DS_Beasts[11368]
+ if b then
+ b["displayId"] = 14562
+ b["health"] = 5875
+ b["dmgMin"] = 143
+ b["dmgMax"] = 189.2
+ b["armor"] = 3791
+ b["factionId"] = 28
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750353
+ end
+ b = MTH_DS_Beasts[11370]
+ if b then
+ b["displayId"] = 963
+ b["npcClass"] = "Elite"
+ b["health"] = 34584
+ b["dmgMin"] = 1262.8
+ b["dmgMax"] = 1513.6
+ b["armor"] = 4091
+ b["factionId"] = 28
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750354
+ end
+ b = MTH_DS_Beasts[11371]
+ if b then
+ b["displayId"] = 15182
+ b["npcClass"] = "Elite"
+ b["health"] = 16786
+ b["dmgMin"] = 457.6
+ b["dmgMax"] = 606.1
+ b["armor"] = 3791
+ b["factionId"] = 28
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750355
+ end
+ b = MTH_DS_Beasts[11372]
+ if b then
+ b["displayId"] = 15150
+ b["npcClass"] = "Elite"
+ b["health"] = 16786
+ b["dmgMin"] = 479.6
+ b["dmgMax"] = 636.9
+ b["armor"] = 3791
+ b["factionId"] = 28
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750356
+ end
+ b = MTH_DS_Beasts[11373]
+ if b then
+ b["displayId"] = 14559
+ b["npcClass"] = "Elite"
+ b["health"] = 16786
+ b["dmgMin"] = 1167.1
+ b["dmgMax"] = 1324.4
+ b["armor"] = 3791
+ b["factionId"] = 28
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750357
+ end
+ b = MTH_DS_Beasts[11374]
+ if b then
+ b["displayId"] = 15101
+ b["npcClass"] = "Elite"
+ b["health"] = 10072
+ b["dmgMin"] = 273.9
+ b["dmgMax"] = 364.1
+ b["armor"] = 3791
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750358
+ end
+ b = MTH_DS_Beasts[11497]
+ if b then
+ b["displayId"] = 12683
+ b["npcClass"] = "Rare-Elite"
+ b["health"] = 80586
+ b["dmgMin"] = 628.1
+ b["dmgMax"] = 810.7
+ b["armor"] = 3491
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{62.51, 29.92, 357}}
+ b["scrapedAt"] = 1773750360
+ end
+ b = MTH_DS_Beasts[11614]
+ if b then
+ b["displayId"] = 3203
+ b["health"] = 3916
+ b["dmgMin"] = 112.985
+ b["dmgMax"] = 137.961
+ b["armor"] = 3216
+ b["factionId"] = 67
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750361
+ end
+ b = MTH_DS_Beasts[11671]
+ if b then
+ b["displayId"] = 12168
+ b["npcClass"] = "Elite"
+ b["health"] = 31489
+ b["dmgMin"] = 1163.8
+ b["dmgMax"] = 1543.3
+ b["armor"] = 4091
+ b["factionId"] = 54
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{0.0, 0.0, 2717}, {0.0, 0.0, 2717}}
+ b["scrapedAt"] = 1773750362
+ end
+ b = MTH_DS_Beasts[11672]
+ if b then
+ b["displayId"] = 11997
+ b["npcClass"] = "Elite"
+ b["health"] = 84025
+ b["dmgMin"] = 1736.5
+ b["dmgMax"] = 2304.6
+ b["armor"] = 4391
+ b["factionId"] = 54
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{0.0, 0.0, 2717}}
+ b["scrapedAt"] = 1773750363
+ end
+ b = MTH_DS_Beasts[11673]
+ if b then
+ b["displayId"] = 12189
+ b["npcClass"] = "Elite"
+ b["health"] = 124943
+ b["dmgMin"] = 1984.9
+ b["dmgMax"] = 2633.5
+ b["armor"] = 4391
+ b["factionId"] = 54
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{0.0, 0.0, 2717}, {0.0, 0.0, 2717}, {0.0, 0.0, 2717}, {0.0, 0.0, 2717}, {0.0, 0.0, 2717}, {0.0, 0.0, 2717}, {0.0, 0.0, 2717}, {0.0, 0.0, 2717}, {0.0, 0.0, 2717}, {0.0, 0.0, 2717}, {0.0, 0.0, 2717}, {0.0, 0.0, 2717}}
+ b["scrapedAt"] = 1773750364
+ end
+ b = MTH_DS_Beasts[11710]
+ if b then
+ b["displayId"] = 2325
+ b["health"] = 3045
+ b["dmgMin"] = 93.5
+ b["dmgMax"] = 119.9
+ b["armor"] = 2999
+ b["factionId"] = 35
+ b["reactA"] = "friendly"
+ b["reactH"] = "friendly"
+ b["coordsTDB"] = {{67.13, 24.06, 28}}
+ b["scrapedAt"] = 1773750365
+ end
+ b = MTH_DS_Beasts[11735]
+ if b then
+ b["displayId"] = 15383
+ b["health"] = 3841
+ b["dmgMin"] = 111.92
+ b["dmgMax"] = 139.016
+ b["armor"] = 3244
+ b["factionId"] = 413
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{31.79, 28.31, 1377}, {33.86, 31.45, 1377}, {34.0, 21.73, 1377}, {35.93, 19.4, 1377}, {36.01, 28.05, 1377}, {36.62, 23.58, 1377}, {36.96, 16.69, 1377}, {37.71, 20.91, 1377}, {39.4, 37.09, 1377}, {39.86, 32.75, 1377}, {40.52, 36.71, 1377}, {40.72, 38.39, 1377}, {42.93, 38.21, 1377}, {42.99, 41.14, 1377}, {48.88, 13.42, 1377}, {51.34, 19.57, 1377}, {52.49, 29.52, 1377}, {53.7, 30.68, 1377}, {54.45, 14.45, 1377}, {54.53, 24.44, 1377}, {56.48, 32.57, 1377}, {56.86, 11.31, 1377}, {57.11, 33.78, 1377}, {58.78, 20.43, 1377}, {59.04, 13.24, 1377}, {59.78, 27.92, 1377}, {60.16, 18.32, 1377}, {60.9, 42.99, 1377}, {61.02, 22.33, 1377}, {61.54, 15.23, 1377}, {61.71, 40.93, 1377}, {61.85, 26.59, 1377}, {62.8, 31.2, 1377}, {62.89, 24.05, 1377}, {63.72, 16.99, 1377}, {64.15, 14.15, 1377}, {64.64, 45.23, 1377}, {64.72, 31.28, 1377}, {65.53, 27.19, 1377}, {65.58, 42.0, 1377}, {65.73, 37.57, 1377}, {66.07, 23.4, 1377}, {66.42, 32.66, 1377}, {66.53, 29.0, 1377}, {9.522, 41.81, 490}, {10.47, 42.66, 490}, {11.33, 37.11, 490}, {12.93, 33.09, 490}, {14.17, 34.31, 490}, {17.14, 30.91, 490}}
+ b["scrapedAt"] = 1773750366
+ end
+ b = MTH_DS_Beasts[11736]
+ if b then
+ b["displayId"] = 15384
+ b["health"] = 4252
+ b["dmgMin"] = 116.554
+ b["dmgMax"] = 141.529
+ b["armor"] = 3327
+ b["factionId"] = 413
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{21.49, 36.49, 1377}, {21.55, 42.6, 1377}, {21.75, 43.12, 1377}, {22.67, 44.2, 1377}, {24.45, 42.48, 1377}, {25.54, 44.24, 1377}, {28.55, 43.21, 1377}, {28.92, 38.64, 1377}, {28.95, 27.02, 1377}, {30.99, 36.62, 1377}, {31.28, 38.34, 1377}, {32.22, 48.8, 1377}, {32.4, 33.22, 1377}, {32.51, 42.48, 1377}, {33.66, 62.11, 1377}, {33.92, 55.17, 1377}, {33.95, 46.87, 1377}, {34.12, 66.8, 1377}, {34.41, 45.4, 1377}, {34.64, 35.8, 1377}, {34.69, 38.73, 1377}, {34.87, 54.1, 1377}, {35.01, 58.62, 1377}, {35.07, 59.91, 1377}, {36.7, 51.09, 1377}, {36.99, 58.27, 1377}, {37.42, 64.17, 1377}, {37.97, 52.29, 1377}, {37.97, 65.59, 1377}, {41.01, 61.33, 1377}, {41.9, 54.66, 1377}, {42.24, 56.9, 1377}, {42.27, 64.6, 1377}, {42.85, 61.42, 1377}, {43.13, 59.09, 1377}, {43.36, 52.16, 1377}, {43.39, 45.02, 1377}, {43.65, 49.88, 1377}, {45.69, 65.72, 1377}, {46.52, 58.4, 1377}, {46.92, 52.76, 1377}, {48.3, 60.38, 1377}, {49.02, 55.99, 1377}, {49.54, 62.84, 1377}, {49.65, 65.64, 1377}, {50.4, 55.52, 1377}, {51.46, 62.23, 1377}, {53.07, 57.24, 1377}, {55.13, 64.22, 1377}, {55.94, 55.22, 1377}, {56.05, 61.2, 1377}, {56.14, 58.92, 1377}, {57.11, 56.9, 1377}, {57.23, 63.35, 1377}, {58.38, 65.81, 1377}, {62.43, 63.96, 1377}, {62.57, 65.94, 1377}, {65.18, 62.06, 1377}}
+ b["scrapedAt"] = 1773750368
+ end
+ b = MTH_DS_Beasts[11737]
+ if b then
+ b["displayId"] = 15385
+ b["health"] = 4134
+ b["dmgMin"] = 111.1
+ b["dmgMax"] = 137.5
+ b["armor"] = 3408
+ b["factionId"] = 413
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{22.18, 78.55, 1377}, {22.58, 76.96, 1377}, {22.64, 78.55, 1377}, {24.3, 89.87, 1377}, {24.56, 82.51, 1377}, {25.05, 76.57, 1377}, {25.88, 78.42, 1377}, {26.14, 74.55, 1377}, {26.45, 81.52, 1377}, {28.38, 74.12, 1377}, {28.64, 82.86, 1377}, {30.19, 79.93, 1377}, {31.56, 72.52, 1377}, {32.22, 77.43, 1377}, {33.0, 67.83, 1377}, {33.6, 73.9, 1377}, {34.81, 86.51, 1377}, {35.38, 70.89, 1377}, {36.04, 75.67, 1377}, {36.04, 78.08, 1377}, {37.22, 86.64, 1377}, {38.05, 85.35, 1377}, {39.52, 68.56, 1377}, {40.21, 83.72, 1377}, {40.87, 80.1, 1377}, {40.89, 73.3, 1377}, {41.24, 69.68, 1377}, {43.05, 79.11, 1377}, {43.11, 73.9, 1377}, {43.74, 84.75, 1377}, {44.63, 69.77, 1377}, {44.77, 90.91, 1377}, {45.43, 87.2, 1377}, {46.18, 84.49, 1377}, {47.7, 69.81, 1377}, {49.54, 66.54, 1377}, {61.54, 67.1, 1377}, {62.28, 69.3, 1377}, {62.68, 73.77, 1377}, {64.18, 66.63, 1377}, {64.69, 70.33, 1377}, {65.33, 76.79, 1377}, {67.56, 76.01, 1377}, {67.82, 78.25, 1377}}
+ b["scrapedAt"] = 1773750369
+ end
+ b = MTH_DS_Beasts[11738]
+ if b then
+ b["displayId"] = 8014
+ b["health"] = 4116
+ b["dmgMin"] = 115.364
+ b["dmgMax"] = 142.718
+ b["armor"] = 3299
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{30.5, 25.56, 1377}, {31.36, 26.16, 1377}, {33.17, 21.04, 1377}, {34.64, 21.34, 1377}, {35.67, 18.07, 1377}, {36.88, 31.63, 1377}, {38.0, 35.29, 1377}, {38.68, 14.97, 1377}, {38.71, 18.67, 1377}, {38.97, 33.18, 1377}, {42.36, 35.07, 1377}, {44.91, 41.01, 1377}, {50.17, 15.31, 1377}, {51.06, 30.25, 1377}, {51.63, 13.89, 1377}, {53.15, 22.84, 1377}, {53.5, 19.57, 1377}, {53.5, 25.6, 1377}, {53.7, 12.21, 1377}, {54.1, 30.29, 1377}, {54.99, 16.86, 1377}, {55.59, 22.76, 1377}, {56.05, 26.93, 1377}, {56.66, 16.73, 1377}, {56.86, 9.5, 1377}, {57.83, 20.56, 1377}, {57.89, 12.51, 1377}, {58.03, 31.76, 1377}, {58.32, 22.8, 1377}, {58.46, 27.71, 1377}, {61.11, 31.33, 1377}, {61.56, 40.06, 1377}, {61.82, 18.07, 1377}, {62.14, 44.89, 1377}, {62.68, 25.51, 1377}, {63.0, 18.24, 1377}, {63.75, 16.04, 1377}, {64.0, 40.75, 1377}, {64.38, 23.32, 1377}, {65.04, 29.73, 1377}, {65.53, 42.99, 1377}, {66.96, 29.6, 1377}, {68.34, 31.93, 1377}, {9.333, 42.54, 490}, {10.36, 39.82, 490}, {11.14, 30.22, 490}, {11.52, 41.08, 490}, {13.06, 33.09, 490}, {13.87, 37.31, 490}, {15.52, 35.45, 490}, {15.74, 31.43, 490}, {17.66, 27.22, 490}}
+ b["scrapedAt"] = 1773750370
+ end
+ b = MTH_DS_Beasts[11739]
+ if b then
+ b["displayId"] = 711
+ b["health"] = 4134
+ b["dmgMin"] = 222.2
+ b["dmgMax"] = 278.3
+ b["armor"] = 3408
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{19.59, 77.43, 1377}, {23.07, 88.54, 1377}, {23.24, 77.04, 1377}, {24.7, 81.74, 1377}, {25.08, 81.0, 1377}, {27.23, 75.24, 1377}, {27.46, 82.68, 1377}, {29.33, 77.0, 1377}, {29.44, 78.59, 1377}, {31.13, 82.04, 1377}, {31.82, 67.75, 1377}, {31.82, 82.77, 1377}, {32.34, 74.5, 1377}, {33.49, 79.24, 1377}, {34.29, 77.43, 1377}, {35.12, 69.81, 1377}, {35.35, 91.08, 1377}, {36.07, 86.04, 1377}, {36.45, 82.98, 1377}, {36.67, 73.64, 1377}, {37.13, 66.11, 1377}, {37.13, 89.57, 1377}, {37.88, 84.49, 1377}, {38.05, 81.05, 1377}, {38.74, 69.98, 1377}, {39.23, 74.25, 1377}, {41.44, 69.9, 1377}, {41.81, 67.44, 1377}, {42.13, 76.74, 1377}, {42.19, 87.16, 1377}, {42.27, 79.8, 1377}, {42.47, 84.62, 1377}, {43.34, 76.53, 1377}, {44.43, 88.11, 1377}, {44.83, 84.92, 1377}, {45.03, 72.57, 1377}, {45.57, 79.97, 1377}, {46.61, 87.16, 1377}, {47.5, 69.85, 1377}, {48.59, 67.14, 1377}, {48.93, 70.89, 1377}, {63.43, 72.48, 1377}, {64.92, 86.26, 1377}, {65.67, 75.54, 1377}, {66.53, 74.25, 1377}}
+ b["scrapedAt"] = 1773750371
+ end
+ b = MTH_DS_Beasts[11740]
+ if b then
+ b["displayId"] = 15386
+ b["health"] = 3659
+ b["dmgMin"] = 115.364
+ b["dmgMax"] = 142.718
+ b["armor"] = 3327
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{32.6, 24.57, 1377}, {34.03, 25.69, 1377}, {34.15, 29.56, 1377}, {34.46, 32.53, 1377}, {34.78, 18.24, 1377}, {36.53, 15.87, 1377}, {36.93, 35.24, 1377}, {37.82, 28.48, 1377}, {39.29, 34.86, 1377}, {41.96, 39.29, 1377}, {42.65, 36.92, 1377}, {44.68, 36.53, 1377}, {45.09, 38.86, 1377}, {50.83, 19.01, 1377}, {51.69, 18.37, 1377}, {52.18, 14.71, 1377}, {54.07, 32.53, 1377}, {54.13, 28.05, 1377}, {55.22, 32.62, 1377}, {55.74, 28.61, 1377}, {55.91, 17.68, 1377}, {56.02, 13.8, 1377}, {56.4, 23.92, 1377}, {57.0, 12.43, 1377}, {58.58, 22.41, 1377}, {58.89, 31.24, 1377}, {59.07, 15.7, 1377}, {59.44, 17.68, 1377}, {59.93, 26.68, 1377}, {60.24, 41.66, 1377}, {60.33, 15.78, 1377}, {60.45, 33.05, 1377}, {61.82, 21.9, 1377}, {62.45, 37.78, 1377}, {62.48, 27.92, 1377}, {63.72, 22.72, 1377}, {65.07, 40.41, 1377}, {65.67, 44.63, 1377}, {66.27, 31.24, 1377}, {9.414, 43.96, 490}, {10.01, 38.73, 490}, {10.58, 28.76, 490}, {10.98, 37.43, 490}, {13.23, 35.69, 490}}
+ b["scrapedAt"] = 1773750373
+ end
+ b = MTH_DS_Beasts[11741]
+ if b then
+ b["displayId"] = 14524
+ b["health"] = 4134
+ b["dmgMin"] = 111.1
+ b["dmgMax"] = 137.5
+ b["armor"] = 3435
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{20.05, 47.25, 1377}, {21.0, 36.79, 1377}, {21.55, 39.29, 1377}, {25.34, 41.01, 1377}, {28.23, 27.8, 1377}, {28.29, 39.2, 1377}, {28.35, 44.11, 1377}, {29.41, 41.05, 1377}, {30.7, 46.35, 1377}, {32.4, 31.33, 1377}, {32.83, 41.05, 1377}, {32.91, 61.63, 1377}, {33.14, 48.67, 1377}, {33.14, 65.64, 1377}, {33.34, 59.82, 1377}, {34.03, 43.68, 1377}, {34.78, 52.08, 1377}, {34.89, 55.73, 1377}, {34.98, 40.41, 1377}, {36.24, 66.02, 1377}, {36.93, 37.14, 1377}, {37.68, 55.61, 1377}, {37.85, 62.88, 1377}, {38.74, 54.18, 1377}, {39.55, 50.74, 1377}, {40.81, 52.63, 1377}, {40.95, 49.23, 1377}, {41.87, 61.2, 1377}, {42.3, 64.39, 1377}, {43.85, 51.26, 1377}, {48.01, 54.79, 1377}, {48.24, 62.88, 1377}, {48.27, 56.9, 1377}, {48.53, 58.53, 1377}, {49.56, 53.45, 1377}, {51.92, 57.16, 1377}, {53.24, 62.71, 1377}, {53.35, 64.34, 1377}, {55.08, 61.29, 1377}, {55.16, 56.81, 1377}, {57.8, 58.96, 1377}, {63.6, 63.05, 1377}}
+ b["scrapedAt"] = 1773750374
+ end
+ b = MTH_DS_Beasts[11785]
+ if b then
+ b["displayId"] = 11713
+ b["npcClass"] = "Elite"
+ b["health"] = 5440
+ b["dmgMin"] = 163.146
+ b["dmgMax"] = 206.405
+ b["armor"] = 2101
+ b["factionId"] = 410
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{30.19, 65.31, 405}, {32.62, 66.55, 405}, {33.24, 67.65, 405}, {33.91, 62.05, 405}, {35.04, 58.91, 405}, {35.04, 64.21, 405}}
+ b["scrapedAt"] = 1773750375
+ end
+ b = MTH_DS_Beasts[11786]
+ if b then
+ b["displayId"] = 12338
+ b["npcClass"] = "Elite"
+ b["health"] = 5876
+ b["dmgMin"] = 183.223
+ b["dmgMax"] = 222.485
+ b["armor"] = 2246
+ b["factionId"] = 410
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{29.72, 65.45, 405}, {32.53, 63.71, 405}, {34.95, 61.28, 405}, {36.64, 62.78, 405}}
+ b["scrapedAt"] = 1773750376
+ end
+ b = MTH_DS_Beasts[11788]
+ if b then
+ b["displayId"] = 13009
+ b["npcClass"] = "Elite"
+ b["health"] = 5876
+ b["dmgMin"] = 262.937
+ b["dmgMax"] = 339.082
+ b["armor"] = 3342
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{26.7, 54.84, 405}, {28.3, 57.18, 405}, {28.63, 53.31, 405}, {28.79, 56.94, 405}, {29.5, 55.41, 405}}
+ b["scrapedAt"] = 1773750377
+ end
+ b = MTH_DS_Beasts[11789]
+ if b then
+ b["displayId"] = 12333
+ b["health"] = 2328
+ b["dmgMin"] = 97.6408
+ b["dmgMax"] = 122.36
+ b["armor"] = 2835
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750378
+ end
+ b = MTH_DS_Beasts[11871]
+ if b then
+ b["displayId"] = 782
+ b["npcClass"] = "Elite"
+ b["health"] = 17505
+ b["dmgMin"] = 310.226
+ b["dmgMax"] = 401.687
+ b["armor"] = 2888
+ b["factionId"] = 29
+ b["reactA"] = "hostile"
+ b["reactH"] = "friendly"
+ b["coordsTDB"] = {{81.8, 19.55, 1637}}
+ b["scrapedAt"] = 1773750379
+ end
+ b = MTH_DS_Beasts[11885]
+ if b then
+ b["displayId"] = 2715
+ b["npcClass"] = "Elite"
+ b["health"] = 37897
+ b["dmgMin"] = 507.1
+ b["dmgMax"] = 623.7
+ b["armor"] = 3895
+ b["factionId"] = 1174
+ b["reactA"] = "hostile"
+ b["reactH"] = "friendly"
+ b["coordsTDB"] = {{26.52, 74.5, 139}}
+ b["scrapedAt"] = 1773750380
+ end
+ b = MTH_DS_Beasts[11896]
+ if b then
+ b["displayId"] = 11828
+ b["npcClass"] = "Elite"
+ b["health"] = 51876
+ b["dmgMin"] = 643.5
+ b["dmgMax"] = 829.4
+ b["armor"] = 4091
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{54.81, 31.84, 139}}
+ b["scrapedAt"] = 1773750381
+ end
+ b = MTH_DS_Beasts[11897]
+ if b then
+ b["displayId"] = 11829
+ b["npcClass"] = "Elite"
+ b["health"] = 20143
+ b["dmgMin"] = 580.8
+ b["dmgMax"] = 749.1
+ b["armor"] = 3791
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{30.81, 69.77, 139}}
+ b["scrapedAt"] = 1773750382
+ end
+ b = MTH_DS_Beasts[11921]
+ if b then
+ b["displayId"] = 11348
+ b["npcClass"] = "Elite"
+ b["health"] = 1860
+ b["dmgMin"] = 53.5392
+ b["dmgMax"] = 58.2982
+ b["armor"] = 888
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{51.97, 73.88, 406}}
+ b["scrapedAt"] = 1773751766
+ end
+ b = MTH_DS_Beasts[11956]
+ if b then
+ b["displayId"] = 11909
+ b["health"] = 4532
+ b["dmgMin"] = 139.7
+ b["dmgMax"] = 170.5
+ b["armor"] = 6792
+ b["factionId"] = 635
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{39.11, 27.52, 493}}
+ b["scrapedAt"] = 1773750383
+ end
+ b = MTH_DS_Beasts[11957]
+ if b then
+ b["displayId"] = 11910
+ b["health"] = 4532
+ b["dmgMin"] = 139.7
+ b["dmgMax"] = 170.5
+ b["armor"] = 6792
+ b["factionId"] = 996
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{58.39, 73.57, 493}}
+ b["scrapedAt"] = 1773750383
+ end
+ b = MTH_DS_Beasts[11982]
+ if b then
+ b["displayId"] = 10193
+ b["npcClass"] = "Boss"
+ b["health"] = 1001088
+ b["dmgMin"] = 2053.7
+ b["dmgMax"] = 2722.5
+ b["armor"] = 4211
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{0.0, 0.0, 2717}}
+ b["scrapedAt"] = 1773750386
+ end
+ b = MTH_DS_Beasts[12037]
+ if b then
+ b["displayId"] = 706
+ b["npcClass"] = "Rare"
+ b["health"] = 1572
+ b["dmgMin"] = 53.5392
+ b["dmgMax"] = 64.247
+ b["armor"] = 1234
+ b["factionId"] = 44
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{83.36, 48.52, 331}}
+ b["scrapedAt"] = 1773750387
+ end
+ b = MTH_DS_Beasts[12121]
+ if b then
+ b["displayId"] = 10278
+ b["npcClass"] = "Elite"
+ b["health"] = 10072
+ b["dmgMin"] = 628.1
+ b["dmgMax"] = 810.7
+ b["armor"] = 3791
+ b["factionId"] = 1214
+ b["reactA"] = "hostile"
+ b["reactH"] = "friendly"
+ b["coordsTDB"] = {{47.2, 87.13, 2597}}
+ b["scrapedAt"] = 1773750388
+ end
+ b = MTH_DS_Beasts[12122]
+ if b then
+ b["displayId"] = 10278
+ b["npcClass"] = "Elite"
+ b["health"] = 10072
+ b["dmgMin"] = 628.1
+ b["dmgMax"] = 810.7
+ b["armor"] = 3791
+ b["factionId"] = 1214
+ b["reactA"] = "hostile"
+ b["reactH"] = "friendly"
+ b["coordsTDB"] = {{47.13, 86.78, 2597}}
+ b["scrapedAt"] = 1773750389
+ end
+ b = MTH_DS_Beasts[12124]
+ if b then
+ b["displayId"] = 12203
+ b["npcClass"] = "Elite"
+ b["health"] = 10256
+ b["dmgMin"] = 370.788
+ b["dmgMax"] = 479.553
+ b["armor"] = 3052
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750390
+ end
+ b = MTH_DS_Beasts[12125]
+ if b then
+ b["displayId"] = 12207
+ b["npcClass"] = "Elite"
+ b["health"] = 12051
+ b["dmgMin"] = 375.825
+ b["dmgMax"] = 485.243
+ b["armor"] = 3108
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750391
+ end
+ b = MTH_DS_Beasts[12218]
+ if b then
+ b["displayId"] = 12346
+ b["health"] = 1681
+ b["dmgMin"] = 77.8655
+ b["dmgMax"] = 95.1689
+ b["armor"] = 2557
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750392
+ end
+ b = MTH_DS_Beasts[12257]
+ if b then
+ b["displayId"] = 10269
+ b["health"] = 525
+ b["dmgMin"] = 12.1
+ b["dmgMax"] = 14.3
+ b["armor"] = 3435
+ b["factionId"] = 35
+ b["reactA"] = "friendly"
+ b["reactH"] = "friendly"
+ b["scrapedAt"] = 1773750393
+ end
+ b = MTH_DS_Beasts[12418]
+ if b then
+ b["displayId"] = 2712
+ b["health"] = 2819
+ b["dmgMin"] = 210.509
+ b["dmgMax"] = 265.219
+ b["armor"] = 3216
+ b["factionId"] = 45
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{55.75, 44.14, 357}, {57.65, 42.87, 357}, {59.13, 43.73, 357}, {61.3, 29.62, 357}, {61.36, 43.17, 357}, {61.51, 30.57, 357}, {61.97, 37.54, 357}, {62.15, 44.88, 357}, {62.4, 32.49, 357}, {63.52, 36.05, 357}, {64.05, 45.46, 357}}
+ b["scrapedAt"] = 1773750395
+ end
+ b = MTH_DS_Beasts[12431]
+ if b then
+ b["displayId"] = 11413
+ b["npcClass"] = "Rare"
+ b["health"] = 325
+ b["dmgMin"] = 28.5542
+ b["dmgMax"] = 34.503
+ b["armor"] = 608
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{59.55, 7.667, 130}}
+ b["scrapedAt"] = 1773751768
+ end
+ b = MTH_DS_Beasts[12432]
+ if b then
+ b["displayId"] = 982
+ b["npcClass"] = "Rare"
+ b["health"] = 447
+ b["dmgMin"] = 30.9338
+ b["dmgMax"] = 38.0723
+ b["armor"] = 642
+ b["factionId"] = 44
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{53.86, 51.95, 130}}
+ b["scrapedAt"] = 1773751769
+ end
+ b = MTH_DS_Beasts[12433]
+ if b then
+ b["displayId"] = 368
+ b["npcClass"] = "Rare"
+ b["health"] = 365
+ b["dmgMin"] = 30.9338
+ b["dmgMax"] = 38.0723
+ b["armor"] = 566
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{35.71, 8.274, 130}}
+ b["scrapedAt"] = 1773751770
+ end
+ b = MTH_DS_Beasts[12800]
+ if b then
+ b["displayId"] = 4269
+ b["npcClass"] = "Elite"
+ b["health"] = 33572
+ b["dmgMin"] = 1267.2
+ b["dmgMax"] = 1634.6
+ b["armor"] = 3941
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{28.02, 76.45, 357}, {28.15, 74.53, 357}, {29.68, 80.99, 357}, {30.18, 85.3, 357}, {30.33, 82.67, 357}, {31.26, 87.78, 357}}
+ b["scrapedAt"] = 1773750396
+ end
+ b = MTH_DS_Beasts[12801]
+ if b then
+ b["displayId"] = 10810
+ b["npcClass"] = "Elite"
+ b["health"] = 30520
+ b["dmgMin"] = 1210
+ b["dmgMax"] = 1566
+ b["armor"] = 4091
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{28.07, 73.04, 357}, {28.66, 77.42, 357}, {29.2, 75.46, 357}, {29.64, 78.78, 357}, {30.14, 79.45, 357}, {30.17, 87.83, 357}, {30.59, 80.19, 357}, {30.94, 85.54, 357}}
+ b["scrapedAt"] = 1773750397
+ end
+ b = MTH_DS_Beasts[12802]
+ if b then
+ b["displayId"] = 9560
+ b["npcClass"] = "Elite"
+ b["health"] = 22008
+ b["dmgMin"] = 1152
+ b["dmgMax"] = 1486
+ b["armor"] = 4241
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{28.48, 71.4, 357}, {28.96, 71.25, 357}, {29.16, 78.05, 357}, {29.59, 75.87, 357}, {29.66, 80.23, 357}, {30.59, 75.76, 357}}
+ b["scrapedAt"] = 1773750398
+ end
+ b = MTH_DS_Beasts[12803]
+ if b then
+ b["displayId"] = 12683
+ b["npcClass"] = "Elite"
+ b["health"] = 323700
+ b["dmgMin"] = 1618
+ b["dmgMax"] = 2147
+ b["armor"] = 4391
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{29.35, 72.61, 357}}
+ b["scrapedAt"] = 1773750399
+ end
+ b = MTH_DS_Beasts[13036]
+ if b then
+ b["displayId"] = 12966
+ b["health"] = 4134
+ b["dmgMin"] = 323.4
+ b["dmgMax"] = 407
+ b["armor"] = 3489
+ b["factionId"] = 45
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{0.0, 0.0, 2557}, {0.0, 0.0, 2557}, {0.0, 0.0, 2557}, {0.0, 0.0, 2557}, {0.0, 0.0, 2557}, {0.0, 0.0, 2557}, {0.0, 0.0, 2557}, {0.0, 0.0, 2557}, {0.0, 0.0, 2557}, {0.0, 0.0, 2557}, {0.0, 0.0, 2557}, {0.0, 0.0, 2557}, {0.0, 0.0, 2557}, {0.0, 0.0, 2557}, {0.0, 0.0, 2557}}
+ b["scrapedAt"] = 1773750400
+ end
+ b = MTH_DS_Beasts[13160]
+ if b then
+ b["displayId"] = 13096
+ b["health"] = 890
+ b["dmgMin"] = 155.1
+ b["dmgMax"] = 180.4
+ b["armor"] = 3408
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{0.0, 0.0, 2557}, {0.0, 0.0, 2557}, {0.0, 0.0, 2557}, {0.0, 0.0, 2557}, {0.0, 0.0, 2557}, {0.0, 0.0, 2557}}
+ b["scrapedAt"] = 1773750401
+ end
+ b = MTH_DS_Beasts[13161]
+ if b then
+ b["displayId"] = 1149
+ b["npcClass"] = "Elite"
+ b["health"] = 83930
+ b["dmgMin"] = 7.7
+ b["dmgMax"] = 11
+ b["armor"] = 3791
+ b["factionId"] = 1216
+ b["reactA"] = "friendly"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750402
+ end
+ b = MTH_DS_Beasts[13178]
+ if b then
+ b["displayId"] = 11012
+ b["npcClass"] = "Elite"
+ b["health"] = 83930
+ b["dmgMin"] = 580.8
+ b["dmgMax"] = 749.1
+ b["armor"] = 3791
+ b["factionId"] = 1214
+ b["reactA"] = "hostile"
+ b["reactH"] = "friendly"
+ b["scrapedAt"] = 1773750404
+ end
+ b = MTH_DS_Beasts[13221]
+ if b then
+ b["displayId"] = 10833
+ b["npcClass"] = "Elite"
+ b["health"] = 18949
+ b["dmgMin"] = 368.5
+ b["dmgMax"] = 475.2
+ b["armor"] = 3435
+ b["factionId"] = 1194
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["scrapedAt"] = 1773750405
+ end
+ b = MTH_DS_Beasts[13323]
+ if b then
+ b["displayId"] = 13209
+ b["npcClass"] = "Elite"
+ b["health"] = 6982
+ b["dmgMin"] = 310.226
+ b["dmgMax"] = 401.687
+ b["armor"] = 2808
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750406
+ end
+ b = MTH_DS_Beasts[13533]
+ if b then
+ b["displayId"] = 13609
+ b["npcClass"] = "Elite"
+ b["health"] = 6723
+ b["dmgMin"] = 263.26
+ b["dmgMax"] = 321.35
+ b["armor"] = 2641
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750407
+ end
+ b = MTH_DS_Beasts[13596]
+ if b then
+ b["displayId"] = 13589
+ b["npcClass"] = "Elite"
+ b["health"] = 30189
+ b["dmgMin"] = 360.9
+ b["dmgMax"] = 465.957
+ b["armor"] = 2888
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750408
+ end
+ b = MTH_DS_Beasts[13599]
+ if b then
+ b["displayId"] = 6368
+ b["health"] = 2908
+ b["dmgMin"] = 96.4049
+ b["dmgMax"] = 118.653
+ b["armor"] = 5448
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["scrapedAt"] = 1773750409
+ end
+ b = MTH_DS_Beasts[13618]
+ if b then
+ b["displayId"] = 10278
+ b["health"] = 2740
+ b["dmgMin"] = 154.495
+ b["dmgMax"] = 184.158
+ b["armor"] = 2200
+ b["factionId"] = 1215
+ b["reactA"] = "hostile"
+ b["reactH"] = "friendly"
+ b["coordsTDB"] = {{55.23, 90.56, 2597}, {56.01, 83.27, 2597}}
+ b["scrapedAt"] = 1773750411
+ end
+ b = MTH_DS_Beasts[13676]
+ if b then
+ b["displayId"] = 13340
+ b["health"] = 3425
+ b["dmgMin"] = 198.99
+ b["dmgMax"] = 238.54
+ b["armor"] = 2200
+ b["factionId"] = 32
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{42.18, 16.97, 2597}, {52.35, 38.35, 2597}, {52.68, 38.63, 2597}}
+ b["scrapedAt"] = 1773750412
+ end
+ b = MTH_DS_Beasts[13837]
+ if b then
+ b["displayId"] = 236
+ b["health"] = 2125
+ b["dmgMin"] = 72.5754
+ b["dmgMax"] = 92.8013
+ b["armor"] = 2921
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{79.48, 79.76, 405}, {79.88, 79.39, 405}}
+ b["scrapedAt"] = 1773750413
+ end
+ b = MTH_DS_Beasts[13896]
+ if b then
+ b["displayId"] = 7046
+ b["npcClass"] = "Rare-Elite"
+ b["health"] = 10256
+ b["dmgMin"] = 383.148
+ b["dmgMax"] = 494.384
+ b["armor"] = 4629
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{52.57, 47.37, 16}}
+ b["scrapedAt"] = 1773750415
+ end
+ b = MTH_DS_Beasts[14123]
+ if b then
+ b["displayId"] = 7114
+ b["health"] = 2402
+ b["dmgMin"] = 80.3374
+ b["dmgMax"] = 102.585
+ b["armor"] = 3455
+ b["factionId"] = 15
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{64.99, 25.09, 440}, {65.8, 22.22, 440}, {66.24, 20.74, 440}, {66.51, 27.59, 440}, {66.97, 18.85, 440}, {67.08, 28.72, 440}, {67.15, 38.02, 440}, {67.45, 24.91, 440}, {67.73, 17.35, 440}, {67.73, 29.52, 440}, {67.89, 38.59, 440}, {68.19, 21.78, 440}, {68.21, 19.57, 440}, {68.47, 35.28, 440}, {68.48, 30.04, 440}, {68.53, 32.67, 440}, {68.63, 39.09, 440}, {70.44, 39.35, 440}, {70.79, 41.07, 440}, {71.48, 39.87, 440}, {71.82, 41.15, 440}, {73.02, 42.28, 440}, {73.28, 43.0, 440}}
+ b["scrapedAt"] = 1773750416
+ end
+ b = MTH_DS_Beasts[14222]
+ if b then
+ b["displayId"] = 1933
+ b["npcClass"] = "Rare"
+ b["health"] = 1597
+ b["dmgMin"] = 202.259
+ b["dmgMax"] = 261.747
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{30.19, 72.16, 36}, {31.01, 85.98, 36}, {38.98, 91.23, 36}}
+ b["scrapedAt"] = 1773750417
+ end
+ b = MTH_DS_Beasts[14223]
+ if b then
+ b["displayId"] = 5026
+ b["npcClass"] = "Rare"
+ b["health"] = 1382
+ b["dmgMin"] = 182.034
+ b["dmgMax"] = 234.382
+ b["armor"] = 1884
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{14.51, 54.11, 36}, {20.98, 48.0, 36}, {27.76, 41.25, 36}, {36.69, 21.32, 36}}
+ b["scrapedAt"] = 1773750418
+ end
+ b = MTH_DS_Beasts[14228]
+ if b then
+ b["displayId"] = 2714
+ b["npcClass"] = "Rare"
+ b["health"] = 1521
+ b["dmgMin"] = 56.9993
+ b["dmgMax"] = 76.4032
+ b["armor"] = 1353
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{61.31, 28.89, 405}}
+ b["scrapedAt"] = 1773751771
+ end
+ b = MTH_DS_Beasts[14232]
+ if b then
+ b["displayId"] = 788
+ b["npcClass"] = "Rare"
+ b["health"] = 1982
+ b["dmgMin"] = 340.272
+ b["dmgMax"] = 440.211
+ b["armor"] = 1709
+ b["factionId"] = 48
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{48.06, 15.96, 15}}
+ b["scrapedAt"] = 1773751772
+ end
+ b = MTH_DS_Beasts[14233]
+ if b then
+ b["displayId"] = 2549
+ b["npcClass"] = "Rare"
+ b["health"] = 2082
+ b["dmgMin"] = 243.484
+ b["dmgMax"] = 313.933
+ b["armor"] = 1593
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{42.04, 55.3, 15}, {49.18, 57.33, 15}}
+ b["scrapedAt"] = 1773751773
+ end
+ b = MTH_DS_Beasts[14234]
+ if b then
+ b["displayId"] = 2703
+ b["npcClass"] = "Rare"
+ b["health"] = 2263
+ b["dmgMin"] = 411.575
+ b["dmgMax"] = 503.035
+ b["armor"] = 2245
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{52.02, 62.85, 15}}
+ b["scrapedAt"] = 1773750419
+ end
+ b = MTH_DS_Beasts[14237]
+ if b then
+ b["displayId"] = 12336
+ b["npcClass"] = "Rare"
+ b["health"] = 2449
+ b["dmgMin"] = 261.747
+ b["dmgMax"] = 336.702
+ b["armor"] = 3358
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{36.88, 62.1, 15}}
+ b["scrapedAt"] = 1773750420
+ end
+ b = MTH_DS_Beasts[14266]
+ if b then
+ b["displayId"] = 1103
+ b["npcClass"] = "Rare"
+ b["health"] = 832
+ b["dmgMin"] = 47.5904
+ b["dmgMax"] = 57.1085
+ b["armor"] = 1239
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{78.06, 52.32, 38}}
+ b["scrapedAt"] = 1773751774
+ end
+ b = MTH_DS_Beasts[14268]
+ if b then
+ b["displayId"] = 14313
+ b["npcClass"] = "Rare"
+ b["health"] = 424
+ b["dmgMin"] = 38.0723
+ b["dmgMax"] = 46.4006
+ b["armor"] = 695
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{68.6, 76.35, 38}}
+ b["scrapedAt"] = 1773751775
+ end
+ b = MTH_DS_Beasts[14279]
+ if b then
+ b["displayId"] = 1091
+ b["npcClass"] = "Rare"
+ b["health"] = 791
+ b["dmgMin"] = 173.705
+ b["dmgMax"] = 223.675
+ b["armor"] = 992
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{38.58, 58.36, 267}}
+ b["scrapedAt"] = 1773751777
+ end
+ b = MTH_DS_Beasts[14280]
+ if b then
+ b["displayId"] = 706
+ b["npcClass"] = "Rare"
+ b["health"] = 1285
+ b["dmgMin"] = 46.9665
+ b["dmgMax"] = 64.2699
+ b["armor"] = 418
+ b["factionId"] = 44
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{86.02, 39.89, 267}}
+ b["scrapedAt"] = 1773751778
+ end
+ b = MTH_DS_Beasts[14282]
+ if b then
+ b["displayId"] = 782
+ b["health"] = 1167
+ b["dmgMin"] = 191.48
+ b["dmgMax"] = 229.539
+ b["armor"] = 3216
+ b["factionId"] = 1214
+ b["reactA"] = "hostile"
+ b["reactH"] = "friendly"
+ b["coordsTDB"] = {{43.99, 53.25, 2597}, {46.76, 54.07, 2597}, {48.48, 57.75, 2597}, {49.33, 81.71, 2597}, {50.18, 64.65, 2597}, {51.71, 67.94, 2597}, {55.3, 69.08, 2597}, {56.81, 67.38, 2597}}
+ b["scrapedAt"] = 1773750422
+ end
+ b = MTH_DS_Beasts[14283]
+ if b then
+ b["displayId"] = 10828
+ b["health"] = 1167
+ b["dmgMin"] = 191.48
+ b["dmgMax"] = 229.539
+ b["factionId"] = 1216
+ b["reactA"] = "friendly"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{48.67, 37.25, 2597}, {49.7, 42.1, 2597}, {51.22, 25.82, 2597}, {53.74, 7.201, 2597}}
+ b["scrapedAt"] = 1773750424
+ end
+ b = MTH_DS_Beasts[14306]
+ if b then
+ b["displayId"] = 9956
+ b["health"] = 3357
+ b["dmgMin"] = 55
+ b["dmgMax"] = 88
+ b["armor"] = 7
+ b["factionId"] = 35
+ b["reactA"] = "friendly"
+ b["reactH"] = "friendly"
+ b["scrapedAt"] = 1773750425
+ end
+ b = MTH_DS_Beasts[14308]
+ if b then
+ b["displayId"] = 1083
+ b["npcClass"] = "Elite"
+ b["health"] = 20560
+ b["dmgMin"] = 614.9
+ b["dmgMax"] = 792
+ b["armor"] = 3791
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{0.0, 0.0, 2557}}
+ b["scrapedAt"] = 1773750426
+ end
+ b = MTH_DS_Beasts[14339]
+ if b then
+ b["displayId"] = 11412
+ b["npcClass"] = "Rare"
+ b["health"] = 3241
+ b["dmgMin"] = 101.349
+ b["dmgMax"] = 135.956
+ b["armor"] = 2963
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{50.03, 77.12, 361}}
+ b["scrapedAt"] = 1773750427
+ end
+ b = MTH_DS_Beasts[14343]
+ if b then
+ b["displayId"] = 6212
+ b["npcClass"] = "Rare"
+ b["health"] = 3809
+ b["dmgMin"] = 108.764
+ b["dmgMax"] = 145.844
+ b["armor"] = 3128
+ b["factionId"] = 635
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{50.15, 32.83, 361}}
+ b["scrapedAt"] = 1773750428
+ end
+ b = MTH_DS_Beasts[14344]
+ if b then
+ b["displayId"] = 14315
+ b["npcClass"] = "Rare"
+ b["health"] = 4028
+ b["dmgMin"] = 325.058
+ b["dmgMax"] = 418.99
+ b["armor"] = 1971
+ b["factionId"] = 44
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{42.13, 75.22, 361}}
+ b["scrapedAt"] = 1773750429
+ end
+ b = MTH_DS_Beasts[14472]
+ if b then
+ b["displayId"] = 1104
+ b["npcClass"] = "Rare"
+ b["health"] = 4512
+ b["dmgMin"] = 394.405
+ b["dmgMax"] = 506.426
+ b["armor"] = 3380
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{39.34, 55.39, 1377}}
+ b["scrapedAt"] = 1773750430
+ end
+ b = MTH_DS_Beasts[14476]
+ if b then
+ b["displayId"] = 6068
+ b["npcClass"] = "Rare"
+ b["health"] = 4093
+ b["dmgMin"] = 661.262
+ b["dmgMax"] = 853.932
+ b["armor"] = 3327
+ b["factionId"] = 413
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{63.23, 16.69, 1377}}
+ b["scrapedAt"] = 1773750432
+ end
+ b = MTH_DS_Beasts[14477]
+ if b then
+ b["displayId"] = 14523
+ b["npcClass"] = "Rare"
+ b["health"] = 4263
+ b["dmgMin"] = 381.7
+ b["dmgMax"] = 491.7
+ b["armor"] = 3435
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{44.45, 80.75, 1377}}
+ b["scrapedAt"] = 1773750433
+ end
+ b = MTH_DS_Beasts[14490]
+ if b then
+ b["displayId"] = 14528
+ b["npcClass"] = "Rare"
+ b["health"] = 2862
+ b["dmgMin"] = 279.594
+ b["dmgMax"] = 359.307
+ b["armor"] = 2557
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{27.25, 57.13, 33}}
+ b["scrapedAt"] = 1773750434
+ end
+ b = MTH_DS_Beasts[14491]
+ if b then
+ b["displayId"] = 3186
+ b["npcClass"] = "Rare"
+ b["health"] = 2449
+ b["dmgMin"] = 234.382
+ b["dmgMax"] = 302.199
+ b["armor"] = 2246
+ b["factionId"] = 72
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{35.43, 56.59, 33}}
+ b["scrapedAt"] = 1773750436
+ end
+ b = MTH_DS_Beasts[14532]
+ if b then
+ b["displayId"] = 14950
+ b["npcClass"] = "Elite"
+ b["health"] = 13429
+ b["dmgMin"] = 1216.6
+ b["dmgMax"] = 1441
+ b["armor"] = 3791
+ b["factionId"] = 28
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750437
+ end
+ b = MTH_DS_Beasts[14566]
+ if b then
+ b["displayId"] = 14585
+ b["health"] = 3357
+ b["dmgMin"] = 180.4
+ b["dmgMax"] = 233.2
+ b["armor"] = 3791
+ b["factionId"] = 35
+ b["reactA"] = "friendly"
+ b["reactH"] = "friendly"
+ b["scrapedAt"] = 1773750438
+ end
+ b = MTH_DS_Beasts[14568]
+ if b then
+ b["displayId"] = 14590
+ b["health"] = 3357
+ b["dmgMin"] = 259.6
+ b["dmgMax"] = 312.4
+ b["armor"] = 3791
+ b["factionId"] = 35
+ b["reactA"] = "friendly"
+ b["reactH"] = "friendly"
+ b["scrapedAt"] = 1773750439
+ end
+ b = MTH_DS_Beasts[14821]
+ if b then
+ b["displayId"] = 2571
+ b["npcClass"] = "Elite"
+ b["health"] = 16786
+ b["dmgMin"] = 914.1
+ b["dmgMax"] = 1213.3
+ b["armor"] = 3791
+ b["factionId"] = 28
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750440
+ end
+ b = MTH_DS_Beasts[14880]
+ if b then
+ b["displayId"] = 15072
+ b["npcClass"] = "Elite"
+ b["health"] = 4453
+ b["dmgMin"] = 440
+ b["dmgMax"] = 607.2
+ b["armor"] = 3381
+ b["factionId"] = 28
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750441
+ end
+ b = MTH_DS_Beasts[14943]
+ if b then
+ b["displayId"] = 11012
+ b["npcClass"] = "Elite"
+ b["health"] = 117502
+ b["dmgMin"] = 580.8
+ b["dmgMax"] = 749.1
+ b["armor"] = 3850
+ b["factionId"] = 1214
+ b["reactA"] = "hostile"
+ b["reactH"] = "friendly"
+ b["scrapedAt"] = 1773750443
+ end
+ b = MTH_DS_Beasts[14944]
+ if b then
+ b["displayId"] = 11012
+ b["npcClass"] = "Elite"
+ b["health"] = 117502
+ b["dmgMin"] = 580.8
+ b["dmgMax"] = 749.1
+ b["armor"] = 3850
+ b["factionId"] = 1214
+ b["reactA"] = "hostile"
+ b["reactH"] = "friendly"
+ b["scrapedAt"] = 1773750444
+ end
+ b = MTH_DS_Beasts[14945]
+ if b then
+ b["displayId"] = 11012
+ b["npcClass"] = "Elite"
+ b["health"] = 117502
+ b["dmgMin"] = 580.8
+ b["dmgMax"] = 749.1
+ b["armor"] = 3850
+ b["factionId"] = 1214
+ b["reactA"] = "hostile"
+ b["reactH"] = "friendly"
+ b["scrapedAt"] = 1773750445
+ end
+ b = MTH_DS_Beasts[14946]
+ if b then
+ b["displayId"] = 1148
+ b["npcClass"] = "Elite"
+ b["health"] = 117502
+ b["dmgMin"] = 580.8
+ b["dmgMax"] = 749.1
+ b["armor"] = 3850
+ b["factionId"] = 1216
+ b["reactA"] = "friendly"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750446
+ end
+ b = MTH_DS_Beasts[14947]
+ if b then
+ b["displayId"] = 1148
+ b["npcClass"] = "Elite"
+ b["health"] = 117502
+ b["dmgMin"] = 580.8
+ b["dmgMax"] = 749.1
+ b["armor"] = 3850
+ b["factionId"] = 1216
+ b["reactA"] = "friendly"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750447
+ end
+ b = MTH_DS_Beasts[14948]
+ if b then
+ b["displayId"] = 1148
+ b["npcClass"] = "Elite"
+ b["health"] = 117502
+ b["dmgMin"] = 580.8
+ b["dmgMax"] = 749.1
+ b["armor"] = 3850
+ b["factionId"] = 1216
+ b["reactA"] = "friendly"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750449
+ end
+ b = MTH_DS_Beasts[14965]
+ if b then
+ b["displayId"] = 14562
+ b["health"] = 6714
+ b["dmgMin"] = 627
+ b["dmgMax"] = 811.8
+ b["armor"] = 3750
+ b["factionId"] = 28
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750450
+ end
+ b = MTH_DS_Beasts[14988]
+ if b then
+ b["displayId"] = 15271
+ b["npcClass"] = "Boss"
+ b["health"] = 100716
+ b["dmgMin"] = 1554.3
+ b["dmgMax"] = 2062.5
+ b["armor"] = 3761
+ b["factionId"] = 28
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750451
+ end
+ b = MTH_DS_Beasts[15041]
+ if b then
+ b["displayId"] = 15136
+ b["health"] = 6514
+ b["dmgMin"] = 599.5
+ b["dmgMax"] = 688.6
+ b["armor"] = 3791
+ b["factionId"] = 28
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750452
+ end
+ b = MTH_DS_Beasts[15043]
+ if b then
+ b["displayId"] = 833
+ b["npcClass"] = "Elite"
+ b["health"] = 10072
+ b["dmgMin"] = 457.6
+ b["dmgMax"] = 607.2
+ b["armor"] = 3791
+ b["factionId"] = 28
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750453
+ end
+ b = MTH_DS_Beasts[15067]
+ if b then
+ b["displayId"] = 14572
+ b["npcClass"] = "Elite"
+ b["health"] = 24209
+ b["dmgMin"] = 625.9
+ b["dmgMax"] = 1050.5
+ b["armor"] = 4091
+ b["factionId"] = 28
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750454
+ end
+ b = MTH_DS_Beasts[15068]
+ if b then
+ b["displayId"] = 11029
+ b["health"] = 9790
+ b["dmgMin"] = 372.9
+ b["dmgMax"] = 419.1
+ b["armor"] = 4091
+ b["factionId"] = 28
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750456
+ end
+ b = MTH_DS_Beasts[15101]
+ if b then
+ b["displayId"] = 613
+ b["health"] = 3357
+ b["dmgMin"] = 269.5
+ b["dmgMax"] = 322.3
+ b["armor"] = 3791
+ b["factionId"] = 28
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750457
+ end
+ b = MTH_DS_Beasts[15114]
+ if b then
+ b["displayId"] = 15288
+ b["npcClass"] = "Boss"
+ b["health"] = 333100
+ b["dmgMin"] = 2197
+ b["dmgMax"] = 2912
+ b["armor"] = 4211
+ b["factionId"] = 107
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750458
+ end
+ b = MTH_DS_Beasts[15172]
+ if b then
+ b["displayId"] = 15302
+ b["health"] = 3237
+ b["dmgMin"] = 109
+ b["dmgMax"] = 134
+ b["armor"] = 4391
+ b["factionId"] = 35
+ b["reactA"] = "friendly"
+ b["reactH"] = "friendly"
+ b["coordsTDB"] = {{41.04, 88.24, 1377}}
+ b["scrapedAt"] = 1773750459
+ end
+ b = MTH_DS_Beasts[15196]
+ if b then
+ b["displayId"] = 15327
+ b["npcClass"] = "Elite"
+ b["health"] = 9771
+ b["dmgMin"] = 347.6
+ b["dmgMax"] = 448.8
+ b["armor"] = 3489
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{45.09, 92.28, 1377}}
+ b["scrapedAt"] = 1773750461
+ end
+ b = MTH_DS_Beasts[15204]
+ if b then
+ b["displayId"] = 7691
+ b["npcClass"] = "Boss"
+ b["health"] = 416375
+ b["dmgMin"] = 1429
+ b["dmgMax"] = 1709
+ b["armor"] = 4061
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750462
+ end
+ b = MTH_DS_Beasts[15220]
+ if b then
+ b["displayId"] = 7569
+ b["npcClass"] = "Elite"
+ b["health"] = 64740
+ b["dmgMin"] = 562
+ b["dmgMax"] = 762
+ b["armor"] = 4091
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750463
+ end
+ b = MTH_DS_Beasts[15505]
+ if b then
+ b["displayId"] = 14528
+ b["npcClass"] = "Elite"
+ b["health"] = 10072
+ b["dmgMin"] = 1615.9
+ b["dmgMax"] = 1654.4
+ b["armor"] = 3791
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750464
+ end
+ b = MTH_DS_Beasts[15554]
+ if b then
+ b["displayId"] = 10133
+ b["npcClass"] = "Elite"
+ b["health"] = 86460
+ b["dmgMin"] = 1745.7
+ b["dmgMax"] = 2315.5
+ b["armor"] = 4091
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750465
+ end
+ b = MTH_DS_Beasts[15571]
+ if b then
+ b["displayId"] = 15555
+ b["npcClass"] = "Boss"
+ b["health"] = 1700000
+ b["dmgMin"] = 3400
+ b["dmgMax"] = 4500
+ b["armor"] = 4211
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["scrapedAt"] = 1773750466
+ end
+ b = MTH_DS_Beasts[15721]
+ if b then
+ b["displayId"] = 15684
+ b["health"] = 525
+ b["dmgMin"] = 12.1
+ b["dmgMax"] = 14.3
+ b["armor"] = 7
+ b["factionId"] = 35
+ b["reactA"] = "friendly"
+ b["reactH"] = "friendly"
+ b["scrapedAt"] = 1773750468
+ end
+ b = MTH_DS_Beasts[15952]
+ if b then
+ b["displayId"] = 15928
+ b["npcClass"] = "Boss"
+ b["health"] = 1498950
+ b["dmgMin"] = 5491
+ b["dmgMax"] = 7281
+ b["armor"] = 4211
+ b["factionId"] = 21
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750469
+ end
+ b = MTH_DS_Beasts[15974]
+ if b then
+ b["displayId"] = 15937
+ b["npcClass"] = "Elite"
+ b["health"] = 47160
+ b["dmgMin"] = 2075
+ b["dmgMax"] = 2705
+ b["armor"] = 4091
+ b["factionId"] = 312
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750470
+ end
+ b = MTH_DS_Beasts[15975]
+ if b then
+ b["displayId"] = 15938
+ b["npcClass"] = "Elite"
+ b["health"] = 56592
+ b["dmgMin"] = 3000
+ b["dmgMax"] = 3500
+ b["armor"] = 4091
+ b["factionId"] = 312
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750471
+ end
+ b = MTH_DS_Beasts[15976]
+ if b then
+ b["displayId"] = 15939
+ b["npcClass"] = "Elite"
+ b["health"] = 94320
+ b["dmgMin"] = 3050
+ b["dmgMax"] = 3680
+ b["armor"] = 4091
+ b["factionId"] = 312
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750474
+ end
+ b = MTH_DS_Beasts[15977]
+ if b then
+ b["displayId"] = 959
+ b["npcClass"] = "Elite"
+ b["health"] = 15720
+ b["dmgMin"] = 1100
+ b["dmgMax"] = 1730
+ b["armor"] = 4091
+ b["factionId"] = 312
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750476
+ end
+ b = MTH_DS_Beasts[16036]
+ if b then
+ b["displayId"] = 7896
+ b["npcClass"] = "Elite"
+ b["health"] = 10682
+ b["dmgMin"] = 467.4
+ b["dmgMax"] = 618.6
+ b["armor"] = 3791
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750477
+ end
+ b = MTH_DS_Beasts[16037]
+ if b then
+ b["displayId"] = 1954
+ b["npcClass"] = "Elite"
+ b["health"] = 10682
+ b["dmgMin"] = 623.4
+ b["dmgMax"] = 827.4
+ b["armor"] = 3791
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750480
+ end
+ b = MTH_DS_Beasts[16056]
+ if b then
+ b["displayId"] = 15978
+ b["npcClass"] = "Elite"
+ b["health"] = 3052
+ b["dmgMin"] = 700
+ b["dmgMax"] = 900
+ b["armor"] = 3791
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750482
+ end
+ b = MTH_DS_Beasts[16057]
+ if b then
+ b["displayId"] = 15554
+ b["npcClass"] = "Elite"
+ b["health"] = 3052
+ b["dmgMin"] = 1425
+ b["dmgMax"] = 1722
+ b["armor"] = 3791
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750483
+ end
+ b = MTH_DS_Beasts[16095]
+ if b then
+ b["displayId"] = 12966
+ b["health"] = 3357
+ b["dmgMin"] = 223.3
+ b["dmgMax"] = 258.5
+ b["armor"] = 3791
+ b["factionId"] = 45
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750485
+ end
+ b = MTH_DS_Beasts[16098]
+ if b then
+ b["displayId"] = 12589
+ b["npcClass"] = "Elite"
+ b["health"] = 16786
+ b["dmgMin"] = 368.5
+ b["dmgMax"] = 532.4
+ b["armor"] = 3791
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750486
+ end
+ b = MTH_DS_Beasts[16117]
+ if b then
+ b["displayId"] = 6121
+ b["health"] = 4364
+ b["dmgMin"] = 117.7
+ b["dmgMax"] = 144.1
+ b["armor"] = 3791
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{14.07, 33.74, 139}, {14.66, 33.74, 139}, {14.87, 31.96, 139}, {17.89, 30.57, 139}, {18.8, 33.86, 139}}
+ b["scrapedAt"] = 1773750487
+ end
+ b = MTH_DS_Beasts[16232]
+ if b then
+ b["displayId"] = 14546
+ b["health"] = 4873
+ b["dmgMin"] = 364.1
+ b["dmgMax"] = 441.1
+ b["factionId"] = 290
+ b["reactA"] = "friendly"
+ b["reactH"] = "friendly"
+ b["coordsTDB"] = {{80.2, 57.8, 139}}
+ b["scrapedAt"] = 1773750488
+ end
+ b = MTH_DS_Beasts[16448]
+ if b then
+ b["displayId"] = 15964
+ b["npcClass"] = "Elite"
+ b["health"] = 69168
+ b["dmgMin"] = 2745
+ b["dmgMax"] = 2815
+ b["armor"] = 4091
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750489
+ end
+ b = MTH_DS_Beasts[16453]
+ if b then
+ b["displayId"] = 15939
+ b["npcClass"] = "Elite"
+ b["health"] = 81744
+ b["dmgMin"] = 3050
+ b["dmgMax"] = 3680
+ b["armor"] = 4091
+ b["factionId"] = 312
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750490
+ end
+ b = MTH_DS_Beasts[16509]
+ if b then
+ b["displayId"] = 8469
+ b["health"] = 3357
+ b["dmgMin"] = 114.4
+ b["dmgMax"] = 151.8
+ b["armor"] = 3750
+ b["factionId"] = 35
+ b["reactA"] = "friendly"
+ b["reactH"] = "friendly"
+ b["scrapedAt"] = 1773750491
+ end
+ b = MTH_DS_Beasts[17055]
+ if b then
+ b["displayId"] = 13111
+ b["health"] = 4197
+ b["dmgMin"] = 213.4
+ b["dmgMax"] = 275
+ b["armor"] = 3791
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750492
+ end
+ b = MTH_DS_Beasts[17660]
+ if b then
+ b["displayId"] = 17328
+ b["health"] = 3357
+ b["dmgMin"] = 114.318
+ b["dmgMax"] = 151.676
+ b["armor"] = 3791
+ b["factionId"] = 35
+ b["reactA"] = "friendly"
+ b["reactH"] = "friendly"
+ b["scrapedAt"] = 1773750494
+ end
+ b = MTH_DS_Beasts[29001]
+ if b then
+ b["displayId"] = 1236
+ b["health"] = 880
+ b["dmgMin"] = 57.1585
+ b["dmgMax"] = 75.8378
+ b["armor"] = 3566
+ b["factionId"] = 35
+ b["reactA"] = "friendly"
+ b["reactH"] = "friendly"
+ b["scrapedAt"] = 1773750495
+ end
+ b = MTH_DS_Beasts[36507]
+ if b then
+ b["displayId"] = 20371
+ b["health"] = 70
+ b["dmgMin"] = 11
+ b["dmgMax"] = 12.1
+ b["armor"] = 20
+ b["factionId"] = 35
+ b["reactA"] = "friendly"
+ b["reactH"] = "friendly"
+ b["scrapedAt"] = 1773750497
+ end
+ b = MTH_DS_Beasts[36514]
+ if b then
+ b["displayId"] = 20382
+ b["health"] = 70
+ b["dmgMin"] = 11
+ b["dmgMax"] = 12.1
+ b["armor"] = 20
+ b["factionId"] = 35
+ b["reactA"] = "friendly"
+ b["reactH"] = "friendly"
+ b["scrapedAt"] = 1773750500
+ end
+ b = MTH_DS_Beasts[37007]
+ if b then
+ b["displayId"] = 30
+ b["health"] = 70
+ b["dmgMin"] = 11
+ b["dmgMax"] = 12.1
+ b["armor"] = 20
+ b["factionId"] = 35
+ b["reactA"] = "friendly"
+ b["reactH"] = "friendly"
+ b["scrapedAt"] = 1773750503
+ end
+ b = MTH_DS_Beasts[40000]
+ if b then
+ b["displayId"] = 18177
+ b["health"] = 70
+ b["factionId"] = 35
+ b["reactA"] = "friendly"
+ b["reactH"] = "friendly"
+ b["scrapedAt"] = 1773751779
+ end
+ b = MTH_DS_Beasts[49004]
+ if b then
+ b["displayId"] = 12237
+ b["npcClass"] = "Rare-Elite"
+ b["health"] = 30182
+ b["dmgMin"] = 381.7
+ b["dmgMax"] = 491.7
+ b["armor"] = 3355
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{57.3, 60.87, 618}}
+ b["scrapedAt"] = 1773750504
+ end
+ b = MTH_DS_Beasts[50060]
+ if b then
+ b["displayId"] = 16361
+ b["health"] = 2439
+ b["dmgMin"] = 79.2
+ b["dmgMax"] = 102.3
+ b["armor"] = 4059
+ b["factionId"] = 35
+ b["reactA"] = "friendly"
+ b["reactH"] = "friendly"
+ b["scrapedAt"] = 1773750506
+ end
+ b = MTH_DS_Beasts[50624]
+ if b then
+ b["displayId"] = 11107
+ b["health"] = 36383
+ b["dmgMin"] = 24.7192
+ b["dmgMax"] = 49.4384
+ b["armor"] = 2000
+ b["factionId"] = 370
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750508
+ end
+ b = MTH_DS_Beasts[50627]
+ if b then
+ b["displayId"] = 11107
+ b["health"] = 36383
+ b["dmgMin"] = 24.7192
+ b["dmgMax"] = 49.4384
+ b["armor"] = 2000
+ b["factionId"] = 370
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750509
+ end
+ b = MTH_DS_Beasts[50630]
+ if b then
+ b["displayId"] = 11107
+ b["health"] = 36383
+ b["dmgMin"] = 24.7192
+ b["dmgMax"] = 49.4384
+ b["armor"] = 2000
+ b["factionId"] = 370
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750510
+ end
+ b = MTH_DS_Beasts[51539]
+ if b then
+ b["displayId"] = 11178
+ b["health"] = 4197
+ b["dmgMin"] = 213.4
+ b["dmgMax"] = 275
+ b["armor"] = 3791
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750512
+ end
+ b = MTH_DS_Beasts[52145]
+ if b then
+ b["displayId"] = 21229
+ b["npcClass"] = "Boss"
+ b["health"] = 987592
+ b["dmgMin"] = 2325
+ b["dmgMax"] = 3197
+ b["armor"] = 4211
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{0.0, 0.0, 2717}}
+ b["scrapedAt"] = 1773750513
+ end
+ b = MTH_DS_Beasts[52146]
+ if b then
+ b["displayId"] = 21230
+ b["npcClass"] = "Elite"
+ b["health"] = 15000
+ b["armor"] = 3555
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750515
+ end
+ b = MTH_DS_Beasts[52147]
+ if b then
+ b["displayId"] = 21230
+ b["npcClass"] = "Elite"
+ b["health"] = 35000
+ b["armor"] = 3555
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750516
+ end
+ b = MTH_DS_Beasts[52148]
+ if b then
+ b["displayId"] = 8509
+ b["npcClass"] = "Elite"
+ b["health"] = 44000
+ b["dmgMin"] = 1105
+ b["dmgMax"] = 1455
+ b["armor"] = 3555
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750517
+ end
+ b = MTH_DS_Beasts[52149]
+ if b then
+ b["displayId"] = 21229
+ b["npcClass"] = "Elite"
+ b["health"] = 60000
+ b["dmgMin"] = 1565
+ b["dmgMax"] = 1898
+ b["armor"] = 4011
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750518
+ end
+ b = MTH_DS_Beasts[59997]
+ if b then
+ b["displayId"] = 21109
+ b["npcClass"] = "Boss"
+ b["health"] = 198250
+ b["dmgMin"] = 666
+ b["dmgMax"] = 777
+ b["armor"] = 3731
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["scrapedAt"] = 1773750519
+ end
+ b = MTH_DS_Beasts[59998]
+ if b then
+ b["displayId"] = 21110
+ b["npcClass"] = "Boss"
+ b["health"] = 198250
+ b["dmgMin"] = 666
+ b["dmgMax"] = 777
+ b["armor"] = 3731
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["scrapedAt"] = 1773750521
+ end
+ b = MTH_DS_Beasts[60369]
+ if b then
+ b["displayId"] = 1536
+ b["health"] = 525
+ b["dmgMin"] = 12.1
+ b["dmgMax"] = 14.3
+ b["armor"] = 1200
+ b["factionId"] = 35
+ b["reactA"] = "friendly"
+ b["reactH"] = "friendly"
+ b["scrapedAt"] = 1773750522
+ end
+ b = MTH_DS_Beasts[60491]
+ if b then
+ b["displayId"] = 4124
+ b["health"] = 2750
+ b["dmgMin"] = 117.7
+ b["dmgMax"] = 144.1
+ b["armor"] = 3791
+ b["factionId"] = 68
+ b["reactA"] = "hostile"
+ b["reactH"] = "friendly"
+ b["coordsTDB"] = {{62.25, 26.24, 1497}}
+ b["scrapedAt"] = 1773750523
+ end
+ b = MTH_DS_Beasts[60492]
+ if b then
+ b["displayId"] = 9276
+ b["health"] = 3410
+ b["dmgMin"] = 114.4
+ b["dmgMax"] = 143
+ b["armor"] = 2861
+ b["factionId"] = 68
+ b["reactA"] = "hostile"
+ b["reactH"] = "friendly"
+ b["coordsTDB"] = {{61.31, 24.68, 1497}}
+ b["scrapedAt"] = 1773750524
+ end
+ b = MTH_DS_Beasts[60493]
+ if b then
+ b["displayId"] = 30
+ b["health"] = 2200
+ b["dmgMin"] = 599.5
+ b["dmgMax"] = 688.6
+ b["armor"] = 3791
+ b["factionId"] = 68
+ b["reactA"] = "hostile"
+ b["reactH"] = "friendly"
+ b["coordsTDB"] = {{58.91, 30.77, 1497}}
+ b["scrapedAt"] = 1773750525
+ end
+ b = MTH_DS_Beasts[60494]
+ if b then
+ b["displayId"] = 6082
+ b["npcClass"] = "Elite"
+ b["health"] = 5830
+ b["dmgMin"] = 215.057
+ b["dmgMax"] = 276.855
+ b["armor"] = 2011
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{70.54, 31.4, 8}}
+ b["scrapedAt"] = 1773750527
+ end
+ b = MTH_DS_Beasts[60501]
+ if b then
+ b["displayId"] = 11713
+ b["health"] = 3940
+ b["dmgMin"] = 114.945
+ b["dmgMax"] = 142.135
+ b["armor"] = 3190
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{38.63, 91.63, 0}}
+ b["scrapedAt"] = 1773750528
+ end
+ b = MTH_DS_Beasts[60539]
+ if b then
+ b["displayId"] = 18301
+ b["health"] = 2750
+ b["dmgMin"] = 411.4
+ b["dmgMax"] = 600.6
+ b["armor"] = 3490
+ b["factionId"] = 104
+ b["reactA"] = "hostile"
+ b["reactH"] = "friendly"
+ b["scrapedAt"] = 1773750529
+ end
+ b = MTH_DS_Beasts[60545]
+ if b then
+ b["displayId"] = 8842
+ b["health"] = 2544
+ b["dmgMin"] = 86.8525
+ b["dmgMax"] = 110.648
+ b["armor"] = 2641
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750530
+ end
+ b = MTH_DS_Beasts[60604]
+ if b then
+ b["displayId"] = 18247
+ b["npcClass"] = "Elite"
+ b["health"] = 13851
+ b["dmgMin"] = 643.5
+ b["dmgMax"] = 656.7
+ b["armor"] = 3453
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750532
+ end
+ b = MTH_DS_Beasts[60605]
+ if b then
+ b["displayId"] = 981
+ b["health"] = 2402
+ b["dmgMin"] = 93.933
+ b["dmgMax"] = 119.888
+ b["armor"] = 2397
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["scrapedAt"] = 1773750533
+ end
+ b = MTH_DS_Beasts[60632]
+ if b then
+ b["displayId"] = 13589
+ b["health"] = 2617
+ b["dmgMin"] = 92.8013
+ b["dmgMax"] = 113.027
+ b["armor"] = 2625
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{50.5, 53.1, 15}}
+ b["scrapedAt"] = 1773750534
+ end
+ b = MTH_DS_Beasts[60679]
+ if b then
+ b["displayId"] = 1244
+ b["npcClass"] = "Elite"
+ b["health"] = 1050
+ b["dmgMin"] = 40
+ b["dmgMax"] = 38
+ b["armor"] = 1806
+ b["factionId"] = 35
+ b["reactA"] = "friendly"
+ b["reactH"] = "friendly"
+ b["scrapedAt"] = 1773750535
+ end
+ b = MTH_DS_Beasts[60683]
+ if b then
+ b["displayId"] = 347
+ b["npcClass"] = "Elite"
+ b["health"] = 1050
+ b["dmgMin"] = 40
+ b["dmgMax"] = 38
+ b["armor"] = 1806
+ b["factionId"] = 35
+ b["reactA"] = "friendly"
+ b["reactH"] = "friendly"
+ b["scrapedAt"] = 1773750537
+ end
+ b = MTH_DS_Beasts[60697]
+ if b then
+ b["displayId"] = 8050
+ b["health"] = 3803
+ b["dmgMin"] = 131.012
+ b["dmgMax"] = 168.091
+ b["armor"] = 2432
+ b["factionId"] = 89
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{93.72, 57.16, 46}, {93.72, 58.08, 46}, {94.07, 62.74, 46}, {96.32, 58.23, 46}, {97.07, 51.21, 46}}
+ b["scrapedAt"] = 1773750538
+ end
+ b = MTH_DS_Beasts[60755]
+ if b then
+ b["displayId"] = 2488
+ b["health"] = 2420
+ b["dmgMin"] = 85.8
+ b["dmgMax"] = 104.5
+ b["armor"] = 2600
+ b["factionId"] = 83
+ b["reactA"] = "hostile"
+ b["reactH"] = "friendly"
+ b["coordsTDB"] = {{90.79, 86.02, 400}}
+ b["scrapedAt"] = 1773750539
+ end
+ b = MTH_DS_Beasts[60776]
+ if b then
+ b["displayId"] = 9562
+ b["health"] = 3809
+ b["dmgMin"] = 131.012
+ b["dmgMax"] = 168.091
+ b["armor"] = 2669
+ b["factionId"] = 29
+ b["reactA"] = "hostile"
+ b["reactH"] = "friendly"
+ b["coordsTDB"] = {{89.35, 24.53, 46}}
+ b["scrapedAt"] = 1773750541
+ end
+ b = MTH_DS_Beasts[60777]
+ if b then
+ b["displayId"] = 9371
+ b["health"] = 4252
+ b["dmgMin"] = 110.741
+ b["dmgMax"] = 139.016
+ b["armor"] = 3272
+ b["factionId"] = 29
+ b["reactA"] = "hostile"
+ b["reactH"] = "friendly"
+ b["coordsTDB"] = {{88.36, 24.01, 46}}
+ b["scrapedAt"] = 1773750542
+ end
+ b = MTH_DS_Beasts[60785]
+ if b then
+ b["displayId"] = 2404
+ b["health"] = 3289
+ b["dmgMin"] = 105.6
+ b["dmgMax"] = 137.5
+ b["armor"] = 2958
+ b["factionId"] = 12
+ b["reactA"] = "friendly"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{21.87, 63.07, 45}}
+ b["scrapedAt"] = 1773750543
+ end
+ b = MTH_DS_Beasts[60848]
+ if b then
+ b["displayId"] = 3027
+ b["health"] = 206
+ b["dmgMin"] = 12.8357
+ b["dmgMax"] = 17.5032
+ b["armor"] = 406
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{37.16, 35.19, 17}, {37.46, 35.23, 17}}
+ b["scrapedAt"] = 1773751781
+ end
+ b = MTH_DS_Beasts[60873]
+ if b then
+ b["displayId"] = 741
+ b["health"] = 3289
+ b["dmgMin"] = 105.6
+ b["dmgMax"] = 137.5
+ b["armor"] = 2958
+ b["factionId"] = 35
+ b["reactA"] = "friendly"
+ b["reactH"] = "friendly"
+ b["coordsTDB"] = {{48.66, 58.18, 46}}
+ b["scrapedAt"] = 1773750544
+ end
+ b = MTH_DS_Beasts[61072]
+ if b then
+ b["displayId"] = 705
+ b["health"] = 4376
+ b["dmgMin"] = 115.521
+ b["dmgMax"] = 142.36
+ b["armor"] = 3354
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{88.8, 43.91, 440}, {88.95, 67.22, 440}, {89.02, 40.2, 440}, {89.73, 51.72, 440}, {90.38, 50.13, 440}, {91.26, 38.85, 440}, {93.21, 73.09, 440}, {96.24, 33.15, 440}, {65.97, 82.84, 0}, {66.28, 85.42, 0}, {66.28, 87.24, 0}, {66.37, 86.85, 0}, {66.4, 85.75, 0}}
+ b["scrapedAt"] = 1773750545
+ end
+ b = MTH_DS_Beasts[61074]
+ if b then
+ b["displayId"] = 838
+ b["health"] = 4376
+ b["dmgMin"] = 115.521
+ b["dmgMax"] = 142.36
+ b["armor"] = 3354
+ b["factionId"] = 72
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{91.08, 54.33, 440}, {91.35, 53.22, 440}, {92.29, 53.43, 440}, {92.44, 51.11, 440}, {92.97, 54.41, 440}, {93.35, 53.48, 440}, {93.57, 54.37, 440}, {93.64, 51.41, 440}, {94.18, 56.02, 440}, {94.6, 44.59, 440}, {94.6, 49.07, 440}, {94.7, 50.2, 440}, {94.7, 52.24, 440}, {95.11, 56.02, 440}, {95.87, 47.83, 440}, {96.6, 45.52, 440}, {98.02, 44.89, 440}, {98.09, 46.24, 440}}
+ b["scrapedAt"] = 1773750547
+ end
+ b = MTH_DS_Beasts[61075]
+ if b then
+ b["displayId"] = 981
+ b["health"] = 4376
+ b["dmgMin"] = 115.521
+ b["dmgMax"] = 142.36
+ b["armor"] = 3354
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{89.16, 53.91, 440}, {89.9, 52.85, 440}, {90.15, 44.7, 440}, {90.18, 50.78, 440}, {90.25, 47.39, 440}, {90.97, 49.65, 440}, {91.18, 48.76, 440}, {91.58, 41.15, 440}, {91.92, 43.46, 440}, {92.05, 38.37, 440}, {92.08, 39.09, 440}, {94.19, 43.28, 440}, {94.63, 41.52, 440}, {94.71, 34.61, 440}, {94.97, 43.52, 440}, {95.9, 39.24, 440}, {95.93, 40.78, 440}, {96.45, 35.0, 440}, {96.55, 36.61, 440}, {96.66, 43.02, 440}, {97.37, 32.46, 440}, {98.16, 32.0, 440}, {98.25, 42.2, 440}, {98.47, 43.89, 440}, {99.09, 44.48, 440}, {99.34, 33.26, 440}, {99.44, 45.74, 440}, {65.83, 84.77, 0}, {65.98, 85.09, 0}, {65.99, 85.41, 0}}
+ b["scrapedAt"] = 1773750548
+ end
+ b = MTH_DS_Beasts[61076]
+ if b then
+ b["displayId"] = 981
+ b["health"] = 3792
+ b["dmgMin"] = 123.689
+ b["dmgMax"] = 154.612
+ b["armor"] = 3216
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{90.41, 67.24, 440}, {90.44, 69.17, 440}, {90.68, 64.52, 440}, {90.84, 62.24, 440}, {91.67, 58.17, 440}, {92.97, 70.48, 440}, {93.86, 70.59, 440}, {96.68, 69.91, 440}, {96.84, 64.93, 440}, {97.03, 68.87, 440}, {97.73, 63.09, 440}, {98.73, 66.37, 440}, {65.76, 88.46, 0}, {65.79, 88.12, 0}, {66.0, 86.08, 0}, {66.05, 87.4, 0}, {66.08, 86.8, 0}}
+ b["scrapedAt"] = 1773750549
+ end
+ b = MTH_DS_Beasts[61077]
+ if b then
+ b["displayId"] = 18099
+ b["health"] = 3792
+ b["dmgMin"] = 123.689
+ b["dmgMax"] = 154.612
+ b["armor"] = 3216
+ b["factionId"] = 72
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{90.93, 53.7, 440}, {91.35, 54.04, 440}, {95.6, 54.67, 440}, {96.18, 56.13, 440}, {96.73, 52.28, 440}, {97.44, 55.33, 440}, {98.0, 53.0, 440}, {98.74, 47.57, 440}, {98.74, 54.39, 440}, {99.19, 49.07, 440}}
+ b["scrapedAt"] = 1773750550
+ end
+ b = MTH_DS_Beasts[61078]
+ if b then
+ b["displayId"] = 18097
+ b["health"] = 3792
+ b["dmgMin"] = 123.689
+ b["dmgMax"] = 154.612
+ b["armor"] = 3216
+ b["factionId"] = 72
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{91.02, 53.96, 440}, {91.19, 53.17, 440}, {91.95, 67.74, 440}, {92.44, 52.72, 440}, {94.64, 65.8, 440}, {94.87, 65.65, 440}, {95.54, 68.7, 440}, {95.6, 54.33, 440}, {95.86, 69.26, 440}, {96.32, 53.5, 440}, {97.0, 51.3, 440}, {97.32, 54.7, 440}, {97.68, 52.89, 440}, {97.74, 47.41, 440}, {98.84, 54.09, 440}}
+ b["scrapedAt"] = 1773750551
+ end
+ b = MTH_DS_Beasts[61080]
+ if b then
+ b["displayId"] = 838
+ b["health"] = 4263
+ b["dmgMin"] = 84.7
+ b["dmgMax"] = 104.5
+ b["armor"] = 3462
+ b["factionId"] = 72
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{95.29, 54.24, 440}, {95.73, 51.83, 440}, {96.02, 49.72, 440}, {96.37, 48.96, 440}, {96.57, 50.89, 440}, {96.74, 51.72, 440}, {96.8, 56.28, 440}, {97.19, 54.02, 440}, {97.58, 51.17, 440}, {97.87, 52.87, 440}, {98.35, 49.07, 440}, {98.44, 55.3, 440}, {99.67, 54.04, 440}, {99.68, 52.93, 440}}
+ b["scrapedAt"] = 1773750552
+ end
+ b = MTH_DS_Beasts[61082]
+ if b then
+ b["displayId"] = 841
+ b["health"] = 4134
+ b["dmgMin"] = 112.2
+ b["dmgMax"] = 144.1
+ b["armor"] = 3435
+ b["factionId"] = 72
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{96.76, 51.24, 440}, {97.11, 52.43, 440}, {97.28, 54.2, 440}, {97.67, 48.33, 440}, {97.7, 56.13, 440}, {97.82, 51.43, 440}, {98.12, 54.26, 440}, {98.61, 53.52, 440}, {99.41, 53.39, 440}}
+ b["scrapedAt"] = 1773750554
+ end
+ b = MTH_DS_Beasts[61090]
+ if b then
+ b["displayId"] = 14557
+ b["health"] = 4116
+ b["dmgMin"] = 115.364
+ b["dmgMax"] = 142.718
+ b["armor"] = 3327
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{91.74, 55.87, 440}, {92.24, 56.35, 440}, {92.29, 55.63, 440}, {95.76, 58.11, 440}, {95.8, 58.78, 440}, {97.18, 59.87, 440}, {97.77, 59.43, 440}, {98.0, 61.39, 440}, {98.93, 58.07, 440}, {99.31, 56.72, 440}, {65.77, 87.07, 0}, {65.84, 86.53, 0}, {65.86, 85.6, 0}, {65.86, 86.83, 0}, {65.92, 85.95, 0}, {65.93, 87.22, 0}}
+ b["scrapedAt"] = 1773750555
+ end
+ b = MTH_DS_Beasts[61091]
+ if b then
+ b["displayId"] = 4305
+ b["health"] = 3792
+ b["dmgMin"] = 123.689
+ b["dmgMax"] = 154.612
+ b["armor"] = 3216
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{91.38, 67.33, 440}, {91.71, 62.98, 440}, {92.5, 68.83, 440}, {93.51, 69.0, 440}, {93.66, 64.07, 440}, {94.02, 65.72, 440}, {94.13, 69.13, 440}, {94.82, 68.48, 440}, {95.0, 69.54, 440}, {95.05, 63.87, 440}, {95.64, 65.83, 440}, {96.48, 65.57, 440}, {96.58, 68.54, 440}}
+ b["scrapedAt"] = 1773750556
+ end
+ b = MTH_DS_Beasts[61092]
+ if b then
+ b["displayId"] = 12341
+ b["health"] = 4116
+ b["dmgMin"] = 115.364
+ b["dmgMax"] = 142.718
+ b["armor"] = 3327
+ b["factionId"] = 49
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{91.25, 61.61, 440}, {92.48, 62.37, 440}, {93.5, 57.85, 440}, {94.09, 59.37, 440}, {94.24, 61.48, 440}, {95.09, 61.26, 440}, {95.58, 59.65, 440}, {95.84, 63.13, 440}, {96.93, 64.54, 440}, {97.22, 62.37, 440}, {98.44, 63.54, 440}, {98.8, 65.17, 440}, {65.82, 87.95, 0}, {65.94, 87.76, 0}}
+ b["scrapedAt"] = 1773750557
+ end
+ b = MTH_DS_Beasts[61095]
+ if b then
+ b["displayId"] = 2705
+ b["health"] = 3841
+ b["dmgMin"] = 111.92
+ b["dmgMax"] = 139.016
+ b["armor"] = 3244
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{92.68, 67.61, 440}, {92.87, 64.0, 440}, {93.99, 69.93, 440}, {94.09, 65.0, 440}, {94.41, 63.87, 440}, {95.71, 66.78, 440}}
+ b["scrapedAt"] = 1773750558
+ end
+ b = MTH_DS_Beasts[61096]
+ if b then
+ b["displayId"] = 10991
+ b["health"] = 4134
+ b["dmgMin"] = 112.2
+ b["dmgMax"] = 144.1
+ b["armor"] = 3435
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{91.54, 44.89, 440}, {92.71, 48.24, 440}, {93.08, 44.48, 440}, {93.15, 46.52, 440}, {93.53, 46.09, 440}, {94.02, 47.5, 440}, {94.25, 38.43, 440}, {95.37, 38.3, 440}}
+ b["scrapedAt"] = 1773750559
+ end
+ b = MTH_DS_Beasts[61097]
+ if b then
+ b["displayId"] = 12197
+ b["health"] = 4134
+ b["dmgMin"] = 184.8
+ b["dmgMax"] = 229.9
+ b["armor"] = 3435
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{66.37, 86.33, 0}, {89.64, 70.48, 440}}
+ b["scrapedAt"] = 1773750560
+ end
+ b = MTH_DS_Beasts[61098]
+ if b then
+ b["displayId"] = 3186
+ b["npcClass"] = "Elite"
+ b["health"] = 29043
+ b["dmgMin"] = 429
+ b["dmgMax"] = 495
+ b["armor"] = 3044
+ b["factionId"] = 72
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{97.11, 51.54, 440}}
+ b["scrapedAt"] = 1773750561
+ end
+ b = MTH_DS_Beasts[61155]
+ if b then
+ b["displayId"] = 9991
+ b["health"] = 4532
+ b["dmgMin"] = 121
+ b["dmgMax"] = 156.2
+ b["armor"] = 3500
+ b["factionId"] = 80
+ b["reactA"] = "friendly"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{61.0, 25.13, 361}}
+ b["scrapedAt"] = 1773750562
+ end
+ b = MTH_DS_Beasts[61170]
+ if b then
+ b["displayId"] = 19113
+ b["health"] = 4007
+ b["dmgMin"] = 103.4
+ b["dmgMax"] = 129.8
+ b["armor"] = 3272
+ b["factionId"] = 35
+ b["reactA"] = "friendly"
+ b["reactH"] = "friendly"
+ b["coordsTDB"] = {{30.29, 56.19, 331}}
+ b["scrapedAt"] = 1773750564
+ end
+ b = MTH_DS_Beasts[61172]
+ if b then
+ b["displayId"] = 19119
+ b["health"] = 4007
+ b["dmgMin"] = 103.4
+ b["dmgMax"] = 129.8
+ b["armor"] = 3272
+ b["factionId"] = 35
+ b["reactA"] = "friendly"
+ b["reactH"] = "friendly"
+ b["coordsTDB"] = {{57.28, 94.4, 215}}
+ b["scrapedAt"] = 1773750565
+ end
+ b = MTH_DS_Beasts[61206]
+ if b then
+ b["displayId"] = 955
+ b["npcClass"] = "Elite"
+ b["health"] = 20942
+ b["dmgMin"] = 740.3
+ b["dmgMax"] = 894.3
+ b["armor"] = 2091
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750566
+ end
+ b = MTH_DS_Beasts[61207]
+ if b then
+ b["displayId"] = 368
+ b["npcClass"] = "Elite"
+ b["health"] = 24091
+ b["dmgMin"] = 841.5
+ b["dmgMax"] = 1016.4
+ b["armor"] = 2866
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750567
+ end
+ b = MTH_DS_Beasts[61208]
+ if b then
+ b["displayId"] = 15939
+ b["npcClass"] = "Elite"
+ b["health"] = 45309
+ b["dmgMin"] = 906
+ b["dmgMax"] = 1182
+ b["armor"] = 4091
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750569
+ end
+ b = MTH_DS_Beasts[61209]
+ if b then
+ b["displayId"] = 15938
+ b["npcClass"] = "Elite"
+ b["health"] = 20131
+ b["dmgMin"] = 774.4
+ b["dmgMax"] = 935
+ b["armor"] = 2044
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750570
+ end
+ b = MTH_DS_Beasts[61218]
+ if b then
+ b["displayId"] = 1742
+ b["npcClass"] = "Elite"
+ b["health"] = 778
+ b["dmgMin"] = 40.8408
+ b["dmgMax"] = 40.8408
+ b["armor"] = 538
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{45.94, 36.15, 17}, {46.84, 34.67, 17}}
+ b["scrapedAt"] = 1773751782
+ end
+ b = MTH_DS_Beasts[61221]
+ if b then
+ b["displayId"] = 15937
+ b["npcClass"] = "Boss"
+ b["health"] = 240012
+ b["dmgMin"] = 2196
+ b["dmgMax"] = 2736
+ b["armor"] = 3044
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750573
+ end
+ b = MTH_DS_Beasts[61227]
+ if b then
+ b["displayId"] = 9567
+ b["health"] = 2175
+ b["dmgMin"] = 82.8093
+ b["dmgMax"] = 93.933
+ b["armor"] = 2101
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{39.91, 36.99, 0}, {40.04, 37.04, 0}, {40.11, 37.52, 0}, {40.65, 36.73, 0}, {41.03, 37.47, 0}, {41.09, 36.76, 0}, {41.3, 37.5, 0}, {41.36, 37.28, 0}, {41.42, 37.12, 0}, {41.68, 37.64, 0}, {41.7, 37.5, 0}, {42.03, 37.03, 0}, {39.88, 96.52, 130}, {40.38, 97.63, 130}, {41.69, 97.67, 130}, {45.1, 96.77, 130}, {47.0, 91.42, 130}, {47.26, 93.7, 130}}
+ b["scrapedAt"] = 1773751783
+ end
+ b = MTH_DS_Beasts[61228]
+ if b then
+ b["displayId"] = 9567
+ b["health"] = 2402
+ b["dmgMin"] = 80.3374
+ b["dmgMax"] = 102.585
+ b["armor"] = 2397
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{39.49, 39.08, 0}, {39.92, 39.66, 0}, {39.97, 39.27, 0}, {40.04, 39.93, 0}, {40.3, 39.69, 0}, {40.34, 39.23, 0}, {40.46, 39.72, 0}, {40.49, 39.96, 0}, {40.53, 39.4, 0}, {40.63, 39.09, 0}, {41.01, 40.69, 0}, {41.21, 40.67, 0}, {41.43, 39.85, 0}, {41.55, 41.11, 0}, {41.56, 38.93, 0}, {41.74, 41.21, 0}, {41.91, 40.75, 0}, {41.93, 41.21, 0}}
+ b["scrapedAt"] = 1773750575
+ end
+ b = MTH_DS_Beasts[61229]
+ if b then
+ b["displayId"] = 9567
+ b["health"] = 2544
+ b["dmgMin"] = 90.2251
+ b["dmgMax"] = 114.945
+ b["armor"] = 2641
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{37.47, 37.96, 0}, {37.6, 38.25, 0}, {37.65, 38.53, 0}, {37.66, 37.6, 0}, {37.74, 38.33, 0}, {37.74, 37.49, 0}, {37.75, 38.85, 0}, {38.07, 40.09, 0}, {38.25, 40.29, 0}, {38.41, 38.94, 0}, {38.42, 40.79, 0}, {38.57, 39.19, 0}, {38.76, 40.95, 0}, {38.78, 39.65, 0}, {38.81, 40.58, 0}, {38.96, 39.97, 0}, {38.96, 41.06, 0}, {39.03, 40.36, 0}, {39.07, 40.99, 0}, {39.12, 40.6, 0}, {39.14, 40.41, 0}, {39.51, 40.85, 0}}
+ b["scrapedAt"] = 1773750576
+ end
+ b = MTH_DS_Beasts[61230]
+ if b then
+ b["displayId"] = 7896
+ b["health"] = 2034
+ b["dmgMin"] = 66.6266
+ b["dmgMax"] = 83.2832
+ b["armor"] = 2921
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{39.55, 37.66, 0}, {39.6, 37.48, 0}, {39.71, 37.61, 0}, {39.75, 37.46, 0}, {40.06, 36.93, 0}, {40.34, 37.55, 0}, {40.73, 37.08, 0}, {40.82, 37.36, 0}, {41.01, 37.1, 0}, {41.07, 37.37, 0}, {41.2, 36.77, 0}, {41.33, 37.86, 0}, {41.4, 36.85, 0}, {41.54, 37.99, 0}, {41.71, 37.33, 0}, {41.73, 37.82, 0}, {41.82, 37.12, 0}, {41.91, 37.11, 0}, {32.93, 98.42, 130}, {35.02, 94.95, 130}, {41.21, 95.67, 130}, {44.36, 88.52, 130}, {44.36, 90.06, 130}, {45.21, 95.13, 130}, {45.95, 97.02, 130}, {46.07, 95.92, 130}, {46.33, 92.81, 130}, {47.83, 98.42, 130}}
+ b["scrapedAt"] = 1773751784
+ end
+ b = MTH_DS_Beasts[61231]
+ if b then
+ b["displayId"] = 7896
+ b["health"] = 2545
+ b["dmgMin"] = 80.9037
+ b["dmgMax"] = 104.699
+ b["armor"] = 2477
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{39.54, 40.05, 0}, {39.64, 39.36, 0}, {39.66, 39.72, 0}, {39.74, 38.78, 0}, {40.07, 39.41, 0}, {40.19, 39.87, 0}, {40.2, 39.19, 0}, {40.32, 39.43, 0}, {40.34, 39.95, 0}, {40.42, 40.15, 0}, {40.64, 39.62, 0}, {40.79, 39.23, 0}, {41.86, 38.17, 0}, {42.04, 38.44, 0}, {42.1, 38.12, 0}, {42.2, 38.16, 0}, {42.27, 38.5, 0}}
+ b["scrapedAt"] = 1773750577
+ end
+ b = MTH_DS_Beasts[61232]
+ if b then
+ b["displayId"] = 1104
+ b["health"] = 2545
+ b["dmgMin"] = 80.9037
+ b["dmgMax"] = 104.699
+ b["armor"] = 2477
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{39.81, 41.26, 0}, {40.18, 41.32, 0}, {40.35, 40.98, 0}, {40.41, 41.33, 0}, {40.68, 41.04, 0}, {40.77, 40.8, 0}, {40.98, 41.08, 0}, {41.08, 41.49, 0}, {41.13, 41.04, 0}}
+ b["scrapedAt"] = 1773750579
+ end
+ b = MTH_DS_Beasts[61233]
+ if b then
+ b["displayId"] = 520
+ b["health"] = 2544
+ b["dmgMin"] = 90.2251
+ b["dmgMax"] = 114.945
+ b["armor"] = 2641
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{39.84, 41.42, 0}, {40.16, 41.13, 0}, {40.33, 41.44, 0}, {40.39, 41.1, 0}, {40.73, 41.44, 0}, {40.79, 41.06, 0}, {40.97, 40.88, 0}, {41.07, 41.31, 0}}
+ b["scrapedAt"] = 1773750580
+ end
+ b = MTH_DS_Beasts[61332]
+ if b then
+ b["displayId"] = 10957
+ b["health"] = 4532
+ b["dmgMin"] = 121
+ b["dmgMax"] = 156.2
+ b["armor"] = 3500
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{28.65, 72.83, 618}, {30.53, 62.31, 618}, {42.2, 70.08, 618}, {42.51, 68.29, 618}, {43.78, 71.56, 618}, {43.82, 65.25, 618}, {44.3, 66.56, 618}, {44.43, 63.68, 618}, {44.51, 67.4, 618}, {44.65, 60.32, 618}, {46.68, 61.93, 618}, {46.86, 68.75, 618}, {47.81, 67.27, 618}, {47.92, 61.27, 618}, {49.13, 66.3, 618}}
+ b["scrapedAt"] = 1773750581
+ end
+ b = MTH_DS_Beasts[61333]
+ if b then
+ b["displayId"] = 10957
+ b["health"] = 4263
+ b["dmgMin"] = 121
+ b["dmgMax"] = 156.2
+ b["armor"] = 3500
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{17.03, 76.74, 618}, {18.24, 76.4, 618}, {20.86, 85.11, 618}, {21.96, 83.48, 618}, {22.75, 85.82, 618}, {23.74, 86.99, 618}, {23.88, 84.81, 618}, {24.38, 81.24, 618}, {25.13, 84.66, 618}, {26.0, 80.14, 618}, {26.61, 82.11, 618}, {27.96, 79.42, 618}, {30.61, 76.11, 618}, {31.86, 76.13, 618}, {32.0, 74.61, 618}, {32.68, 90.24, 618}, {35.05, 88.95, 618}, {35.68, 77.67, 618}, {35.82, 75.03, 618}, {36.81, 88.8, 618}, {36.91, 90.56, 618}, {37.36, 89.82, 618}, {38.48, 87.05, 618}, {38.77, 84.47, 618}, {39.6, 87.51, 618}, {39.64, 84.01, 618}, {40.38, 86.69, 618}, {41.15, 85.61, 618}, {41.85, 86.04, 618}, {42.48, 83.61, 618}, {43.0, 87.45, 618}, {43.78, 84.7, 618}, {44.99, 86.56, 618}, {45.71, 84.26, 618}}
+ b["scrapedAt"] = 1773750582
+ end
+ b = MTH_DS_Beasts[61336]
+ if b then
+ b["displayId"] = 4615
+ b["health"] = 4263
+ b["dmgMin"] = 121
+ b["dmgMax"] = 156.2
+ b["armor"] = 3500
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{17.54, 80.46, 618}, {22.54, 84.73, 618}, {23.38, 83.94, 618}, {24.79, 87.68, 618}, {25.89, 87.05, 618}, {26.05, 80.96, 618}, {26.62, 79.82, 618}, {31.64, 73.7, 618}, {33.02, 73.91, 618}, {34.84, 73.99, 618}, {34.89, 90.47, 618}, {35.84, 87.98, 618}, {36.24, 75.87, 618}, {38.62, 88.25, 618}, {39.19, 90.54, 618}, {39.72, 82.85, 618}, {39.86, 85.17, 618}, {41.09, 88.08, 618}, {41.81, 87.58, 618}, {42.88, 88.59, 618}, {46.19, 82.27, 618}, {46.3, 81.28, 618}, {47.03, 79.85, 618}, {47.26, 81.01, 618}, {48.33, 82.95, 618}, {48.4, 79.82, 618}, {50.36, 81.89, 618}}
+ b["scrapedAt"] = 1773750584
+ end
+ b = MTH_DS_Beasts[61337]
+ if b then
+ b["displayId"] = 4615
+ b["health"] = 4532
+ b["dmgMin"] = 121
+ b["dmgMax"] = 156.2
+ b["armor"] = 3500
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{21.77, 68.44, 618}, {29.41, 65.37, 618}, {29.72, 64.74, 618}, {30.13, 65.69, 618}, {41.41, 70.49, 618}, {42.91, 72.92, 618}, {43.78, 63.45, 618}, {43.78, 67.0, 618}, {46.47, 70.04, 618}, {46.68, 66.64, 618}, {48.77, 61.46, 618}, {50.41, 63.7, 618}}
+ b["scrapedAt"] = 1773750585
+ end
+ b = MTH_DS_Beasts[61401]
+ if b then
+ b["displayId"] = 7896
+ b["health"] = 2544
+ b["dmgMin"] = 90.2251
+ b["dmgMax"] = 114.945
+ b["armor"] = 2641
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{41.36, 41.59, 0}, {41.43, 41.17, 0}, {41.56, 42.02, 0}, {41.58, 42.3, 0}, {41.67, 41.47, 0}, {41.68, 42.69, 0}, {41.7, 42.18, 0}, {41.86, 42.43, 0}, {41.95, 42.2, 0}, {42.06, 42.54, 0}, {42.15, 41.61, 0}, {42.19, 42.03, 0}}
+ b["scrapedAt"] = 1773750586
+ end
+ b = MTH_DS_Beasts[61480]
+ if b then
+ b["displayId"] = 18386
+ b["health"] = 4263
+ b["dmgMin"] = 169.4
+ b["dmgMax"] = 202.4
+ b["armor"] = 3435
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{32.95, 62.31, 215}}
+ b["scrapedAt"] = 1773750588
+ end
+ b = MTH_DS_Beasts[61488]
+ if b then
+ b["displayId"] = 6298
+ b["npcClass"] = "Rare-Elite"
+ b["health"] = 21497
+ b["dmgMin"] = 794.2
+ b["dmgMax"] = 903.1
+ b["armor"] = 3059
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{21.15, 67.68, 618}}
+ b["scrapedAt"] = 1773750591
+ end
+ b = MTH_DS_Beasts[61490]
+ if b then
+ b["displayId"] = 616
+ b["npcClass"] = "Rare-Elite"
+ b["health"] = 4668
+ b["dmgMin"] = 121
+ b["dmgMax"] = 156.2
+ b["armor"] = 3500
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{42.14, 69.14, 46}}
+ b["scrapedAt"] = 1773750593
+ end
+ b = MTH_DS_Beasts[61500]
+ if b then
+ b["displayId"] = 837
+ b["npcClass"] = "Rare"
+ b["health"] = 4689
+ b["dmgMin"] = 110
+ b["dmgMax"] = 137.5
+ b["armor"] = 3808
+ b["factionId"] = 72
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{98.41, 51.39, 440}}
+ b["scrapedAt"] = 1773750595
+ end
+ b = MTH_DS_Beasts[61515]
+ if b then
+ b["displayId"] = 15234
+ b["npcClass"] = "Rare-Elite"
+ b["health"] = 9408
+ b["dmgMin"] = 402.923
+ b["dmgMax"] = 519.103
+ b["armor"] = 3052
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{36.02, 80.62, 0}}
+ b["scrapedAt"] = 1773750596
+ end
+ b = MTH_DS_Beasts[61516]
+ if b then
+ b["displayId"] = 11713
+ b["npcClass"] = "Rare"
+ b["health"] = 4485
+ b["dmgMin"] = 129.03
+ b["dmgMax"] = 161.666
+ b["armor"] = 3108
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{38.7, 91.24, 0}}
+ b["scrapedAt"] = 1773750597
+ end
+ b = MTH_DS_Beasts[61546]
+ if b then
+ b["displayId"] = 11909
+ b["npcClass"] = "Boss"
+ b["health"] = 3198000
+ b["dmgMin"] = 1999
+ b["dmgMax"] = 2650
+ b["armor"] = 4712
+ b["factionId"] = 35
+ b["reactA"] = "friendly"
+ b["reactH"] = "friendly"
+ b["scrapedAt"] = 1773750598
+ end
+ b = MTH_DS_Beasts[61547]
+ if b then
+ b["displayId"] = 9567
+ b["npcClass"] = "Boss"
+ b["health"] = 3198000
+ b["dmgMin"] = 1999
+ b["dmgMax"] = 2650
+ b["armor"] = 4712
+ b["factionId"] = 35
+ b["reactA"] = "friendly"
+ b["reactH"] = "friendly"
+ b["scrapedAt"] = 1773750599
+ end
+ b = MTH_DS_Beasts[61552]
+ if b then
+ b["displayId"] = 18247
+ b["npcClass"] = "Rare"
+ b["health"] = 2642
+ b["dmgMin"] = 214.157
+ b["dmgMax"] = 330.754
+ b["armor"] = 2397
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{40.97, 41.47, 0}}
+ b["scrapedAt"] = 1773750600
+ end
+ b = MTH_DS_Beasts[61554]
+ if b then
+ b["displayId"] = 9568
+ b["npcClass"] = "Rare"
+ b["health"] = 2125
+ b["dmgMin"] = 321.235
+ b["dmgMax"] = 414.037
+ b["armor"] = 1709
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{47.43, 92.13, 130}}
+ b["scrapedAt"] = 1773750602
+ end
+ b = MTH_DS_Beasts[61586]
+ if b then
+ b["displayId"] = 20410
+ b["npcClass"] = "Rare-Elite"
+ b["health"] = 4532
+ b["dmgMin"] = 117.7
+ b["dmgMax"] = 144.1
+ b["armor"] = 3791
+ b["factionId"] = 35
+ b["reactA"] = "friendly"
+ b["reactH"] = "friendly"
+ b["coordsTDB"] = {{83.42, 33.5, 357}}
+ b["scrapedAt"] = 1773750603
+ end
+ b = MTH_DS_Beasts[61589]
+ if b then
+ b["displayId"] = 10810
+ b["health"] = 2439
+ b["dmgMin"] = 85.8
+ b["dmgMax"] = 104.5
+ b["armor"] = 2725
+ b["factionId"] = 80
+ b["reactA"] = "friendly"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{81.94, 62.21, 357}}
+ b["scrapedAt"] = 1773750604
+ end
+ b = MTH_DS_Beasts[61596]
+ if b then
+ b["displayId"] = 20414
+ b["health"] = 2351
+ b["dmgMin"] = 72.5754
+ b["dmgMax"] = 96.3706
+ b["armor"] = 2245
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{81.39, 65.19, 357}, {81.68, 58.37, 357}, {82.28, 59.68, 357}, {82.6, 63.31, 357}, {82.76, 57.85, 357}, {83.03, 61.63, 357}, {83.12, 65.36, 357}, {83.26, 48.87, 357}, {83.64, 63.03, 357}, {83.72, 60.81, 357}, {84.14, 59.21, 357}, {84.5, 49.6, 357}}
+ b["scrapedAt"] = 1773750606
+ end
+ b = MTH_DS_Beasts[61597]
+ if b then
+ b["displayId"] = 20412
+ b["health"] = 2351
+ b["dmgMin"] = 72.5754
+ b["dmgMax"] = 96.3706
+ b["armor"] = 2245
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{81.39, 64.41, 357}, {82.79, 56.36, 357}, {82.83, 64.6, 357}, {82.9, 60.2, 357}, {83.23, 62.81, 357}, {83.41, 55.39, 357}, {83.69, 57.18, 357}, {83.92, 49.99, 357}}
+ b["scrapedAt"] = 1773750607
+ end
+ b = MTH_DS_Beasts[61599]
+ if b then
+ b["displayId"] = 20437
+ b["health"] = 2545
+ b["dmgMin"] = 80.9037
+ b["dmgMax"] = 104.699
+ b["armor"] = 2557
+ b["factionId"] = 15
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{83.1, 33.7, 357}, {83.16, 34.84, 357}, {83.74, 34.02, 357}, {84.01, 35.14, 357}, {84.04, 38.34, 357}, {84.96, 34.93, 357}, {85.02, 33.35, 357}}
+ b["scrapedAt"] = 1773750608
+ end
+ b = MTH_DS_Beasts[61603]
+ if b then
+ b["displayId"] = 785
+ b["health"] = 2356
+ b["dmgMin"] = 105.057
+ b["dmgMax"] = 134.719
+ b["armor"] = 2397
+ b["factionId"] = 32
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{48.21, 97.52, 130}}
+ b["scrapedAt"] = 1773750609
+ end
+ b = MTH_DS_Beasts[61604]
+ if b then
+ b["displayId"] = 20424
+ b["npcClass"] = "Elite"
+ b["health"] = 4166
+ b["dmgMin"] = 332.473
+ b["dmgMax"] = 427.643
+ b["armor"] = 1727
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750610
+ end
+ b = MTH_DS_Beasts[61656]
+ if b then
+ b["displayId"] = 1192
+ b["health"] = 112
+ b["dmgMin"] = 7.7
+ b["dmgMax"] = 11
+ b["armor"] = 147
+ b["factionId"] = 32
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{97.68, 22.98, 17}, {98.09, 24.44, 17}, {98.24, 24.95, 17}, {98.56, 27.23, 17}, {98.7, 19.74, 17}, {98.76, 21.25, 17}, {98.9, 22.36, 17}, {99.67, 24.38, 17}, {99.94, 21.87, 17}, {66.8, 52.67, 0}, {66.83, 51.5, 0}, {66.89, 52.88, 0}, {66.93, 53.09, 0}, {67.03, 52.12, 0}, {67.22, 52.72, 0}, {99.56, 51.27, 14}, {99.94, 53.46, 14}}
+ b["scrapedAt"] = 1773751786
+ end
+ b = MTH_DS_Beasts[61657]
+ if b then
+ b["displayId"] = 1192
+ b["health"] = 112
+ b["dmgMin"] = 7.7
+ b["dmgMax"] = 11
+ b["armor"] = 198
+ b["factionId"] = 32
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{67.06, 50.55, 0}, {67.15, 53.49, 0}, {67.16, 53.16, 0}, {67.16, 51.87, 0}, {67.2, 53.8, 0}, {67.25, 52.51, 0}, {67.26, 50.73, 0}, {67.3, 53.32, 0}, {67.36, 51.75, 0}, {67.41, 52.23, 0}, {67.44, 52.27, 0}, {67.48, 52.42, 0}, {67.56, 51.55, 0}, {67.65, 51.15, 0}, {67.7, 51.62, 0}, {67.72, 51.28, 0}}
+ b["scrapedAt"] = 1773751787
+ end
+ b = MTH_DS_Beasts[61658]
+ if b then
+ b["displayId"] = 8050
+ b["health"] = 112
+ b["dmgMin"] = 7.7
+ b["dmgMax"] = 11
+ b["armor"] = 147
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{98.16, 22.12, 17}, {98.35, 21.29, 17}, {98.79, 23.5, 17}, {99.03, 20.98, 17}, {99.39, 22.11, 17}, {99.55, 21.11, 17}, {66.89, 51.82, 0}, {66.93, 51.57, 0}}
+ b["scrapedAt"] = 1773751788
+ end
+ b = MTH_DS_Beasts[61659]
+ if b then
+ b["displayId"] = 8050
+ b["health"] = 151
+ b["dmgMin"] = 9.9
+ b["dmgMax"] = 14.3
+ b["armor"] = 278
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{66.92, 50.51, 0}, {67.27, 51.87, 0}, {67.29, 52.11, 0}, {67.44, 52.47, 0}, {67.67, 52.12, 0}, {99.07, 19.81, 17}}
+ b["scrapedAt"] = 1773751789
+ end
+ b = MTH_DS_Beasts[61660]
+ if b then
+ b["displayId"] = 2485
+ b["health"] = 112
+ b["dmgMin"] = 7.7
+ b["dmgMax"] = 11
+ b["armor"] = 147
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{97.43, 22.46, 17}, {97.74, 23.72, 17}, {98.43, 30.53, 17}, {98.44, 24.44, 17}, {98.45, 22.85, 17}, {99.34, 24.86, 17}, {99.55, 25.35, 17}, {99.57, 23.84, 17}, {99.8, 26.16, 17}, {99.41, 53.0, 14}, {99.91, 52.32, 14}, {66.93, 52.82, 0}, {67.07, 52.73, 0}}
+ b["scrapedAt"] = 1773751790
+ end
+ b = MTH_DS_Beasts[61661]
+ if b then
+ b["displayId"] = 2485
+ b["health"] = 112
+ b["dmgMin"] = 7.7
+ b["dmgMax"] = 11
+ b["armor"] = 198
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{98.9, 30.44, 17}, {99.25, 30.91, 17}, {99.65, 30.16, 17}, {67.2, 52.42, 0}}
+ b["scrapedAt"] = 1773751791
+ end
+ b = MTH_DS_Beasts[61662]
+ if b then
+ b["displayId"] = 2488
+ b["health"] = 151
+ b["dmgMin"] = 9.9
+ b["dmgMax"] = 14.3
+ b["armor"] = 278
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{66.87, 53.89, 0}, {67.0, 53.82, 0}, {67.11, 53.04, 0}, {67.11, 53.31, 0}, {67.18, 54.05, 0}, {67.21, 52.86, 0}, {67.33, 53.76, 0}, {67.43, 53.54, 0}}
+ b["scrapedAt"] = 1773751793
+ end
+ b = MTH_DS_Beasts[61680]
+ if b then
+ b["displayId"] = 981
+ b["health"] = 151
+ b["dmgMin"] = 9.9
+ b["dmgMax"] = 14.3
+ b["armor"] = 278
+ b["factionId"] = 32
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{66.82, 55.03, 0}, {66.9, 49.61, 0}, {66.99, 50.12, 0}, {66.99, 54.43, 0}, {67.09, 55.14, 0}, {67.21, 54.31, 0}, {67.3, 55.08, 0}, {67.39, 49.45, 0}, {67.48, 49.7, 0}, {67.66, 50.25, 0}, {67.67, 53.62, 0}, {67.72, 54.05, 0}, {67.89, 53.34, 0}, {67.96, 50.1, 0}, {68.02, 52.72, 0}, {68.06, 50.52, 0}, {68.06, 52.05, 0}, {68.09, 51.7, 0}, {68.11, 49.73, 0}, {68.15, 52.81, 0}, {68.17, 50.06, 0}, {68.21, 53.38, 0}, {68.21, 51.26, 0}, {68.22, 51.05, 0}, {68.27, 52.41, 0}, {68.29, 53.32, 0}, {68.31, 51.63, 0}, {68.36, 51.33, 0}, {68.39, 50.72, 0}, {68.52, 52.18, 0}, {68.54, 51.22, 0}, {68.56, 50.33, 0}, {68.61, 52.58, 0}, {68.66, 50.65, 0}, {68.68, 52.08, 0}, {68.7, 50.99, 0}, {68.74, 51.75, 0}, {97.76, 15.21, 17}, {98.34, 17.61, 17}, {98.57, 16.18, 17}, {98.75, 32.45, 17}, {98.87, 15.34, 17}, {98.89, 17.98, 17}, {99.02, 31.74, 17}, {99.17, 19.2, 17}, {99.38, 33.61, 17}, {99.49, 16.79, 17}, {99.52, 17.41, 17}, {99.86, 14.19, 17}, {99.95, 32.39, 17}, {98.83, 37.91, 14}}
+ b["scrapedAt"] = 1773751794
+ end
+ b = MTH_DS_Beasts[61681]
+ if b then
+ b["displayId"] = 981
+ b["health"] = 78
+ b["dmgMin"] = 3.3
+ b["dmgMax"] = 5.5
+ b["armor"] = 59
+ b["factionId"] = 32
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{93.97, 56.89, 14}, {94.19, 54.99, 14}, {94.21, 59.3, 14}, {94.57, 52.49, 14}, {95.18, 60.12, 14}, {95.2, 66.87, 14}, {95.22, 55.19, 14}, {95.39, 63.53, 14}, {95.54, 57.51, 14}, {95.71, 48.66, 14}, {95.82, 67.87, 14}, {96.26, 56.32, 14}, {96.46, 45.48, 14}, {96.71, 51.75, 14}, {96.82, 67.61, 14}, {97.14, 40.26, 14}, {97.26, 66.79, 14}, {97.37, 42.22, 14}, {98.18, 48.86, 14}, {98.69, 45.43, 14}, {99.64, 35.3, 14}, {99.66, 37.85, 14}, {99.66, 67.47, 14}, {97.49, 31.62, 17}, {97.56, 17.81, 17}, {97.71, 19.94, 17}, {98.0, 20.91, 17}}
+ b["scrapedAt"] = 1773751795
+ end
+ b = MTH_DS_Beasts[61686]
+ if b then
+ b["displayId"] = 10825
+ b["health"] = 61
+ b["dmgMin"] = 3.3
+ b["dmgMax"] = 5.5
+ b["armor"] = 41
+ b["factionId"] = 32
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{96.46, 59.3, 14}, {97.81, 55.95, 14}, {97.96, 62.14, 14}, {98.01, 65.14, 14}, {98.13, 61.0, 14}, {99.39, 65.23, 14}, {99.87, 61.51, 14}, {99.89, 55.53, 14}, {97.72, 29.36, 17}, {97.92, 26.47, 17}}
+ b["scrapedAt"] = 1773751796
+ end
+ b = MTH_DS_Beasts[61689]
+ if b then
+ b["displayId"] = 20504
+ b["health"] = 46
+ b["dmgMin"] = 1.1
+ b["dmgMax"] = 2.2
+ b["armor"] = 16
+ b["factionId"] = 189
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{4.794, 24.87, 139}, {5.957, 16.89, 139}, {6.086, 27.62, 139}, {6.163, 21.19, 139}, {6.835, 15.46, 139}, {7.326, 20.3, 139}, {7.533, 25.1, 139}, {7.559, 12.71, 139}, {9.367, 26.15, 139}, {9.6, 25.57, 139}, {9.729, 19.18, 139}, {10.04, 24.99, 139}}
+ b["scrapedAt"] = 1773751797
+ end
+ b = MTH_DS_Beasts[61690]
+ if b then
+ b["displayId"] = 18027
+ b["health"] = 46
+ b["dmgMin"] = 1.1
+ b["dmgMax"] = 2.2
+ b["armor"] = 16
+ b["factionId"] = 189
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{4.536, 24.21, 139}, {5.492, 27.04, 139}, {5.879, 17.78, 139}, {6.603, 16.35, 139}, {6.887, 20.15, 139}, {7.765, 24.91, 139}, {8.049, 13.06, 139}, {8.618, 27.12, 139}, {9.109, 14.57, 139}, {9.548, 16.62, 139}, {9.677, 26.31, 139}, {9.961, 18.6, 139}, {10.37, 23.09, 139}}
+ b["scrapedAt"] = 1773751798
+ end
+ b = MTH_DS_Beasts[61691]
+ if b then
+ b["displayId"] = 20511
+ b["health"] = 78
+ b["dmgMin"] = 3.3
+ b["dmgMax"] = 5.5
+ b["armor"] = 59
+ b["factionId"] = 189
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{3.503, 12.78, 139}, {3.735, 8.794, 139}, {4.691, 10.07, 139}, {5.647, 8.988, 139}, {5.724, 18.98, 139}, {6.215, 16.16, 139}, {7.249, 8.252, 139}, {7.429, 15.96, 139}, {7.636, 11.2, 139}, {9.703, 13.64, 139}, {10.06, 9.337, 139}, {10.63, 12.16, 139}, {10.68, 18.48, 139}}
+ b["scrapedAt"] = 1773751800
+ end
+ b = MTH_DS_Beasts[61692]
+ if b then
+ b["displayId"] = 20504
+ b["health"] = 61
+ b["dmgMin"] = 3.3
+ b["dmgMax"] = 5.5
+ b["armor"] = 41
+ b["factionId"] = 189
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{2.392, 11.62, 139}, {4.278, 11.47, 139}, {4.872, 8.368, 139}, {5.569, 15.11, 139}, {8.153, 10.5, 139}, {8.256, 16.04, 139}, {9.419, 14.18, 139}, {9.703, 10.92, 139}}
+ b["scrapedAt"] = 1773751801
+ end
+ b = MTH_DS_Beasts[61693]
+ if b then
+ b["displayId"] = 18027
+ b["health"] = 78
+ b["dmgMin"] = 3.3
+ b["dmgMax"] = 5.5
+ b["armor"] = 59
+ b["factionId"] = 189
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{3.218, 13.79, 139}, {3.425, 9.259, 139}, {3.787, 10.03, 139}, {5.027, 13.4, 139}, {5.182, 8.368, 139}, {7.946, 11.7, 139}, {8.282, 14.45, 139}, {9.651, 16.23, 139}, {11.25, 11.58, 139}}
+ b["scrapedAt"] = 1773749062
+ end
+ b = MTH_DS_Beasts[61695]
+ if b then
+ b["displayId"] = 20510
+ b["health"] = 132
+ b["dmgMin"] = 7.7
+ b["dmgMax"] = 11
+ b["armor"] = 207
+ b["factionId"] = 189
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{0.7125, 12.55, 139}, {3.115, 7.128, 139}, {4.226, 2.634, 139}, {5.699, 4.068, 139}, {6.112, 6.237, 139}, {7.274, 0.9298, 139}, {7.869, 7.942, 139}, {9.341, 3.022, 139}, {10.4, 5.269, 139}, {10.53, 8.213, 139}, {11.18, 0.1162, 139}, {11.92, 10.15, 139}, {13.16, 11.12, 139}, {14.09, 8.407, 139}, {15.36, 7.051, 139}, {16.88, 12.55, 139}, {17.58, 8.058, 139}, {18.74, 11.47, 139}, {19.91, 7.554, 139}, {20.48, 9.763, 139}, {52.1, 15.11, 0}, {52.12, 14.73, 0}, {52.28, 15.38, 0}, {52.32, 14.86, 0}, {52.41, 15.57, 0}, {52.57, 14.6, 0}, {52.74, 15.1, 0}, {52.78, 14.47, 0}, {52.81, 14.82, 0}, {53.28, 14.68, 0}}
+ b["scrapedAt"] = 1773751802
+ end
+ b = MTH_DS_Beasts[61696]
+ if b then
+ b["displayId"] = 20504
+ b["health"] = 132
+ b["dmgMin"] = 7.7
+ b["dmgMax"] = 11
+ b["armor"] = 207
+ b["factionId"] = 189
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{51.29, 17.43, 0}, {51.31, 16.72, 0}, {51.55, 16.58, 0}, {51.61, 17.18, 0}, {52.02, 14.96, 0}, {52.13, 15.25, 0}, {52.24, 15.54, 0}, {52.26, 14.93, 0}, {52.35, 15.38, 0}, {52.66, 15.48, 0}, {52.71, 15.55, 0}, {52.97, 15.39, 0}, {1.126, 7.826, 139}, {3.063, 5.695, 139}, {3.58, 7.361, 139}, {5.001, 3.913, 139}, {7.998, 3.952, 139}, {9.677, 6.354, 139}, {10.97, 5.734, 139}, {12.11, 4.726, 139}, {12.47, 9.569, 139}, {14.46, 12.16, 139}, {15.9, 11.82, 139}, {16.34, 7.516, 139}}
+ b["scrapedAt"] = 1773751803
+ end
+ b = MTH_DS_Beasts[61697]
+ if b then
+ b["displayId"] = 18028
+ b["health"] = 112
+ b["dmgMin"] = 7.7
+ b["dmgMax"] = 11
+ b["armor"] = 147
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{14.77, 8.833, 139}, {16.55, 11.97, 139}, {17.3, 10.34, 139}, {18.02, 7.438, 139}, {19.88, 10.42, 139}, {21.07, 8.91, 139}}
+ b["scrapedAt"] = 1773751805
+ end
+ b = MTH_DS_Beasts[61698]
+ if b then
+ b["displayId"] = 18028
+ b["health"] = 132
+ b["dmgMin"] = 7.7
+ b["dmgMax"] = 11
+ b["armor"] = 207
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{18.12, 11.47, 139}, {19.16, 7.671, 139}, {19.8, 6.315, 139}, {20.06, 10.89, 139}}
+ b["scrapedAt"] = 1773751806
+ end
+ b = MTH_DS_Beasts[61699]
+ if b then
+ b["displayId"] = 18430
+ b["health"] = 187
+ b["dmgMin"] = 12.1
+ b["dmgMax"] = 16.5
+ b["armor"] = 406
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{20.6, 8.872, 139}}
+ b["scrapedAt"] = 1773750614
+ end
+ b = MTH_DS_Beasts[61700]
+ if b then
+ b["displayId"] = 18027
+ b["health"] = 151
+ b["dmgMin"] = 9.9
+ b["dmgMax"] = 14.3
+ b["armor"] = 278
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{50.65, 16.01, 0}, {50.87, 15.3, 0}, {50.94, 14.98, 0}, {50.94, 15.59, 0}, {51.2, 15.32, 0}, {51.27, 14.82, 0}, {51.3, 15.21, 0}, {51.53, 14.98, 0}, {51.63, 14.83, 0}, {52.02, 14.48, 0}, {52.36, 14.75, 0}, {52.52, 14.84, 0}, {52.7, 14.53, 0}, {52.76, 14.8, 0}, {52.96, 15.13, 0}, {53.08, 14.99, 0}, {53.17, 14.6, 0}, {53.27, 14.56, 0}}
+ b["scrapedAt"] = 1773751807
+ end
+ b = MTH_DS_Beasts[61704]
+ if b then
+ b["displayId"] = 999
+ b["health"] = 151
+ b["dmgMin"] = 9.9
+ b["dmgMax"] = 14.3
+ b["armor"] = 278
+ b["factionId"] = 18
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{50.68, 13.97, 0}, {50.76, 15.12, 0}, {50.82, 14.07, 0}, {50.86, 14.82, 0}, {50.98, 14.22, 0}, {50.99, 14.86, 0}, {51.19, 14.35, 0}, {51.31, 14.51, 0}, {51.44, 13.98, 0}, {51.7, 13.77, 0}, {51.84, 14.33, 0}, {51.88, 13.61, 0}, {52.1, 14.37, 0}, {52.18, 14.41, 0}}
+ b["scrapedAt"] = 1773751808
+ end
+ b = MTH_DS_Beasts[61716]
+ if b then
+ b["displayId"] = 20512
+ b["health"] = 151
+ b["dmgMin"] = 9.9
+ b["dmgMax"] = 14.3
+ b["armor"] = 278
+ b["factionId"] = 189
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{50.66, 13.37, 0}, {50.69, 15.65, 0}, {50.83, 13.12, 0}, {50.86, 13.97, 0}, {50.87, 13.6, 0}, {50.88, 15.89, 0}, {50.89, 15.18, 0}, {51.03, 13.75, 0}, {51.05, 12.88, 0}, {51.09, 14.97, 0}, {51.15, 12.7, 0}, {51.15, 15.24, 0}, {51.24, 13.69, 0}, {51.32, 13.71, 0}, {51.36, 15.23, 0}, {51.38, 13.11, 0}, {51.38, 14.72, 0}, {51.52, 14.54, 0}, {51.61, 15.04, 0}, {51.64, 14.6, 0}, {51.65, 13.48, 0}, {51.65, 12.81, 0}, {51.7, 14.47, 0}, {51.84, 13.14, 0}, {51.88, 14.5, 0}}
+ b["scrapedAt"] = 1773751809
+ end
+ b = MTH_DS_Beasts[61717]
+ if b then
+ b["displayId"] = 18008
+ b["health"] = 151
+ b["dmgMin"] = 9.9
+ b["dmgMax"] = 14.3
+ b["armor"] = 278
+ b["factionId"] = 189
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{50.74, 13.21, 0}, {50.84, 12.82, 0}, {50.93, 13.42, 0}, {51.06, 12.68, 0}, {51.18, 13.92, 0}, {51.35, 13.94, 0}, {51.47, 12.91, 0}, {51.62, 13.58, 0}, {51.63, 12.91, 0}, {51.83, 12.65, 0}}
+ b["scrapedAt"] = 1773751810
+ end
+ b = MTH_DS_Beasts[61774]
+ if b then
+ b["displayId"] = 20519
+ b["health"] = 112
+ b["dmgMin"] = 7.7
+ b["dmgMax"] = 11
+ b["armor"] = 198
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{2.908, 6.392, 139}, {3.451, 5.036, 139}, {4.51, 6.586, 139}, {6.163, 3.138, 139}, {9.393, 2.131, 139}, {10.76, 1.007, 139}, {11.51, 3.564, 139}, {11.8, 8.445, 139}, {11.8, 10.73, 139}, {12.88, 9.259, 139}, {51.66, 16.46, 0}, {52.07, 14.96, 0}, {52.16, 15.51, 0}, {52.32, 15.27, 0}, {52.39, 14.62, 0}, {52.42, 14.87, 0}, {52.5, 15.62, 0}, {52.66, 15.1, 0}, {52.76, 15.35, 0}}
+ b["scrapedAt"] = 1773751811
+ end
+ b = MTH_DS_Beasts[61775]
+ if b then
+ b["displayId"] = 20515
+ b["health"] = 112
+ b["dmgMin"] = 7.7
+ b["dmgMax"] = 11
+ b["armor"] = 198
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{50.56, 15.7, 0}, {50.59, 15.93, 0}, {50.82, 15.86, 0}, {50.83, 15.25, 0}, {50.88, 15.43, 0}, {50.91, 14.98, 0}, {51.06, 15.35, 0}, {51.16, 14.79, 0}, {51.47, 14.66, 0}, {51.5, 15.24, 0}, {51.67, 14.87, 0}, {51.81, 14.45, 0}, {51.92, 14.43, 0}, {51.99, 14.56, 0}}
+ b["scrapedAt"] = 1773751812
+ end
+ b = MTH_DS_Beasts[61776]
+ if b then
+ b["displayId"] = 20516
+ b["health"] = 187
+ b["dmgMin"] = 12.1
+ b["dmgMax"] = 16.5
+ b["armor"] = 312
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{51.24, 16.68, 0}, {51.27, 16.91, 0}, {51.3, 17.18, 0}, {51.46, 16.87, 0}, {51.47, 16.6, 0}, {51.6, 17.15, 0}, {51.62, 16.98, 0}}
+ b["scrapedAt"] = 1773751813
+ end
+ b = MTH_DS_Beasts[61789]
+ if b then
+ b["displayId"] = 20512
+ b["npcClass"] = "Rare"
+ b["health"] = 194
+ b["dmgMin"] = 11
+ b["dmgMax"] = 13.2
+ b["armor"] = 406
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{50.63, 15.85, 0}, {51.4, 14.95, 0}}
+ b["scrapedAt"] = 1773751814
+ end
+ b = MTH_DS_Beasts[61932]
+ if b then
+ b["displayId"] = 4734
+ b["npcClass"] = "Elite"
+ b["health"] = 115456
+ b["dmgMin"] = 2745
+ b["dmgMax"] = 2815
+ b["armor"] = 4091
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750617
+ end
+ b = MTH_DS_Beasts[61933]
+ if b then
+ b["displayId"] = 7896
+ b["npcClass"] = "Elite"
+ b["health"] = 144040
+ b["dmgMin"] = 3050
+ b["dmgMax"] = 3680
+ b["armor"] = 4091
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750623
+ end
+ b = MTH_DS_Beasts[61935]
+ if b then
+ b["displayId"] = 958
+ b["npcClass"] = "Elite"
+ b["health"] = 75152
+ b["dmgMin"] = 1609
+ b["dmgMax"] = 2600
+ b["armor"] = 4091
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750626
+ end
+ b = MTH_DS_Beasts[61975]
+ if b then
+ b["displayId"] = 20504
+ b["health"] = 1453
+ b["dmgMin"] = 67.914
+ b["dmgMax"] = 84.8925
+ b["armor"] = 1340
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{20.81, 54.86, 45}, {20.87, 52.78, 45}}
+ b["scrapedAt"] = 1773750635
+ end
+ b = MTH_DS_Beasts[62004]
+ if b then
+ b["displayId"] = 5379
+ b["npcClass"] = "Elite"
+ b["health"] = 4397
+ b["dmgMin"] = 390.5
+ b["dmgMax"] = 504.9
+ b["armor"] = 3489
+ b["factionId"] = 189
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{48.66, 71.23, 331}}
+ b["scrapedAt"] = 1773750639
+ end
+ b = MTH_DS_Beasts[62066]
+ if b then
+ b["displayId"] = 959
+ b["npcClass"] = "Elite"
+ b["health"] = 16788
+ b["dmgMin"] = 236.63
+ b["dmgMax"] = 277.529
+ b["armor"] = 1088
+ b["factionId"] = 62
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750647
+ end
+ b = MTH_DS_Beasts[62073]
+ if b then
+ b["displayId"] = 959
+ b["npcClass"] = "Elite"
+ b["health"] = 2702
+ b["dmgMin"] = 159.438
+ b["dmgMax"] = 205.17
+ b["armor"] = 1097
+ b["factionId"] = 62
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750651
+ end
+ b = MTH_DS_Beasts[62074]
+ if b then
+ b["displayId"] = 959
+ b["npcClass"] = "Elite"
+ b["health"] = 2856
+ b["dmgMin"] = 159.438
+ b["dmgMax"] = 205.17
+ b["armor"] = 1114
+ b["factionId"] = 62
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750653
+ end
+ b = MTH_DS_Beasts[62075]
+ if b then
+ b["displayId"] = 711
+ b["npcClass"] = "Elite"
+ b["health"] = 2856
+ b["dmgMin"] = 159.438
+ b["dmgMax"] = 205.17
+ b["armor"] = 1114
+ b["factionId"] = 62
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750654
+ end
+ b = MTH_DS_Beasts[62112]
+ if b then
+ b["displayId"] = 3030
+ b["npcClass"] = "Boss"
+ b["health"] = 80925
+ b["dmgMin"] = 1129
+ b["dmgMax"] = 1481
+ b["armor"] = 4061
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750656
+ end
+ b = MTH_DS_Beasts[62121]
+ if b then
+ b["displayId"] = 20504
+ b["health"] = 1131
+ b["dmgMin"] = 51.9103
+ b["dmgMax"] = 65.5059
+ b["armor"] = 1183
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{41.4, 62.44, 0}, {42.12, 62.82, 0}, {42.18, 63.2, 0}, {42.26, 62.69, 0}, {42.6, 65.36, 0}, {42.63, 65.04, 0}, {42.77, 65.37, 0}, {42.87, 65.26, 0}, {42.92, 63.2, 0}, {43.02, 62.77, 0}, {43.13, 62.71, 0}, {43.15, 64.94, 0}, {43.15, 62.95, 0}, {43.24, 64.78, 0}, {43.4, 64.93, 0}, {43.41, 64.73, 0}, {43.74, 63.65, 0}, {43.74, 65.01, 0}, {43.84, 65.28, 0}, {43.86, 64.64, 0}, {43.87, 64.07, 0}, {44.07, 65.08, 0}, {44.08, 64.39, 0}, {44.09, 64.67, 0}, {44.21, 65.05, 0}, {44.63, 64.97, 0}, {44.82, 65.01, 0}, {12.69, 99.23, 1}}
+ b["scrapedAt"] = 1773751816
+ end
+ b = MTH_DS_Beasts[62122]
+ if b then
+ b["displayId"] = 20504
+ b["health"] = 1131
+ b["dmgMin"] = 51.9103
+ b["dmgMax"] = 65.5059
+ b["armor"] = 1183
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{41.72, 64.85, 0}, {42.13, 65.0, 0}, {42.23, 65.12, 0}, {42.47, 64.58, 0}, {43.27, 62.48, 0}, {43.59, 62.54, 0}, {43.59, 62.88, 0}, {43.7, 62.38, 0}, {44.1, 63.8, 0}, {44.31, 63.2, 0}, {44.38, 62.35, 0}, {44.57, 64.13, 0}, {44.7, 63.65, 0}, {44.91, 64.47, 0}, {44.98, 63.38, 0}, {45.12, 62.38, 0}, {45.25, 63.98, 0}, {45.28, 63.54, 0}, {45.37, 64.27, 0}, {45.52, 64.7, 0}, {45.56, 63.89, 0}, {45.6, 62.66, 0}, {45.63, 64.65, 0}, {45.65, 63.41, 0}, {45.69, 62.94, 0}, {45.74, 65.18, 0}, {45.81, 64.01, 0}, {45.84, 65.33, 0}, {45.91, 64.14, 0}, {45.94, 65.54, 0}, {46.03, 64.52, 0}, {46.05, 62.57, 0}, {46.11, 62.9, 0}, {46.11, 65.0, 0}, {46.14, 63.15, 0}, {20.61, 95.36, 1}, {20.77, 93.2, 1}, {22.01, 93.5, 1}, {22.42, 97.28, 1}, {23.15, 94.54, 1}, {23.94, 93.41, 1}, {25.87, 97.67, 1}, {28.49, 97.22, 1}, {30.42, 99.01, 1}, {32.31, 97.49, 1}, {35.84, 98.13, 1}, {36.14, 92.77, 1}, {37.32, 95.21, 1}, {38.68, 98.31, 1}, {41.57, 99.1, 1}, {0.3527, 4.444, 46}, {0.7623, 12.49, 46}, {1.548, 18.94, 46}, {32.91, 0.6662, 12}, {2.065, 84.91, 51}}
+ b["scrapedAt"] = 1773751816
+ end
+ b = MTH_DS_Beasts[62123]
+ if b then
+ b["displayId"] = 1006
+ b["health"] = 1131
+ b["dmgMin"] = 51.9103
+ b["dmgMax"] = 65.5059
+ b["armor"] = 1183
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{41.71, 63.16, 0}, {42.02, 63.25, 0}, {42.04, 62.37, 0}, {42.33, 62.56, 0}, {42.41, 65.13, 0}, {42.58, 65.13, 0}, {43.02, 65.3, 0}, {43.22, 65.18, 0}, {43.95, 64.21, 0}, {43.96, 64.86, 0}, {44.0, 64.56, 0}, {44.23, 65.37, 0}, {44.42, 64.96, 0}, {44.57, 65.22, 0}, {44.69, 64.74, 0}, {44.85, 64.89, 0}}
+ b["scrapedAt"] = 1773751818
+ end
+ b = MTH_DS_Beasts[62124]
+ if b then
+ b["displayId"] = 1006
+ b["health"] = 1316
+ b["dmgMin"] = 41.6416
+ b["dmgMax"] = 51.1597
+ b["armor"] = 1252
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{41.8, 65.03, 0}, {42.02, 65.05, 0}, {43.52, 62.69, 0}, {43.93, 63.73, 0}, {44.05, 65.53, 0}, {44.15, 62.52, 0}, {44.19, 63.09, 0}, {44.34, 62.64, 0}, {44.36, 63.79, 0}, {44.37, 63.37, 0}, {44.53, 63.28, 0}, {44.69, 63.11, 0}, {44.69, 62.61, 0}, {44.73, 64.14, 0}, {44.75, 63.54, 0}, {44.79, 64.53, 0}, {44.8, 62.97, 0}, {44.94, 62.62, 0}, {45.1, 64.23, 0}, {45.16, 63.44, 0}, {45.24, 62.66, 0}, {45.45, 63.98, 0}, {45.45, 63.01, 0}, {45.47, 64.13, 0}, {45.47, 62.38, 0}, {45.56, 63.14, 0}, {45.64, 62.44, 0}, {45.65, 65.02, 0}, {45.66, 64.47, 0}, {45.72, 63.31, 0}, {45.73, 64.14, 0}, {45.89, 64.29, 0}, {45.92, 63.24, 0}, {45.94, 64.71, 0}, {45.95, 65.05, 0}, {46.02, 63.75, 0}, {46.04, 62.68, 0}, {9.017, 95.33, 1}, {9.748, 97.73, 1}, {9.971, 96.06, 1}, {11.47, 97.31, 1}, {13.18, 96.0, 1}, {13.81, 95.48, 1}, {22.36, 99.1, 1}, {28.59, 95.24, 1}, {29.44, 97.73, 1}, {29.99, 96.18, 1}, {32.69, 96.24, 1}, {34.86, 99.56, 1}, {35.98, 94.78, 1}, {36.08, 91.22, 1}, {36.27, 88.14, 1}, {37.14, 98.74, 1}, {38.5, 90.18, 1}, {31.5, 1.012, 12}, {33.66, 0.0181, 12}, {1.104, 3.573, 46}, {1.343, 14.18, 46}}
+ b["scrapedAt"] = 1773751819
+ end
+ b = MTH_DS_Beasts[62125]
+ if b then
+ b["displayId"] = 11420
+ b["health"] = 1131
+ b["dmgMin"] = 51.9103
+ b["dmgMax"] = 65.5059
+ b["armor"] = 1183
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{41.7, 63.31, 0}, {42.13, 62.59, 0}, {42.19, 63.4, 0}, {42.34, 62.4, 0}, {42.39, 64.86, 0}, {42.51, 64.89, 0}, {43.74, 64.84, 0}, {43.88, 64.35, 0}, {43.94, 64.7, 0}, {43.96, 65.33, 0}, {43.99, 65.18, 0}, {44.0, 64.38, 0}, {44.35, 65.4, 0}, {44.39, 65.11, 0}, {44.49, 64.72, 0}, {44.71, 65.08, 0}, {11.82, 98.95, 1}, {15.39, 95.66, 1}, {17.54, 96.3, 1}, {17.61, 97.15, 1}}
+ b["scrapedAt"] = 1773751820
+ end
+ b = MTH_DS_Beasts[62126]
+ if b then
+ b["displayId"] = 11420
+ b["health"] = 1316
+ b["dmgMin"] = 41.6416
+ b["dmgMax"] = 51.1597
+ b["armor"] = 1252
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{41.7, 64.7, 0}, {41.82, 65.15, 0}, {41.97, 65.19, 0}, {42.58, 64.71, 0}, {44.01, 64.01, 0}, {44.15, 62.66, 0}, {44.16, 63.59, 0}, {44.32, 62.85, 0}, {44.43, 63.16, 0}, {44.45, 62.65, 0}, {44.5, 63.94, 0}, {44.59, 62.97, 0}, {44.6, 64.54, 0}, {44.81, 62.53, 0}, {44.88, 62.83, 0}, {44.9, 63.54, 0}, {44.95, 64.69, 0}, {45.05, 62.6, 0}, {45.23, 63.8, 0}, {45.34, 63.22, 0}, {45.36, 62.39, 0}, {45.36, 62.73, 0}, {45.57, 64.9, 0}, {45.6, 63.76, 0}, {45.61, 64.08, 0}, {45.7, 63.15, 0}, {45.74, 65.03, 0}, {45.8, 64.45, 0}, {45.93, 63.08, 0}, {45.96, 62.56, 0}, {46.18, 63.88, 0}, {15.68, 95.05, 1}, {19.7, 99.99, 1}, {34.82, 95.6, 1}, {35.25, 93.53, 1}, {35.29, 88.93, 1}, {36.1, 89.33, 1}, {36.75, 96.64, 1}, {38.07, 99.32, 1}, {40.59, 99.1, 1}, {0.8648, 20.43, 46}, {1.138, 15.82, 46}, {1.343, 27.14, 46}, {30.47, 1.271, 12}, {34.18, 1.444, 12}, {0.5862, 68.37, 51}, {3.768, 85.11, 51}}
+ b["scrapedAt"] = 1773751821
+ end
+ b = MTH_DS_Beasts[62223]
+ if b then
+ b["displayId"] = 677
+ b["health"] = 1437
+ b["dmgMin"] = 56.8542
+ b["dmgMax"] = 71.6857
+ b["armor"] = 1287
+ b["factionId"] = 48
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{93.87, 29.38, 38}, {94.49, 22.53, 38}, {95.68, 35.42, 38}, {95.68, 40.31, 38}, {97.86, 26.55, 38}, {98.76, 30.85, 38}, {99.05, 36.01, 38}, {99.13, 44.17, 38}, {99.24, 21.34, 38}, {100.0, 45.42, 38}, {59.35, 52.21, 0}, {60.18, 52.68, 0}}
+ b["scrapedAt"] = 1773751822
+ end
+ b = MTH_DS_Beasts[62224]
+ if b then
+ b["displayId"] = 677
+ b["health"] = 1453
+ b["dmgMin"] = 70.3395
+ b["dmgMax"] = 88.5307
+ b["armor"] = 1322
+ b["factionId"] = 48
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{93.87, 27.04, 38}, {95.18, 36.61, 38}, {96.01, 42.75, 38}, {97.89, 31.99, 38}, {98.26, 39.71, 38}, {98.91, 29.33, 38}, {99.24, 44.28, 38}, {58.96, 53.77, 0}}
+ b["scrapedAt"] = 1773751823
+ end
+ b = MTH_DS_Beasts[62225]
+ if b then
+ b["displayId"] = 1337
+ b["health"] = 1669
+ b["dmgMin"] = 61.798
+ b["dmgMax"] = 76.6295
+ b["armor"] = 1388
+ b["factionId"] = 48
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{58.82, 48.34, 0}, {58.91, 48.22, 0}, {59.07, 48.26, 0}, {59.19, 49.16, 0}, {59.3, 48.19, 0}, {59.31, 48.85, 0}, {59.4, 49.29, 0}, {59.52, 47.84, 0}, {59.63, 49.23, 0}, {59.76, 49.06, 0}, {59.78, 49.95, 0}, {59.8, 49.62, 0}, {59.81, 49.57, 0}, {59.82, 48.81, 0}, {59.93, 47.82, 0}}
+ b["scrapedAt"] = 1773751825
+ end
+ b = MTH_DS_Beasts[62226]
+ if b then
+ b["displayId"] = 389
+ b["health"] = 1453
+ b["dmgMin"] = 70.3395
+ b["dmgMax"] = 88.5307
+ b["armor"] = 1322
+ b["factionId"] = 189
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{58.43, 50.14, 0}, {58.48, 47.98, 0}, {58.51, 49.26, 0}, {58.55, 48.79, 0}, {58.61, 47.63, 0}, {58.62, 49.78, 0}, {58.63, 50.79, 0}, {58.75, 50.78, 0}, {58.85, 50.27, 0}, {58.85, 49.84, 0}, {58.96, 49.85, 0}, {59.04, 50.84, 0}, {59.05, 53.04, 0}, {59.08, 50.05, 0}, {59.08, 53.64, 0}, {59.1, 52.64, 0}, {59.14, 52.05, 0}, {59.26, 50.03, 0}, {59.27, 52.41, 0}, {59.35, 53.95, 0}, {59.55, 50.79, 0}, {59.63, 52.58, 0}, {59.7, 50.27, 0}, {59.72, 53.45, 0}, {59.76, 50.47, 0}, {59.79, 52.06, 0}, {59.87, 53.57, 0}, {59.88, 50.6, 0}, {59.96, 52.25, 0}, {59.99, 52.61, 0}, {60.02, 54.15, 0}, {60.03, 50.34, 0}, {60.15, 53.28, 0}, {60.16, 50.82, 0}, {60.17, 54.08, 0}, {60.27, 52.49, 0}, {60.34, 51.39, 0}, {60.4, 51.2, 0}, {60.44, 51.48, 0}, {60.68, 51.77, 0}, {60.9, 51.54, 0}, {61.0, 51.71, 0}, {61.19, 51.02, 0}, {95.16, 56.2, 11}, {95.43, 68.54, 11}, {96.88, 67.23, 11}, {97.19, 63.68, 11}, {97.87, 70.86, 11}, {98.23, 74.89, 11}, {98.45, 78.73, 11}, {98.65, 72.06, 11}, {98.67, 61.21, 11}, {98.91, 63.35, 11}, {99.78, 51.3, 11}, {91.04, 24.54, 38}, {91.44, 11.99, 38}, {92.02, 28.95, 38}, {93.76, 18.35, 38}, {95.94, 9.268, 38}, {96.7, 20.19, 38}, {96.99, 16.34, 38}}
+ b["scrapedAt"] = 1773751826
+ end
+ b = MTH_DS_Beasts[62227]
+ if b then
+ b["displayId"] = 389
+ b["health"] = 1899
+ b["dmgMin"] = 61.8675
+ b["dmgMax"] = 77.3344
+ b["armor"] = 1709
+ b["factionId"] = 189
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{58.87, 48.85, 0}, {59.06, 54.93, 0}, {59.1, 48.85, 0}, {59.16, 54.51, 0}, {59.18, 54.11, 0}, {59.22, 48.43, 0}, {59.28, 54.8, 0}, {59.35, 55.06, 0}, {59.36, 47.87, 0}, {59.39, 54.27, 0}, {59.46, 49.45, 0}, {59.47, 48.91, 0}, {59.62, 49.44, 0}, {59.64, 54.66, 0}, {59.64, 55.4, 0}, {59.7, 50.04, 0}, {59.73, 54.53, 0}, {59.78, 48.24, 0}, {59.85, 49.81, 0}, {59.88, 49.32, 0}, {59.95, 47.04, 0}, {59.99, 48.37, 0}, {60.0, 55.12, 0}, {60.0, 48.74, 0}, {60.06, 47.76, 0}, {60.13, 55.28, 0}, {60.14, 55.01, 0}, {60.18, 48.61, 0}, {60.24, 46.39, 0}, {60.27, 50.17, 0}, {60.29, 46.87, 0}, {60.3, 49.86, 0}, {60.38, 49.02, 0}, {60.39, 49.5, 0}, {60.4, 48.34, 0}, {60.41, 55.49, 0}, {60.43, 47.27, 0}, {60.48, 49.12, 0}, {60.49, 45.95, 0}, {60.61, 50.0, 0}, {60.61, 55.46, 0}, {60.67, 47.84, 0}, {60.68, 55.33, 0}, {60.72, 47.55, 0}, {60.74, 47.37, 0}, {60.75, 49.93, 0}, {60.76, 48.97, 0}, {60.76, 48.55, 0}, {60.78, 55.66, 0}, {60.85, 49.31, 0}, {60.99, 49.0, 0}, {61.01, 55.96, 0}, {61.04, 49.37, 0}, {61.06, 49.75, 0}, {61.21, 50.01, 0}, {61.28, 50.46, 0}, {98.29, 47.1, 38}}
+ b["scrapedAt"] = 1773751827
+ end
+ b = MTH_DS_Beasts[62247]
+ if b then
+ b["displayId"] = 827
+ b["health"] = 1669
+ b["dmgMin"] = 118.653
+ b["dmgMax"] = 142.135
+ b["armor"] = 1427
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{58.78, 50.52, 0}, {58.84, 49.59, 0}, {59.09, 49.67, 0}, {59.16, 53.9, 0}, {59.48, 50.04, 0}, {59.59, 52.25, 0}, {59.69, 50.63, 0}, {59.7, 54.28, 0}, {59.97, 51.95, 0}, {60.0, 53.17, 0}, {60.07, 50.96, 0}, {60.2, 47.27, 0}, {60.2, 49.47, 0}, {60.2, 50.53, 0}, {60.26, 48.78, 0}, {60.3, 50.86, 0}, {60.33, 45.86, 0}, {60.4, 52.84, 0}, {60.47, 50.1, 0}, {60.56, 47.48, 0}, {60.57, 49.51, 0}, {60.61, 51.58, 0}, {60.61, 49.11, 0}, {60.74, 48.7, 0}, {60.81, 49.72, 0}, {60.96, 49.59, 0}, {60.97, 49.02, 0}, {61.1, 51.94, 0}, {61.2, 51.28, 0}, {90.68, 25.63, 38}, {90.97, 14.43, 38}, {97.71, 16.28, 38}, {99.16, 24.27, 38}}
+ b["scrapedAt"] = 1773751828
+ end
+ b = MTH_DS_Beasts[62248]
+ if b then
+ b["displayId"] = 827
+ b["health"] = 2034
+ b["dmgMin"] = 66.6266
+ b["dmgMax"] = 83.2832
+ b["armor"] = 1900
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{58.98, 57.52, 0}, {59.0, 58.01, 0}, {59.01, 57.12, 0}, {59.2, 54.97, 0}, {59.21, 54.31, 0}, {59.23, 57.67, 0}, {59.28, 54.59, 0}, {59.48, 57.39, 0}, {59.62, 54.43, 0}, {59.64, 55.93, 0}, {59.68, 57.04, 0}, {59.72, 55.17, 0}, {59.8, 55.48, 0}, {59.93, 56.1, 0}, {60.01, 56.52, 0}, {60.06, 57.9, 0}, {60.3, 57.74, 0}, {60.3, 55.25, 0}, {60.36, 57.43, 0}, {60.41, 55.85, 0}, {60.64, 56.48, 0}, {60.74, 56.86, 0}, {60.82, 56.26, 0}, {61.05, 56.39, 0}, {92.31, 94.94, 38}, {93.07, 84.23, 38}, {93.73, 96.79, 38}, {94.45, 94.23, 38}, {94.74, 88.09, 38}, {96.99, 94.99, 38}, {97.24, 90.1, 38}, {99.34, 82.11, 38}}
+ b["scrapedAt"] = 1773751829
+ end
+ b = MTH_DS_Beasts[62249]
+ if b then
+ b["displayId"] = 8840
+ b["npcClass"] = "Elite"
+ b["health"] = 7520
+ b["dmgMin"] = 257.08
+ b["dmgMax"] = 331.237
+ b["armor"] = 1212
+ b["factionId"] = 44
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750663
+ end
+ b = MTH_DS_Beasts[62256]
+ if b then
+ b["displayId"] = 1244
+ b["health"] = 1437
+ b["dmgMin"] = 56.8542
+ b["dmgMax"] = 71.6857
+ b["armor"] = 1806
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{58.41, 50.94, 0}, {59.26, 52.01, 0}, {59.3, 51.41, 0}, {59.47, 52.1, 0}, {59.55, 51.42, 0}, {59.7, 52.08, 0}, {59.76, 51.73, 0}, {59.85, 51.87, 0}, {59.89, 51.21, 0}, {60.15, 52.01, 0}, {60.27, 52.32, 0}, {60.44, 51.89, 0}, {90.17, 4.92, 38}, {92.38, 2.038, 38}, {96.15, 5.735, 38}, {97.75, 4.267, 38}, {99.92, 4.865, 38}}
+ b["scrapedAt"] = 1773751830
+ end
+ b = MTH_DS_Beasts[62257]
+ if b then
+ b["displayId"] = 4829
+ b["health"] = 1669
+ b["dmgMin"] = 61.798
+ b["dmgMax"] = 76.6295
+ b["armor"] = 1964
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{59.03, 57.25, 0}, {59.43, 55.48, 0}, {59.51, 56.88, 0}, {59.53, 56.43, 0}, {59.62, 56.27, 0}, {59.74, 55.73, 0}, {59.81, 57.04, 0}, {59.88, 55.94, 0}, {59.98, 56.74, 0}, {60.05, 57.39, 0}, {60.09, 55.97, 0}, {60.21, 57.52, 0}, {60.26, 56.35, 0}, {60.29, 57.13, 0}, {60.29, 55.73, 0}, {60.42, 55.6, 0}, {60.54, 55.95, 0}, {60.7, 56.64, 0}, {60.79, 55.93, 0}, {60.87, 56.98, 0}, {60.98, 56.59, 0}, {60.99, 56.17, 0}, {93.04, 92.6, 38}, {94.78, 83.2, 38}, {97.71, 80.32, 38}, {99.05, 85.48, 38}}
+ b["scrapedAt"] = 1773751831
+ end
+ b = MTH_DS_Beasts[62258]
+ if b then
+ b["displayId"] = 1034
+ b["health"] = 1453
+ b["dmgMin"] = 63.063
+ b["dmgMax"] = 78.8288
+ b["armor"] = 1322
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{58.97, 51.51, 0}, {59.36, 51.99, 0}, {59.43, 51.46, 0}, {59.55, 51.09, 0}, {59.72, 52.0, 0}, {59.8, 51.22, 0}, {59.9, 51.62, 0}, {60.11, 51.85, 0}, {60.43, 52.05, 0}, {91.15, 2.582, 38}, {92.78, 3.071, 38}}
+ b["scrapedAt"] = 1773751832
+ end
+ b = MTH_DS_Beasts[62259]
+ if b then
+ b["displayId"] = 1034
+ b["health"] = 1747
+ b["dmgMin"] = 70.3395
+ b["dmgMax"] = 88.5307
+ b["armor"] = 1542
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{59.09, 57.6, 0}, {59.46, 57.08, 0}, {59.55, 56.63, 0}, {59.59, 55.46, 0}, {59.62, 57.39, 0}, {59.7, 56.89, 0}, {59.76, 56.04, 0}, {59.97, 55.9, 0}, {60.12, 56.59, 0}, {60.18, 55.54, 0}, {60.23, 56.12, 0}, {60.32, 56.82, 0}, {60.46, 55.82, 0}, {60.52, 56.5, 0}, {60.68, 55.81, 0}, {60.83, 56.05, 0}, {94.78, 80.37, 38}}
+ b["scrapedAt"] = 1773751833
+ end
+ b = MTH_DS_Beasts[62260]
+ if b then
+ b["displayId"] = 389
+ b["health"] = 791
+ b["dmgMin"] = 28.5542
+ b["dmgMax"] = 32.1235
+ b["armor"] = 1009
+ b["factionId"] = 189
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{24.24, 54.89, 267}, {33.27, 60.8, 267}, {39.61, 54.09, 267}, {40.36, 35.3, 267}, {41.36, 61.31, 267}, {43.36, 45.7, 267}, {48.74, 44.81, 267}, {64.3, 35.3, 267}, {72.71, 45.84, 267}, {27.76, 93.32, 36}, {45.55, 95.2, 36}, {53.37, 92.52, 36}}
+ b["scrapedAt"] = 1773751834
+ end
+ b = MTH_DS_Beasts[62261]
+ if b then
+ b["displayId"] = 389
+ b["health"] = 936
+ b["dmgMin"] = 46.9665
+ b["dmgMax"] = 59.3261
+ b["armor"] = 1079
+ b["factionId"] = 189
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{22.55, 43.17, 267}, {56.36, 58.31, 267}, {62.3, 67.31, 267}, {67.86, 77.02, 267}, {71.36, 71.16, 267}, {72.8, 63.8, 267}, {7.509, 52.19, 45}}
+ b["scrapedAt"] = 1773751835
+ end
+ b = MTH_DS_Beasts[62262]
+ if b then
+ b["displayId"] = 6807
+ b["health"] = 682
+ b["dmgMin"] = 43.2586
+ b["dmgMax"] = 48.2024
+ b["armor"] = 940
+ b["factionId"] = 189
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{41.45, 92.8, 17}, {42.51, 94.78, 17}, {44.81, 93.7, 17}}
+ b["scrapedAt"] = 1773751837
+ end
+ b = MTH_DS_Beasts[62271]
+ if b then
+ b["displayId"] = 20504
+ b["health"] = 960
+ b["dmgMin"] = 45.474
+ b["dmgMax"] = 57.134
+ b["armor"] = 1130
+ b["factionId"] = 189
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{21.56, 8.572, 12}, {23.06, 9.523, 12}, {23.44, 8.313, 12}, {25.37, 3.82, 12}, {25.65, 8.054, 12}, {27.12, 3.474, 12}, {28.45, 5.635, 12}}
+ b["scrapedAt"] = 1773751838
+ end
+ b = MTH_DS_Beasts[62272]
+ if b then
+ b["displayId"] = 11420
+ b["health"] = 960
+ b["dmgMin"] = 45.474
+ b["dmgMax"] = 57.134
+ b["armor"] = 1130
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{20.04, 6.455, 12}, {24.76, 8.097, 12}, {26.69, 8.097, 12}, {27.76, 4.252, 12}, {28.59, 4.511, 12}, {28.62, 7.233, 12}}
+ b["scrapedAt"] = 1773751839
+ end
+ b = MTH_DS_Beasts[62338]
+ if b then
+ b["displayId"] = 18390
+ b["health"] = 1087
+ b["dmgMin"] = 48.972
+ b["dmgMax"] = 61.798
+ b["armor"] = 1183
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{34.76, 70.36, 0}, {34.77, 70.8, 0}, {34.96, 71.07, 0}, {35.92, 68.11, 0}, {36.01, 67.89, 0}, {36.12, 67.81, 0}, {36.17, 68.35, 0}, {36.39, 68.21, 0}}
+ b["scrapedAt"] = 1773751840
+ end
+ b = MTH_DS_Beasts[62339]
+ if b then
+ b["displayId"] = 18390
+ b["health"] = 1201
+ b["dmgMin"] = 51.304
+ b["dmgMax"] = 64.13
+ b["armor"] = 1217
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{34.48, 68.8, 0}, {34.55, 68.73, 0}, {34.59, 69.47, 0}, {36.1, 67.91, 0}, {36.32, 68.22, 0}}
+ b["scrapedAt"] = 1773751841
+ end
+ b = MTH_DS_Beasts[62340]
+ if b then
+ b["displayId"] = 903
+ b["health"] = 1201
+ b["dmgMin"] = 51.304
+ b["dmgMax"] = 64.13
+ b["armor"] = 1217
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{36.11, 72.09, 0}, {36.18, 71.7, 0}, {36.33, 71.82, 0}, {36.45, 71.58, 0}, {36.58, 71.63, 0}, {36.66, 71.7, 0}, {36.8, 72.01, 0}}
+ b["scrapedAt"] = 1773751842
+ end
+ b = MTH_DS_Beasts[62341]
+ if b then
+ b["displayId"] = 903
+ b["health"] = 1265
+ b["dmgMin"] = 51.48
+ b["dmgMax"] = 64.064
+ b["armor"] = 1252
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{36.08, 72.1, 0}, {36.15, 71.58, 0}, {36.18, 71.82, 0}, {36.36, 71.79, 0}, {36.44, 69.68, 0}, {36.51, 71.79, 0}, {36.61, 69.56, 0}, {36.68, 69.47, 0}, {36.88, 69.35, 0}, {0.6763, 1.8, 40}}
+ b["scrapedAt"] = 1773751844
+ end
+ b = MTH_DS_Beasts[62342]
+ if b then
+ b["displayId"] = 545
+ b["health"] = 1201
+ b["dmgMin"] = 51.304
+ b["dmgMax"] = 64.13
+ b["armor"] = 1217
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{34.7, 68.4, 0}, {34.78, 68.72, 0}, {34.88, 68.77, 0}, {34.98, 67.06, 0}, {34.98, 68.51, 0}, {35.02, 68.04, 0}, {35.04, 67.46, 0}, {35.09, 67.77, 0}, {35.14, 67.98, 0}}
+ b["scrapedAt"] = 1773751845
+ end
+ b = MTH_DS_Beasts[62343]
+ if b then
+ b["displayId"] = 545
+ b["health"] = 1201
+ b["dmgMin"] = 50.336
+ b["dmgMax"] = 62.92
+ b["armor"] = 1217
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{34.72, 68.92, 0}, {34.75, 68.38, 0}, {34.97, 68.73, 0}, {35.01, 68.32, 0}, {35.07, 67.56, 0}}
+ b["scrapedAt"] = 1773751846
+ end
+ b = MTH_DS_Beasts[62344]
+ if b then
+ b["displayId"] = 709
+ b["health"] = 1463
+ b["dmgMin"] = 54.285
+ b["dmgMax"] = 70.455
+ b["armor"] = 1340
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{34.77, 68.79, 0}}
+ b["scrapedAt"] = 1773751847
+ end
+ b = MTH_DS_Beasts[62345]
+ if b then
+ b["displayId"] = 833
+ b["health"] = 1201
+ b["dmgMin"] = 51.304
+ b["dmgMax"] = 64.13
+ b["armor"] = 1217
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{35.31, 69.13, 0}, {35.34, 68.34, 0}, {35.41, 68.22, 0}, {35.52, 69.06, 0}, {35.58, 68.26, 0}, {35.6, 66.19, 0}, {35.62, 66.09, 0}, {35.63, 69.57, 0}, {35.63, 69.15, 0}, {35.66, 66.3, 0}, {35.68, 68.32, 0}, {35.69, 69.65, 0}, {35.74, 66.11, 0}, {35.77, 68.73, 0}}
+ b["scrapedAt"] = 1773751849
+ end
+ b = MTH_DS_Beasts[62499]
+ if b then
+ b["displayId"] = 10986
+ b["health"] = 2028
+ b["dmgMin"] = 111.936
+ b["dmgMax"] = 136.422
+ b["armor"] = 2725
+ b["factionId"] = 37
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750681
+ end
+ b = MTH_DS_Beasts[62509]
+ if b then
+ b["displayId"] = 12202
+ b["npcClass"] = "Rare-Elite"
+ b["health"] = 6388
+ b["dmgMin"] = 275.176
+ b["dmgMax"] = 387.112
+ b["armor"] = 1619
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{36.92, 65.06, 0}}
+ b["scrapedAt"] = 1773750682
+ end
+ b = MTH_DS_Beasts[62518]
+ if b then
+ b["displayId"] = 20504
+ b["health"] = 1927
+ b["dmgMin"] = 67.1
+ b["dmgMax"] = 85.8
+ b["armor"] = 1890
+ b["factionId"] = 12
+ b["reactA"] = "friendly"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{43.23, 64.17, 0}}
+ b["scrapedAt"] = 1773750683
+ end
+ b = MTH_DS_Beasts[62640]
+ if b then
+ b["displayId"] = 827
+ b["npcClass"] = "Rare"
+ b["health"] = 2125
+ b["dmgMin"] = 321.235
+ b["dmgMax"] = 414.037
+ b["armor"] = 1709
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{92.93, 87.0, 38}}
+ b["scrapedAt"] = 1773750685
+ end
+ b = MTH_DS_Beasts[62642]
+ if b then
+ b["displayId"] = 676
+ b["npcClass"] = "Rare"
+ b["health"] = 1597
+ b["dmgMin"] = 202.259
+ b["dmgMax"] = 261.747
+ b["armor"] = 1654
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{98.8, 44.93, 38}}
+ b["scrapedAt"] = 1773751850
+ end
+ b = MTH_DS_Beasts[65110]
+ if b then
+ b["displayId"] = 1986
+ b["health"] = 8318
+ b["dmgMin"] = 281.6
+ b["dmgMax"] = 332.2
+ b["armor"] = 2408
+ b["factionId"] = 40
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750686
+ end
+ b = MTH_DS_Beasts[65111]
+ if b then
+ b["displayId"] = 807
+ b["health"] = 8318
+ b["dmgMin"] = 281.6
+ b["dmgMax"] = 332.2
+ b["armor"] = 2408
+ b["factionId"] = 40
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750687
+ end
+ b = MTH_DS_Beasts[65112]
+ if b then
+ b["displayId"] = 1104
+ b["health"] = 8318
+ b["dmgMin"] = 281.6
+ b["dmgMax"] = 332.2
+ b["armor"] = 2408
+ b["factionId"] = 40
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750688
+ end
+ b = MTH_DS_Beasts[65120]
+ if b then
+ b["displayId"] = 262
+ b["npcClass"] = "Boss"
+ b["health"] = 9999
+ b["dmgMin"] = 11
+ b["dmgMax"] = 11
+ b["armor"] = 1900
+ b["factionId"] = 40
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750689
+ end
+ b = MTH_DS_Beasts[65122]
+ if b then
+ b["displayId"] = 2996
+ b["npcClass"] = "Elite"
+ b["health"] = 46912
+ b["dmgMin"] = 1189
+ b["dmgMax"] = 1539
+ b["armor"] = 2034
+ b["factionId"] = 40
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750690
+ end
+ b = MTH_DS_Beasts[66003]
+ if b then
+ b["displayId"] = 262
+ b["npcClass"] = "Boss"
+ b["health"] = 9999
+ b["dmgMin"] = 11
+ b["dmgMax"] = 11
+ b["armor"] = 1900
+ b["factionId"] = 35
+ b["reactA"] = "friendly"
+ b["reactH"] = "friendly"
+ b["scrapedAt"] = 1773750691
+ end
+ b = MTH_DS_Beasts[80250]
+ if b then
+ b["displayId"] = 18027
+ b["health"] = 230
+ b["dmgMin"] = 12.8357
+ b["dmgMax"] = 22.1707
+ b["armor"] = 20
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["scrapedAt"] = 1773750693
+ end
+ b = MTH_DS_Beasts[80252]
+ if b then
+ b["displayId"] = 18005
+ b["health"] = 155
+ b["dmgMin"] = 9.9
+ b["dmgMax"] = 14.3
+ b["armor"] = 316
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{65.46, 52.02, 1}, {65.71, 60.06, 1}, {66.58, 57.65, 1}, {66.88, 53.85, 1}, {67.01, 56.53, 1}, {68.22, 50.65, 1}, {71.07, 51.71, 1}, {71.9, 55.82, 1}, {74.05, 55.92, 1}, {74.24, 52.51, 1}, {74.54, 50.53, 1}, {74.8, 55.25, 1}, {75.66, 60.15, 1}, {76.33, 57.35, 1}, {76.92, 50.25, 1}, {78.82, 46.47, 1}, {78.88, 54.39, 1}, {79.43, 58.9, 1}}
+ b["scrapedAt"] = 1773751851
+ end
+ b = MTH_DS_Beasts[80254]
+ if b then
+ b["displayId"] = 18007
+ b["health"] = 231
+ b["dmgMin"] = 17.5032
+ b["dmgMax"] = 24.5045
+ b["armor"] = 538
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{62.16, 21.99, 40}, {62.45, 37.59, 40}, {62.99, 29.49, 40}, {63.16, 40.71, 40}, {63.33, 24.0, 40}, {64.76, 47.53, 40}, {66.79, 51.6, 40}, {18.13, 76.79, 12}, {18.13, 79.17, 12}}
+ b["scrapedAt"] = 1773751852
+ end
+ b = MTH_DS_Beasts[80255]
+ if b then
+ b["displayId"] = 18007
+ b["health"] = 2295
+ b["dmgMin"] = 72.5754
+ b["dmgMax"] = 92.8013
+ b["armor"] = 2246
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["scrapedAt"] = 1773750694
+ end
+ b = MTH_DS_Beasts[80256]
+ if b then
+ b["displayId"] = 18006
+ b["health"] = 1003
+ b["dmgMin"] = 38.3148
+ b["dmgMax"] = 46.9665
+ b["armor"] = 1130
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{27.42, 68.35, 10}, {30.83, 60.46, 10}, {31.53, 64.68, 10}, {33.2, 61.96, 10}, {35.57, 65.41, 10}, {40.09, 67.24, 10}, {40.12, 65.68, 10}, {43.49, 73.63, 10}, {44.05, 76.68, 10}, {45.27, 70.52, 10}, {47.72, 68.57, 10}, {48.23, 76.29, 10}}
+ b["scrapedAt"] = 1773751854
+ end
+ b = MTH_DS_Beasts[80257]
+ if b then
+ b["displayId"] = 18008
+ b["health"] = 231
+ b["dmgMin"] = 17.5032
+ b["dmgMax"] = 24.5045
+ b["armor"] = 538
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{19.62, 83.74, 38}, {20.49, 71.29, 38}, {22.27, 75.53, 38}, {26.76, 30.96, 38}, {26.91, 41.67, 38}, {27.89, 49.93, 38}, {28.29, 56.13, 38}, {28.61, 66.4, 38}, {29.56, 58.41, 38}, {30.14, 42.86, 38}, {32.49, 28.95, 38}, {32.67, 55.15, 38}, {33.69, 31.07, 38}, {35.36, 37.86, 38}, {35.36, 52.87, 38}, {35.97, 29.38, 38}, {38.58, 30.41, 38}, {40.98, 50.2, 38}, {42.64, 57.21, 38}}
+ b["scrapedAt"] = 1773750695
+ end
+ b = MTH_DS_Beasts[80258]
+ if b then
+ b["displayId"] = 18004
+ b["health"] = 231
+ b["dmgMin"] = 17.5032
+ b["dmgMax"] = 24.5045
+ b["armor"] = 538
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{49.19, 28.45, 130}, {49.24, 23.42, 130}, {50.57, 28.77, 130}, {51.86, 23.85, 130}, {53.67, 27.1, 130}, {53.79, 24.06, 130}, {39.13, 29.89, 85}}
+ b["scrapedAt"] = 1773751856
+ end
+ b = MTH_DS_Beasts[80259]
+ if b then
+ b["displayId"] = 18004
+ b["health"] = 3425
+ b["dmgMin"] = 107.529
+ b["dmgMax"] = 132.247
+ b["armor"] = 3052
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{46.51, 78.98, 41}, {49.99, 77.72, 41}, {52.35, 36.5, 41}}
+ b["scrapedAt"] = 1773750697
+ end
+ b = MTH_DS_Beasts[80260]
+ if b then
+ b["displayId"] = 18244
+ b["npcClass"] = "Rare"
+ b["health"] = 4224
+ b["dmgMin"] = 558.654
+ b["dmgMax"] = 721.8
+ b["armor"] = 3163
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{63.64, 15.81, 618}}
+ b["scrapedAt"] = 1773750698
+ end
+ b = MTH_DS_Beasts[80321]
+ if b then
+ b["displayId"] = 2308
+ b["health"] = 324
+ b["dmgMin"] = 16.224
+ b["dmgMax"] = 20.5504
+ b["armor"] = 20
+ b["factionId"] = 35
+ b["reactA"] = "friendly"
+ b["reactH"] = "friendly"
+ b["coordsTDB"] = {{45.86, 64.99, 618}}
+ b["scrapedAt"] = 1773750699
+ end
+ b = MTH_DS_Beasts[80466]
+ if b then
+ b["displayId"] = 1082
+ b["health"] = 215
+ b["dmgMin"] = 15.4
+ b["dmgMax"] = 20.9
+ b["armor"] = 155
+ b["factionId"] = 44
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{54.85, 49.28, 85}, {55.51, 50.97, 85}, {55.64, 47.72, 85}, {55.8, 53.46, 85}, {57.5, 46.29, 85}, {57.81, 56.22, 85}, {58.08, 46.02, 85}, {59.89, 58.01, 85}, {61.46, 44.9, 85}, {62.26, 42.34, 85}, {62.64, 58.94, 85}, {63.32, 36.56, 85}, {64.16, 38.09, 85}, {65.45, 58.14, 85}, {67.61, 56.58, 85}, {69.81, 57.81, 85}, {70.98, 50.51, 85}, {71.31, 57.44, 85}, {71.58, 55.65, 85}, {71.91, 47.92, 85}, {72.13, 45.86, 85}, {72.28, 35.54, 85}, {73.57, 42.47, 85}, {73.72, 39.32, 85}, {74.54, 34.54, 85}, {76.13, 32.85, 85}, {77.02, 30.36, 85}}
+ b["scrapedAt"] = 1773751857
+ end
+ b = MTH_DS_Beasts[80815]
+ if b then
+ b["displayId"] = 18338
+ b["health"] = 296
+ b["dmgMin"] = 12.8357
+ b["dmgMax"] = 17.5032
+ b["armor"] = 406
+ b["factionId"] = 15
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{39.44, 39.91, 0}, {39.52, 40.22, 0}, {39.8, 40.27, 0}, {39.91, 39.35, 0}, {15.83, 2.692, 406}, {30.53, 6.47, 406}}
+ b["scrapedAt"] = 1773751858
+ end
+ b = MTH_DS_Beasts[80816]
+ if b then
+ b["displayId"] = 18339
+ b["health"] = 2548
+ b["dmgMin"] = 98.7501
+ b["dmgMax"] = 122.546
+ b["armor"] = 2944
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{20.7, 51.77, 47}, {21.14, 56.79, 47}, {27.48, 56.32, 47}, {29.51, 50.75, 47}}
+ b["scrapedAt"] = 1773751860
+ end
+ b = MTH_DS_Beasts[80920]
+ if b then
+ b["displayId"] = 18338
+ b["health"] = 70
+ b["factionId"] = 35
+ b["reactA"] = "friendly"
+ b["reactH"] = "friendly"
+ b["scrapedAt"] = 1773750700
+ end
+ b = MTH_DS_Beasts[90980]
+ if b then
+ b["displayId"] = 18432
+ b["health"] = 70
+ b["factionId"] = 35
+ b["reactA"] = "friendly"
+ b["reactH"] = "friendly"
+ b["scrapedAt"] = 1773750701
+ end
+ b = MTH_DS_Beasts[90981]
+ if b then
+ b["displayId"] = 18298
+ b["health"] = 70
+ b["factionId"] = 35
+ b["reactA"] = "friendly"
+ b["reactH"] = "friendly"
+ b["scrapedAt"] = 1773750703
+ end
+ b = MTH_DS_Beasts[91819]
+ if b then
+ b["displayId"] = 320
+ b["health"] = 3356
+ b["dmgMin"] = 74.1576
+ b["dmgMax"] = 91.461
+ b["armor"] = 2101
+ b["factionId"] = 28
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{34.74, 84.9, 0}, {35.11, 85.11, 0}, {35.49, 85.72, 0}, {35.5, 85.57, 0}}
+ b["scrapedAt"] = 1773750704
+ end
+ b = MTH_DS_Beasts[91825]
+ if b then
+ b["displayId"] = 614
+ b["health"] = 3125
+ b["dmgMin"] = 102.585
+ b["dmgMax"] = 127.304
+ b["armor"] = 2944
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{35.65, 82.54, 0}, {35.82, 82.3, 0}, {36.36, 84.47, 0}, {36.59, 83.89, 0}, {36.81, 83.88, 0}, {37.0, 84.06, 0}, {37.09, 83.99, 0}, {37.11, 84.21, 0}}
+ b["scrapedAt"] = 1773750705
+ end
+ b = MTH_DS_Beasts[91826]
+ if b then
+ b["displayId"] = 614
+ b["health"] = 4198
+ b["dmgMin"] = 91.461
+ b["dmgMax"] = 111.236
+ b["armor"] = 3299
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{34.68, 83.24, 0}, {34.77, 83.16, 0}, {34.82, 83.36, 0}}
+ b["scrapedAt"] = 1773750707
+ end
+ b = MTH_DS_Beasts[91827]
+ if b then
+ b["displayId"] = 614
+ b["health"] = 3809
+ b["dmgMin"] = 110
+ b["dmgMax"] = 137.192
+ b["armor"] = 3136
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{35.04, 83.05, 0}, {35.28, 83.38, 0}, {35.38, 82.66, 0}, {35.4, 82.81, 0}, {35.53, 83.5, 0}, {36.16, 84.57, 0}, {36.2, 84.05, 0}, {36.28, 84.3, 0}, {36.34, 84.46, 0}}
+ b["scrapedAt"] = 1773750708
+ end
+ b = MTH_DS_Beasts[91828]
+ if b then
+ b["displayId"] = 614
+ b["health"] = 3792
+ b["dmgMin"] = 82.9495
+ b["dmgMax"] = 102.573
+ b["armor"] = 3190
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{34.5, 83.56, 0}, {34.63, 83.56, 0}, {34.78, 83.03, 0}, {34.78, 83.66, 0}, {34.85, 83.77, 0}, {34.95, 83.25, 0}}
+ b["scrapedAt"] = 1773750709
+ end
+ b = MTH_DS_Beasts[91829]
+ if b then
+ b["displayId"] = 845
+ b["health"] = 3578
+ b["dmgMin"] = 107.529
+ b["dmgMax"] = 134.719
+ b["armor"] = 3108
+ b["factionId"] = 72
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{35.26, 82.78, 0}, {36.6, 84.13, 0}}
+ b["scrapedAt"] = 1773750710
+ end
+ b = MTH_DS_Beasts[91830]
+ if b then
+ b["displayId"] = 838
+ b["health"] = 3809
+ b["dmgMin"] = 110
+ b["dmgMax"] = 137.192
+ b["armor"] = 3163
+ b["factionId"] = 72
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{34.57, 83.38, 0}, {34.61, 83.72, 0}, {34.77, 84.08, 0}, {34.84, 83.53, 0}}
+ b["scrapedAt"] = 1773750711
+ end
+ b = MTH_DS_Beasts[91831]
+ if b then
+ b["displayId"] = 1307
+ b["health"] = 3809
+ b["dmgMin"] = 110
+ b["dmgMax"] = 137.192
+ b["armor"] = 3136
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{33.64, 82.86, 0}, {33.65, 84.18, 0}, {33.71, 83.16, 0}, {33.73, 82.04, 0}, {33.86, 83.38, 0}, {33.88, 84.62, 0}, {33.95, 84.31, 0}, {33.95, 82.44, 0}, {33.99, 83.56, 0}, {33.99, 83.09, 0}, {34.05, 83.63, 0}, {34.11, 84.32, 0}, {34.13, 84.52, 0}, {34.31, 84.28, 0}, {34.35, 83.89, 0}}
+ b["scrapedAt"] = 1773750712
+ end
+ b = MTH_DS_Beasts[91832]
+ if b then
+ b["displayId"] = 9573
+ b["health"] = 3125
+ b["dmgMin"] = 103.821
+ b["dmgMax"] = 131.012
+ b["armor"] = 2944
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{35.63, 80.15, 0}, {35.67, 79.95, 0}, {35.79, 79.69, 0}, {35.8, 80.2, 0}, {35.97, 80.01, 0}, {36.04, 80.27, 0}, {36.34, 80.31, 0}, {36.56, 80.33, 0}}
+ b["scrapedAt"] = 1773750713
+ end
+ b = MTH_DS_Beasts[91833]
+ if b then
+ b["displayId"] = 1001
+ b["health"] = 2280
+ b["dmgMin"] = 123.596
+ b["dmgMax"] = 138.427
+ b["armor"] = 695
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{3.962, 97.03, 40}, {4.105, 95.79, 40}, {4.448, 90.94, 40}, {4.876, 96.6, 40}, {5.391, 92.14, 40}, {6.505, 91.46, 40}}
+ b["scrapedAt"] = 1773750714
+ end
+ b = MTH_DS_Beasts[91837]
+ if b then
+ b["displayId"] = 705
+ b["health"] = 3210
+ b["dmgMin"] = 119.888
+ b["dmgMax"] = 149.552
+ b["armor"] = 2972
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{35.82, 80.55, 0}, {35.86, 80.7, 0}, {36.12, 81.02, 0}, {36.15, 81.17, 0}, {36.25, 80.59, 0}, {36.32, 81.02, 0}, {36.54, 80.82, 0}, {36.61, 81.05, 0}, {36.86, 80.99, 0}, {36.87, 80.53, 0}}
+ b["scrapedAt"] = 1773750715
+ end
+ b = MTH_DS_Beasts[91838]
+ if b then
+ b["displayId"] = 1244
+ b["health"] = 3559
+ b["dmgMin"] = 108.764
+ b["dmgMax"] = 135.956
+ b["armor"] = 4548
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{35.97, 92.12, 0}, {36.36, 92.21, 0}, {36.5, 92.11, 0}, {36.53, 92.99, 0}, {36.6, 92.37, 0}, {36.61, 92.08, 0}, {36.74, 92.7, 0}, {37.02, 92.21, 0}, {37.07, 91.91, 0}, {37.2, 92.01, 0}, {37.45, 92.21, 0}}
+ b["scrapedAt"] = 1773750718
+ end
+ b = MTH_DS_Beasts[91864]
+ if b then
+ b["displayId"] = 12193
+ b["health"] = 11823
+ b["dmgMin"] = 372.28
+ b["dmgMax"] = 480.665
+ b["armor"] = 3108
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750719
+ end
+ b = MTH_DS_Beasts[91914]
+ if b then
+ b["displayId"] = 245
+ b["npcClass"] = "Elite"
+ b["health"] = 6772
+ b["dmgMin"] = 313.5
+ b["dmgMax"] = 391.6
+ b["armor"] = 3326
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750721
+ end
+ b = MTH_DS_Beasts[91917]
+ if b then
+ b["displayId"] = 15509
+ b["npcClass"] = "Boss"
+ b["health"] = 40822
+ b["dmgMin"] = 1088
+ b["dmgMax"] = 1158
+ b["armor"] = 3469
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750722
+ end
+ b = MTH_DS_Beasts[91960]
+ if b then
+ b["displayId"] = 2437
+ b["health"] = 3125
+ b["dmgMin"] = 103.821
+ b["dmgMax"] = 131.012
+ b["armor"] = 2944
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{38.19, 89.7, 0}, {38.22, 89.41, 0}, {38.41, 90.18, 0}, {38.48, 89.76, 0}, {38.5, 90.05, 0}, {38.58, 90.44, 0}, {38.66, 89.58, 0}, {38.79, 90.09, 0}, {38.87, 90.51, 0}}
+ b["scrapedAt"] = 1773750723
+ end
+ b = MTH_DS_Beasts[91961]
+ if b then
+ b["displayId"] = 2437
+ b["health"] = 3809
+ b["dmgMin"] = 110
+ b["dmgMax"] = 137.192
+ b["armor"] = 3136
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{36.64, 89.26, 0}, {36.74, 88.98, 0}, {36.99, 88.86, 0}, {37.16, 89.18, 0}, {37.18, 89.06, 0}, {37.32, 91.66, 0}, {37.34, 91.88, 0}, {37.39, 91.22, 0}, {37.48, 91.74, 0}, {37.62, 91.34, 0}, {37.65, 91.8, 0}, {37.76, 91.27, 0}, {37.78, 91.08, 0}, {37.87, 90.79, 0}, {37.95, 91.19, 0}}
+ b["scrapedAt"] = 1773750725
+ end
+ b = MTH_DS_Beasts[91962]
+ if b then
+ b["displayId"] = 1039
+ b["health"] = 3425
+ b["dmgMin"] = 107.529
+ b["dmgMax"] = 132.247
+ b["armor"] = 3052
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{38.44, 89.24, 0}, {38.52, 89.41, 0}, {38.79, 89.43, 0}, {38.8, 89.64, 0}, {38.99, 90.17, 0}, {39.13, 90.51, 0}, {0.4518, 64.39, 33}}
+ b["scrapedAt"] = 1773750726
+ end
+ b = MTH_DS_Beasts[91963]
+ if b then
+ b["displayId"] = 8802
+ b["health"] = 3977
+ b["dmgMin"] = 110
+ b["dmgMax"] = 137.192
+ b["armor"] = 3136
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{38.11, 92.1, 0}, {38.13, 92.39, 0}, {38.22, 92.44, 0}, {38.24, 92.04, 0}}
+ b["scrapedAt"] = 1773750728
+ end
+ b = MTH_DS_Beasts[91964]
+ if b then
+ b["displayId"] = 2174
+ b["health"] = 3425
+ b["dmgMin"] = 107.529
+ b["dmgMax"] = 132.247
+ b["armor"] = 3052
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{38.72, 91.72, 0}, {38.76, 91.47, 0}, {38.83, 91.23, 0}, {38.84, 91.77, 0}, {39.06, 91.5, 0}, {0.154, 65.33, 33}, {0.2011, 65.92, 33}}
+ b["scrapedAt"] = 1773750730
+ end
+ b = MTH_DS_Beasts[91966]
+ if b then
+ b["displayId"] = 10991
+ b["health"] = 3682
+ b["dmgMin"] = 107.529
+ b["dmgMax"] = 134.719
+ b["armor"] = 3080
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{36.75, 89.06, 0}, {36.99, 89.07, 0}, {37.49, 90.09, 0}, {37.57, 89.98, 0}, {37.65, 89.47, 0}, {37.68, 89.99, 0}, {37.72, 89.95, 0}, {38.09, 90.12, 0}}
+ b["scrapedAt"] = 1773750732
+ end
+ b = MTH_DS_Beasts[91984]
+ if b then
+ b["displayId"] = 1006
+ b["health"] = 508
+ b["dmgMin"] = 30.9338
+ b["dmgMax"] = 40.4518
+ b["armor"] = 423
+ b["factionId"] = 44
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{16.54, 64.85, 85}, {17.2, 55.75, 85}, {17.78, 60.0, 85}, {17.87, 57.38, 85}, {21.61, 64.65, 85}, {22.4, 64.48, 85}, {23.24, 62.59, 85}, {23.6, 68.07, 85}, {24.64, 66.57, 85}}
+ b["scrapedAt"] = 1773751861
+ end
+ b = MTH_DS_Beasts[91985]
+ if b then
+ b["displayId"] = 1006
+ b["health"] = 389
+ b["dmgMin"] = 30.9338
+ b["dmgMax"] = 40.4518
+ b["armor"] = 423
+ b["factionId"] = 44
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{17.25, 55.85, 85}, {23.27, 62.72, 85}, {23.66, 68.1, 85}}
+ b["scrapedAt"] = 1773751862
+ end
+ b = MTH_DS_Beasts[91987]
+ if b then
+ b["displayId"] = 503
+ b["health"] = 364
+ b["dmgMin"] = 25.9552
+ b["dmgMax"] = 33.3709
+ b["armor"] = 677
+ b["factionId"] = 189
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{14.28, 61.1, 85}, {16.27, 63.45, 85}, {17.64, 64.38, 85}, {17.71, 54.89, 85}, {18.13, 61.2, 85}, {18.6, 56.75, 85}, {19.13, 50.47, 85}, {19.46, 49.01, 85}, {19.46, 72.08, 85}, {19.64, 68.53, 85}, {20.01, 74.17, 85}, {20.08, 69.73, 85}, {20.57, 47.32, 85}, {21.14, 50.41, 85}, {34.55, 6.631, 130}, {35.64, 8.167, 130}}
+ b["scrapedAt"] = 1773751863
+ end
+ b = MTH_DS_Beasts[91989]
+ if b then
+ b["displayId"] = 903
+ b["health"] = 325
+ b["dmgMin"] = 28.5542
+ b["dmgMax"] = 34.503
+ b["armor"] = 608
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{20.41, 58.64, 85}, {20.48, 48.25, 85}, {20.52, 61.06, 85}, {21.1, 55.78, 85}, {22.2, 49.08, 85}, {22.27, 55.55, 85}, {22.45, 57.34, 85}, {25.04, 58.71, 85}, {25.3, 55.98, 85}, {25.99, 60.0, 85}, {26.81, 59.5, 85}, {28.07, 57.74, 85}, {30.71, 4.667, 130}, {31.05, 4.167, 130}, {31.36, 4.702, 130}}
+ b["scrapedAt"] = 1773751864
+ end
+ b = MTH_DS_Beasts[91990]
+ if b then
+ b["displayId"] = 903
+ b["npcClass"] = "Rare"
+ b["health"] = 682
+ b["dmgMin"] = 28.5542
+ b["dmgMax"] = 34.503
+ b["armor"] = 608
+ b["factionId"] = 38
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{27.05, 58.37, 85}}
+ b["scrapedAt"] = 1773751866
+ end
+ b = MTH_DS_Beasts[92115]
+ if b then
+ b["displayId"] = 820
+ b["npcClass"] = "Elite"
+ b["health"] = 2690
+ b["dmgMin"] = 222.473
+ b["dmgMax"] = 247.192
+ b["armor"] = 562
+ b["factionId"] = 44
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773751867
+ end
+ b = MTH_DS_Beasts[92146]
+ if b then
+ b["displayId"] = 1001
+ b["health"] = 3125
+ b["dmgMin"] = 102.585
+ b["dmgMax"] = 127.304
+ b["armor"] = 2944
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{38.39, 89.05, 0}, {38.48, 89.28, 0}, {38.59, 89.32, 0}, {38.61, 89.1, 0}, {38.83, 89.51, 0}, {38.88, 89.74, 0}, {39.03, 90.32, 0}, {39.06, 90.67, 0}, {39.07, 89.5, 0}, {0.4831, 56.47, 33}, {0.8436, 61.12, 33}, {0.8906, 58.8, 33}, {0.9219, 66.32, 33}, {1.0, 63.85, 33}, {1.126, 57.5, 33}}
+ b["scrapedAt"] = 1773750733
+ end
+ b = MTH_DS_Beasts[92147]
+ if b then
+ b["displayId"] = 1001
+ b["health"] = 3491
+ b["dmgMin"] = 107.529
+ b["dmgMax"] = 132.247
+ b["armor"] = 3052
+ b["factionId"] = 7
+ b["reactA"] = "neutral"
+ b["reactH"] = "neutral"
+ b["coordsTDB"] = {{35.38, 91.03, 0}, {35.4, 90.79, 0}, {35.4, 91.69, 0}, {35.51, 91.54, 0}, {35.77, 91.8, 0}, {35.81, 90.68, 0}, {35.82, 91.49, 0}, {35.84, 91.21, 0}, {35.9, 90.18, 0}, {35.95, 91.92, 0}, {35.96, 90.39, 0}, {35.98, 91.35, 0}, {35.99, 90.97, 0}, {36.02, 92.38, 0}, {36.15, 92.6, 0}, {36.26, 92.08, 0}, {36.37, 92.64, 0}, {36.45, 92.44, 0}, {36.59, 92.67, 0}, {36.7, 92.32, 0}, {36.82, 92.13, 0}}
+ b["scrapedAt"] = 1773750735
+ end
+ b = MTH_DS_Beasts[92163]
+ if b then
+ b["displayId"] = 4872
+ b["npcClass"] = "Elite"
+ b["health"] = 27759
+ b["dmgMin"] = 480.665
+ b["dmgMax"] = 585.516
+ b["armor"] = 3598
+ b["factionId"] = 74
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["coordsTDB"] = {{35.45, 92.96, 0}}
+ b["scrapedAt"] = 1773750736
+ end
+ b = MTH_DS_Beasts[93105]
+ if b then
+ b["displayId"] = 18246
+ b["npcClass"] = "Elite"
+ b["health"] = 16048
+ b["dmgMin"] = 687.5
+ b["dmgMax"] = 720.5
+ b["armor"] = 3453
+ b["factionId"] = 16
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750737
+ end
+ b = MTH_DS_Beasts[161208]
+ if b then
+ b["displayId"] = 368
+ b["npcClass"] = "Elite"
+ b["health"] = 11389
+ b["dmgMin"] = 500.5
+ b["dmgMax"] = 573.1
+ b["armor"] = 2533
+ b["factionId"] = 22
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750738
+ end
+ b = MTH_DS_Beasts[161212]
+ if b then
+ b["displayId"] = 9829
+ b["health"] = 110
+ b["dmgMin"] = 38.5
+ b["dmgMax"] = 60.5
+ b["armor"] = 500
+ b["factionId"] = 14
+ b["reactA"] = "hostile"
+ b["reactH"] = "hostile"
+ b["scrapedAt"] = 1773750739
+ end
+end
+
diff --git a/data/ds-beasts.lua b/data/ds-beasts.lua
index b242abd..b72e1dd 100644
--- a/data/ds-beasts.lua
+++ b/data/ds-beasts.lua
@@ -17,6 +17,8 @@ MTH_DS_Beasts = {
["respawnSamples"] = 41,
["coords"] = {
},
+ ["displayId"] = 382,
+ ["skinId"] = 366,
},
[43] = {
["name"] = "Mine Spider",
@@ -31,6 +33,8 @@ MTH_DS_Beasts = {
["coords"] = {
{60.0, 48.7, 12},
},
+ ["displayId"] = 368,
+ ["skinId"] = 30,
},
[69] = {
["name"] = "Timber Wolf",
@@ -45,6 +49,8 @@ MTH_DS_Beasts = {
["coords"] = {
{49.5, 49.3, 12},
},
+ ["displayId"] = 604,
+ ["skinId"] = 165,
},
[113] = {
["name"] = "Stonetusk Boar",
@@ -59,6 +65,8 @@ MTH_DS_Beasts = {
["coords"] = {
{40.9, 91.9, 12},
},
+ ["displayId"] = 503,
+ ["skinId"] = 193,
},
[118] = {
["name"] = "Prowler",
@@ -73,6 +81,8 @@ MTH_DS_Beasts = {
["coords"] = {
{83.0, 85.5, 12},
},
+ ["displayId"] = 11415,
+ ["skinId"] = 9564,
},
[119] = {
["name"] = "Longsnout",
@@ -87,6 +97,8 @@ MTH_DS_Beasts = {
["coords"] = {
{24.6, 88.5, 12},
},
+ ["displayId"] = 381,
+ ["skinId"] = 381,
},
[154] = {
["name"] = "Greater Fleshripper",
@@ -101,6 +113,8 @@ MTH_DS_Beasts = {
["coords"] = {
{58.8, 64.2, 40},
},
+ ["displayId"] = 1105,
+ ["skinId"] = 388,
},
[157] = {
["name"] = "Goretusk",
@@ -115,6 +129,8 @@ MTH_DS_Beasts = {
["coords"] = {
{35.7, 80.8, 40},
},
+ ["displayId"] = 3027,
+ ["skinId"] = 3026,
},
[199] = {
["name"] = "Young Fleshripper",
@@ -127,8 +143,19 @@ MTH_DS_Beasts = {
["respawnMaxSeconds"] = 300,
["respawnSamples"] = 74,
["coords"] = {
- {16.6, 77.1, 12},
+ {36.28, 26.44, 40}, {38.1, 32.1, 40}, {38.19, 19.89, 40},
+ {42.96, 25.11, 40}, {42.99, 33.73, 40}, {43.59, 18.77, 40},
+ {44.65, 20.06, 40}, {45.85, 29.36, 40}, {47.82, 18.21, 40},
+ {48.82, 30.9, 40}, {48.93, 35.83, 40}, {49.42, 37.2, 40},
+ {49.53, 24.69, 40}, {51.39, 42.21, 40}, {51.88, 27.69, 40},
+ {52.45, 18.69, 40}, {52.76, 35.66, 40}, {53.7, 43.89, 40},
+ {54.19, 39.77, 40}, {55.22, 17.61, 40}, {56.22, 24.56, 40},
+ {57.16, 39.69, 40}, {58.85, 13.84, 40}, {59.85, 32.31, 40},
+ {60.05, 39.77, 40}, {60.13, 24.17, 40}, {60.93, 27.94, 40},
+ {62.85, 27.81, 40},
},
+ ["displayId"] = 410,
+ ["skinId"] = 410,
},
[213] = {
["name"] = "Starving Dire Wolf",
@@ -143,6 +170,8 @@ MTH_DS_Beasts = {
["coords"] = {
{12.6, 66.8, 10},
},
+ ["displayId"] = 801,
+ ["skinId"] = 776,
},
[217] = {
["name"] = "Venom Web Spider",
@@ -157,6 +186,8 @@ MTH_DS_Beasts = {
["coords"] = {
{15.7, 72.6, 10},
},
+ ["displayId"] = 955,
+ ["skinId"] = 955,
},
[299] = {
["name"] = "Young Wolf",
@@ -171,6 +202,8 @@ MTH_DS_Beasts = {
["coords"] = {
{42.6, 61.0, 12},
},
+ ["displayId"] = 447,
+ ["skinId"] = 165,
},
[330] = {
["name"] = "Princess",
@@ -185,6 +218,8 @@ MTH_DS_Beasts = {
["coords"] = {
{69.7, 79.3, 12},
},
+ ["displayId"] = 8871,
+ ["skinId"] = 8869,
},
[345] = {
["name"] = "Bellygrub",
@@ -199,6 +234,8 @@ MTH_DS_Beasts = {
["coords"] = {
{15.7, 49.3, 44},
},
+ ["displayId"] = 703,
+ ["skinId"] = 377,
},
[390] = {
["name"] = "Porcine Entourage",
@@ -213,6 +250,8 @@ MTH_DS_Beasts = {
["coords"] = {
{69.7, 79.2, 12},
},
+ ["displayId"] = 377,
+ ["skinId"] = 377,
},
[428] = {
["name"] = "Dire Condor",
@@ -227,6 +266,8 @@ MTH_DS_Beasts = {
["coords"] = {
{60.8, 78.3, 44},
},
+ ["displayId"] = 490,
+ ["skinId"] = 490,
},
[442] = {
["name"] = "Tarantula",
@@ -241,6 +282,8 @@ MTH_DS_Beasts = {
["coords"] = {
{98.2, 11.6, 10},
},
+ ["displayId"] = 366,
+ ["skinId"] = 366,
},
[454] = {
["name"] = "Young Goretusk",
@@ -255,6 +298,8 @@ MTH_DS_Beasts = {
["coords"] = {
{20.8, 86.9, 12},
},
+ ["displayId"] = 8871,
+ ["skinId"] = 8869,
},
[462] = {
["name"] = "Vultros",
@@ -270,6 +315,8 @@ MTH_DS_Beasts = {
["coords"] = {
{62.0, 75.5, 40},
},
+ ["displayId"] = 507,
+ ["skinId"] = 507,
},
[471] = {
["name"] = "Mother Fang",
@@ -285,6 +332,8 @@ MTH_DS_Beasts = {
["coords"] = {
{62.1, 48.1, 12},
},
+ ["displayId"] = 2541,
+ ["skinId"] = 283,
},
[505] = {
["name"] = "Greater Tarantula",
@@ -299,6 +348,8 @@ MTH_DS_Beasts = {
["coords"] = {
{67.2, 76.6, 44},
},
+ ["displayId"] = 520,
+ ["skinId"] = 520,
},
[524] = {
["name"] = "Rockhide Boar",
@@ -313,6 +364,8 @@ MTH_DS_Beasts = {
["coords"] = {
{45.0, 89.6, 12},
},
+ ["displayId"] = 389,
+ ["skinId"] = 193,
},
[525] = {
["name"] = "Mangy Wolf",
@@ -327,6 +380,8 @@ MTH_DS_Beasts = {
["coords"] = {
{23.6, 77.0, 12},
},
+ ["displayId"] = 903,
+ ["skinId"] = 165,
},
[539] = {
["name"] = "Pygmy Venom Web Spider",
@@ -341,6 +396,8 @@ MTH_DS_Beasts = {
["coords"] = {
{13.2, 70.3, 10},
},
+ ["displayId"] = 958,
+ ["skinId"] = 955,
},
[547] = {
["name"] = "Great Goretusk",
@@ -355,6 +412,8 @@ MTH_DS_Beasts = {
["coords"] = {
{67.5, 70.9, 40},
},
+ ["displayId"] = 3035,
+ ["skinId"] = 3026,
},
[565] = {
["name"] = "Rabid Dire Wolf",
@@ -369,6 +428,8 @@ MTH_DS_Beasts = {
["coords"] = {
{12.9, 69.2, 10},
},
+ ["displayId"] = 802,
+ ["skinId"] = 776,
},
[569] = {
["name"] = "Green Recluse",
@@ -383,6 +444,8 @@ MTH_DS_Beasts = {
["coords"] = {
{16.5, 69.5, 10},
},
+ ["displayId"] = 2541,
+ ["skinId"] = 283,
},
[574] = {
["name"] = "Naraxis",
@@ -398,6 +461,8 @@ MTH_DS_Beasts = {
["coords"] = {
{86.4, 47.6, 10},
},
+ ["displayId"] = 963,
+ ["skinId"] = 963,
},
[616] = {
["name"] = "Chatter",
@@ -413,6 +478,8 @@ MTH_DS_Beasts = {
["coords"] = {
{53.1, 37.1, 44},
},
+ ["displayId"] = 821,
+ ["skinId"] = 520,
},
[628] = {
["name"] = "Black Ravager",
@@ -427,6 +494,8 @@ MTH_DS_Beasts = {
["coords"] = {
{52.7, 63.2, 10},
},
+ ["displayId"] = 741,
+ ["skinId"] = 246,
},
[681] = {
["name"] = "Young Stranglethorn Tiger",
@@ -441,6 +510,8 @@ MTH_DS_Beasts = {
["coords"] = {
{34.7, 17.5, 33},
},
+ ["displayId"] = 598,
+ ["skinId"] = 320,
},
[682] = {
["name"] = "Stranglethorn Tiger",
@@ -455,6 +526,8 @@ MTH_DS_Beasts = {
["coords"] = {
{47.2, 18.5, 33},
},
+ ["displayId"] = 320,
+ ["skinId"] = 320,
},
[683] = {
["name"] = "Young Panther",
@@ -469,6 +542,8 @@ MTH_DS_Beasts = {
["coords"] = {
{35.1, 15.1, 33},
},
+ ["displayId"] = 2437,
+ ["skinId"] = 599,
},
[684] = {
["name"] = "Shadowmaw Panther",
@@ -483,6 +558,8 @@ MTH_DS_Beasts = {
["coords"] = {
{39.3, 45.5, 33},
},
+ ["displayId"] = 633,
+ ["skinId"] = 599,
},
[685] = {
["name"] = "Stranglethorn Raptor",
@@ -497,6 +574,8 @@ MTH_DS_Beasts = {
["coords"] = {
{27.5, 17.7, 33},
},
+ ["displayId"] = 788,
+ ["skinId"] = 180,
},
[686] = {
["name"] = "Lashtail Raptor",
@@ -511,6 +590,8 @@ MTH_DS_Beasts = {
["coords"] = {
{37.6, 27.9, 33},
},
+ ["displayId"] = 788,
+ ["skinId"] = 180,
},
[687] = {
["name"] = "Jungle Stalker",
@@ -525,6 +606,8 @@ MTH_DS_Beasts = {
["coords"] = {
{23.2, 51.5, 33},
},
+ ["displayId"] = 11317,
+ ["skinId"] = 960,
},
[704] = {
["name"] = "Ragged Timber Wolf",
@@ -539,6 +622,8 @@ MTH_DS_Beasts = {
["coords"] = {
{24.0, 79.7, 1},
},
+ ["displayId"] = 11416,
+ ["skinId"] = 776,
},
[705] = {
["name"] = "Ragged Young Wolf",
@@ -553,6 +638,8 @@ MTH_DS_Beasts = {
["coords"] = {
{22.6, 78.2, 1},
},
+ ["displayId"] = 855,
+ ["skinId"] = 776,
},
[708] = {
["name"] = "Small Crag Boar",
@@ -567,6 +654,8 @@ MTH_DS_Beasts = {
["coords"] = {
{24.7, 79.3, 1},
},
+ ["displayId"] = 607,
+ ["skinId"] = 381,
},
[730] = {
["name"] = "Tethis",
@@ -582,6 +671,8 @@ MTH_DS_Beasts = {
["coords"] = {
{28.7, 44.8, 33},
},
+ ["displayId"] = 8472,
+ ["skinId"] = 675,
},
[731] = {
["name"] = "King Bangalash",
@@ -597,6 +688,8 @@ MTH_DS_Beasts = {
["coords"] = {
{38.2, 35.6, 33},
},
+ ["displayId"] = 616,
+ ["skinId"] = 616,
},
[736] = {
["name"] = "Panther",
@@ -611,6 +704,8 @@ MTH_DS_Beasts = {
["coords"] = {
{28.2, 16.6, 33},
},
+ ["displayId"] = 599,
+ ["skinId"] = 599,
},
[767] = {
["name"] = "Swamp Jaguar",
@@ -625,6 +720,8 @@ MTH_DS_Beasts = {
["coords"] = {
{27.2, 64.0, 8},
},
+ ["displayId"] = 632,
+ ["skinId"] = 632,
},
[768] = {
["name"] = "Shadow Panther",
@@ -639,6 +736,8 @@ MTH_DS_Beasts = {
["coords"] = {
{65.4, 67.9, 8},
},
+ ["displayId"] = 633,
+ ["skinId"] = 599,
},
[769] = {
["name"] = "Deathstrike Tarantula",
@@ -653,6 +752,8 @@ MTH_DS_Beasts = {
["coords"] = {
{81.1, 89.1, 8},
},
+ ["displayId"] = 336,
+ ["skinId"] = 336,
},
[772] = {
["name"] = "Stranglethorn Tigress",
@@ -667,6 +768,8 @@ MTH_DS_Beasts = {
["coords"] = {
{39.5, 41.7, 33},
},
+ ["displayId"] = 614,
+ ["skinId"] = 320,
},
[822] = {
["name"] = "Young Forest Bear",
@@ -681,6 +784,8 @@ MTH_DS_Beasts = {
["coords"] = {
{25.5, 90.7, 12},
},
+ ["displayId"] = 1006,
+ ["skinId"] = 822,
},
[830] = {
["name"] = "Sand Crawler",
@@ -695,6 +800,8 @@ MTH_DS_Beasts = {
["coords"] = {
{39.6, 12.9, 40},
},
+ ["displayId"] = 342,
+ ["skinId"] = 342,
},
[831] = {
["name"] = "Sea Crawler",
@@ -709,6 +816,8 @@ MTH_DS_Beasts = {
["coords"] = {
{31.1, 24.2, 40},
},
+ ["displayId"] = 979,
+ ["skinId"] = 979,
},
[833] = {
["name"] = "Coyote Packleader",
@@ -723,6 +832,8 @@ MTH_DS_Beasts = {
["coords"] = {
{35.2, 42.7, 40},
},
+ ["displayId"] = 161,
+ ["skinId"] = 161,
},
[834] = {
["name"] = "Coyote",
@@ -737,6 +848,8 @@ MTH_DS_Beasts = {
["coords"] = {
{19.7, 84.0, 12},
},
+ ["displayId"] = 643,
+ ["skinId"] = 161,
},
[854] = {
["name"] = "Young Jungle Stalker",
@@ -751,6 +864,8 @@ MTH_DS_Beasts = {
["coords"] = {
{31.3, 44.7, 33},
},
+ ["displayId"] = 615,
+ ["skinId"] = 322,
},
[855] = {
["name"] = "Young Stranglethorn Raptor",
@@ -765,6 +880,8 @@ MTH_DS_Beasts = {
["coords"] = {
{24.2, 16.3, 33},
},
+ ["displayId"] = 180,
+ ["skinId"] = 180,
},
[856] = {
["name"] = "Young Lashtail Raptor",
@@ -779,6 +896,8 @@ MTH_DS_Beasts = {
["coords"] = {
{30.6, 23.5, 33},
},
+ ["displayId"] = 2571,
+ ["skinId"] = 1959,
},
[858] = {
["name"] = "Sorrow Spinner",
@@ -793,6 +912,8 @@ MTH_DS_Beasts = {
["coords"] = {
{24.9, 64.0, 8},
},
+ ["displayId"] = 2543,
+ ["skinId"] = 366,
},
[922] = {
["name"] = "Silt Crawler",
@@ -807,6 +928,8 @@ MTH_DS_Beasts = {
["coords"] = {
{80.5, 93.9, 8},
},
+ ["displayId"] = 9571,
+ ["skinId"] = 342,
},
[923] = {
["name"] = "Young Black Ravager",
@@ -821,6 +944,8 @@ MTH_DS_Beasts = {
["coords"] = {
{22.0, 78.3, 10},
},
+ ["displayId"] = 246,
+ ["skinId"] = 246,
},
[930] = {
["name"] = "Black Widow Hatchling",
@@ -835,6 +960,8 @@ MTH_DS_Beasts = {
["coords"] = {
{80.7, 62.8, 10},
},
+ ["displayId"] = 368,
+ ["skinId"] = 30,
},
[949] = {
["name"] = "Carrion Recluse",
@@ -849,6 +976,8 @@ MTH_DS_Beasts = {
["coords"] = {
{21.5, 46.3, 10},
},
+ ["displayId"] = 545,
+ ["skinId"] = 283,
},
[976] = {
["name"] = "Kurzen War Tiger",
@@ -863,6 +992,8 @@ MTH_DS_Beasts = {
["coords"] = {
{45.9, 10.0, 33},
},
+ ["displayId"] = 320,
+ ["skinId"] = 320,
},
[977] = {
["name"] = "Kurzen War Panther",
@@ -877,6 +1008,8 @@ MTH_DS_Beasts = {
["coords"] = {
{45.7, 9.7, 33},
},
+ ["displayId"] = 599,
+ ["skinId"] = 599,
},
[1015] = {
["name"] = "Highland Raptor",
@@ -891,6 +1024,8 @@ MTH_DS_Beasts = {
["coords"] = {
{57.8, 37.6, 11},
},
+ ["displayId"] = 670,
+ ["skinId"] = 180,
},
[1016] = {
["name"] = "Highland Lashtail",
@@ -905,6 +1040,8 @@ MTH_DS_Beasts = {
["coords"] = {
{57.8, 35.4, 11},
},
+ ["displayId"] = 673,
+ ["skinId"] = 180,
},
[1017] = {
["name"] = "Highland Scytheclaw",
@@ -919,6 +1056,8 @@ MTH_DS_Beasts = {
["coords"] = {
{56.4, 31.4, 11},
},
+ ["displayId"] = 649,
+ ["skinId"] = 180,
},
[1018] = {
["name"] = "Highland Razormaw",
@@ -933,6 +1072,8 @@ MTH_DS_Beasts = {
["coords"] = {
{72.0, 39.9, 11},
},
+ ["displayId"] = 180,
+ ["skinId"] = 180,
},
[1019] = {
["name"] = "Elder Razormaw",
@@ -947,6 +1088,8 @@ MTH_DS_Beasts = {
["coords"] = {
{69.3, 32.9, 11},
},
+ ["displayId"] = 788,
+ ["skinId"] = 180,
},
[1020] = {
["name"] = "Mottled Raptor",
@@ -961,6 +1104,8 @@ MTH_DS_Beasts = {
["coords"] = {
{23.0, 59.8, 11},
},
+ ["displayId"] = 960,
+ ["skinId"] = 960,
},
[1021] = {
["name"] = "Mottled Screecher",
@@ -975,6 +1120,8 @@ MTH_DS_Beasts = {
["coords"] = {
{23.7, 60.4, 11},
},
+ ["displayId"] = 677,
+ ["skinId"] = 675,
},
[1022] = {
["name"] = "Mottled Scytheclaw",
@@ -989,6 +1136,8 @@ MTH_DS_Beasts = {
["coords"] = {
{35.6, 51.9, 11},
},
+ ["displayId"] = 648,
+ ["skinId"] = 322,
},
[1023] = {
["name"] = "Mottled Razormaw",
@@ -1003,6 +1152,8 @@ MTH_DS_Beasts = {
["coords"] = {
{33.7, 49.8, 11},
},
+ ["displayId"] = 949,
+ ["skinId"] = 675,
},
[1082] = {
["name"] = "Sawtooth Crocolisk",
@@ -1017,6 +1168,8 @@ MTH_DS_Beasts = {
["coords"] = {
{56.1, 56.8, 8},
},
+ ["displayId"] = 807,
+ ["skinId"] = 807,
},
[1084] = {
["name"] = "Young Sawtooth Crocolisk",
@@ -1031,6 +1184,8 @@ MTH_DS_Beasts = {
["coords"] = {
{28.6, 56.0, 8},
},
+ ["displayId"] = 814,
+ ["skinId"] = 807,
},
[1087] = {
["name"] = "Sawtooth Snapper",
@@ -1045,6 +1200,8 @@ MTH_DS_Beasts = {
["coords"] = {
{82.6, 99.5, 8},
},
+ ["displayId"] = 815,
+ ["skinId"] = 807,
},
[1088] = {
["name"] = "Monstrous Crawler",
@@ -1059,6 +1216,8 @@ MTH_DS_Beasts = {
["coords"] = {
{78.9, 98.1, 8},
},
+ ["displayId"] = 699,
+ ["skinId"] = 342,
},
[1108] = {
["name"] = "Mistvale Gorilla",
@@ -1073,6 +1232,8 @@ MTH_DS_Beasts = {
["coords"] = {
{36.7, 18.3, 33},
},
+ ["displayId"] = 843,
+ ["skinId"] = 838,
},
[1109] = {
["name"] = "Fleshripper",
@@ -1087,6 +1248,8 @@ MTH_DS_Beasts = {
["coords"] = {
{37.0, 69.1, 40},
},
+ ["displayId"] = 2305,
+ ["skinId"] = 410,
},
[1111] = {
["name"] = "Leech Stalker",
@@ -1101,6 +1264,8 @@ MTH_DS_Beasts = {
["coords"] = {
{56.1, 67.9, 11},
},
+ ["displayId"] = 711,
+ ["skinId"] = 711,
},
[1112] = {
["name"] = "Leech Widow",
@@ -1116,6 +1281,8 @@ MTH_DS_Beasts = {
["coords"] = {
{47.3, 59.2, 11},
},
+ ["displayId"] = 955,
+ ["skinId"] = 955,
},
[1114] = {
["name"] = "Jungle Thunderer",
@@ -1130,6 +1297,8 @@ MTH_DS_Beasts = {
["coords"] = {
{47.7, 38.0, 33},
},
+ ["displayId"] = 845,
+ ["skinId"] = 809,
},
[1125] = {
["name"] = "Crag Boar",
@@ -1144,6 +1313,8 @@ MTH_DS_Beasts = {
["coords"] = {
{42.2, 67.6, 1},
},
+ ["displayId"] = 607,
+ ["skinId"] = 381,
},
[1126] = {
["name"] = "Large Crag Boar",
@@ -1158,6 +1329,8 @@ MTH_DS_Beasts = {
["coords"] = {
{47.3, 63.9, 1},
},
+ ["displayId"] = 381,
+ ["skinId"] = 381,
},
[1127] = {
["name"] = "Elder Crag Boar",
@@ -1172,6 +1345,8 @@ MTH_DS_Beasts = {
["coords"] = {
{70.7, 61.6, 1},
},
+ ["displayId"] = 744,
+ ["skinId"] = 381,
},
[1128] = {
["name"] = "Young Black Bear",
@@ -1186,6 +1361,8 @@ MTH_DS_Beasts = {
["coords"] = {
{41.9, 66.8, 1},
},
+ ["displayId"] = 8843,
+ ["skinId"] = 706,
},
[1129] = {
["name"] = "Black Bear",
@@ -1196,6 +1373,8 @@ MTH_DS_Beasts = {
["attackSpeed"] = "2.5",
["coords"] = {
},
+ ["displayId"] = 719,
+ ["skinId"] = 706,
},
[1130] = {
["name"] = "Bjarn",
@@ -1211,6 +1390,8 @@ MTH_DS_Beasts = {
["coords"] = {
{55.6, 58.5, 1},
},
+ ["displayId"] = 913,
+ ["skinId"] = 865,
},
[1131] = {
["name"] = "Winter Wolf",
@@ -1225,6 +1406,8 @@ MTH_DS_Beasts = {
["coords"] = {
{50.7, 52.5, 1},
},
+ ["displayId"] = 785,
+ ["skinId"] = 776,
},
[1132] = {
["name"] = "Timber",
@@ -1240,6 +1423,8 @@ MTH_DS_Beasts = {
["coords"] = {
{34.2, 41.8, 1},
},
+ ["displayId"] = 11422,
+ ["skinId"] = 720,
},
[1133] = {
["name"] = "Starving Winter Wolf",
@@ -1254,6 +1439,8 @@ MTH_DS_Beasts = {
["coords"] = {
{34.2, 41.9, 1},
},
+ ["displayId"] = 11416,
+ ["skinId"] = 776,
},
[1138] = {
["name"] = "Snow Tracker Wolf",
@@ -1268,6 +1455,8 @@ MTH_DS_Beasts = {
["coords"] = {
{44.6, 47.1, 1},
},
+ ["displayId"] = 604,
+ ["skinId"] = 165,
},
[1140] = {
["name"] = "Razormaw Matriarch",
@@ -1283,6 +1472,8 @@ MTH_DS_Beasts = {
["coords"] = {
{69.9, 29.2, 11},
},
+ ["displayId"] = 11316,
+ ["skinId"] = 787,
},
[1150] = {
["name"] = "River Crocolisk",
@@ -1297,6 +1488,8 @@ MTH_DS_Beasts = {
["coords"] = {
{39.9, 14.4, 33},
},
+ ["displayId"] = 1039,
+ ["skinId"] = 833,
},
[1152] = {
["name"] = "Snapjaw Crocolisk",
@@ -1311,6 +1504,8 @@ MTH_DS_Beasts = {
["coords"] = {
{37.9, 32.6, 33},
},
+ ["displayId"] = 833,
+ ["skinId"] = 833,
},
[1184] = {
["name"] = "Cliff Lurker",
@@ -1325,6 +1520,8 @@ MTH_DS_Beasts = {
["coords"] = {
{55.3, 78.3, 38},
},
+ ["displayId"] = 827,
+ ["skinId"] = 520,
},
[1185] = {
["name"] = "Wood Lurker",
@@ -1339,6 +1536,8 @@ MTH_DS_Beasts = {
["coords"] = {
{78.9, 40.9, 38},
},
+ ["displayId"] = 520,
+ ["skinId"] = 520,
},
[1186] = {
["name"] = "Elder Black Bear",
@@ -1353,6 +1552,8 @@ MTH_DS_Beasts = {
["coords"] = {
{20.7, 77.4, 38},
},
+ ["displayId"] = 707,
+ ["skinId"] = 706,
},
[1188] = {
["name"] = "Grizzled Black Bear",
@@ -1367,6 +1568,8 @@ MTH_DS_Beasts = {
["coords"] = {
{63.2, 80.2, 38},
},
+ ["displayId"] = 762,
+ ["skinId"] = 706,
},
[1189] = {
["name"] = "Black Bear Patriarch",
@@ -1381,6 +1584,8 @@ MTH_DS_Beasts = {
["coords"] = {
{37.9, 63.4, 38},
},
+ ["displayId"] = 762,
+ ["skinId"] = 706,
},
[1190] = {
["name"] = "Mountain Boar",
@@ -1395,6 +1600,8 @@ MTH_DS_Beasts = {
["coords"] = {
{29.9, 46.8, 38},
},
+ ["displayId"] = 704,
+ ["skinId"] = 377,
},
[1191] = {
["name"] = "Mangy Mountain Boar",
@@ -1409,6 +1616,8 @@ MTH_DS_Beasts = {
["coords"] = {
{52.5, 74.7, 38},
},
+ ["displayId"] = 3027,
+ ["skinId"] = 3026,
},
[1192] = {
["name"] = "Elder Mountain Boar",
@@ -1423,6 +1632,8 @@ MTH_DS_Beasts = {
["coords"] = {
{74.8, 50.7, 38},
},
+ ["displayId"] = 1208,
+ ["skinId"] = 377,
},
[1194] = {
["name"] = "Mountain Buzzard",
@@ -1437,6 +1648,8 @@ MTH_DS_Beasts = {
["coords"] = {
{78.7, 70.3, 38},
},
+ ["displayId"] = 410,
+ ["skinId"] = 410,
},
[1195] = {
["name"] = "Forest Lurker",
@@ -1451,6 +1664,8 @@ MTH_DS_Beasts = {
["coords"] = {
{19.3, 83.5, 38},
},
+ ["displayId"] = 827,
+ ["skinId"] = 520,
},
[1196] = {
["name"] = "Ice Claw Bear",
@@ -1465,6 +1680,8 @@ MTH_DS_Beasts = {
["coords"] = {
{46.3, 63.3, 1},
},
+ ["displayId"] = 8840,
+ ["skinId"] = 806,
},
[1201] = {
["name"] = "Snow Leopard",
@@ -1479,6 +1696,8 @@ MTH_DS_Beasts = {
["coords"] = {
{47.3, 63.3, 1},
},
+ ["displayId"] = 954,
+ ["skinId"] = 748,
},
[1216] = {
["name"] = "Shore Crawler",
@@ -1493,6 +1712,8 @@ MTH_DS_Beasts = {
["coords"] = {
{36.7, 88.4, 40},
},
+ ["displayId"] = 9570,
+ ["skinId"] = 342,
},
[1258] = {
["name"] = "Black Ravager Mastiff",
@@ -1507,6 +1728,8 @@ MTH_DS_Beasts = {
["coords"] = {
{50.8, 60.5, 10},
},
+ ["displayId"] = 9562,
+ ["skinId"] = 246,
},
[1400] = {
["name"] = "Wetlands Crocolisk",
@@ -1521,6 +1744,8 @@ MTH_DS_Beasts = {
["coords"] = {
{19.3, 58.2, 11},
},
+ ["displayId"] = 1036,
+ ["skinId"] = 925,
},
[1417] = {
["name"] = "Young Wetlands Crocolisk",
@@ -1535,6 +1760,8 @@ MTH_DS_Beasts = {
["coords"] = {
{63.4, 75.3, 11},
},
+ ["displayId"] = 1035,
+ ["skinId"] = 925,
},
[1504] = {
["name"] = "Young Night Web Spider",
@@ -1549,6 +1776,8 @@ MTH_DS_Beasts = {
["coords"] = {
{27.9, 60.5, 85},
},
+ ["displayId"] = 513,
+ ["skinId"] = 513,
},
[1505] = {
["name"] = "Night Web Spider",
@@ -1563,6 +1792,8 @@ MTH_DS_Beasts = {
["coords"] = {
{24.5, 60.6, 85},
},
+ ["displayId"] = 30,
+ ["skinId"] = 30,
},
[1508] = {
["name"] = "Young Scavenger",
@@ -1577,6 +1808,8 @@ MTH_DS_Beasts = {
["coords"] = {
{33.6, 68.6, 85},
},
+ ["displayId"] = 447,
+ ["skinId"] = 165,
},
[1509] = {
["name"] = "Ragged Scavenger",
@@ -1591,6 +1824,8 @@ MTH_DS_Beasts = {
["coords"] = {
{35.6, 65.8, 85},
},
+ ["displayId"] = 604,
+ ["skinId"] = 165,
},
[1511] = {
["name"] = "Enraged Silverback Gorilla",
@@ -1601,6 +1836,8 @@ MTH_DS_Beasts = {
["attackSpeed"] = "2.0",
["coords"] = {
},
+ ["displayId"] = 837,
+ ["skinId"] = 792,
},
[1512] = {
["name"] = "Duskbat",
@@ -1615,6 +1852,8 @@ MTH_DS_Beasts = {
["coords"] = {
{31.5, 72.5, 85},
},
+ ["displayId"] = 4732,
+ ["skinId"] = 3956,
},
[1513] = {
["name"] = "Mangy Duskbat",
@@ -1629,6 +1868,8 @@ MTH_DS_Beasts = {
["coords"] = {
{34.9, 66.8, 85},
},
+ ["displayId"] = 9535,
+ ["skinId"] = 3956,
},
[1547] = {
["name"] = "Decrepit Darkhound",
@@ -1643,6 +1884,8 @@ MTH_DS_Beasts = {
["coords"] = {
{70.6, 65.1, 85},
},
+ ["displayId"] = 9021,
+ ["skinId"] = 3916,
},
[1548] = {
["name"] = "Cursed Darkhound",
@@ -1657,6 +1900,8 @@ MTH_DS_Beasts = {
["coords"] = {
{20.3, 61.2, 28},
},
+ ["displayId"] = 9020,
+ ["skinId"] = 3916,
},
[1549] = {
["name"] = "Ravenous Darkhound",
@@ -1671,6 +1916,8 @@ MTH_DS_Beasts = {
["coords"] = {
{32.5, 30.8, 28},
},
+ ["displayId"] = 3916,
+ ["skinId"] = 3916,
},
[1553] = {
["name"] = "Greater Duskbat",
@@ -1685,6 +1932,8 @@ MTH_DS_Beasts = {
["coords"] = {
{54.2, 65.9, 85},
},
+ ["displayId"] = 4734,
+ ["skinId"] = 3956,
},
[1554] = {
["name"] = "Vampiric Duskbat",
@@ -1699,6 +1948,8 @@ MTH_DS_Beasts = {
["coords"] = {
{25.3, 61.6, 28},
},
+ ["displayId"] = 8808,
+ ["skinId"] = 4185,
},
[1555] = {
["name"] = "Vicious Night Web Spider",
@@ -1713,6 +1964,8 @@ MTH_DS_Beasts = {
["coords"] = {
{86.8, 57.0, 85},
},
+ ["displayId"] = 368,
+ ["skinId"] = 30,
},
[1557] = {
["name"] = "Elder Mistvale Gorilla",
@@ -1727,6 +1980,8 @@ MTH_DS_Beasts = {
["coords"] = {
{32.3, 68.4, 33},
},
+ ["displayId"] = 838,
+ ["skinId"] = 838,
},
[1558] = {
["name"] = "Silverback Patriarch",
@@ -1741,6 +1996,8 @@ MTH_DS_Beasts = {
["coords"] = {
{36.3, 63.9, 33},
},
+ ["displayId"] = 844,
+ ["skinId"] = 792,
},
[1688] = {
["name"] = "Night Web Matriarch",
@@ -1755,6 +2012,8 @@ MTH_DS_Beasts = {
["coords"] = {
{24.0, 58.2, 85},
},
+ ["displayId"] = 368,
+ ["skinId"] = 30,
},
[1689] = {
["name"] = "Scarred Crag Boar",
@@ -1769,6 +2028,8 @@ MTH_DS_Beasts = {
["coords"] = {
{70.9, 61.3, 1},
},
+ ["displayId"] = 193,
+ ["skinId"] = 193,
},
[1693] = {
["name"] = "Loch Crocolisk",
@@ -1783,6 +2044,8 @@ MTH_DS_Beasts = {
["coords"] = {
{58.8, 57.6, 38},
},
+ ["displayId"] = 1034,
+ ["skinId"] = 807,
},
[1713] = {
["name"] = "Elder Shadowmaw Panther",
@@ -1797,6 +2060,8 @@ MTH_DS_Beasts = {
["coords"] = {
{31.2, 58.5, 33},
},
+ ["displayId"] = 11452,
+ ["skinId"] = 599,
},
[1765] = {
["name"] = "Worg",
@@ -1811,6 +2076,8 @@ MTH_DS_Beasts = {
["coords"] = {
{51.8, 77.2, 85},
},
+ ["displayId"] = 11421,
+ ["skinId"] = 246,
},
[1766] = {
["name"] = "Mottled Worg",
@@ -1825,6 +2092,8 @@ MTH_DS_Beasts = {
["coords"] = {
{44.5, 26.8, 130},
},
+ ["displayId"] = 246,
+ ["skinId"] = 246,
},
[1778] = {
["name"] = "Ferocious Grizzled Bear",
@@ -1839,6 +2108,8 @@ MTH_DS_Beasts = {
["coords"] = {
{44.1, 52.0, 130},
},
+ ["displayId"] = 902,
+ ["skinId"] = 822,
},
[1780] = {
["name"] = "Moss Stalker",
@@ -1853,6 +2124,8 @@ MTH_DS_Beasts = {
["coords"] = {
{34.2, 17.3, 130},
},
+ ["displayId"] = 827,
+ ["skinId"] = 520,
},
[1781] = {
["name"] = "Mist Creeper",
@@ -1867,6 +2140,8 @@ MTH_DS_Beasts = {
["coords"] = {
{23.6, 81.4, 85},
},
+ ["displayId"] = 760,
+ ["skinId"] = 336,
},
[1797] = {
["name"] = "Giant Grizzled Bear",
@@ -1881,6 +2156,8 @@ MTH_DS_Beasts = {
["coords"] = {
{55.5, 71.0, 130},
},
+ ["displayId"] = 820,
+ ["skinId"] = 820,
},
[1809] = {
["name"] = "Carrion Vulture",
@@ -1895,6 +2172,8 @@ MTH_DS_Beasts = {
["coords"] = {
{32.3, 62.4, 28},
},
+ ["displayId"] = 1105,
+ ["skinId"] = 388,
},
[1815] = {
["name"] = "Diseased Black Bear",
@@ -1909,6 +2188,8 @@ MTH_DS_Beasts = {
["coords"] = {
{36.3, 68.0, 28},
},
+ ["displayId"] = 1082,
+ ["skinId"] = 1082,
},
[1816] = {
["name"] = "Diseased Grizzly",
@@ -1923,6 +2204,8 @@ MTH_DS_Beasts = {
["coords"] = {
{55.2, 64.5, 28},
},
+ ["displayId"] = 1083,
+ ["skinId"] = 1083,
},
[1817] = {
["name"] = "Diseased Wolf",
@@ -1937,6 +2220,8 @@ MTH_DS_Beasts = {
["coords"] = {
{52.5, 70.4, 28},
},
+ ["displayId"] = 4124,
+ ["skinId"] = 4124,
},
[1822] = {
["name"] = "Venom Mist Lurker",
@@ -1951,6 +2236,8 @@ MTH_DS_Beasts = {
["coords"] = {
{35.5, 66.8, 28},
},
+ ["displayId"] = 1087,
+ ["skinId"] = 955,
},
[1824] = {
["name"] = "Plague Lurker",
@@ -1965,6 +2252,8 @@ MTH_DS_Beasts = {
["coords"] = {
{54.9, 62.2, 28},
},
+ ["displayId"] = 1088,
+ ["skinId"] = 513,
},
[1922] = {
["name"] = "Gray Forest Wolf",
@@ -1979,6 +2268,8 @@ MTH_DS_Beasts = {
["coords"] = {
{60.4, 71.3, 12},
},
+ ["displayId"] = 380,
+ ["skinId"] = 165,
},
[1923] = {
["name"] = "Bloodsnout Worg",
@@ -1993,6 +2284,8 @@ MTH_DS_Beasts = {
["coords"] = {
{50.2, 84.9, 130},
},
+ ["displayId"] = 741,
+ ["skinId"] = 246,
},
[1961] = {
["name"] = "Mangeclaw",
@@ -2007,6 +2300,8 @@ MTH_DS_Beasts = {
["coords"] = {
{78.3, 37.8, 1},
},
+ ["displayId"] = 913,
+ ["skinId"] = 865,
},
[1984] = {
["name"] = "Young Thistle Boar",
@@ -2021,6 +2316,8 @@ MTH_DS_Beasts = {
["coords"] = {
{60.6, 46.3, 141},
},
+ ["displayId"] = 8869,
+ ["skinId"] = 8869,
},
[1985] = {
["name"] = "Thistle Boar",
@@ -2035,6 +2332,8 @@ MTH_DS_Beasts = {
["coords"] = {
{55.5, 39.4, 141},
},
+ ["displayId"] = 6807,
+ ["skinId"] = 3026,
},
[1986] = {
["name"] = "Webwood Spider",
@@ -2049,6 +2348,8 @@ MTH_DS_Beasts = {
["coords"] = {
{56.9, 34.5, 141},
},
+ ["displayId"] = 709,
+ ["skinId"] = 336,
},
[1994] = {
["name"] = "Githyiss the Vile",
@@ -2063,6 +2364,8 @@ MTH_DS_Beasts = {
["coords"] = {
{56.6, 26.3, 141},
},
+ ["displayId"] = 759,
+ ["skinId"] = 336,
},
[1995] = {
["name"] = "Strigid Owl",
@@ -2077,6 +2380,8 @@ MTH_DS_Beasts = {
["coords"] = {
{55.4, 66.0, 141},
},
+ ["displayId"] = 10832,
+ ["skinId"] = 4877,
},
[1996] = {
["name"] = "Strigid Screecher",
@@ -2091,6 +2396,8 @@ MTH_DS_Beasts = {
["coords"] = {
{53.1, 77.9, 141},
},
+ ["displayId"] = 4877,
+ ["skinId"] = 4877,
},
[1997] = {
["name"] = "Strigid Hunter",
@@ -2105,6 +2412,8 @@ MTH_DS_Beasts = {
["coords"] = {
{38.5, 47.8, 141},
},
+ ["displayId"] = 10830,
+ ["skinId"] = 4877,
},
[1998] = {
["name"] = "Webwood Lurker",
@@ -2119,6 +2428,8 @@ MTH_DS_Beasts = {
["coords"] = {
{52.6, 67.4, 141},
},
+ ["displayId"] = 760,
+ ["skinId"] = 336,
},
[1999] = {
["name"] = "Webwood Venomfang",
@@ -2133,6 +2444,8 @@ MTH_DS_Beasts = {
["coords"] = {
{45.8, 78.9, 141},
},
+ ["displayId"] = 759,
+ ["skinId"] = 336,
},
[2000] = {
["name"] = "Webwood Silkspinner",
@@ -2147,6 +2460,8 @@ MTH_DS_Beasts = {
["coords"] = {
{43.7, 47.3, 141},
},
+ ["displayId"] = 1989,
+ ["skinId"] = 336,
},
[2001] = {
["name"] = "Giant Webwood Spider",
@@ -2161,6 +2476,8 @@ MTH_DS_Beasts = {
["coords"] = {
{41.2, 28.9, 141},
},
+ ["displayId"] = 6808,
+ ["skinId"] = 336,
},
[2031] = {
["name"] = "Young Nightsaber",
@@ -2175,6 +2492,8 @@ MTH_DS_Beasts = {
["coords"] = {
{58.4, 46.7, 141},
},
+ ["displayId"] = 11454,
+ ["skinId"] = 3029,
},
[2032] = {
["name"] = "Mangy Nightsaber",
@@ -2189,6 +2508,8 @@ MTH_DS_Beasts = {
["coords"] = {
{61.2, 39.1, 141},
},
+ ["displayId"] = 11448,
+ ["skinId"] = 11448,
},
[2033] = {
["name"] = "Elder Nightsaber",
@@ -2203,6 +2524,8 @@ MTH_DS_Beasts = {
["coords"] = {
{46.9, 45.6, 141},
},
+ ["displayId"] = 3030,
+ ["skinId"] = 3029,
},
[2034] = {
["name"] = "Feral Nightsaber",
@@ -2217,6 +2540,8 @@ MTH_DS_Beasts = {
["coords"] = {
{38.0, 29.3, 141},
},
+ ["displayId"] = 3030,
+ ["skinId"] = 3029,
},
[2042] = {
["name"] = "Nightsaber",
@@ -2231,6 +2556,8 @@ MTH_DS_Beasts = {
["coords"] = {
{54.8, 65.1, 141},
},
+ ["displayId"] = 6805,
+ ["skinId"] = 3029,
},
[2043] = {
["name"] = "Nightsaber Stalker",
@@ -2245,6 +2572,8 @@ MTH_DS_Beasts = {
["coords"] = {
{50.0, 79.2, 141},
},
+ ["displayId"] = 14318,
+ ["skinId"] = 11448,
},
[2069] = {
["name"] = "Moonstalker",
@@ -2259,6 +2588,8 @@ MTH_DS_Beasts = {
["coords"] = {
{37.5, 79.0, 148},
},
+ ["displayId"] = 321,
+ ["skinId"] = 321,
},
[2070] = {
["name"] = "Moonstalker Runt",
@@ -2273,6 +2604,8 @@ MTH_DS_Beasts = {
["coords"] = {
{37.5, 93.0, 148},
},
+ ["displayId"] = 11449,
+ ["skinId"] = 321,
},
[2071] = {
["name"] = "Moonstalker Matriarch",
@@ -2287,6 +2620,8 @@ MTH_DS_Beasts = {
["coords"] = {
{37.2, 93.4, 148},
},
+ ["displayId"] = 3031,
+ ["skinId"] = 3029,
},
[2089] = {
["name"] = "Giant Wetlands Crocolisk",
@@ -2301,6 +2636,8 @@ MTH_DS_Beasts = {
["coords"] = {
{15.3, 29.2, 11},
},
+ ["displayId"] = 925,
+ ["skinId"] = 925,
},
[2163] = {
["name"] = "Thistle Bear",
@@ -2315,6 +2652,8 @@ MTH_DS_Beasts = {
["coords"] = {
{44.7, 60.2, 148},
},
+ ["displayId"] = 1006,
+ ["skinId"] = 822,
},
[2165] = {
["name"] = "Grizzled Thistle Bear",
@@ -2329,6 +2668,8 @@ MTH_DS_Beasts = {
["coords"] = {
{43.0, 82.4, 148},
},
+ ["displayId"] = 14316,
+ ["skinId"] = 822,
},
[2172] = {
["name"] = "Strider Clutchmother",
@@ -2344,6 +2685,8 @@ MTH_DS_Beasts = {
["coords"] = {
{34.8, 87.3, 148},
},
+ ["displayId"] = 38,
+ ["skinId"] = 38,
},
[2175] = {
["name"] = "Shadowclaw",
@@ -2359,6 +2702,8 @@ MTH_DS_Beasts = {
["coords"] = {
{40.3, 40.5, 148},
},
+ ["displayId"] = 3030,
+ ["skinId"] = 3029,
},
[2231] = {
["name"] = "Pygmy Tide Crawler",
@@ -2373,6 +2718,8 @@ MTH_DS_Beasts = {
["coords"] = {
{35.4, 51.2, 148},
},
+ ["displayId"] = 1000,
+ ["skinId"] = 979,
},
[2232] = {
["name"] = "Tide Crawler",
@@ -2387,6 +2734,8 @@ MTH_DS_Beasts = {
["coords"] = {
{36.6, 69.8, 148},
},
+ ["displayId"] = 979,
+ ["skinId"] = 979,
},
[2233] = {
["name"] = "Encrusted Tide Crawler",
@@ -2401,6 +2750,8 @@ MTH_DS_Beasts = {
["coords"] = {
{32.3, 83.7, 148},
},
+ ["displayId"] = 9566,
+ ["skinId"] = 979,
},
[2234] = {
["name"] = "Young Reef Crawler",
@@ -2415,6 +2766,8 @@ MTH_DS_Beasts = {
["coords"] = {
{35.1, 56.1, 148},
},
+ ["displayId"] = 999,
+ ["skinId"] = 981,
},
[2235] = {
["name"] = "Reef Crawler",
@@ -2429,6 +2782,8 @@ MTH_DS_Beasts = {
["coords"] = {
{35.5, 77.5, 148},
},
+ ["displayId"] = 981,
+ ["skinId"] = 981,
},
[2236] = {
["name"] = "Raging Reef Crawler",
@@ -2443,6 +2798,8 @@ MTH_DS_Beasts = {
["coords"] = {
{29.8, 91.1, 148},
},
+ ["displayId"] = 1001,
+ ["skinId"] = 981,
},
[2237] = {
["name"] = "Moonstalker Sire",
@@ -2457,6 +2814,8 @@ MTH_DS_Beasts = {
["coords"] = {
{39.3, 94.5, 148},
},
+ ["displayId"] = 11450,
+ ["skinId"] = 321,
},
[2322] = {
["name"] = "Foreststrider",
@@ -2471,6 +2830,8 @@ MTH_DS_Beasts = {
["coords"] = {
{37.6, 78.8, 148},
},
+ ["displayId"] = 178,
+ ["skinId"] = 178,
},
[2323] = {
["name"] = "Giant Foreststrider",
@@ -2485,6 +2846,8 @@ MTH_DS_Beasts = {
["coords"] = {
{37.1, 95.6, 148},
},
+ ["displayId"] = 1283,
+ ["skinId"] = 178,
},
[2348] = {
["name"] = "Elder Moss Creeper",
@@ -2499,6 +2862,8 @@ MTH_DS_Beasts = {
["coords"] = {
{12.2, 40.3, 45},
},
+ ["displayId"] = 8014,
+ ["skinId"] = 520,
},
[2349] = {
["name"] = "Giant Moss Creeper",
@@ -2513,6 +2878,8 @@ MTH_DS_Beasts = {
["coords"] = {
{19.7, 99.2, 36},
},
+ ["displayId"] = 6808,
+ ["skinId"] = 336,
},
[2350] = {
["name"] = "Forest Moss Creeper",
@@ -2527,6 +2894,8 @@ MTH_DS_Beasts = {
["coords"] = {
{57.3, 99.3, 36},
},
+ ["displayId"] = 1989,
+ ["skinId"] = 336,
},
[2351] = {
["name"] = "Gray Bear",
@@ -2541,6 +2910,8 @@ MTH_DS_Beasts = {
["coords"] = {
{65.8, 98.1, 36},
},
+ ["displayId"] = 806,
+ ["skinId"] = 806,
},
[2354] = {
["name"] = "Vicious Gray Bear",
@@ -2555,6 +2926,8 @@ MTH_DS_Beasts = {
["coords"] = {
{71.1, 98.8, 36},
},
+ ["displayId"] = 1007,
+ ["skinId"] = 806,
},
[2356] = {
["name"] = "Elder Gray Bear",
@@ -2569,6 +2942,8 @@ MTH_DS_Beasts = {
["coords"] = {
{20.7, 98.1, 36},
},
+ ["displayId"] = 3201,
+ ["skinId"] = 806,
},
[2384] = {
["name"] = "Starving Mountain Lion",
@@ -2583,6 +2958,8 @@ MTH_DS_Beasts = {
["coords"] = {
{39.0, 99.4, 36},
},
+ ["displayId"] = 1059,
+ ["skinId"] = 1056,
},
[2385] = {
["name"] = "Feral Mountain Lion",
@@ -2597,6 +2974,8 @@ MTH_DS_Beasts = {
["coords"] = {
{6.7, 49.7, 45},
},
+ ["displayId"] = 1056,
+ ["skinId"] = 1056,
},
[2406] = {
["name"] = "Mountain Lion",
@@ -2611,6 +2990,8 @@ MTH_DS_Beasts = {
["coords"] = {
{41.4, 98.5, 28},
},
+ ["displayId"] = 1058,
+ ["skinId"] = 1056,
},
[2407] = {
["name"] = "Hulking Mountain Lion",
@@ -2625,6 +3006,8 @@ MTH_DS_Beasts = {
["coords"] = {
{42.5, 99.6, 28},
},
+ ["displayId"] = 2300,
+ ["skinId"] = 1056,
},
[2408] = {
["name"] = "Snapjaw",
@@ -2639,6 +3022,8 @@ MTH_DS_Beasts = {
["coords"] = {
{45.5, 99.3, 28},
},
+ ["displayId"] = 1244,
+ ["skinId"] = 1244,
},
[2476] = {
["name"] = "Large Loch Crocolisk",
@@ -2654,6 +3039,8 @@ MTH_DS_Beasts = {
["coords"] = {
{58.9, 31.1, 38},
},
+ ["displayId"] = 831,
+ ["skinId"] = 807,
},
[2505] = {
["name"] = "Saltwater Snapjaw",
@@ -2668,6 +3055,8 @@ MTH_DS_Beasts = {
["coords"] = {
{77.4, 86.5, 47},
},
+ ["displayId"] = 5027,
+ ["skinId"] = 5026,
},
[2521] = {
["name"] = "Skymane Gorilla",
@@ -2682,6 +3071,8 @@ MTH_DS_Beasts = {
["coords"] = {
{39.1, 86.6, 33},
},
+ ["displayId"] = 809,
+ ["skinId"] = 809,
},
[2522] = {
["name"] = "Jaguero Stalker",
@@ -2696,6 +3087,8 @@ MTH_DS_Beasts = {
["coords"] = {
{38.6, 86.6, 33},
},
+ ["displayId"] = 613,
+ ["skinId"] = 599,
},
[2544] = {
["name"] = "Southern Sand Crawler",
@@ -2710,6 +3103,8 @@ MTH_DS_Beasts = {
["coords"] = {
{31.2, 88.1, 33},
},
+ ["displayId"] = 9573,
+ ["skinId"] = 979,
},
[2559] = {
["name"] = "Highland Strider",
@@ -2724,6 +3119,8 @@ MTH_DS_Beasts = {
["coords"] = {
{42.8, 79.6, 45},
},
+ ["displayId"] = 11316,
+ ["skinId"] = 787,
},
[2561] = {
["name"] = "Highland Fleshstalker",
@@ -2738,6 +3135,8 @@ MTH_DS_Beasts = {
["coords"] = {
{48.0, 82.4, 45},
},
+ ["displayId"] = 961,
+ ["skinId"] = 787,
},
[2565] = {
["name"] = "Giant Plains Creeper",
@@ -2752,6 +3151,8 @@ MTH_DS_Beasts = {
["coords"] = {
{47.8, 77.2, 45},
},
+ ["displayId"] = 1104,
+ ["skinId"] = 1091,
},
[2579] = {
["name"] = "Mesa Buzzard",
@@ -2766,6 +3167,8 @@ MTH_DS_Beasts = {
["coords"] = {
{57.2, 71.7, 45},
},
+ ["displayId"] = 1105,
+ ["skinId"] = 388,
},
[2580] = {
["name"] = "Elder Mesa Buzzard",
@@ -2780,6 +3183,8 @@ MTH_DS_Beasts = {
["coords"] = {
{49.1, 82.5, 45},
},
+ ["displayId"] = 388,
+ ["skinId"] = 388,
},
[2635] = {
["name"] = "Elder Saltwater Crocolisk",
@@ -2795,6 +3200,8 @@ MTH_DS_Beasts = {
["coords"] = {
{33.4, 32.5, 33},
},
+ ["displayId"] = 1038,
+ ["skinId"] = 925,
},
[2680] = {
["name"] = "Vilebranch Wolf Pup",
@@ -2809,6 +3216,8 @@ MTH_DS_Beasts = {
["coords"] = {
{66.7, 72.4, 47},
},
+ ["displayId"] = 781,
+ ["skinId"] = 644,
},
[2681] = {
["name"] = "Vilebranch Raiding Wolf",
@@ -2824,6 +3233,8 @@ MTH_DS_Beasts = {
["coords"] = {
{86.0, 22.2, 45},
},
+ ["displayId"] = 782,
+ ["skinId"] = 644,
},
[2686] = {
["name"] = "Witherbark Broodguard",
@@ -2838,6 +3249,8 @@ MTH_DS_Beasts = {
["coords"] = {
{53.2, 12.6, 45},
},
+ ["displayId"] = 1157,
+ ["skinId"] = 955,
},
[2727] = {
["name"] = "Crag Coyote",
@@ -2852,6 +3265,8 @@ MTH_DS_Beasts = {
["coords"] = {
{53.2, 52.0, 3},
},
+ ["displayId"] = 161,
+ ["skinId"] = 161,
},
[2728] = {
["name"] = "Feral Crag Coyote",
@@ -2866,6 +3281,8 @@ MTH_DS_Beasts = {
["coords"] = {
{48.6, 76.2, 3},
},
+ ["displayId"] = 557,
+ ["skinId"] = 161,
},
[2729] = {
["name"] = "Elder Crag Coyote",
@@ -2880,6 +3297,8 @@ MTH_DS_Beasts = {
["coords"] = {
{93.1, 85.3, 1},
},
+ ["displayId"] = 1164,
+ ["skinId"] = 161,
},
[2730] = {
["name"] = "Rabid Crag Coyote",
@@ -2894,6 +3313,8 @@ MTH_DS_Beasts = {
["coords"] = {
{69.4, 36.2, 3},
},
+ ["displayId"] = 161,
+ ["skinId"] = 161,
},
[2731] = {
["name"] = "Ridge Stalker",
@@ -2908,6 +3329,8 @@ MTH_DS_Beasts = {
["coords"] = {
{38.1, 46.5, 3},
},
+ ["displayId"] = 632,
+ ["skinId"] = 632,
},
[2732] = {
["name"] = "Ridge Huntress",
@@ -2922,6 +3345,8 @@ MTH_DS_Beasts = {
["coords"] = {
{46.9, 76.7, 3},
},
+ ["displayId"] = 1055,
+ ["skinId"] = 632,
},
[2734] = {
["name"] = "Ridge Stalker Patriarch",
@@ -2936,6 +3361,8 @@ MTH_DS_Beasts = {
["coords"] = {
{25.4, 79.3, 3},
},
+ ["displayId"] = 917,
+ ["skinId"] = 632,
},
[2753] = {
["name"] = "Barnabus",
@@ -2951,6 +3378,8 @@ MTH_DS_Beasts = {
["coords"] = {
{46.3, 74.3, 3},
},
+ ["displayId"] = 9372,
+ ["skinId"] = 9369,
},
[2829] = {
["name"] = "Starving Buzzard",
@@ -2965,6 +3394,8 @@ MTH_DS_Beasts = {
["coords"] = {
{63.9, 46.0, 3},
},
+ ["displayId"] = 10824,
+ ["skinId"] = 388,
},
[2830] = {
["name"] = "Buzzard",
@@ -2979,6 +3410,8 @@ MTH_DS_Beasts = {
["coords"] = {
{67.2, 86.3, 3},
},
+ ["displayId"] = 1105,
+ ["skinId"] = 388,
},
[2831] = {
["name"] = "Giant Buzzard",
@@ -2993,6 +3426,8 @@ MTH_DS_Beasts = {
["coords"] = {
{25.4, 78.8, 3},
},
+ ["displayId"] = 1106,
+ ["skinId"] = 388,
},
[2850] = {
["name"] = "Broken Tooth",
@@ -3008,6 +3443,8 @@ MTH_DS_Beasts = {
["coords"] = {
{44.0, 38.4, 3},
},
+ ["displayId"] = 6082,
+ ["skinId"] = 1056,
},
[2923] = {
["name"] = "Mangy Silvermane",
@@ -3022,6 +3459,8 @@ MTH_DS_Beasts = {
["coords"] = {
{20.3, 57.2, 47},
},
+ ["displayId"] = 11413,
+ ["skinId"] = 9564,
},
[2924] = {
["name"] = "Silvermane Wolf",
@@ -3036,6 +3475,8 @@ MTH_DS_Beasts = {
["coords"] = {
{27.9, 69.4, 47},
},
+ ["displayId"] = 11419,
+ ["skinId"] = 9564,
},
[2925] = {
["name"] = "Silvermane Howler",
@@ -3050,6 +3491,8 @@ MTH_DS_Beasts = {
["coords"] = {
{41.3, 67.1, 47},
},
+ ["displayId"] = 11417,
+ ["skinId"] = 9564,
},
[2926] = {
["name"] = "Silvermane Stalker",
@@ -3064,6 +3507,8 @@ MTH_DS_Beasts = {
["coords"] = {
{72.0, 63.0, 47},
},
+ ["displayId"] = 11418,
+ ["skinId"] = 9564,
},
[2954] = {
["name"] = "Bristleback Battleboar",
@@ -3078,6 +3523,8 @@ MTH_DS_Beasts = {
["coords"] = {
{61.0, 86.5, 215},
},
+ ["displayId"] = 6807,
+ ["skinId"] = 3026,
},
[2955] = {
["name"] = "Plainstrider",
@@ -3092,6 +3539,8 @@ MTH_DS_Beasts = {
["coords"] = {
{53.1, 88.9, 215},
},
+ ["displayId"] = 1219,
+ ["skinId"] = 178,
},
[2956] = {
["name"] = "Adult Plainstrider",
@@ -3106,6 +3555,8 @@ MTH_DS_Beasts = {
["coords"] = {
{37.4, 55.7, 17},
},
+ ["displayId"] = 1220,
+ ["skinId"] = 1220,
},
[2957] = {
["name"] = "Elder Plainstrider",
@@ -3120,6 +3571,8 @@ MTH_DS_Beasts = {
["coords"] = {
{39.3, 58.7, 17},
},
+ ["displayId"] = 1221,
+ ["skinId"] = 1221,
},
[2958] = {
["name"] = "Prairie Wolf",
@@ -3134,6 +3587,8 @@ MTH_DS_Beasts = {
["coords"] = {
{34.1, 79.3, 215},
},
+ ["displayId"] = 1100,
+ ["skinId"] = 161,
},
[2959] = {
["name"] = "Prairie Stalker",
@@ -3148,6 +3603,8 @@ MTH_DS_Beasts = {
["coords"] = {
{36.6, 56.3, 17},
},
+ ["displayId"] = 643,
+ ["skinId"] = 161,
},
[2960] = {
["name"] = "Prairie Wolf Alpha",
@@ -3162,6 +3619,8 @@ MTH_DS_Beasts = {
["coords"] = {
{38.5, 62.3, 17},
},
+ ["displayId"] = 161,
+ ["skinId"] = 161,
},
[2961] = {
["name"] = "Mountain Cougar",
@@ -3176,6 +3635,8 @@ MTH_DS_Beasts = {
["coords"] = {
{56.1, 94.7, 215},
},
+ ["displayId"] = 11451,
+ ["skinId"] = 1056,
},
[2966] = {
["name"] = "Battleboar",
@@ -3190,6 +3651,8 @@ MTH_DS_Beasts = {
["coords"] = {
{59.5, 90.5, 215},
},
+ ["displayId"] = 8869,
+ ["skinId"] = 8869,
},
[2969] = {
["name"] = "Wiry Swoop",
@@ -3204,6 +3667,8 @@ MTH_DS_Beasts = {
["coords"] = {
{34.2, 78.3, 215},
},
+ ["displayId"] = 1228,
+ ["skinId"] = 388,
},
[2970] = {
["name"] = "Swoop",
@@ -3218,6 +3683,8 @@ MTH_DS_Beasts = {
["coords"] = {
{57.7, 68.4, 215},
},
+ ["displayId"] = 1229,
+ ["skinId"] = 388,
},
[2971] = {
["name"] = "Taloned Swoop",
@@ -3232,6 +3699,8 @@ MTH_DS_Beasts = {
["coords"] = {
{38.6, 58.1, 17},
},
+ ["displayId"] = 10824,
+ ["skinId"] = 388,
},
[3035] = {
["name"] = "Flatland Cougar",
@@ -3246,6 +3715,8 @@ MTH_DS_Beasts = {
["coords"] = {
{37.5, 54.1, 17},
},
+ ["displayId"] = 1059,
+ ["skinId"] = 1056,
},
[3068] = {
["name"] = "Mazzranache",
@@ -3261,6 +3732,8 @@ MTH_DS_Beasts = {
["coords"] = {
{50.4, 42.6, 215},
},
+ ["displayId"] = 1961,
+ ["skinId"] = 1961,
},
[3098] = {
["name"] = "Mottled Boar",
@@ -3275,6 +3748,8 @@ MTH_DS_Beasts = {
["coords"] = {
{42.7, 72.7, 14},
},
+ ["displayId"] = 503,
+ ["skinId"] = 193,
},
[3099] = {
["name"] = "Dire Mottled Boar",
@@ -3289,6 +3764,8 @@ MTH_DS_Beasts = {
["coords"] = {
{51.8, 78.1, 14},
},
+ ["displayId"] = 381,
+ ["skinId"] = 381,
},
[3100] = {
["name"] = "Elder Mottled Boar",
@@ -3303,6 +3780,8 @@ MTH_DS_Beasts = {
["coords"] = {
{37.8, 55.8, 14},
},
+ ["displayId"] = 193,
+ ["skinId"] = 193,
},
[3106] = {
["name"] = "Pygmy Surf Crawler",
@@ -3317,6 +3796,8 @@ MTH_DS_Beasts = {
["coords"] = {
{51.5, 84.0, 14},
},
+ ["displayId"] = 1307,
+ ["skinId"] = 1307,
},
[3107] = {
["name"] = "Surf Crawler",
@@ -3331,6 +3812,8 @@ MTH_DS_Beasts = {
["coords"] = {
{64.6, 98.2, 14},
},
+ ["displayId"] = 1938,
+ ["skinId"] = 1307,
},
[3108] = {
["name"] = "Encrusted Surf Crawler",
@@ -3345,6 +3828,8 @@ MTH_DS_Beasts = {
["coords"] = {
{57.8, 96.6, 14},
},
+ ["displayId"] = 999,
+ ["skinId"] = 981,
},
[3110] = {
["name"] = "Dreadmaw Crocolisk",
@@ -3359,6 +3844,8 @@ MTH_DS_Beasts = {
["coords"] = {
{38.5, 71.5, 14},
},
+ ["displayId"] = 1250,
+ ["skinId"] = 833,
},
[3121] = {
["name"] = "Durotar Tiger",
@@ -3373,6 +3860,8 @@ MTH_DS_Beasts = {
["coords"] = {
{64.0, 97.3, 14},
},
+ ["displayId"] = 598,
+ ["skinId"] = 320,
},
[3122] = {
["name"] = "Bloodtalon Taillasher",
@@ -3387,6 +3876,8 @@ MTH_DS_Beasts = {
["coords"] = {
{63.1, 94.4, 14},
},
+ ["displayId"] = 1960,
+ ["skinId"] = 1959,
},
[3123] = {
["name"] = "Bloodtalon Scythemaw",
@@ -3401,6 +3892,8 @@ MTH_DS_Beasts = {
["coords"] = {
{37.2, 54.9, 14},
},
+ ["displayId"] = 1959,
+ ["skinId"] = 1959,
},
[3124] = {
["name"] = "Scorpid Worker",
@@ -3415,6 +3908,8 @@ MTH_DS_Beasts = {
["coords"] = {
{44.0, 73.7, 14},
},
+ ["displayId"] = 2485,
+ ["skinId"] = 2485,
},
[3125] = {
["name"] = "Clattering Scorpid",
@@ -3429,6 +3924,8 @@ MTH_DS_Beasts = {
["coords"] = {
{54.8, 80.3, 14},
},
+ ["displayId"] = 2486,
+ ["skinId"] = 2485,
},
[3126] = {
["name"] = "Armored Scorpid",
@@ -3443,6 +3940,8 @@ MTH_DS_Beasts = {
["coords"] = {
{41.1, 51.7, 14},
},
+ ["displayId"] = 2487,
+ ["skinId"] = 2487,
},
[3127] = {
["name"] = "Venomtail Scorpid",
@@ -3457,6 +3956,8 @@ MTH_DS_Beasts = {
["coords"] = {
{35.9, 56.6, 14},
},
+ ["displayId"] = 2732,
+ ["skinId"] = 2487,
},
[3225] = {
["name"] = "Corrupted Mottled Boar",
@@ -3471,6 +3972,8 @@ MTH_DS_Beasts = {
["coords"] = {
{36.9, 40.1, 14},
},
+ ["displayId"] = 744,
+ ["skinId"] = 381,
},
[3226] = {
["name"] = "Corrupted Scorpid",
@@ -3485,6 +3988,8 @@ MTH_DS_Beasts = {
["coords"] = {
{36.4, 48.4, 14},
},
+ ["displayId"] = 2488,
+ ["skinId"] = 2488,
},
[3227] = {
["name"] = "Corrupted Bloodtalon Scythemaw",
@@ -3499,6 +4004,8 @@ MTH_DS_Beasts = {
["coords"] = {
{37.6, 56.1, 14},
},
+ ["displayId"] = 787,
+ ["skinId"] = 787,
},
[3228] = {
["name"] = "Corrupted Surf Crawler",
@@ -3513,6 +4020,8 @@ MTH_DS_Beasts = {
["coords"] = {
{60.4, 21.8, 14},
},
+ ["displayId"] = 1000,
+ ["skinId"] = 979,
},
[3231] = {
["name"] = "Corrupted Dreadmaw Crocolisk",
@@ -3527,6 +4036,8 @@ MTH_DS_Beasts = {
["coords"] = {
{34.3, 52.7, 14},
},
+ ["displayId"] = 1034,
+ ["skinId"] = 807,
},
[3241] = {
["name"] = "Savannah Patriarch",
@@ -3541,6 +4052,8 @@ MTH_DS_Beasts = {
["coords"] = {
{61.6, 32.7, 17},
},
+ ["displayId"] = 1977,
+ ["skinId"] = 1057,
},
[3243] = {
["name"] = "Savannah Highmane",
@@ -3555,6 +4068,8 @@ MTH_DS_Beasts = {
["coords"] = {
{54.9, 30.5, 17},
},
+ ["displayId"] = 1973,
+ ["skinId"] = 1057,
},
[3244] = {
["name"] = "Greater Plainstrider",
@@ -3569,6 +4084,8 @@ MTH_DS_Beasts = {
["coords"] = {
{52.9, 33.6, 17},
},
+ ["displayId"] = 178,
+ ["skinId"] = 178,
},
[3245] = {
["name"] = "Ornery Plainstrider",
@@ -3583,6 +4100,8 @@ MTH_DS_Beasts = {
["coords"] = {
{59.6, 53.4, 17},
},
+ ["displayId"] = 6076,
+ ["skinId"] = 1220,
},
[3246] = {
["name"] = "Fleeting Plainstrider",
@@ -3597,6 +4116,8 @@ MTH_DS_Beasts = {
["coords"] = {
{35.8, 63.2, 14},
},
+ ["displayId"] = 1284,
+ ["skinId"] = 1221,
},
[3247] = {
["name"] = "Thunderhawk Hatchling",
@@ -3611,6 +4132,8 @@ MTH_DS_Beasts = {
["coords"] = {
{48.5, 56.7, 17},
},
+ ["displayId"] = 1742,
+ ["skinId"] = 1336,
},
[3249] = {
["name"] = "Greater Thunderhawk",
@@ -3625,6 +4148,8 @@ MTH_DS_Beasts = {
["coords"] = {
{45.5, 81.2, 17},
},
+ ["displayId"] = 1974,
+ ["skinId"] = 1336,
},
[3250] = {
["name"] = "Silithid Creeper",
@@ -3639,6 +4164,8 @@ MTH_DS_Beasts = {
["coords"] = {
{26.9, 29.7, 15},
},
+ ["displayId"] = 2730,
+ ["skinId"] = 2730,
},
[3252] = {
["name"] = "Silithid Swarmer",
@@ -3653,6 +4180,8 @@ MTH_DS_Beasts = {
["coords"] = {
{26.5, 30.9, 15},
},
+ ["displayId"] = 2731,
+ ["skinId"] = 2730,
},
[3254] = {
["name"] = "Sunscale Lashtail",
@@ -3667,6 +4196,8 @@ MTH_DS_Beasts = {
["coords"] = {
{52.9, 33.0, 17},
},
+ ["displayId"] = 1744,
+ ["skinId"] = 960,
},
[3255] = {
["name"] = "Sunscale Screecher",
@@ -3681,6 +4212,8 @@ MTH_DS_Beasts = {
["coords"] = {
{60.3, 47.1, 17},
},
+ ["displayId"] = 1747,
+ ["skinId"] = 960,
},
[3256] = {
["name"] = "Sunscale Scytheclaw",
@@ -3695,6 +4228,8 @@ MTH_DS_Beasts = {
["coords"] = {
{57.0, 54.5, 17},
},
+ ["displayId"] = 4442,
+ ["skinId"] = 960,
},
[3281] = {
["name"] = "Sarkoth",
@@ -3709,6 +4244,8 @@ MTH_DS_Beasts = {
["coords"] = {
{40.5, 66.8, 14},
},
+ ["displayId"] = 2864,
+ ["skinId"] = 2488,
},
[3415] = {
["name"] = "Savannah Huntress",
@@ -3723,6 +4260,8 @@ MTH_DS_Beasts = {
["coords"] = {
{50.0, 31.8, 17},
},
+ ["displayId"] = 1056,
+ ["skinId"] = 1056,
},
[3416] = {
["name"] = "Savannah Matriarch",
@@ -3737,6 +4276,8 @@ MTH_DS_Beasts = {
["coords"] = {
{58.8, 35.7, 17},
},
+ ["displayId"] = 1058,
+ ["skinId"] = 1056,
},
[3424] = {
["name"] = "Thunderhawk Cloudscraper",
@@ -3751,6 +4292,8 @@ MTH_DS_Beasts = {
["coords"] = {
{45.5, 67.0, 17},
},
+ ["displayId"] = 1975,
+ ["skinId"] = 1336,
},
[3425] = {
["name"] = "Savannah Prowler",
@@ -3765,6 +4308,8 @@ MTH_DS_Beasts = {
["coords"] = {
{59.2, 41.0, 17},
},
+ ["displayId"] = 1973,
+ ["skinId"] = 1057,
},
[3461] = {
["name"] = "Oasis Snapjaw",
@@ -3779,6 +4324,8 @@ MTH_DS_Beasts = {
["coords"] = {
{55.6, 43.6, 17},
},
+ ["displayId"] = 6368,
+ ["skinId"] = 5126,
},
[3472] = {
["name"] = "Washte Pawne",
@@ -3793,6 +4340,8 @@ MTH_DS_Beasts = {
["coords"] = {
{43.2, 80.9, 17},
},
+ ["displayId"] = 2699,
+ ["skinId"] = 2699,
},
[3566] = {
["name"] = "Flatland Prowler",
@@ -3807,6 +4356,8 @@ MTH_DS_Beasts = {
["coords"] = {
{37.5, 57.5, 17},
},
+ ["displayId"] = 1056,
+ ["skinId"] = 1056,
},
[3581] = {
["name"] = "Sewer Beast",
@@ -3822,6 +4373,8 @@ MTH_DS_Beasts = {
["coords"] = {
{71.1, 68.0, 1519},
},
+ ["displayId"] = 2850,
+ ["skinId"] = 1609,
},
[3630] = {
["name"] = "Deviate Coiler",
@@ -3837,6 +4390,8 @@ MTH_DS_Beasts = {
["coords"] = {
{46.1, 35.3, 17},
},
+ ["displayId"] = 1742,
+ ["skinId"] = 1336,
},
[3631] = {
["name"] = "Deviate Stinglash",
@@ -3852,6 +4407,8 @@ MTH_DS_Beasts = {
["coords"] = {
{48.5, 34.5, 17},
},
+ ["displayId"] = 4091,
+ ["skinId"] = 2700,
},
[3632] = {
["name"] = "Deviate Creeper",
@@ -3867,6 +4424,8 @@ MTH_DS_Beasts = {
["coords"] = {
{45.9, 35.6, 17},
},
+ ["displayId"] = 1744,
+ ["skinId"] = 960,
},
[3633] = {
["name"] = "Deviate Slayer",
@@ -3882,6 +4441,8 @@ MTH_DS_Beasts = {
["coords"] = {
{48.3, 34.3, 17},
},
+ ["displayId"] = 949,
+ ["skinId"] = 675,
},
[3634] = {
["name"] = "Deviate Stalker",
@@ -3897,6 +4458,8 @@ MTH_DS_Beasts = {
["coords"] = {
{46.5, 35.0, 17},
},
+ ["displayId"] = 1746,
+ ["skinId"] = 1337,
},
[3636] = {
["name"] = "Deviate Ravager",
@@ -3912,6 +4475,8 @@ MTH_DS_Beasts = {
["coords"] = {
{47.0, 41.0, 718},
},
+ ["displayId"] = 1747,
+ ["skinId"] = 960,
},
[3637] = {
["name"] = "Deviate Guardian",
@@ -3927,6 +4492,8 @@ MTH_DS_Beasts = {
["coords"] = {
{52.0, 40.2, 718},
},
+ ["displayId"] = 755,
+ ["skinId"] = 675,
},
[3653] = {
["name"] = "Kresh",
@@ -3942,6 +4509,8 @@ MTH_DS_Beasts = {
["coords"] = {
{40.2, 35.6, 718},
},
+ ["displayId"] = 5126,
+ ["skinId"] = 5126,
},
[3809] = {
["name"] = "Ashenvale Bear",
@@ -3956,6 +4525,8 @@ MTH_DS_Beasts = {
["coords"] = {
{66.8, 87.7, 331},
},
+ ["displayId"] = 820,
+ ["skinId"] = 820,
},
[3810] = {
["name"] = "Elder Ashenvale Bear",
@@ -3970,6 +4541,8 @@ MTH_DS_Beasts = {
["coords"] = {
{63.2, 68.3, 331},
},
+ ["displayId"] = 982,
+ ["skinId"] = 822,
},
[3811] = {
["name"] = "Giant Ashenvale Bear",
@@ -3984,6 +4557,8 @@ MTH_DS_Beasts = {
["coords"] = {
{82.9, 48.4, 331},
},
+ ["displayId"] = 14315,
+ ["skinId"] = 822,
},
[3814] = {
["name"] = "Spined Crawler",
@@ -3998,6 +4573,8 @@ MTH_DS_Beasts = {
["coords"] = {
{32.1, 99.7, 148},
},
+ ["displayId"] = 1001,
+ ["skinId"] = 981,
},
[3819] = {
["name"] = "Wildthorn Stalker",
@@ -4012,6 +4589,8 @@ MTH_DS_Beasts = {
["coords"] = {
{64.2, 86.6, 331},
},
+ ["displayId"] = 1103,
+ ["skinId"] = 1091,
},
[3820] = {
["name"] = "Wildthorn Venomspitter",
@@ -4026,6 +4605,8 @@ MTH_DS_Beasts = {
["coords"] = {
{57.2, 78.5, 331},
},
+ ["displayId"] = 336,
+ ["skinId"] = 336,
},
[3821] = {
["name"] = "Wildthorn Lurker",
@@ -4040,6 +4621,8 @@ MTH_DS_Beasts = {
["coords"] = {
{88.7, 68.3, 331},
},
+ ["displayId"] = 1104,
+ ["skinId"] = 1091,
},
[3823] = {
["name"] = "Ghostpaw Runner",
@@ -4054,6 +4637,8 @@ MTH_DS_Beasts = {
["coords"] = {
{41.7, 97.8, 148},
},
+ ["displayId"] = 802,
+ ["skinId"] = 776,
},
[3824] = {
["name"] = "Ghostpaw Howler",
@@ -4068,6 +4653,8 @@ MTH_DS_Beasts = {
["coords"] = {
{57.5, 78.5, 331},
},
+ ["displayId"] = 1207,
+ ["skinId"] = 776,
},
[3825] = {
["name"] = "Ghostpaw Alpha",
@@ -4082,6 +4669,8 @@ MTH_DS_Beasts = {
["coords"] = {
{66.6, 70.1, 331},
},
+ ["displayId"] = 776,
+ ["skinId"] = 776,
},
[3861] = {
["name"] = "Bleak Worg",
@@ -4097,6 +4686,8 @@ MTH_DS_Beasts = {
["coords"] = {
{82.6, 77.9, 209},
},
+ ["displayId"] = 801,
+ ["skinId"] = 776,
},
[3862] = {
["name"] = "Slavering Worg",
@@ -4112,6 +4703,8 @@ MTH_DS_Beasts = {
["coords"] = {
{70.9, 67.3, 209},
},
+ ["displayId"] = 11421,
+ ["skinId"] = 246,
},
[3866] = {
["name"] = "Vile Bat",
@@ -4127,6 +4720,8 @@ MTH_DS_Beasts = {
["coords"] = {
{81.1, 71.7, 209},
},
+ ["displayId"] = 8808,
+ ["skinId"] = 4185,
},
[3868] = {
["name"] = "Blood Seeker",
@@ -4142,6 +4737,8 @@ MTH_DS_Beasts = {
["coords"] = {
{82.2, 73.9, 209},
},
+ ["displayId"] = 1955,
+ ["skinId"] = 1954,
},
[4005] = {
["name"] = "Deepmoss Creeper",
@@ -4156,6 +4753,8 @@ MTH_DS_Beasts = {
["coords"] = {
{63.8, 89.0, 406},
},
+ ["displayId"] = 760,
+ ["skinId"] = 336,
},
[4006] = {
["name"] = "Deepmoss Webspinner",
@@ -4170,6 +4769,8 @@ MTH_DS_Beasts = {
["coords"] = {
{55.9, 71.5, 406},
},
+ ["displayId"] = 1989,
+ ["skinId"] = 336,
},
[4007] = {
["name"] = "Deepmoss Venomspitter",
@@ -4184,6 +4785,8 @@ MTH_DS_Beasts = {
["coords"] = {
{54.5, 74.4, 406},
},
+ ["displayId"] = 759,
+ ["skinId"] = 336,
},
[4040] = {
["name"] = "Cave Stalker",
@@ -4198,6 +4801,8 @@ MTH_DS_Beasts = {
["coords"] = {
{46.7, 63.8, 11},
},
+ ["displayId"] = 959,
+ ["skinId"] = 955,
},
[4067] = {
["name"] = "Twilight Runner",
@@ -4212,6 +4817,8 @@ MTH_DS_Beasts = {
["coords"] = {
{43.8, 27.5, 406},
},
+ ["displayId"] = 11453,
+ ["skinId"] = 11448,
},
[4117] = {
["name"] = "Cloud Serpent",
@@ -4226,6 +4833,8 @@ MTH_DS_Beasts = {
["coords"] = {
{45.4, 94.6, 17},
},
+ ["displayId"] = 2705,
+ ["skinId"] = 2703,
},
[4119] = {
["name"] = "Elder Cloud Serpent",
@@ -4240,6 +4849,8 @@ MTH_DS_Beasts = {
["coords"] = {
{55.5, 51.9, 400},
},
+ ["displayId"] = 2703,
+ ["skinId"] = 2703,
},
[4124] = {
["name"] = "Needles Cougar",
@@ -4254,6 +4865,8 @@ MTH_DS_Beasts = {
["coords"] = {
{41.0, 95.5, 17},
},
+ ["displayId"] = 1056,
+ ["skinId"] = 1056,
},
[4126] = {
["name"] = "Crag Stalker",
@@ -4268,6 +4881,8 @@ MTH_DS_Beasts = {
["coords"] = {
{44.5, 97.4, 17},
},
+ ["displayId"] = 1043,
+ ["skinId"] = 632,
},
[4127] = {
["name"] = "Hecklefang Hyena",
@@ -4282,6 +4897,8 @@ MTH_DS_Beasts = {
["coords"] = {
{36.0, 14.4, 14},
},
+ ["displayId"] = 2710,
+ ["skinId"] = 2710,
},
[4128] = {
["name"] = "Hecklefang Stalker",
@@ -4296,6 +4913,8 @@ MTH_DS_Beasts = {
["coords"] = {
{28.2, 48.7, 15},
},
+ ["displayId"] = 2712,
+ ["skinId"] = 2710,
},
[4129] = {
["name"] = "Hecklefang Snarler",
@@ -4310,6 +4929,8 @@ MTH_DS_Beasts = {
["coords"] = {
{50.4, 59.1, 17},
},
+ ["displayId"] = 2711,
+ ["skinId"] = 2710,
},
[4139] = {
["name"] = "Scorpid Terror",
@@ -4324,6 +4945,8 @@ MTH_DS_Beasts = {
["coords"] = {
{73.5, 89.8, 400},
},
+ ["displayId"] = 2491,
+ ["skinId"] = 2488,
},
[4140] = {
["name"] = "Scorpid Reaver",
@@ -4338,6 +4961,8 @@ MTH_DS_Beasts = {
["coords"] = {
{71.8, 73.7, 400},
},
+ ["displayId"] = 3247,
+ ["skinId"] = 2489,
},
[4142] = {
["name"] = "Sparkleshell Tortoise",
@@ -4352,6 +4977,8 @@ MTH_DS_Beasts = {
["coords"] = {
{72.7, 68.6, 400},
},
+ ["displayId"] = 5052,
+ ["skinId"] = 2307,
},
[4143] = {
["name"] = "Sparkleshell Snapper",
@@ -4366,6 +4993,8 @@ MTH_DS_Beasts = {
["coords"] = {
{88.3, 79.1, 400},
},
+ ["displayId"] = 2308,
+ ["skinId"] = 2307,
},
[4144] = {
["name"] = "Sparkleshell Borer",
@@ -4380,6 +5009,8 @@ MTH_DS_Beasts = {
["coords"] = {
{81.7, 89.2, 400},
},
+ ["displayId"] = 2307,
+ ["skinId"] = 2307,
},
[4154] = {
["name"] = "Salt Flats Scavenger",
@@ -4394,6 +5025,8 @@ MTH_DS_Beasts = {
["coords"] = {
{71.2, 90.0, 400},
},
+ ["displayId"] = 2305,
+ ["skinId"] = 410,
},
[4158] = {
["name"] = "Salt Flats Vulture",
@@ -4408,6 +5041,8 @@ MTH_DS_Beasts = {
["coords"] = {
{78.0, 89.8, 400},
},
+ ["displayId"] = 10825,
+ ["skinId"] = 410,
},
[4248] = {
["name"] = "Pesterhide Hyena",
@@ -4422,6 +5057,8 @@ MTH_DS_Beasts = {
["coords"] = {
{46.8, 97.2, 17},
},
+ ["displayId"] = 2713,
+ ["skinId"] = 2713,
},
[4249] = {
["name"] = "Pesterhide Snarler",
@@ -4436,6 +5073,8 @@ MTH_DS_Beasts = {
["coords"] = {
{37.9, 91.3, 17},
},
+ ["displayId"] = 10903,
+ ["skinId"] = 2713,
},
[4263] = {
["name"] = "Deepmoss Hatchling",
@@ -4446,6 +5085,8 @@ MTH_DS_Beasts = {
["attackSpeed"] = "2.0",
["coords"] = {
},
+ ["displayId"] = 957,
+ ["skinId"] = 283,
},
[4264] = {
["name"] = "Deepmoss Matriarch",
@@ -4456,6 +5097,8 @@ MTH_DS_Beasts = {
["attackSpeed"] = "2.0",
["coords"] = {
},
+ ["displayId"] = 336,
+ ["skinId"] = 336,
},
[4304] = {
["name"] = "Scarlet Tracking Hound",
@@ -4471,6 +5114,8 @@ MTH_DS_Beasts = {
["coords"] = {
{29.8, 87.3, 5135},
},
+ ["displayId"] = 2709,
+ ["skinId"] = 2709,
},
[4316] = {
["name"] = "Kolkar Packhound",
@@ -4485,6 +5130,8 @@ MTH_DS_Beasts = {
["coords"] = {
{55.3, 46.5, 17},
},
+ ["displayId"] = 1535,
+ ["skinId"] = 1534,
},
[4341] = {
["name"] = "Drywallow Crocolisk",
@@ -4499,6 +5146,8 @@ MTH_DS_Beasts = {
["coords"] = {
{59.5, 35.1, 15},
},
+ ["displayId"] = 1080,
+ ["skinId"] = 807,
},
[4342] = {
["name"] = "Drywallow Vicejaw",
@@ -4513,6 +5162,8 @@ MTH_DS_Beasts = {
["coords"] = {
{41.9, 45.5, 15},
},
+ ["displayId"] = 925,
+ ["skinId"] = 925,
},
[4343] = {
["name"] = "Drywallow Snapper",
@@ -4527,6 +5178,8 @@ MTH_DS_Beasts = {
["coords"] = {
{48.9, 65.6, 15},
},
+ ["displayId"] = 814,
+ ["skinId"] = 807,
},
[4344] = {
["name"] = "Mottled Drywallow Crocolisk",
@@ -4541,6 +5194,8 @@ MTH_DS_Beasts = {
["coords"] = {
{41.1, 60.6, 15},
},
+ ["displayId"] = 2548,
+ ["skinId"] = 925,
},
[4345] = {
["name"] = "Drywallow Daggermaw",
@@ -4555,6 +5210,8 @@ MTH_DS_Beasts = {
["coords"] = {
{50.5, 80.9, 15},
},
+ ["displayId"] = 807,
+ ["skinId"] = 807,
},
[4351] = {
["name"] = "Bloodfen Raptor",
@@ -4569,6 +5226,8 @@ MTH_DS_Beasts = {
["coords"] = {
{63.6, 40.2, 15},
},
+ ["displayId"] = 2571,
+ ["skinId"] = 1959,
},
[4352] = {
["name"] = "Bloodfen Screecher",
@@ -4583,6 +5242,8 @@ MTH_DS_Beasts = {
["coords"] = {
{51.6, 22.0, 15},
},
+ ["displayId"] = 1962,
+ ["skinId"] = 1959,
},
[4355] = {
["name"] = "Bloodfen Scytheclaw",
@@ -4597,6 +5258,8 @@ MTH_DS_Beasts = {
["coords"] = {
{49.5, 63.7, 15},
},
+ ["displayId"] = 2574,
+ ["skinId"] = 1959,
},
[4356] = {
["name"] = "Bloodfen Razormaw",
@@ -4611,6 +5274,8 @@ MTH_DS_Beasts = {
["coords"] = {
{34.2, 73.2, 15},
},
+ ["displayId"] = 11315,
+ ["skinId"] = 1959,
},
[4357] = {
["name"] = "Bloodfen Lashtail",
@@ -4625,6 +5290,8 @@ MTH_DS_Beasts = {
["coords"] = {
{36.4, 66.1, 15},
},
+ ["displayId"] = 2573,
+ ["skinId"] = 1959,
},
[4376] = {
["name"] = "Darkmist Spider",
@@ -4639,6 +5306,8 @@ MTH_DS_Beasts = {
["coords"] = {
{34.6, 25.3, 15},
},
+ ["displayId"] = 545,
+ ["skinId"] = 283,
},
[4377] = {
["name"] = "Darkmist Lurker",
@@ -4653,6 +5322,8 @@ MTH_DS_Beasts = {
["coords"] = {
{33.0, 22.8, 15},
},
+ ["displayId"] = 2539,
+ ["skinId"] = 2536,
},
[4378] = {
["name"] = "Darkmist Recluse",
@@ -4667,6 +5338,8 @@ MTH_DS_Beasts = {
["coords"] = {
{34.9, 23.1, 15},
},
+ ["displayId"] = 2538,
+ ["skinId"] = 2536,
},
[4379] = {
["name"] = "Darkmist Silkspinner",
@@ -4681,6 +5354,8 @@ MTH_DS_Beasts = {
["coords"] = {
{34.8, 22.8, 15},
},
+ ["displayId"] = 2541,
+ ["skinId"] = 283,
},
[4380] = {
["name"] = "Darkmist Widow",
@@ -4696,6 +5371,8 @@ MTH_DS_Beasts = {
["coords"] = {
{31.2, 20.4, 15},
},
+ ["displayId"] = 2537,
+ ["skinId"] = 2536,
},
[4396] = {
["name"] = "Mudrock Tortoise",
@@ -4710,6 +5387,8 @@ MTH_DS_Beasts = {
["coords"] = {
{64.8, 40.8, 15},
},
+ ["displayId"] = 4829,
+ ["skinId"] = 4829,
},
[4397] = {
["name"] = "Mudrock Spikeshell",
@@ -4724,6 +5403,8 @@ MTH_DS_Beasts = {
["coords"] = {
{65.0, 42.2, 15},
},
+ ["displayId"] = 7836,
+ ["skinId"] = 4829,
},
[4398] = {
["name"] = "Mudrock Burrower",
@@ -4738,6 +5419,8 @@ MTH_DS_Beasts = {
["coords"] = {
{58.9, 51.5, 15},
},
+ ["displayId"] = 7837,
+ ["skinId"] = 4829,
},
[4399] = {
["name"] = "Mudrock Borer",
@@ -4752,6 +5435,8 @@ MTH_DS_Beasts = {
["coords"] = {
{60.9, 65.6, 15},
},
+ ["displayId"] = 7840,
+ ["skinId"] = 4829,
},
[4400] = {
["name"] = "Mudrock Snapjaw",
@@ -4766,6 +5451,8 @@ MTH_DS_Beasts = {
["coords"] = {
{57.0, 62.0, 15},
},
+ ["displayId"] = 7839,
+ ["skinId"] = 4829,
},
[4411] = {
["name"] = "Darkfang Lurker",
@@ -4780,6 +5467,8 @@ MTH_DS_Beasts = {
["coords"] = {
{34.0, 46.0, 15},
},
+ ["displayId"] = 2424,
+ ["skinId"] = 366,
},
[4412] = {
["name"] = "Darkfang Creeper",
@@ -4794,6 +5483,8 @@ MTH_DS_Beasts = {
["coords"] = {
{44.4, 53.5, 15},
},
+ ["displayId"] = 2546,
+ ["skinId"] = 366,
},
[4413] = {
["name"] = "Darkfang Spider",
@@ -4808,6 +5499,8 @@ MTH_DS_Beasts = {
["coords"] = {
{57.3, 37.7, 15},
},
+ ["displayId"] = 2543,
+ ["skinId"] = 366,
},
[4414] = {
["name"] = "Darkfang Venomspitter",
@@ -4822,6 +5515,8 @@ MTH_DS_Beasts = {
["coords"] = {
{46.7, 42.6, 15},
},
+ ["displayId"] = 2542,
+ ["skinId"] = 366,
},
[4415] = {
["name"] = "Giant Darkfang Spider",
@@ -4836,6 +5531,8 @@ MTH_DS_Beasts = {
["coords"] = {
{52.6, 67.2, 15},
},
+ ["displayId"] = 11348,
+ ["skinId"] = 366,
},
[4538] = {
["name"] = "Kraul Bat",
@@ -4851,6 +5548,8 @@ MTH_DS_Beasts = {
["coords"] = {
{18.8, 59.7, 491},
},
+ ["displayId"] = 1955,
+ ["skinId"] = 1954,
},
[4539] = {
["name"] = "Greater Kraul Bat",
@@ -4866,6 +5565,8 @@ MTH_DS_Beasts = {
["coords"] = {
{10.5, 55.5, 491},
},
+ ["displayId"] = 1954,
+ ["skinId"] = 1954,
},
[4548] = {
["name"] = "Steelsnap",
@@ -4880,6 +5581,8 @@ MTH_DS_Beasts = {
["coords"] = {
{37.9, 91.2, 17},
},
+ ["displayId"] = 2609,
+ ["skinId"] = 1534,
},
[4662] = {
["name"] = "Magram Bonepaw",
@@ -4894,6 +5597,8 @@ MTH_DS_Beasts = {
["coords"] = {
{65.4, 80.7, 405},
},
+ ["displayId"] = 2716,
+ ["skinId"] = 2714,
},
[4688] = {
["name"] = "Bonepaw Hyena",
@@ -4908,6 +5613,8 @@ MTH_DS_Beasts = {
["coords"] = {
{37.0, 72.7, 405},
},
+ ["displayId"] = 10902,
+ ["skinId"] = 2726,
},
[4689] = {
["name"] = "Starving Bonepaw",
@@ -4922,6 +5629,8 @@ MTH_DS_Beasts = {
["coords"] = {
{71.2, 34.8, 405},
},
+ ["displayId"] = 2726,
+ ["skinId"] = 2726,
},
[4690] = {
["name"] = "Rabid Bonepaw",
@@ -4936,6 +5645,8 @@ MTH_DS_Beasts = {
["coords"] = {
{43.1, 50.3, 405},
},
+ ["displayId"] = 10271,
+ ["skinId"] = 2726,
},
[4692] = {
["name"] = "Dread Swoop",
@@ -4950,6 +5661,8 @@ MTH_DS_Beasts = {
["coords"] = {
{38.5, 75.7, 405},
},
+ ["displayId"] = 1192,
+ ["skinId"] = 507,
},
[4694] = {
["name"] = "Dread Ripper",
@@ -4964,6 +5677,8 @@ MTH_DS_Beasts = {
["coords"] = {
{55.2, 85.7, 405},
},
+ ["displayId"] = 14319,
+ ["skinId"] = 507,
},
[4695] = {
["name"] = "Carrion Horror",
@@ -4978,6 +5693,8 @@ MTH_DS_Beasts = {
["coords"] = {
{53.6, 63.6, 405},
},
+ ["displayId"] = 10825,
+ ["skinId"] = 410,
},
[4696] = {
["name"] = "Scorpashi Snapper",
@@ -4992,6 +5709,8 @@ MTH_DS_Beasts = {
["coords"] = {
{53.1, 68.9, 405},
},
+ ["displayId"] = 2729,
+ ["skinId"] = 2729,
},
[4697] = {
["name"] = "Scorpashi Lasher",
@@ -5006,6 +5725,8 @@ MTH_DS_Beasts = {
["coords"] = {
{38.0, 74.5, 405},
},
+ ["displayId"] = 2765,
+ ["skinId"] = 2729,
},
[4699] = {
["name"] = "Scorpashi Venomlash",
@@ -5020,6 +5741,8 @@ MTH_DS_Beasts = {
["coords"] = {
{50.7, 92.4, 405},
},
+ ["displayId"] = 2766,
+ ["skinId"] = 2729,
},
[4821] = {
["name"] = "Skittering Crustacean",
@@ -5035,6 +5758,8 @@ MTH_DS_Beasts = {
["coords"] = {
{35.6, 32.9, 719},
},
+ ["displayId"] = 981,
+ ["skinId"] = 981,
},
[4822] = {
["name"] = "Snapping Crustacean",
@@ -5050,6 +5775,8 @@ MTH_DS_Beasts = {
["coords"] = {
{20.2, 57.1, 719},
},
+ ["displayId"] = 1001,
+ ["skinId"] = 981,
},
[4823] = {
["name"] = "Barbed Crustacean",
@@ -5065,6 +5792,8 @@ MTH_DS_Beasts = {
["coords"] = {
{45.5, 91.3, 719},
},
+ ["displayId"] = 9565,
+ ["skinId"] = 981,
},
[4841] = {
["name"] = "Deadmire",
@@ -5079,6 +5808,8 @@ MTH_DS_Beasts = {
["coords"] = {
{48.8, 56.7, 15},
},
+ ["displayId"] = 2850,
+ ["skinId"] = 1609,
},
[4861] = {
["name"] = "Shrike Bat",
@@ -5094,6 +5825,8 @@ MTH_DS_Beasts = {
["coords"] = {
{40.3, 65.5, 1337},
},
+ ["displayId"] = 1954,
+ ["skinId"] = 1954,
},
[4887] = {
["name"] = "Ghamoo-Ra",
@@ -5109,6 +5842,8 @@ MTH_DS_Beasts = {
["coords"] = {
{22.4, 41.5, 719},
},
+ ["displayId"] = 5027,
+ ["skinId"] = 5026,
},
[4950] = {
["name"] = "Spot",
@@ -5123,6 +5858,8 @@ MTH_DS_Beasts = {
["coords"] = {
{68.0, 46.8, 15},
},
+ ["displayId"] = 1100,
+ ["skinId"] = 161,
},
[5048] = {
["name"] = "Deviate Adder",
@@ -5137,6 +5874,8 @@ MTH_DS_Beasts = {
["coords"] = {
{32.3, 43.1, 718},
},
+ ["displayId"] = 4317,
+ ["skinId"] = 4317,
},
[5053] = {
["name"] = "Deviate Crocolisk",
@@ -5151,6 +5890,8 @@ MTH_DS_Beasts = {
["coords"] = {
{85.8, 83.0, 718},
},
+ ["displayId"] = 2996,
+ ["skinId"] = 1609,
},
[5056] = {
["name"] = "Deviate Dreadfang",
@@ -5166,6 +5907,8 @@ MTH_DS_Beasts = {
["coords"] = {
{85.5, 81.0, 718},
},
+ ["displayId"] = 3006,
+ ["skinId"] = 3006,
},
[5225] = {
["name"] = "Murk Spitter",
@@ -5180,6 +5923,8 @@ MTH_DS_Beasts = {
["coords"] = {
{76.7, 46.2, 8},
},
+ ["displayId"] = 4768,
+ ["skinId"] = 4435,
},
[5262] = {
["name"] = "Groddoc Thunderer",
@@ -5194,6 +5939,8 @@ MTH_DS_Beasts = {
["coords"] = {
{48.8, 35.4, 357},
},
+ ["displayId"] = 3188,
+ ["skinId"] = 3186,
},
[5268] = {
["name"] = "Ironfur Bear",
@@ -5208,6 +5955,8 @@ MTH_DS_Beasts = {
["coords"] = {
{61.3, 61.6, 357},
},
+ ["displayId"] = 3201,
+ ["skinId"] = 806,
},
[5272] = {
["name"] = "Grizzled Ironfur Bear",
@@ -5222,6 +5971,8 @@ MTH_DS_Beasts = {
["coords"] = {
{70.7, 63.8, 357},
},
+ ["displayId"] = 8838,
+ ["skinId"] = 806,
},
[5274] = {
["name"] = "Ironfur Patriarch",
@@ -5236,6 +5987,8 @@ MTH_DS_Beasts = {
["coords"] = {
{48.9, 37.5, 357},
},
+ ["displayId"] = 3200,
+ ["skinId"] = 806,
},
[5286] = {
["name"] = "Longtooth Runner",
@@ -5250,6 +6003,8 @@ MTH_DS_Beasts = {
["coords"] = {
{30.7, 52.6, 357},
},
+ ["displayId"] = 165,
+ ["skinId"] = 165,
},
[5287] = {
["name"] = "Longtooth Howler",
@@ -5264,6 +6019,8 @@ MTH_DS_Beasts = {
["coords"] = {
{69.6, 63.5, 357},
},
+ ["displayId"] = 3202,
+ ["skinId"] = 165,
},
[5288] = {
["name"] = "Rabid Longtooth",
@@ -5278,6 +6035,8 @@ MTH_DS_Beasts = {
["coords"] = {
{48.8, 37.1, 357},
},
+ ["displayId"] = 3203,
+ ["skinId"] = 165,
},
[5291] = {
["name"] = "Hakkari Frostwing",
@@ -5293,6 +6052,8 @@ MTH_DS_Beasts = {
["coords"] = {
{24.8, 64.8, 1477},
},
+ ["displayId"] = 7569,
+ ["skinId"] = 2703,
},
[5307] = {
["name"] = "Vale Screecher",
@@ -5307,6 +6068,8 @@ MTH_DS_Beasts = {
["coords"] = {
{60.0, 61.3, 357},
},
+ ["displayId"] = 2699,
+ ["skinId"] = 2699,
},
[5308] = {
["name"] = "Rogue Vale Screecher",
@@ -5321,6 +6084,8 @@ MTH_DS_Beasts = {
["coords"] = {
{47.9, 59.2, 357},
},
+ ["displayId"] = 3204,
+ ["skinId"] = 2699,
},
[5349] = {
["name"] = "Arash-ethis",
@@ -5336,6 +6101,8 @@ MTH_DS_Beasts = {
["coords"] = {
{44.8, 25.0, 357},
},
+ ["displayId"] = 7569,
+ ["skinId"] = 2703,
},
[5352] = {
["name"] = "Old Grizzlegut",
@@ -5351,6 +6118,8 @@ MTH_DS_Beasts = {
["coords"] = {
{59.5, 59.4, 357},
},
+ ["displayId"] = 706,
+ ["skinId"] = 706,
},
[5356] = {
["name"] = "Snarler",
@@ -5366,6 +6135,8 @@ MTH_DS_Beasts = {
["coords"] = {
{80.2, 39.6, 357},
},
+ ["displayId"] = 780,
+ ["skinId"] = 644,
},
[5422] = {
["name"] = "Scorpid Hunter",
@@ -5380,6 +6151,8 @@ MTH_DS_Beasts = {
["coords"] = {
{78.3, 99.7, 400},
},
+ ["displayId"] = 2414,
+ ["skinId"] = 2414,
},
[5423] = {
["name"] = "Scorpid Tail Lasher",
@@ -5394,6 +6167,8 @@ MTH_DS_Beasts = {
["coords"] = {
{54.1, 54.3, 440},
},
+ ["displayId"] = 10987,
+ ["skinId"] = 2414,
},
[5424] = {
["name"] = "Scorpid Dunestalker",
@@ -5408,6 +6183,8 @@ MTH_DS_Beasts = {
["coords"] = {
{49.3, 76.3, 440},
},
+ ["displayId"] = 10986,
+ ["skinId"] = 2414,
},
[5425] = {
["name"] = "Starving Blisterpaw",
@@ -5422,6 +6199,8 @@ MTH_DS_Beasts = {
["coords"] = {
{54.5, 38.7, 440},
},
+ ["displayId"] = 1535,
+ ["skinId"] = 1534,
},
[5426] = {
["name"] = "Blisterpaw Hyena",
@@ -5436,6 +6215,8 @@ MTH_DS_Beasts = {
["coords"] = {
{51.2, 63.4, 440},
},
+ ["displayId"] = 1536,
+ ["skinId"] = 1536,
},
[5427] = {
["name"] = "Rabid Blisterpaw",
@@ -5450,6 +6231,8 @@ MTH_DS_Beasts = {
["coords"] = {
{32.9, 79.1, 440},
},
+ ["displayId"] = 2609,
+ ["skinId"] = 1534,
},
[5428] = {
["name"] = "Roc",
@@ -5464,6 +6247,8 @@ MTH_DS_Beasts = {
["coords"] = {
{49.2, 37.1, 440},
},
+ ["displayId"] = 3248,
+ ["skinId"] = 490,
},
[5429] = {
["name"] = "Fire Roc",
@@ -5478,6 +6263,8 @@ MTH_DS_Beasts = {
["coords"] = {
{49.8, 53.7, 440},
},
+ ["displayId"] = 7348,
+ ["skinId"] = 490,
},
[5430] = {
["name"] = "Searing Roc",
@@ -5492,6 +6279,8 @@ MTH_DS_Beasts = {
["coords"] = {
{32.0, 74.9, 440},
},
+ ["displayId"] = 10827,
+ ["skinId"] = 490,
},
[5431] = {
["name"] = "Surf Glider",
@@ -5506,6 +6295,8 @@ MTH_DS_Beasts = {
["coords"] = {
{53.1, 97.9, 440},
},
+ ["displayId"] = 7114,
+ ["skinId"] = 5126,
},
[5708] = {
["name"] = "Spawn of Hakkar",
@@ -5521,6 +6312,8 @@ MTH_DS_Beasts = {
["coords"] = {
{60.3, 59.5, 1477},
},
+ ["displayId"] = 4065,
+ ["skinId"] = 2699,
},
[5755] = {
["name"] = "Deviate Viper",
@@ -5535,6 +6328,8 @@ MTH_DS_Beasts = {
["coords"] = {
{28.8, 40.3, 718},
},
+ ["displayId"] = 4312,
+ ["skinId"] = 4312,
},
[5756] = {
["name"] = "Deviate Venomwing",
@@ -5550,6 +6345,8 @@ MTH_DS_Beasts = {
["coords"] = {
{86.9, 81.3, 718},
},
+ ["displayId"] = 2706,
+ ["skinId"] = 2700,
},
[5762] = {
["name"] = "Deviate Moccasin",
@@ -5560,6 +6357,8 @@ MTH_DS_Beasts = {
["attackSpeed"] = "2.0",
["coords"] = {
},
+ ["displayId"] = 4305,
+ ["skinId"] = 4305,
},
[5766] = {
["name"] = "Savannah Cub",
@@ -5574,6 +6373,8 @@ MTH_DS_Beasts = {
["coords"] = {
{58.9, 35.7, 17},
},
+ ["displayId"] = 2278,
+ ["skinId"] = 1056,
},
[5807] = {
["name"] = "The Rake",
@@ -5589,6 +6390,8 @@ MTH_DS_Beasts = {
["coords"] = {
{53.4, 17.0, 215},
},
+ ["displayId"] = 1973,
+ ["skinId"] = 1057,
},
[5823] = {
["name"] = "Death Flayer",
@@ -5604,6 +6407,8 @@ MTH_DS_Beasts = {
["coords"] = {
{38.2, 51.1, 14},
},
+ ["displayId"] = 2491,
+ ["skinId"] = 2488,
},
[5828] = {
["name"] = "Humar the Pridelord",
@@ -5619,6 +6424,8 @@ MTH_DS_Beasts = {
["coords"] = {
{62.1, 33.3, 17},
},
+ ["displayId"] = 4424,
+ ["skinId"] = 4424,
},
[5829] = {
["name"] = "Snort the Heckler",
@@ -5634,6 +6441,8 @@ MTH_DS_Beasts = {
["coords"] = {
{41.2, 22.2, 17},
},
+ ["displayId"] = 2713,
+ ["skinId"] = 2713,
},
[5834] = {
["name"] = "Azzere the Skyblade",
@@ -5649,6 +6458,8 @@ MTH_DS_Beasts = {
["coords"] = {
{45.0, 63.6, 17},
},
+ ["displayId"] = 2702,
+ ["skinId"] = 2699,
},
[5856] = {
["name"] = "Glassweb Spider",
@@ -5663,6 +6474,8 @@ MTH_DS_Beasts = {
["coords"] = {
{64.6, 75.3, 51},
},
+ ["displayId"] = 4456,
+ ["skinId"] = 4456,
},
[5857] = {
["name"] = "Searing Lava Spider",
@@ -5677,6 +6490,8 @@ MTH_DS_Beasts = {
["coords"] = {
{57.6, 83.9, 51},
},
+ ["displayId"] = 4457,
+ ["skinId"] = 4457,
},
[5858] = {
["name"] = "Greater Lava Spider",
@@ -5691,6 +6506,8 @@ MTH_DS_Beasts = {
["coords"] = {
{12.7, 17.9, 46},
},
+ ["displayId"] = 7510,
+ ["skinId"] = 4457,
},
[5865] = {
["name"] = "Dishu",
@@ -5706,6 +6523,8 @@ MTH_DS_Beasts = {
["coords"] = {
{50.9, 18.2, 17},
},
+ ["displayId"] = 1043,
+ ["skinId"] = 632,
},
[5937] = {
["name"] = "Vile Sting",
@@ -5721,6 +6540,8 @@ MTH_DS_Beasts = {
["coords"] = {
{71.5, 63.6, 400},
},
+ ["displayId"] = 10988,
+ ["skinId"] = 10983,
},
[5982] = {
["name"] = "Black Slayer",
@@ -5735,6 +6556,8 @@ MTH_DS_Beasts = {
["coords"] = {
{54.9, 44.6, 4},
},
+ ["displayId"] = 10824,
+ ["skinId"] = 388,
},
[5985] = {
["name"] = "Snickerfang Hyena",
@@ -5749,6 +6572,8 @@ MTH_DS_Beasts = {
["coords"] = {
{52.4, 57.2, 4},
},
+ ["displayId"] = 2714,
+ ["skinId"] = 2714,
},
[5988] = {
["name"] = "Scorpok Stinger",
@@ -5763,6 +6588,8 @@ MTH_DS_Beasts = {
["coords"] = {
{58.6, 41.0, 4},
},
+ ["displayId"] = 6068,
+ ["skinId"] = 2488,
},
[5992] = {
["name"] = "Ashmane Boar",
@@ -5777,6 +6604,8 @@ MTH_DS_Beasts = {
["coords"] = {
{64.3, 54.7, 4},
},
+ ["displayId"] = 3026,
+ ["skinId"] = 3026,
},
[6013] = {
["name"] = "Wayward Buzzard",
@@ -5787,6 +6616,8 @@ MTH_DS_Beasts = {
["attackSpeed"] = "2.0",
["coords"] = {
},
+ ["displayId"] = 1105,
+ ["skinId"] = 388,
},
[6352] = {
["name"] = "Coralshell Lurker",
@@ -5801,6 +6632,8 @@ MTH_DS_Beasts = {
["coords"] = {
{65.8, 97.0, 16},
},
+ ["displayId"] = 10947,
+ ["skinId"] = 2307,
},
[6369] = {
["name"] = "Coralshell Tortoise",
@@ -5815,6 +6648,8 @@ MTH_DS_Beasts = {
["coords"] = {
{87.5, 16.5, 16},
},
+ ["displayId"] = 2308,
+ ["skinId"] = 2307,
},
[6505] = {
["name"] = "Ravasaur",
@@ -5829,6 +6664,8 @@ MTH_DS_Beasts = {
["coords"] = {
{61.9, 83.2, 490},
},
+ ["displayId"] = 5242,
+ ["skinId"] = 960,
},
[6506] = {
["name"] = "Ravasaur Runner",
@@ -5843,6 +6680,8 @@ MTH_DS_Beasts = {
["coords"] = {
{61.9, 83.2, 490},
},
+ ["displayId"] = 5290,
+ ["skinId"] = 675,
},
[6507] = {
["name"] = "Ravasaur Hunter",
@@ -5857,6 +6696,8 @@ MTH_DS_Beasts = {
["coords"] = {
{71.6, 61.5, 490},
},
+ ["displayId"] = 5292,
+ ["skinId"] = 960,
},
[6508] = {
["name"] = "Venomhide Ravasaur",
@@ -5871,6 +6712,8 @@ MTH_DS_Beasts = {
["coords"] = {
{71.6, 61.5, 490},
},
+ ["displayId"] = 5291,
+ ["skinId"] = 5291,
},
[6581] = {
["name"] = "Ravasaur Matriarch",
@@ -5886,6 +6729,8 @@ MTH_DS_Beasts = {
["coords"] = {
{62.3, 65.9, 490},
},
+ ["displayId"] = 11319,
+ ["skinId"] = 322,
},
[6788] = {
["name"] = "Den Mother",
@@ -5900,6 +6745,8 @@ MTH_DS_Beasts = {
["coords"] = {
{51.5, 38.3, 148},
},
+ ["displayId"] = 1007,
+ ["skinId"] = 806,
},
[6789] = {
["name"] = "Thistle Cub",
@@ -5914,6 +6761,8 @@ MTH_DS_Beasts = {
["coords"] = {
{51.4, 38.3, 148},
},
+ ["displayId"] = 5510,
+ ["skinId"] = 822,
},
[7022] = {
["name"] = "Venomlash Scorpid",
@@ -5929,6 +6778,8 @@ MTH_DS_Beasts = {
["coords"] = {
{36.5, 60.5, 1337},
},
+ ["displayId"] = 2488,
+ ["skinId"] = 2488,
},
[7055] = {
["name"] = "Blackrock Worg",
@@ -5943,6 +6794,8 @@ MTH_DS_Beasts = {
["coords"] = {
{49.2, 58.5, 46},
},
+ ["displayId"] = 741,
+ ["skinId"] = 246,
},
[7078] = {
["name"] = "Cleft Scorpid",
@@ -5957,6 +6810,8 @@ MTH_DS_Beasts = {
["coords"] = {
{39.4, 63.6, 1337},
},
+ ["displayId"] = 5985,
+ ["skinId"] = 2489,
},
[7097] = {
["name"] = "Ironbeak Owl",
@@ -5971,6 +6826,8 @@ MTH_DS_Beasts = {
["coords"] = {
{54.8, 88.1, 148},
},
+ ["displayId"] = 4877,
+ ["skinId"] = 4877,
},
[7098] = {
["name"] = "Ironbeak Screecher",
@@ -5985,6 +6842,8 @@ MTH_DS_Beasts = {
["coords"] = {
{53.7, 27.0, 361},
},
+ ["displayId"] = 10831,
+ ["skinId"] = 4877,
},
[7099] = {
["name"] = "Ironbeak Hunter",
@@ -5999,6 +6858,8 @@ MTH_DS_Beasts = {
["coords"] = {
{44.9, 69.9, 361},
},
+ ["displayId"] = 10829,
+ ["skinId"] = 4877,
},
[7268] = {
["name"] = "Sandfury Guardian",
@@ -6013,6 +6874,8 @@ MTH_DS_Beasts = {
["coords"] = {
{22.1, 47.3, 1176},
},
+ ["displayId"] = 4305,
+ ["skinId"] = 4305,
},
[7319] = {
["name"] = "Lady Sathrah",
@@ -6027,6 +6890,8 @@ MTH_DS_Beasts = {
["coords"] = {
{48.1, 25.1, 141},
},
+ ["displayId"] = 6214,
+ ["skinId"] = 1091,
},
[7405] = {
["name"] = "Deadly Cleft Scorpid",
@@ -6041,6 +6906,8 @@ MTH_DS_Beasts = {
["coords"] = {
{34.8, 38.4, 1337},
},
+ ["displayId"] = 5985,
+ ["skinId"] = 2489,
},
[7430] = {
["name"] = "Frostsaber Cub",
@@ -6055,6 +6922,8 @@ MTH_DS_Beasts = {
["coords"] = {
{48.9, 19.0, 618},
},
+ ["displayId"] = 9958,
+ ["skinId"] = 9958,
},
[7431] = {
["name"] = "Frostsaber",
@@ -6069,6 +6938,8 @@ MTH_DS_Beasts = {
["coords"] = {
{51.1, 22.3, 618},
},
+ ["displayId"] = 9953,
+ ["skinId"] = 616,
},
[7432] = {
["name"] = "Frostsaber Stalker",
@@ -6083,6 +6954,8 @@ MTH_DS_Beasts = {
["coords"] = {
{51.5, 21.5, 618},
},
+ ["displayId"] = 11445,
+ ["skinId"] = 9958,
},
[7433] = {
["name"] = "Frostsaber Huntress",
@@ -6097,6 +6970,8 @@ MTH_DS_Beasts = {
["coords"] = {
{50.4, 16.6, 618},
},
+ ["displayId"] = 11444,
+ ["skinId"] = 9958,
},
[7434] = {
["name"] = "Frostsaber Pride Watcher",
@@ -6111,6 +6986,8 @@ MTH_DS_Beasts = {
["coords"] = {
{49.3, 12.3, 618},
},
+ ["displayId"] = 9954,
+ ["skinId"] = 9954,
},
[7443] = {
["name"] = "Shardtooth Mauler",
@@ -6125,6 +7002,8 @@ MTH_DS_Beasts = {
["coords"] = {
{66.7, 54.4, 618},
},
+ ["displayId"] = 8842,
+ ["skinId"] = 865,
},
[7444] = {
["name"] = "Shardtooth Bear",
@@ -6139,6 +7018,8 @@ MTH_DS_Beasts = {
["coords"] = {
{30.2, 47.2, 618},
},
+ ["displayId"] = 865,
+ ["skinId"] = 865,
},
[7445] = {
["name"] = "Elder Shardtooth",
@@ -6153,6 +7034,8 @@ MTH_DS_Beasts = {
["coords"] = {
{60.8, 64.0, 618},
},
+ ["displayId"] = 8837,
+ ["skinId"] = 865,
},
[7446] = {
["name"] = "Rabid Shardtooth",
@@ -6167,6 +7050,8 @@ MTH_DS_Beasts = {
["coords"] = {
{63.4, 74.4, 618},
},
+ ["displayId"] = 3200,
+ ["skinId"] = 806,
},
[7456] = {
["name"] = "Winterspring Screecher",
@@ -6181,6 +7066,8 @@ MTH_DS_Beasts = {
["coords"] = {
{60.3, 64.5, 618},
},
+ ["displayId"] = 10833,
+ ["skinId"] = 6212,
},
[8207] = {
["name"] = "Greater Firebird",
@@ -6196,6 +7083,8 @@ MTH_DS_Beasts = {
["coords"] = {
{54.2, 39.9, 440},
},
+ ["displayId"] = 7349,
+ ["skinId"] = 490,
},
[8208] = {
["name"] = "Murderous Blisterpaw",
@@ -6211,6 +7100,8 @@ MTH_DS_Beasts = {
["coords"] = {
{47.4, 25.0, 440},
},
+ ["displayId"] = 1534,
+ ["skinId"] = 1534,
},
[8211] = {
["name"] = "Old Cliff Jumper",
@@ -6226,6 +7117,8 @@ MTH_DS_Beasts = {
["coords"] = {
{11.9, 53.7, 47},
},
+ ["displayId"] = 11414,
+ ["skinId"] = 11414,
},
[8213] = {
["name"] = "Ironback",
@@ -6241,6 +7134,8 @@ MTH_DS_Beasts = {
["coords"] = {
{81.5, 49.2, 47},
},
+ ["displayId"] = 7840,
+ ["skinId"] = 4829,
},
[8299] = {
["name"] = "Spiteflayer",
@@ -6256,6 +7151,8 @@ MTH_DS_Beasts = {
["coords"] = {
{61.1, 35.4, 4},
},
+ ["displayId"] = 388,
+ ["skinId"] = 388,
},
[8300] = {
["name"] = "Ravage",
@@ -6271,6 +7168,8 @@ MTH_DS_Beasts = {
["coords"] = {
{61.1, 36.6, 4},
},
+ ["displayId"] = 10904,
+ ["skinId"] = 2713,
},
[8301] = {
["name"] = "Clack the Reaver",
@@ -6286,6 +7185,8 @@ MTH_DS_Beasts = {
["coords"] = {
{48.3, 38.7, 4},
},
+ ["displayId"] = 10983,
+ ["skinId"] = 10983,
},
[8303] = {
["name"] = "Grunter",
@@ -6301,6 +7202,8 @@ MTH_DS_Beasts = {
["coords"] = {
{56.1, 31.1, 4},
},
+ ["displayId"] = 8870,
+ ["skinId"] = 381,
},
[8336] = {
["name"] = "Hakkari Sapper",
@@ -6316,6 +7219,8 @@ MTH_DS_Beasts = {
["coords"] = {
{24.8, 64.8, 1477},
},
+ ["displayId"] = 1336,
+ ["skinId"] = 1336,
},
[8600] = {
["name"] = "Plaguebat",
@@ -6330,6 +7235,8 @@ MTH_DS_Beasts = {
["coords"] = {
{84.1, 69.0, 28},
},
+ ["displayId"] = 7894,
+ ["skinId"] = 4185,
},
[8601] = {
["name"] = "Noxious Plaguebat",
@@ -6344,6 +7251,8 @@ MTH_DS_Beasts = {
["coords"] = {
{72.2, 72.8, 139},
},
+ ["displayId"] = 7896,
+ ["skinId"] = 1954,
},
[8602] = {
["name"] = "Monstrous Plaguebat",
@@ -6358,6 +7267,8 @@ MTH_DS_Beasts = {
["coords"] = {
{67.7, 50.9, 139},
},
+ ["displayId"] = 7897,
+ ["skinId"] = 4185,
},
[8762] = {
["name"] = "Timberweb Recluse",
@@ -6372,6 +7283,8 @@ MTH_DS_Beasts = {
["coords"] = {
{24.4, 49.8, 16},
},
+ ["displayId"] = 8014,
+ ["skinId"] = 520,
},
[8933] = {
["name"] = "Cave Creeper",
@@ -6382,6 +7295,8 @@ MTH_DS_Beasts = {
["attackSpeed"] = "2.0",
["coords"] = {
},
+ ["displayId"] = 8014,
+ ["skinId"] = 520,
},
[8956] = {
["name"] = "Angerclaw Bear",
@@ -6396,6 +7311,8 @@ MTH_DS_Beasts = {
["coords"] = {
{57.4, 25.5, 331},
},
+ ["displayId"] = 9276,
+ ["skinId"] = 1083,
},
[8958] = {
["name"] = "Angerclaw Mauler",
@@ -6410,6 +7327,8 @@ MTH_DS_Beasts = {
["coords"] = {
{43.8, 67.6, 361},
},
+ ["displayId"] = 1083,
+ ["skinId"] = 1083,
},
[8959] = {
["name"] = "Felpaw Wolf",
@@ -6424,6 +7343,8 @@ MTH_DS_Beasts = {
["coords"] = {
{57.2, 27.5, 331},
},
+ ["displayId"] = 4124,
+ ["skinId"] = 4124,
},
[8960] = {
["name"] = "Felpaw Scavenger",
@@ -6438,6 +7359,8 @@ MTH_DS_Beasts = {
["coords"] = {
{52.3, 62.0, 148},
},
+ ["displayId"] = 9278,
+ ["skinId"] = 4124,
},
[8961] = {
["name"] = "Felpaw Ravager",
@@ -6452,6 +7375,8 @@ MTH_DS_Beasts = {
["coords"] = {
{53.8, 27.7, 361},
},
+ ["displayId"] = 9280,
+ ["skinId"] = 4124,
},
[9416] = {
["name"] = "Scarshield Worg",
@@ -6466,6 +7391,8 @@ MTH_DS_Beasts = {
["coords"] = {
{62.7, 62.1, 1583},
},
+ ["displayId"] = 11420,
+ ["skinId"] = 9369,
},
[9690] = {
["name"] = "Ember Worg",
@@ -6480,6 +7407,8 @@ MTH_DS_Beasts = {
["coords"] = {
{84.1, 60.6, 46},
},
+ ["displayId"] = 9371,
+ ["skinId"] = 9369,
},
[9691] = {
["name"] = "Venomtip Scorpid",
@@ -6494,6 +7423,8 @@ MTH_DS_Beasts = {
["coords"] = {
{86.8, 59.7, 46},
},
+ ["displayId"] = 8970,
+ ["skinId"] = 2487,
},
[9694] = {
["name"] = "Slavering Ember Worg",
@@ -6508,6 +7439,8 @@ MTH_DS_Beasts = {
["coords"] = {
{58.4, 63.9, 46},
},
+ ["displayId"] = 11420,
+ ["skinId"] = 9369,
},
[9695] = {
["name"] = "Deathlash Scorpid",
@@ -6522,6 +7455,8 @@ MTH_DS_Beasts = {
["coords"] = {
{54.2, 67.0, 46},
},
+ ["displayId"] = 10984,
+ ["skinId"] = 2487,
},
[9696] = {
["name"] = "Bloodaxe Worg",
@@ -6536,6 +7471,8 @@ MTH_DS_Beasts = {
["coords"] = {
{53.3, 79.7, 1583},
},
+ ["displayId"] = 9562,
+ ["skinId"] = 246,
},
[9697] = {
["name"] = "Giant Ember Worg",
@@ -6550,6 +7487,8 @@ MTH_DS_Beasts = {
["coords"] = {
{24.5, 69.2, 46},
},
+ ["displayId"] = 9370,
+ ["skinId"] = 9369,
},
[9698] = {
["name"] = "Firetail Scorpid",
@@ -6564,6 +7503,8 @@ MTH_DS_Beasts = {
["coords"] = {
{25.6, 60.9, 46},
},
+ ["displayId"] = 10985,
+ ["skinId"] = 2487,
},
[10077] = {
["name"] = "Deathmaw",
@@ -6579,6 +7520,8 @@ MTH_DS_Beasts = {
["coords"] = {
{86.6, 49.6, 46},
},
+ ["displayId"] = 9562,
+ ["skinId"] = 246,
},
[10221] = {
["name"] = "Bloodaxe Worg Pup",
@@ -6593,6 +7536,8 @@ MTH_DS_Beasts = {
["coords"] = {
{37.4, 84.6, 1583},
},
+ ["displayId"] = 9563,
+ ["skinId"] = 246,
},
[10357] = {
["name"] = "Ressan the Needler",
@@ -6608,6 +7553,8 @@ MTH_DS_Beasts = {
["coords"] = {
{42.9, 67.6, 85},
},
+ ["displayId"] = 9750,
+ ["skinId"] = 4735,
},
[10375] = {
["name"] = "Spire Spiderling",
@@ -6622,6 +7569,8 @@ MTH_DS_Beasts = {
["coords"] = {
{62.6, 76.4, 1583},
},
+ ["displayId"] = 9756,
+ ["skinId"] = 4456,
},
[10644] = {
["name"] = "Mist Howler",
@@ -6637,6 +7586,8 @@ MTH_DS_Beasts = {
["coords"] = {
{20.9, 36.9, 331},
},
+ ["displayId"] = 165,
+ ["skinId"] = 165,
},
[10737] = {
["name"] = "Shy-Rotam",
@@ -6649,6 +7600,8 @@ MTH_DS_Beasts = {
["coords"] = {
{49.5, 9.7, 618},
},
+ ["displayId"] = 10113,
+ ["skinId"] = 10054,
},
[10806] = {
["name"] = "Ursius",
@@ -6664,6 +7617,8 @@ MTH_DS_Beasts = {
["coords"] = {
{64.0, 24.1, 618},
},
+ ["displayId"] = 10618,
+ ["skinId"] = 865,
},
[11357] = {
["name"] = "Son of Hakkar",
@@ -6679,6 +7634,8 @@ MTH_DS_Beasts = {
["coords"] = {
{45.5, 45.3, 1977},
},
+ ["displayId"] = 15275,
+ ["skinId"] = 2699,
},
[11360] = {
["name"] = "Zulian Cub",
@@ -6693,6 +7650,8 @@ MTH_DS_Beasts = {
["coords"] = {
{59.7, 41.8, 1977},
},
+ ["displayId"] = 15151,
+ ["skinId"] = 320,
},
[11361] = {
["name"] = "Zulian Tiger",
@@ -6708,6 +7667,8 @@ MTH_DS_Beasts = {
["coords"] = {
{54.3, 50.6, 1977},
},
+ ["displayId"] = 11031,
+ ["skinId"] = 320,
},
[11365] = {
["name"] = "Zulian Panther",
@@ -6723,6 +7684,8 @@ MTH_DS_Beasts = {
["coords"] = {
{50.3, 28.9, 1977},
},
+ ["displayId"] = 633,
+ ["skinId"] = 599,
},
[11368] = {
["name"] = "Bloodseeker Bat",
@@ -6737,6 +7700,8 @@ MTH_DS_Beasts = {
["coords"] = {
{34.9, 77.4, 1977},
},
+ ["displayId"] = 14562,
+ ["skinId"] = 3956,
},
[11370] = {
["name"] = "Razzashi Broodwidow",
@@ -6752,6 +7717,8 @@ MTH_DS_Beasts = {
["coords"] = {
{47.2, 80.5, 1977},
},
+ ["displayId"] = 963,
+ ["skinId"] = 963,
},
[11371] = {
["name"] = "Razzashi Serpent",
@@ -6766,6 +7733,8 @@ MTH_DS_Beasts = {
["coords"] = {
{51.0, 60.7, 1977},
},
+ ["displayId"] = 15182,
+ ["skinId"] = 15182,
},
[11372] = {
["name"] = "Razzashi Adder",
@@ -6780,6 +7749,8 @@ MTH_DS_Beasts = {
["coords"] = {
{50.8, 60.3, 1977},
},
+ ["displayId"] = 15150,
+ ["skinId"] = 4317,
},
[11735] = {
["name"] = "Stonelash Scorpid",
@@ -6794,6 +7765,8 @@ MTH_DS_Beasts = {
["coords"] = {
{10.4, 42.7, 490},
},
+ ["displayId"] = 15383,
+ ["skinId"] = 10983,
},
[11736] = {
["name"] = "Stonelash Pincer",
@@ -6808,6 +7781,8 @@ MTH_DS_Beasts = {
["coords"] = {
{7.5, 57.7, 490},
},
+ ["displayId"] = 15384,
+ ["skinId"] = 2729,
},
[11737] = {
["name"] = "Stonelash Flayer",
@@ -6822,6 +7797,8 @@ MTH_DS_Beasts = {
["coords"] = {
{9.7, 73.4, 490},
},
+ ["displayId"] = 15385,
+ ["skinId"] = 10983,
},
[11738] = {
["name"] = "Sand Skitterer",
@@ -6836,6 +7813,8 @@ MTH_DS_Beasts = {
["coords"] = {
{9.3, 42.6, 490},
},
+ ["displayId"] = 8014,
+ ["skinId"] = 520,
},
[11739] = {
["name"] = "Rock Stalker",
@@ -6850,6 +7829,8 @@ MTH_DS_Beasts = {
["coords"] = {
{35.3, 91.1, 1377},
},
+ ["displayId"] = 711,
+ ["skinId"] = 711,
},
[11921] = {
["name"] = "Besseleth",
@@ -6865,6 +7846,8 @@ MTH_DS_Beasts = {
["coords"] = {
{53.8, 73.0, 406},
},
+ ["displayId"] = 11348,
+ ["skinId"] = 366,
},
[12431] = {
["name"] = "Gorefang",
@@ -6880,6 +7863,8 @@ MTH_DS_Beasts = {
["coords"] = {
{59.5, 7.6, 130},
},
+ ["displayId"] = 11413,
+ ["skinId"] = 9564,
},
[12432] = {
["name"] = "Old Vicejaw",
@@ -6895,6 +7880,8 @@ MTH_DS_Beasts = {
["coords"] = {
{53.8, 51.9, 130},
},
+ ["displayId"] = 982,
+ ["skinId"] = 822,
},
[12433] = {
["name"] = "Krethis Shadowspinner",
@@ -6910,6 +7897,8 @@ MTH_DS_Beasts = {
["coords"] = {
{24.0, 79.7, 85},
},
+ ["displayId"] = 368,
+ ["skinId"] = 30,
},
[13599] = {
["name"] = "Stolid Snapjaw",
@@ -6924,6 +7913,8 @@ MTH_DS_Beasts = {
["coords"] = {
{20.2, 88.2, 2100},
},
+ ["displayId"] = 6368,
+ ["skinId"] = 5126,
},
[14123] = {
["name"] = "Steeljaw Snapper",
@@ -6938,6 +7929,8 @@ MTH_DS_Beasts = {
["coords"] = {
{73.3, 43.0, 440},
},
+ ["displayId"] = 7114,
+ ["skinId"] = 5126,
},
[14228] = {
["name"] = "Giggler",
@@ -6953,6 +7946,8 @@ MTH_DS_Beasts = {
["coords"] = {
{61.3, 28.9, 405},
},
+ ["displayId"] = 2714,
+ ["skinId"] = 2714,
},
[14232] = {
["name"] = "Dart",
@@ -6968,6 +7963,8 @@ MTH_DS_Beasts = {
["coords"] = {
{48.1, 16.0, 15},
},
+ ["displayId"] = 788,
+ ["skinId"] = 180,
},
[14233] = {
["name"] = "Ripscale",
@@ -6983,6 +7980,8 @@ MTH_DS_Beasts = {
["coords"] = {
{49.2, 57.4, 15},
},
+ ["displayId"] = 2549,
+ ["skinId"] = 925,
},
[14266] = {
["name"] = "Shanda the Spinner",
@@ -6998,6 +7997,8 @@ MTH_DS_Beasts = {
["coords"] = {
{78.1, 52.4, 38},
},
+ ["displayId"] = 1103,
+ ["skinId"] = 1091,
},
[14268] = {
["name"] = "Lord Condar",
@@ -7013,6 +8014,8 @@ MTH_DS_Beasts = {
["coords"] = {
{68.6, 76.4, 38},
},
+ ["displayId"] = 14313,
+ ["skinId"] = 490,
},
[14279] = {
["name"] = "Creepthess",
@@ -7028,6 +8031,8 @@ MTH_DS_Beasts = {
["coords"] = {
{38.6, 58.4, 267},
},
+ ["displayId"] = 1091,
+ ["skinId"] = 1091,
},
[14280] = {
["name"] = "Big Samras",
@@ -7043,6 +8048,8 @@ MTH_DS_Beasts = {
["coords"] = {
{86.0, 39.9, 267},
},
+ ["displayId"] = 706,
+ ["skinId"] = 706,
},
[14283] = {
["name"] = "Stormpike Owl",
@@ -7057,6 +8064,8 @@ MTH_DS_Beasts = {
["coords"] = {
{49.7, 42.2, 2597},
},
+ ["displayId"] = 10828,
+ ["skinId"] = 6212,
},
[14339] = {
["name"] = "Death Howl",
@@ -7072,6 +8081,8 @@ MTH_DS_Beasts = {
["coords"] = {
{50.0, 77.1, 361},
},
+ ["displayId"] = 11412,
+ ["skinId"] = 720,
},
[14343] = {
["name"] = "Olm the Wise",
@@ -7086,6 +8097,8 @@ MTH_DS_Beasts = {
["coords"] = {
{50.2, 32.8, 361},
},
+ ["displayId"] = 6212,
+ ["skinId"] = 6212,
},
[14344] = {
["name"] = "Mongress",
@@ -7101,6 +8114,8 @@ MTH_DS_Beasts = {
["coords"] = {
{42.1, 75.2, 361},
},
+ ["displayId"] = 14315,
+ ["skinId"] = 822,
},
[14472] = {
["name"] = "Gretheer",
@@ -7116,6 +8131,8 @@ MTH_DS_Beasts = {
["coords"] = {
{39.3, 55.4, 1377},
},
+ ["displayId"] = 1104,
+ ["skinId"] = 1091,
},
[14476] = {
["name"] = "Krellack",
@@ -7131,6 +8148,8 @@ MTH_DS_Beasts = {
["coords"] = {
{63.2, 16.7, 1377},
},
+ ["displayId"] = 6068,
+ ["skinId"] = 2488,
},
[14491] = {
["name"] = "Kurmokk",
@@ -7146,6 +8165,8 @@ MTH_DS_Beasts = {
["coords"] = {
{35.4, 56.6, 33},
},
+ ["displayId"] = 3186,
+ ["skinId"] = 3186,
},
[14532] = {
["name"] = "Razzashi Venombrood",
@@ -7161,6 +8182,8 @@ MTH_DS_Beasts = {
["coords"] = {
{49.5, 81.6, 1977},
},
+ ["displayId"] = 14950,
+ ["skinId"] = 955,
},
[14821] = {
["name"] = "Razzashi Raptor",
@@ -7176,6 +8199,8 @@ MTH_DS_Beasts = {
["coords"] = {
{57.4, 83.2, 1977},
},
+ ["displayId"] = 2571,
+ ["skinId"] = 1959,
},
[14965] = {
["name"] = "Frenzied Bloodseeker Bat",
@@ -7186,6 +8211,8 @@ MTH_DS_Beasts = {
["attackSpeed"] = "1.0",
["coords"] = {
},
+ ["displayId"] = 14562,
+ ["skinId"] = 3956,
},
[15043] = {
["name"] = "Zulian Crocolisk",
@@ -7201,6 +8228,8 @@ MTH_DS_Beasts = {
["coords"] = {
{41.6, 48.6, 1977},
},
+ ["displayId"] = 833,
+ ["skinId"] = 833,
},
[15101] = {
["name"] = "Zulian Prowler",
@@ -7211,6 +8240,8 @@ MTH_DS_Beasts = {
["attackSpeed"] = "1.6",
["coords"] = {
},
+ ["displayId"] = 613,
+ ["skinId"] = 599,
},
[16117] = {
["name"] = "Plagued Swine",
@@ -7225,6 +8256,8 @@ MTH_DS_Beasts = {
["coords"] = {
{18.1, 35.3, 139},
},
+ ["displayId"] = 6121,
+ ["skinId"] = 6121,
},
[40000] = {
["name"] = "Red Fox",
@@ -7235,6 +8268,8 @@ MTH_DS_Beasts = {
["attackSpeed"] = "2.0",
["coords"] = {
},
+ ["displayId"] = 18177,
+ ["skinId"] = 18008,
},
[60494] = {
["name"] = "Sorrowclaw",
@@ -7249,6 +8284,8 @@ MTH_DS_Beasts = {
["coords"] = {
{70.6, 31.4, 8},
},
+ ["displayId"] = 6082,
+ ["skinId"] = 1056,
},
[60848] = {
["name"] = "Bristleback Boar",
@@ -7263,6 +8300,8 @@ MTH_DS_Beasts = {
["coords"] = {
{38.0, 35.7, 17},
},
+ ["displayId"] = 3027,
+ ["skinId"] = 3026,
},
[61074] = {
["name"] = "Highvale Gorilla",
@@ -7277,6 +8316,8 @@ MTH_DS_Beasts = {
["coords"] = {
{49.7, 58.0, 5121},
},
+ ["displayId"] = 838,
+ ["skinId"] = 838,
},
[61075] = {
["name"] = "Rockshell Crawler",
@@ -7291,6 +8332,8 @@ MTH_DS_Beasts = {
["coords"] = {
{36.9, 53.5, 5121},
},
+ ["displayId"] = 981,
+ ["skinId"] = 981,
},
[61076] = {
["name"] = "Sandshell Crawler",
@@ -7305,6 +8348,8 @@ MTH_DS_Beasts = {
["coords"] = {
{46.9, 89.9, 5121},
},
+ ["displayId"] = 981,
+ ["skinId"] = 981,
},
[61077] = {
["name"] = "Highvale Chimpanzee",
@@ -7319,6 +8364,8 @@ MTH_DS_Beasts = {
["coords"] = {
{51.9, 58.2, 5121},
},
+ ["displayId"] = 18099,
+ ["skinId"] = 18099,
},
[61078] = {
["name"] = "Highvale Monkey",
@@ -7333,6 +8380,8 @@ MTH_DS_Beasts = {
["coords"] = {
{51.3, 85.8, 5121},
},
+ ["displayId"] = 18097,
+ ["skinId"] = 18097,
},
[61080] = {
["name"] = "Elder Highvale Gorilla",
@@ -7347,6 +8396,8 @@ MTH_DS_Beasts = {
["coords"] = {
{53.3, 58.6, 5121},
},
+ ["displayId"] = 838,
+ ["skinId"] = 838,
},
[61082] = {
["name"] = "Highvale Thunderer",
@@ -7361,6 +8412,8 @@ MTH_DS_Beasts = {
["coords"] = {
{55.2, 58.2, 5121},
},
+ ["displayId"] = 841,
+ ["skinId"] = 792,
},
[61090] = {
["name"] = "Brushtail Cobra",
@@ -7375,6 +8428,8 @@ MTH_DS_Beasts = {
["coords"] = {
{55.9, 69.3, 5121},
},
+ ["displayId"] = 14557,
+ ["skinId"] = 11034,
},
[61091] = {
["name"] = "Brushtail Adder",
@@ -7389,6 +8444,8 @@ MTH_DS_Beasts = {
["coords"] = {
{49.4, 86.4, 5121},
},
+ ["displayId"] = 4305,
+ ["skinId"] = 4305,
},
[61095] = {
["name"] = "Venomflayer Screecher",
@@ -7403,6 +8460,8 @@ MTH_DS_Beasts = {
["coords"] = {
{47.3, 87.3, 5121},
},
+ ["displayId"] = 2705,
+ ["skinId"] = 2703,
},
[61098] = {
["name"] = "King Morogo Thunderfoot",
@@ -7417,6 +8476,8 @@ MTH_DS_Beasts = {
["coords"] = {
{53.9, 48.6, 5121},
},
+ ["displayId"] = 3186,
+ ["skinId"] = 3186,
},
[61206] = {
["name"] = "Skitterweb Crawler",
@@ -7432,6 +8493,8 @@ MTH_DS_Beasts = {
["coords"] = {
{65.3, 66.4, 3457},
},
+ ["displayId"] = 955,
+ ["skinId"] = 955,
},
[61218] = {
["name"] = "Deviate Coiler Hatchling",
@@ -7447,6 +8510,8 @@ MTH_DS_Beasts = {
["coords"] = {
{45.9, 36.2, 17},
},
+ ["displayId"] = 1742,
+ ["skinId"] = 1336,
},
[61227] = {
["name"] = "Duskpelt Prowler",
@@ -7461,6 +8526,8 @@ MTH_DS_Beasts = {
["coords"] = {
{47.0, 91.4, 130},
},
+ ["displayId"] = 9567,
+ ["skinId"] = 9567,
},
[61228] = {
["name"] = "Duskpelt Stalker",
@@ -7475,6 +8542,8 @@ MTH_DS_Beasts = {
["coords"] = {
{56.5, 76.1, 5179},
},
+ ["displayId"] = 9567,
+ ["skinId"] = 9567,
},
[61229] = {
["name"] = "Starving Duskpelt",
@@ -7489,6 +8558,8 @@ MTH_DS_Beasts = {
["coords"] = {
{26.4, 74.1, 5179},
},
+ ["displayId"] = 9567,
+ ["skinId"] = 9567,
},
[61230] = {
["name"] = "Vilewing Batling",
@@ -7503,6 +8574,8 @@ MTH_DS_Beasts = {
["coords"] = {
{44.3, 90.1, 130},
},
+ ["displayId"] = 7896,
+ ["skinId"] = 1954,
},
[61231] = {
["name"] = "Vilewing Bat",
@@ -7517,6 +8590,8 @@ MTH_DS_Beasts = {
["coords"] = {
{40.3, 65.4, 5179},
},
+ ["displayId"] = 7896,
+ ["skinId"] = 1954,
},
[61232] = {
["name"] = "Hollow Web Spider",
@@ -7531,6 +8606,8 @@ MTH_DS_Beasts = {
["coords"] = {
{46.7, 78.2, 5179},
},
+ ["displayId"] = 1104,
+ ["skinId"] = 1091,
},
[61233] = {
["name"] = "Hollow Web Venomspitter",
@@ -7545,6 +8622,8 @@ MTH_DS_Beasts = {
["coords"] = {
{43.4, 77.8, 5179},
},
+ ["displayId"] = 520,
+ ["skinId"] = 520,
},
[61336] = {
["name"] = "Greathorn Owl",
@@ -7559,6 +8638,8 @@ MTH_DS_Beasts = {
["coords"] = {
{63.0, 87.6, 616},
},
+ ["displayId"] = 4615,
+ ["skinId"] = 4566,
},
[61337] = {
["name"] = "Greathorn Hunter",
@@ -7573,6 +8654,8 @@ MTH_DS_Beasts = {
["coords"] = {
{71.2, 48.7, 616},
},
+ ["displayId"] = 4615,
+ ["skinId"] = 4566,
},
[61401] = {
["name"] = "Greater Vilewing Bat",
@@ -7587,6 +8670,8 @@ MTH_DS_Beasts = {
["coords"] = {
{54.0, 89.8, 5179},
},
+ ["displayId"] = 7896,
+ ["skinId"] = 1954,
},
[61488] = {
["name"] = "Azurebeak",
@@ -7602,6 +8687,8 @@ MTH_DS_Beasts = {
["coords"] = {
{23.0, 37.1, 616},
},
+ ["displayId"] = 6298,
+ ["skinId"] = 6298,
},
[61599] = {
["name"] = "Darksaber",
@@ -7616,6 +8703,8 @@ MTH_DS_Beasts = {
["coords"] = {
{84.0, 38.4, 357},
},
+ ["displayId"] = 20437,
+ ["skinId"] = 20437,
},
[61656] = {
["name"] = "Ashfeather Buzzard",
@@ -7630,6 +8719,8 @@ MTH_DS_Beasts = {
["coords"] = {
{99.9, 53.5, 14},
},
+ ["displayId"] = 1192,
+ ["skinId"] = 507,
},
[61657] = {
["name"] = "Ashfeather Swooper",
@@ -7644,6 +8735,8 @@ MTH_DS_Beasts = {
["coords"] = {
{57.0, 72.7, 5536},
},
+ ["displayId"] = 1192,
+ ["skinId"] = 507,
},
[61658] = {
["name"] = "Ashpaw Hyena",
@@ -7658,6 +8751,8 @@ MTH_DS_Beasts = {
["coords"] = {
{45.1, 46.4, 5536},
},
+ ["displayId"] = 8050,
+ ["skinId"] = 2714,
},
[61659] = {
["name"] = "Ashpaw Hunter",
@@ -7672,6 +8767,8 @@ MTH_DS_Beasts = {
["coords"] = {
{59.8, 52.4, 5536},
},
+ ["displayId"] = 8050,
+ ["skinId"] = 2714,
},
[61660] = {
["name"] = "Stonetail Scorpid",
@@ -7686,6 +8783,8 @@ MTH_DS_Beasts = {
["coords"] = {
{99.4, 53.0, 14},
},
+ ["displayId"] = 2485,
+ ["skinId"] = 2485,
},
[61661] = {
["name"] = "Stonetail Lasher",
@@ -7700,6 +8799,8 @@ MTH_DS_Beasts = {
["coords"] = {
{46.9, 76.6, 5536},
},
+ ["displayId"] = 2485,
+ ["skinId"] = 2485,
},
[61662] = {
["name"] = "Blackvenom Scorpid",
@@ -7714,6 +8815,8 @@ MTH_DS_Beasts = {
["coords"] = {
{55.9, 75.6, 5536},
},
+ ["displayId"] = 2488,
+ ["skinId"] = 2488,
},
[61680] = {
["name"] = "Muckreef Crawler",
@@ -7728,6 +8831,8 @@ MTH_DS_Beasts = {
["coords"] = {
{98.8, 37.9, 14},
},
+ ["displayId"] = 981,
+ ["skinId"] = 981,
},
[61681] = {
["name"] = "Young Muckreef Crawler",
@@ -7742,6 +8847,8 @@ MTH_DS_Beasts = {
["coords"] = {
{95.8, 67.9, 14},
},
+ ["displayId"] = 981,
+ ["skinId"] = 981,
},
[61686] = {
["name"] = "Ashfeather Scavenger",
@@ -7756,6 +8863,8 @@ MTH_DS_Beasts = {
["coords"] = {
{99.4, 65.2, 14},
},
+ ["displayId"] = 10825,
+ ["skinId"] = 410,
},
[61689] = {
["name"] = "Young Thalassian Boar",
@@ -7770,6 +8879,8 @@ MTH_DS_Beasts = {
["coords"] = {
{6.0, 27.9, 139},
},
+ ["displayId"] = 20504,
+ ["skinId"] = 20504,
},
[61690] = {
["name"] = "Young Crimson Lynx",
@@ -7784,6 +8895,8 @@ MTH_DS_Beasts = {
["coords"] = {
{8.9, 27.7, 139},
},
+ ["displayId"] = 18027,
+ ["skinId"] = 18027,
},
[61691] = {
["name"] = "Forest Hawkstrider",
@@ -7798,6 +8911,8 @@ MTH_DS_Beasts = {
["coords"] = {
{10.7, 18.5, 139},
},
+ ["displayId"] = 20511,
+ ["skinId"] = 20511,
},
[61692] = {
["name"] = "Thalassian Boar",
@@ -7812,6 +8927,8 @@ MTH_DS_Beasts = {
["coords"] = {
{48.7, 76.0, 5225},
},
+ ["displayId"] = 20504,
+ ["skinId"] = 20504,
},
[61693] = {
["name"] = "Crimson Lynx",
@@ -7826,6 +8943,8 @@ MTH_DS_Beasts = {
["coords"] = {
{9.7, 16.2, 139},
},
+ ["displayId"] = 18027,
+ ["skinId"] = 18027,
},
[61695] = {
["name"] = "Ivory Hawkstrider",
@@ -7840,6 +8959,8 @@ MTH_DS_Beasts = {
["coords"] = {
{16.9, 12.5, 139},
},
+ ["displayId"] = 20510,
+ ["skinId"] = 20510,
},
[61696] = {
["name"] = "Elder Thalassian Boar",
@@ -7854,6 +8975,8 @@ MTH_DS_Beasts = {
["coords"] = {
{13.5, 12.9, 139},
},
+ ["displayId"] = 20504,
+ ["skinId"] = 20504,
},
[61697] = {
["name"] = "Bright Lynx",
@@ -7868,6 +8991,8 @@ MTH_DS_Beasts = {
["coords"] = {
{18.9, 12.2, 139},
},
+ ["displayId"] = 18028,
+ ["skinId"] = 18028,
},
[61698] = {
["name"] = "Bright Lynx Matriarch",
@@ -7882,6 +9007,8 @@ MTH_DS_Beasts = {
["coords"] = {
{18.2, 11.5, 139},
},
+ ["displayId"] = 18028,
+ ["skinId"] = 18028,
},
[61700] = {
["name"] = "Elder Crimson Lynx",
@@ -7896,6 +9023,8 @@ MTH_DS_Beasts = {
["coords"] = {
{35.2, 98.1, 2040},
},
+ ["displayId"] = 18027,
+ ["skinId"] = 18027,
},
[61704] = {
["name"] = "Farstride Crawler",
@@ -7910,6 +9039,8 @@ MTH_DS_Beasts = {
["coords"] = {
{17.7, 86.9, 2040},
},
+ ["displayId"] = 999,
+ ["skinId"] = 981,
},
[61716] = {
["name"] = "Crimson Hawkstrider",
@@ -7924,6 +9055,8 @@ MTH_DS_Beasts = {
["coords"] = {
{0.5, 88.8, 2040},
},
+ ["displayId"] = 20512,
+ ["skinId"] = 20512,
},
[61717] = {
["name"] = "Thalassian Fox",
@@ -7938,6 +9071,8 @@ MTH_DS_Beasts = {
["coords"] = {
{0.2, 64.3, 2040},
},
+ ["displayId"] = 18008,
+ ["skinId"] = 18008,
},
[61774] = {
["name"] = "Brilliant Mana Wyrm",
@@ -7952,6 +9087,8 @@ MTH_DS_Beasts = {
["coords"] = {
{11.0, 97.4, 2040},
},
+ ["displayId"] = 20519,
+ ["skinId"] = 20519,
},
[61775] = {
["name"] = "Emerald Mana Wyrm",
@@ -7966,6 +9103,8 @@ MTH_DS_Beasts = {
["coords"] = {
{1.3, 95.4, 2040},
},
+ ["displayId"] = 20515,
+ ["skinId"] = 20515,
},
[61776] = {
["name"] = "Lavender Mana Wyrm",
@@ -7980,6 +9119,8 @@ MTH_DS_Beasts = {
["coords"] = {
{35.7, 76.6, 5225},
},
+ ["displayId"] = 20516,
+ ["skinId"] = 20516,
},
[61789] = {
["name"] = "Moonfeather",
@@ -7994,6 +9135,8 @@ MTH_DS_Beasts = {
["coords"] = {
{26.5, 58.4, 5225},
},
+ ["displayId"] = 20512,
+ ["skinId"] = 20512,
},
[62121] = {
["name"] = "Goldbristle Boar",
@@ -8008,6 +9151,8 @@ MTH_DS_Beasts = {
["coords"] = {
{40.5, 71.7, 5581},
},
+ ["displayId"] = 20504,
+ ["skinId"] = 20504,
},
[62122] = {
["name"] = "Burly Goldbristle Boar",
@@ -8022,6 +9167,8 @@ MTH_DS_Beasts = {
["coords"] = {
{23.9, 93.4, 1},
},
+ ["displayId"] = 20504,
+ ["skinId"] = 20504,
},
[62123] = {
["name"] = "Goldpelt Bear",
@@ -8036,6 +9183,8 @@ MTH_DS_Beasts = {
["coords"] = {
{41.7, 72.5, 5581},
},
+ ["displayId"] = 1006,
+ ["skinId"] = 822,
},
[62124] = {
["name"] = "Goldpelt Grizzly",
@@ -8050,6 +9199,8 @@ MTH_DS_Beasts = {
["coords"] = {
{56.0, 75.9, 5581},
},
+ ["displayId"] = 1006,
+ ["skinId"] = 822,
},
[62125] = {
["name"] = "Elder Timber Wolf",
@@ -8064,6 +9215,8 @@ MTH_DS_Beasts = {
["coords"] = {
{57.7, 72.1, 5581},
},
+ ["displayId"] = 11420,
+ ["skinId"] = 9369,
},
[62126] = {
["name"] = "Timber Wolf Alpha",
@@ -8078,6 +9231,8 @@ MTH_DS_Beasts = {
["coords"] = {
{58.9, 76.3, 5581},
},
+ ["displayId"] = 11420,
+ ["skinId"] = 9369,
},
[62223] = {
["name"] = "Grimscale Raptor",
@@ -8092,6 +9247,8 @@ MTH_DS_Beasts = {
["coords"] = {
{49.8, 67.5, 5602},
},
+ ["displayId"] = 677,
+ ["skinId"] = 675,
},
[62224] = {
["name"] = "Grimscale Screecher",
@@ -8106,6 +9263,8 @@ MTH_DS_Beasts = {
["coords"] = {
{49.4, 66.9, 5602},
},
+ ["displayId"] = 677,
+ ["skinId"] = 675,
},
[62225] = {
["name"] = "Grimscale Thrasher",
@@ -8120,6 +9279,8 @@ MTH_DS_Beasts = {
["coords"] = {
{55.1, 37.7, 5602},
},
+ ["displayId"] = 1337,
+ ["skinId"] = 1337,
},
[62226] = {
["name"] = "Stonehide Boar",
@@ -8134,6 +9295,8 @@ MTH_DS_Beasts = {
["coords"] = {
{95.4, 68.5, 11},
},
+ ["displayId"] = 389,
+ ["skinId"] = 193,
},
[62227] = {
["name"] = "Elder Stonehide Boar",
@@ -8148,6 +9311,8 @@ MTH_DS_Beasts = {
["coords"] = {
{63.2, 77.0, 5602},
},
+ ["displayId"] = 389,
+ ["skinId"] = 193,
},
[62247] = {
["name"] = "Brown Recluse",
@@ -8162,6 +9327,8 @@ MTH_DS_Beasts = {
["coords"] = {
{54.6, 66.0, 5602},
},
+ ["displayId"] = 827,
+ ["skinId"] = 520,
},
[62248] = {
["name"] = "Greater Brown Recluse",
@@ -8176,6 +9343,8 @@ MTH_DS_Beasts = {
["coords"] = {
{46.6, 93.9, 5602},
},
+ ["displayId"] = 827,
+ ["skinId"] = 520,
},
[62256] = {
["name"] = "Clearwater Snapjaw",
@@ -8190,6 +9359,8 @@ MTH_DS_Beasts = {
["coords"] = {
{58.4, 53.2, 5602},
},
+ ["displayId"] = 1244,
+ ["skinId"] = 1244,
},
[62257] = {
["name"] = "Sickly Clearwater Snapjaw",
@@ -8204,6 +9375,8 @@ MTH_DS_Beasts = {
["coords"] = {
{46.2, 91.7, 5602},
},
+ ["displayId"] = 4829,
+ ["skinId"] = 4829,
},
[62258] = {
["name"] = "Razortooth Crocolisk",
@@ -8218,6 +9391,8 @@ MTH_DS_Beasts = {
["coords"] = {
{59.4, 51.5, 5602},
},
+ ["displayId"] = 1034,
+ ["skinId"] = 807,
},
[62259] = {
["name"] = "Giant Razortooth Crocolisk",
@@ -8232,6 +9407,8 @@ MTH_DS_Beasts = {
["coords"] = {
{50.7, 87.8, 5602},
},
+ ["displayId"] = 1034,
+ ["skinId"] = 807,
},
[62260] = {
["name"] = "Forest Boar",
@@ -8246,6 +9423,8 @@ MTH_DS_Beasts = {
["coords"] = {
{63.4, 99.3, 36},
},
+ ["displayId"] = 389,
+ ["skinId"] = 193,
},
[62261] = {
["name"] = "Elder Forest Boar",
@@ -8260,6 +9439,8 @@ MTH_DS_Beasts = {
["coords"] = {
{7.5, 52.2, 45},
},
+ ["displayId"] = 389,
+ ["skinId"] = 193,
},
[62262] = {
["name"] = "Mesa Boar",
@@ -8274,6 +9455,8 @@ MTH_DS_Beasts = {
["coords"] = {
{42.5, 94.8, 17},
},
+ ["displayId"] = 6807,
+ ["skinId"] = 3026,
},
[62271] = {
["name"] = "Young Goldbristle Boar",
@@ -8288,6 +9471,8 @@ MTH_DS_Beasts = {
["coords"] = {
{60.1, 14.4, 1519},
},
+ ["displayId"] = 20504,
+ ["skinId"] = 20504,
},
[62272] = {
["name"] = "Young Timber Wolf",
@@ -8302,6 +9487,8 @@ MTH_DS_Beasts = {
["coords"] = {
{64.1, 11.4, 1519},
},
+ ["displayId"] = 11420,
+ ["skinId"] = 9369,
},
[62338] = {
["name"] = "Stormwing Buzzard",
@@ -8316,6 +9503,8 @@ MTH_DS_Beasts = {
["coords"] = {
{33.3, 79.0, 5561},
},
+ ["displayId"] = 18390,
+ ["skinId"] = 18390,
},
[62339] = {
["name"] = "Stormwing Vulture",
@@ -8330,6 +9519,8 @@ MTH_DS_Beasts = {
["coords"] = {
{29.1, 60.9, 5561},
},
+ ["displayId"] = 18390,
+ ["skinId"] = 18390,
},
[62340] = {
["name"] = "Ragged Crag Coyote",
@@ -8344,6 +9535,8 @@ MTH_DS_Beasts = {
["coords"] = {
{47.2, 91.2, 5561},
},
+ ["displayId"] = 903,
+ ["skinId"] = 165,
},
[62341] = {
["name"] = "Slavering Crag Coyote",
@@ -8358,6 +9551,8 @@ MTH_DS_Beasts = {
["coords"] = {
{0.7, 1.8, 40},
},
+ ["displayId"] = 903,
+ ["skinId"] = 165,
},
[62342] = {
["name"] = "Mistbark Spider",
@@ -8372,6 +9567,8 @@ MTH_DS_Beasts = {
["coords"] = {
{31.8, 56.0, 5561},
},
+ ["displayId"] = 545,
+ ["skinId"] = 283,
},
[62343] = {
["name"] = "Mistbark Webweaver",
@@ -8386,6 +9583,8 @@ MTH_DS_Beasts = {
["coords"] = {
{30.6, 54.7, 5561},
},
+ ["displayId"] = 545,
+ ["skinId"] = 283,
},
[62344] = {
["name"] = "Mother Mistbark",
@@ -8400,6 +9599,8 @@ MTH_DS_Beasts = {
["coords"] = {
{31.2, 53.2, 5561},
},
+ ["displayId"] = 709,
+ ["skinId"] = 336,
},
[62642] = {
["name"] = "Razorscale",
@@ -8415,6 +9616,8 @@ MTH_DS_Beasts = {
["coords"] = {
{49.1, 67.2, 5602},
},
+ ["displayId"] = 676,
+ ["skinId"] = 322,
},
[80252] = {
["name"] = "Young Arctic Fox",
@@ -8429,6 +9632,8 @@ MTH_DS_Beasts = {
["coords"] = {
{75.7, 60.2, 1},
},
+ ["displayId"] = 18005,
+ ["skinId"] = 18005,
},
[80254] = {
["name"] = "Young Brown Fox",
@@ -8443,6 +9648,8 @@ MTH_DS_Beasts = {
["coords"] = {
{21.6, 88.9, 12},
},
+ ["displayId"] = 18007,
+ ["skinId"] = 18007,
},
[80256] = {
["name"] = "Silver Fox",
@@ -8457,6 +9664,8 @@ MTH_DS_Beasts = {
["coords"] = {
{44.1, 76.7, 10},
},
+ ["displayId"] = 18006,
+ ["skinId"] = 18006,
},
[80258] = {
["name"] = "Young Mist Fox",
@@ -8471,6 +9680,8 @@ MTH_DS_Beasts = {
["coords"] = {
{39.1, 29.9, 85},
},
+ ["displayId"] = 18004,
+ ["skinId"] = 18004,
},
[80466] = {
["name"] = "Tirisfal Plagued Bear",
@@ -8485,6 +9696,8 @@ MTH_DS_Beasts = {
["coords"] = {
{62.6, 58.9, 85},
},
+ ["displayId"] = 1082,
+ ["skinId"] = 1082,
},
[80815] = {
["name"] = "Amani Eagle",
@@ -8499,6 +9712,8 @@ MTH_DS_Beasts = {
["coords"] = {
{36.4, 18.3, 406},
},
+ ["displayId"] = 18338,
+ ["skinId"] = 18338,
},
[80816] = {
["name"] = "Hinterlands Eagle",
@@ -8513,6 +9728,8 @@ MTH_DS_Beasts = {
["coords"] = {
{21.2, 56.8, 47},
},
+ ["displayId"] = 18339,
+ ["skinId"] = 18339,
},
[91819] = {
["name"] = "Hazzuri Tiger",
@@ -8527,6 +9744,8 @@ MTH_DS_Beasts = {
["coords"] = {
{30.0, 6.0, 408},
},
+ ["displayId"] = 320,
+ ["skinId"] = 320,
},
[91825] = {
["name"] = "Young Bengal Tiger",
@@ -8541,6 +9760,8 @@ MTH_DS_Beasts = {
["coords"] = {
{59.6, 68.5, 409},
},
+ ["displayId"] = 614,
+ ["skinId"] = 320,
},
[91826] = {
["name"] = "Bengal Matriarch",
@@ -8555,6 +9776,8 @@ MTH_DS_Beasts = {
["coords"] = {
{39.6, 56.6, 409},
},
+ ["displayId"] = 614,
+ ["skinId"] = 320,
},
[91827] = {
["name"] = "Bengal Tiger",
@@ -8569,6 +9792,8 @@ MTH_DS_Beasts = {
["coords"] = {
{59.7, 71.8, 409},
},
+ ["displayId"] = 614,
+ ["skinId"] = 320,
},
[91828] = {
["name"] = "Bengal Alpha",
@@ -8583,6 +9808,8 @@ MTH_DS_Beasts = {
["coords"] = {
{41.4, 59.9, 409},
},
+ ["displayId"] = 614,
+ ["skinId"] = 320,
},
[91829] = {
["name"] = "Jungleback Stomper",
@@ -8597,6 +9824,8 @@ MTH_DS_Beasts = {
["coords"] = {
{62.0, 64.9, 409},
},
+ ["displayId"] = 845,
+ ["skinId"] = 809,
},
[91830] = {
["name"] = "Jungleback Thrasher",
@@ -8611,6 +9840,8 @@ MTH_DS_Beasts = {
["coords"] = {
{40.4, 63.7, 409},
},
+ ["displayId"] = 838,
+ ["skinId"] = 838,
},
[91831] = {
["name"] = "Bright Crawler",
@@ -8625,6 +9856,8 @@ MTH_DS_Beasts = {
["coords"] = {
{29.6, 70.3, 409},
},
+ ["displayId"] = 1307,
+ ["skinId"] = 1307,
},
[91832] = {
["name"] = "Island Pincer",
@@ -8639,6 +9872,8 @@ MTH_DS_Beasts = {
["coords"] = {
{62.1, 17.8, 409},
},
+ ["displayId"] = 9573,
+ ["skinId"] = 979,
},
[91833] = {
["name"] = "Rock Crawler",
@@ -8653,6 +9888,8 @@ MTH_DS_Beasts = {
["coords"] = {
{3.9, 97.0, 40},
},
+ ["displayId"] = 1001,
+ ["skinId"] = 981,
},
[91838] = {
["name"] = "Deepshell Snapper",
@@ -8667,6 +9904,8 @@ MTH_DS_Beasts = {
["coords"] = {
{41.8, 89.3, 408},
},
+ ["displayId"] = 1244,
+ ["skinId"] = 1244,
},
[91960] = {
["name"] = "Junglepaw Panther",
@@ -8681,6 +9920,8 @@ MTH_DS_Beasts = {
["coords"] = {
{66.1, 63.4, 408},
},
+ ["displayId"] = 2437,
+ ["skinId"] = 599,
},
[91961] = {
["name"] = "Junglepaw Shadow Panther",
@@ -8695,6 +9936,8 @@ MTH_DS_Beasts = {
["coords"] = {
{52.9, 78.4, 408},
},
+ ["displayId"] = 2437,
+ ["skinId"] = 599,
},
[91962] = {
["name"] = "Saltsnap Crocolisk",
@@ -8709,6 +9952,8 @@ MTH_DS_Beasts = {
["coords"] = {
{72.6, 67.4, 408},
},
+ ["displayId"] = 1039,
+ ["skinId"] = 833,
},
[91966] = {
["name"] = "Venomous Jungle Serpent",
@@ -8723,6 +9968,8 @@ MTH_DS_Beasts = {
["coords"] = {
{56.7, 57.4, 408},
},
+ ["displayId"] = 10991,
+ ["skinId"] = 2700,
},
[91984] = {
["name"] = "Tirisclaw Bear",
@@ -8737,6 +9984,8 @@ MTH_DS_Beasts = {
["coords"] = {
{23.6, 68.0, 85},
},
+ ["displayId"] = 1006,
+ ["skinId"] = 822,
},
[91985] = {
["name"] = "Tirisclaw Cub",
@@ -8751,6 +10000,8 @@ MTH_DS_Beasts = {
["coords"] = {
{23.7, 68.1, 85},
},
+ ["displayId"] = 1006,
+ ["skinId"] = 822,
},
[91987] = {
["name"] = "Cragtusk Boar",
@@ -8765,6 +10016,8 @@ MTH_DS_Beasts = {
["coords"] = {
{23.9, 79.6, 85},
},
+ ["displayId"] = 503,
+ ["skinId"] = 193,
},
[91989] = {
["name"] = "Graypaw Wolf",
@@ -8779,6 +10032,8 @@ MTH_DS_Beasts = {
["coords"] = {
{19.9, 76.4, 85},
},
+ ["displayId"] = 903,
+ ["skinId"] = 165,
},
[91990] = {
["name"] = "Graypaw Alpha",
@@ -8794,6 +10049,8 @@ MTH_DS_Beasts = {
["coords"] = {
{27.0, 58.4, 85},
},
+ ["displayId"] = 903,
+ ["skinId"] = 165,
},
[92115] = {
["name"] = "Enraged Sharpclaw",
@@ -8808,6 +10065,8 @@ MTH_DS_Beasts = {
["coords"] = {
{47.0, 48.9, 5077},
},
+ ["displayId"] = 820,
+ ["skinId"] = 820,
},
[92146] = {
["name"] = "Strand Crawler",
@@ -8822,6 +10081,8 @@ MTH_DS_Beasts = {
["coords"] = {
{0.9, 66.3, 33},
},
+ ["displayId"] = 1001,
+ ["skinId"] = 981,
},
[92147] = {
["name"] = "Silver Coast Crawler",
@@ -8836,5 +10097,7 @@ MTH_DS_Beasts = {
["coords"] = {
{42.5, 85.6, 408},
},
+ ["displayId"] = 1001,
+ ["skinId"] = 981,
},
}
\ No newline at end of file
diff --git a/data/ds-pet-spells-acquire.lua b/data/ds-pet-spells-acquire.lua
new file mode 100644
index 0000000..a7e0301
--- /dev/null
+++ b/data/ds-pet-spells-acquire.lua
@@ -0,0 +1,163 @@
+-- MetaHunt: Pet spell DBC acquire-method overlay (learnMethod, minRank, nextSpellId)
+-- AUTO-GENERATED by .tools — do not edit by hand.
+-- Source DBC(s): SkillLineAbility.dbc, SkillLine.dbc
+-- Generated: 2026-03-17 07:31 UTC
+
+-- This file patches MTH_DS_PetSpells.allSpells entries with DBC-authoritative
+-- learnMethod, minRank, and nextSpellId values.
+-- Load order: after ds-pet-spells.lua and ds-pet-spells-trainer.lua
+
+if not MTH_DS_PetSpells or not MTH_DS_PetSpells.allSpells then return end
+
+local _acquire = {
+ [1747] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [1748] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [1749] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [1750] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [1751] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [1853] = { learnMethod="unknown(1)", minRank=1, nextSpellId=0, skillLineId=261 },
+ [2975] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [2976] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [2977] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [2980] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [2981] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [2982] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [3666] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [3667] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [4195] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [4196] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [4197] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [4198] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [4199] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [4200] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [4201] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [4202] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [5048] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [5049] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [5149] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [7370] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [14922] = { learnMethod="unknown(1)", minRank=1, nextSpellId=0, skillLineId=261 },
+ [14923] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [14924] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [14925] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [14926] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [14927] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [16698] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [17254] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [17262] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [17263] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [17264] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [17265] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [17266] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [17267] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [17268] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [23100] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [23111] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [23112] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [23146] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [23149] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [23150] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [23163] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [23166] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [23167] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [24424] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [24440] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [24441] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [24451] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [24454] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [24455] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [24463] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [24464] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [24475] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [24476] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [24477] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [24478] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [24490] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [24494] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [24495] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [24508] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [24509] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [24510] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [24511] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [24512] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [24513] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [24514] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [24515] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [24516] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [24547] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [24556] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [24557] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [24558] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [24559] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [24560] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [24561] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [24562] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [24580] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [24581] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [24582] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [24584] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [24588] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [24589] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [24599] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [24607] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [24608] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [24609] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [24631] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [24632] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [24641] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [24845] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [25013] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [25014] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [25015] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [25016] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [25017] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [25077] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [26065] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [26094] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [26184] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [26185] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [26186] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [26189] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [26190] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [26202] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [28343] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [36554] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [36555] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [36556] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [36557] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [36558] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [36559] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [36560] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [36561] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [36563] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [36564] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [36565] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [36566] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [36567] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [36568] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [36569] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [36570] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [36571] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [36572] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [36573] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [36574] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [46023] = { learnMethod="trainer", minRank=0, nextSpellId=0, skillLineId=261 },
+ [46276] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [46303] = { learnMethod="trainer", minRank=0, nextSpellId=0, skillLineId=261 },
+ [46304] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [46307] = { learnMethod="trainer", minRank=0, nextSpellId=0, skillLineId=261 },
+ [46310] = { learnMethod="trainer", minRank=1, nextSpellId=0, skillLineId=261 },
+ [51154] = { learnMethod="trainer", minRank=0, nextSpellId=0, skillLineId=261 },
+ [51155] = { learnMethod="trainer", minRank=0, nextSpellId=0, skillLineId=261 },
+ [51157] = { learnMethod="trainer", minRank=0, nextSpellId=0, skillLineId=261 },
+}
+
+for _, spell in ipairs(MTH_DS_PetSpells.allSpells) do
+ local meta = _acquire[spell.id]
+ if meta then
+ spell.learnMethod = meta.learnMethod
+ spell.minRank = meta.minRank
+ spell.nextSpellId = meta.nextSpellId
+ spell.skillLineId = meta.skillLineId
+ end
+end
diff --git a/data/ds-stable-prices.lua b/data/ds-stable-prices.lua
new file mode 100644
index 0000000..5f8a2ea
--- /dev/null
+++ b/data/ds-stable-prices.lua
@@ -0,0 +1,37 @@
+-- MetaHunt: Stable slot prices
+-- AUTO-GENERATED by .tools — do not edit by hand.
+-- Source DBC(s): StableSlotPrices.dbc
+-- Generated: 2026-03-17 07:31 UTC
+
+if not MTH_DS then MTH_DS = {} end
+
+MTH_DS_StableSlotPrices = {
+ [1] = {
+ ["cost_copper"] = 500,
+ ["cost_gold"] = 0,
+ ["cost_silver"] = 5,
+ ["cost_copper_remainder"] = 0,
+ ["display"] = "0g 5s 0c",
+ },
+ [2] = {
+ ["cost_copper"] = 50000,
+ ["cost_gold"] = 5,
+ ["cost_silver"] = 0,
+ ["cost_copper_remainder"] = 0,
+ ["display"] = "5g 0s 0c",
+ },
+ [3] = {
+ ["cost_copper"] = 2500000,
+ ["cost_gold"] = 250,
+ ["cost_silver"] = 0,
+ ["cost_copper_remainder"] = 0,
+ ["display"] = "250g 0s 0c",
+ },
+ [4] = {
+ ["cost_copper"] = 1,
+ ["cost_gold"] = 0,
+ ["cost_silver"] = 0,
+ ["cost_copper_remainder"] = 1,
+ ["display"] = "0g 0s 1c",
+ },
+}
diff --git a/data/ds-zones-dbc.lua b/data/ds-zones-dbc.lua
new file mode 100644
index 0000000..bc5168b
--- /dev/null
+++ b/data/ds-zones-dbc.lua
@@ -0,0 +1,84 @@
+-- MetaHunt: Zone DBC enrichment (worldBounds, dbcAreaId, dbcMapId, dbcName)
+-- AUTO-GENERATED by .tools — do not edit by hand.
+-- Source DBC(s): WorldMapArea.dbc, AreaTable.dbc
+-- Generated: 2026-03-17 07:31 UTC
+
+if not MTH_DS_Zones then return end
+
+-- WMA ID=301 map=0 'Stormwind'
+if MTH_DS_Zones[1519] then
+ MTH_DS_Zones[1519]["dbcAreaId"] = 1519
+ MTH_DS_Zones[1519]["dbcMapId"] = 0
+ MTH_DS_Zones[1519]["dbcName"] = "Stormwind"
+ MTH_DS_Zones[1519]["worldBounds"] = {
+ ["left"] = 1722.92,
+ ["right"] = -14.58,
+ ["top"] = -7995.8301,
+ ["bottom"] = -9154.1699,
+}
+end
+
+-- WMA ID=321 map=1 'Ogrimmar'
+if MTH_DS_Zones[1637] then
+ MTH_DS_Zones[1637]["dbcAreaId"] = 1637
+ MTH_DS_Zones[1637]["dbcMapId"] = 1
+ MTH_DS_Zones[1637]["dbcName"] = "Ogrimmar"
+ MTH_DS_Zones[1637]["worldBounds"] = {
+ ["left"] = -3680.6001,
+ ["right"] = -5083.21,
+ ["top"] = 2273.8799,
+ ["bottom"] = 1338.46,
+}
+end
+
+-- WMA ID=362 map=1 'ThunderBluff'
+if MTH_DS_Zones[1638] then
+ MTH_DS_Zones[1638]["dbcAreaId"] = 1638
+ MTH_DS_Zones[1638]["dbcMapId"] = 1
+ MTH_DS_Zones[1638]["dbcName"] = "ThunderBluff"
+ MTH_DS_Zones[1638]["worldBounds"] = {
+ ["left"] = 516.67,
+ ["right"] = -527.08,
+ ["top"] = -850.0,
+ ["bottom"] = -1545.83,
+}
+end
+
+-- WMA ID=381 map=1 'Darnassis'
+if MTH_DS_Zones[1657] then
+ MTH_DS_Zones[1657]["dbcAreaId"] = 1657
+ MTH_DS_Zones[1657]["dbcMapId"] = 1
+ MTH_DS_Zones[1657]["dbcName"] = "Darnassis"
+ MTH_DS_Zones[1657]["worldBounds"] = {
+ ["left"] = 2938.3601,
+ ["right"] = 1880.03,
+ ["top"] = 10238.3203,
+ ["bottom"] = 9532.5898,
+}
+end
+
+-- WMA ID=382 map=0 'Undercity'
+if MTH_DS_Zones[1497] then
+ MTH_DS_Zones[1497]["dbcAreaId"] = 1497
+ MTH_DS_Zones[1497]["dbcMapId"] = 0
+ MTH_DS_Zones[1497]["dbcName"] = "Undercity"
+ MTH_DS_Zones[1497]["worldBounds"] = {
+ ["left"] = 873.19,
+ ["right"] = -86.18,
+ ["top"] = 1877.95,
+ ["bottom"] = 1237.84,
+}
+end
+
+-- WMA ID=509 map=0 'AlahThalas'
+if MTH_DS_Zones[2040] then
+ MTH_DS_Zones[2040]["dbcAreaId"] = 2040
+ MTH_DS_Zones[2040]["dbcMapId"] = 0
+ MTH_DS_Zones[2040]["dbcName"] = "AlahThalas"
+ MTH_DS_Zones[2040]["worldBounds"] = {
+ ["left"] = -2169.0,
+ ["right"] = -3637.0,
+ ["top"] = 4907.0,
+ ["bottom"] = 3931.0,
+}
+end
diff --git a/data/ds-zones-new-dbc.lua b/data/ds-zones-new-dbc.lua
new file mode 100644
index 0000000..a4d4a23
--- /dev/null
+++ b/data/ds-zones-new-dbc.lua
@@ -0,0 +1,1540 @@
+-- MetaHunt: Zones present in DBC but not in MTH_DS_Zones (TWoW custom zones)
+-- AUTO-GENERATED by .tools — do not edit by hand.
+-- Source DBC(s): WorldMapArea.dbc, AreaTable.dbc
+-- Generated: 2026-03-17 07:31 UTC
+
+if not MTH_DS_Zones then MTH_DS_Zones = {} end
+
+-- DBC WMA ID=4 MapID=1 'Durotar'
+if not MTH_DS_Zones[14] then
+ MTH_DS_Zones[14] = {
+ ["continent"] = 1,
+ ["parent"] = 1,
+ ["dbcAreaId"] = 14,
+ ["dbcMapId"] = 1,
+ ["dbcName"] = "Durotar",
+ ["worldBounds"] = { left=-1962.50, right=-7250.00, top=1808.33, bottom=-1716.67 },
+ ["names"] = { ["deDE"] = "Durotar", ["enUS"] = "Durotar", ["esES"] = "Durotar", ["ptBR"] = "Durotar", ["ruRU"] = "Дуротар", ["zhCN"] = "杜隆塔尔" },
+ }
+end
+
+-- DBC WMA ID=9 MapID=1 'Mulgore'
+if not MTH_DS_Zones[215] then
+ MTH_DS_Zones[215] = {
+ ["continent"] = 1,
+ ["parent"] = 1,
+ ["dbcAreaId"] = 215,
+ ["dbcMapId"] = 1,
+ ["dbcName"] = "Mulgore",
+ ["worldBounds"] = { left=2047.92, right=-3089.58, top=-272.92, bottom=-3697.92 },
+ ["names"] = { ["deDE"] = "Mulgore", ["enUS"] = "Mulgore", ["esES"] = "Mulgore", ["ptBR"] = "Mulgore", ["ruRU"] = "Мулгор", ["zhCN"] = "莫高雷" },
+ }
+end
+
+-- DBC WMA ID=11 MapID=1 'Barrens'
+if not MTH_DS_Zones[17] then
+ MTH_DS_Zones[17] = {
+ ["continent"] = 1,
+ ["parent"] = 1,
+ ["dbcAreaId"] = 17,
+ ["dbcMapId"] = 1,
+ ["dbcName"] = "Barrens",
+ ["worldBounds"] = { left=2622.92, right=-7510.42, top=1612.50, bottom=-5143.75 },
+ ["names"] = { ["deDE"] = "Brachland", ["enUS"] = "The Barrens", ["esES"] = "Los Baldíos", ["ptBR"] = "Sertões", ["ruRU"] = "Степи", ["zhCN"] = "贫瘠之地" },
+ }
+end
+
+-- DBC WMA ID=13 MapID=1 'Kalimdor'
+if not MTH_DS_Zones[0] then
+ MTH_DS_Zones[0] = {
+ ["continent"] = 1,
+ ["parent"] = 1,
+ ["dbcAreaId"] = 0,
+ ["dbcMapId"] = 1,
+ ["dbcName"] = "Kalimdor",
+ ["worldBounds"] = { left=17066.60, right=-19733.21, top=12799.90, bottom=-11733.30 },
+ ["names"] = { ["enUS"] = "Kalimdor" },
+ }
+end
+
+-- DBC WMA ID=14 MapID=0 'Azeroth'
+if not MTH_DS_Zones[0] then
+ MTH_DS_Zones[0] = {
+ ["continent"] = 0,
+ ["parent"] = 0,
+ ["dbcAreaId"] = 0,
+ ["dbcMapId"] = 0,
+ ["dbcName"] = "Azeroth",
+ ["worldBounds"] = { left=16000.00, right=-19199.90, top=7466.60, bottom=-16000.00 },
+ ["names"] = { ["enUS"] = "Azeroth" },
+ }
+end
+
+-- DBC WMA ID=15 MapID=0 'Alterac'
+if not MTH_DS_Zones[36] then
+ MTH_DS_Zones[36] = {
+ ["continent"] = 0,
+ ["parent"] = 0,
+ ["dbcAreaId"] = 36,
+ ["dbcMapId"] = 0,
+ ["dbcName"] = "Alterac",
+ ["worldBounds"] = { left=783.33, right=-2016.67, top=1500.00, bottom=-366.67 },
+ ["names"] = { ["deDE"] = "Alteracgebirge", ["enUS"] = "Alterac Mountains", ["esES"] = "Montañas de Alterac", ["ptBR"] = "Montanhas de Alterac", ["ruRU"] = "Альтеракские Горы", ["zhCN"] = "奥特兰克山脉" },
+ }
+end
+
+-- DBC WMA ID=16 MapID=0 'Arathi'
+if not MTH_DS_Zones[45] then
+ MTH_DS_Zones[45] = {
+ ["continent"] = 0,
+ ["parent"] = 0,
+ ["dbcAreaId"] = 45,
+ ["dbcMapId"] = 0,
+ ["dbcName"] = "Arathi",
+ ["worldBounds"] = { left=-866.67, right=-4466.67, top=-133.33, bottom=-2533.33 },
+ ["names"] = { ["deDE"] = "Arathihochland", ["enUS"] = "Arathi Highlands", ["esES"] = "Tierras Altas de Arathi", ["ptBR"] = "Planalto Arathi", ["ruRU"] = "Нагорье Арати", ["zhCN"] = "阿拉希高地" },
+ }
+end
+
+-- DBC WMA ID=17 MapID=0 'Badlands'
+if not MTH_DS_Zones[3] then
+ MTH_DS_Zones[3] = {
+ ["continent"] = 0,
+ ["parent"] = 0,
+ ["dbcAreaId"] = 3,
+ ["dbcMapId"] = 0,
+ ["dbcName"] = "Badlands",
+ ["worldBounds"] = { left=-2079.17, right=-4566.67, top=-5889.58, bottom=-7547.92 },
+ ["names"] = { ["deDE"] = "Ödland", ["enUS"] = "Badlands", ["esES"] = "Tierras Inhóspitas", ["ptBR"] = "Ermos", ["ruRU"] = "Бесплодные Земли", ["zhCN"] = "荒芜之地" },
+ }
+end
+
+-- DBC WMA ID=19 MapID=0 'BlastedLands'
+if not MTH_DS_Zones[4] then
+ MTH_DS_Zones[4] = {
+ ["continent"] = 0,
+ ["parent"] = 0,
+ ["dbcAreaId"] = 4,
+ ["dbcMapId"] = 0,
+ ["dbcName"] = "BlastedLands",
+ ["worldBounds"] = { left=-1241.67, right=-4591.67, top=-10566.67, bottom=-12800.00 },
+ ["names"] = { ["deDE"] = "Verwüstete Lande", ["enUS"] = "Blasted Lands", ["esES"] = "Las Tierras Devastadas", ["ptBR"] = "Barreira do Inferno", ["ruRU"] = "Выжженные Земли", ["zhCN"] = "诅咒之地" },
+ }
+end
+
+-- DBC WMA ID=20 MapID=0 'Tirisfal'
+if not MTH_DS_Zones[85] then
+ MTH_DS_Zones[85] = {
+ ["continent"] = 0,
+ ["parent"] = 0,
+ ["dbcAreaId"] = 85,
+ ["dbcMapId"] = 0,
+ ["dbcName"] = "Tirisfal",
+ ["worldBounds"] = { left=3033.33, right=-1485.42, top=3837.50, bottom=825.00 },
+ ["names"] = { ["deDE"] = "Tirisfal", ["enUS"] = "Tirisfal Glades", ["esES"] = "Claros de Tirisfal", ["ptBR"] = "Clareiras de Tirisfal", ["ruRU"] = "Тирисфальские Леса", ["zhCN"] = "提瑞斯法林地" },
+ }
+end
+
+-- DBC WMA ID=21 MapID=0 'Silverpine'
+if not MTH_DS_Zones[130] then
+ MTH_DS_Zones[130] = {
+ ["continent"] = 0,
+ ["parent"] = 0,
+ ["dbcAreaId"] = 130,
+ ["dbcMapId"] = 0,
+ ["dbcName"] = "Silverpine",
+ ["worldBounds"] = { left=3450.00, right=-750.00, top=1666.67, bottom=-1133.33 },
+ ["names"] = { ["deDE"] = "Silberwald", ["enUS"] = "Silverpine Forest", ["esES"] = "Bosque de Argénteos", ["ptBR"] = "Floresta de Pinhaprata", ["ruRU"] = "Серебряный Бор", ["zhCN"] = "银松森林" },
+ }
+end
+
+-- DBC WMA ID=22 MapID=0 'WesternPlaguelands'
+if not MTH_DS_Zones[28] then
+ MTH_DS_Zones[28] = {
+ ["continent"] = 0,
+ ["parent"] = 0,
+ ["dbcAreaId"] = 28,
+ ["dbcMapId"] = 0,
+ ["dbcName"] = "WesternPlaguelands",
+ ["worldBounds"] = { left=416.67, right=-3883.33, top=3366.67, bottom=500.00 },
+ ["names"] = { ["deDE"] = "Westliche Pestländer", ["enUS"] = "Western Plaguelands", ["esES"] = "Tierras de la Peste del Oeste", ["ptBR"] = "Terras Pestilentas Ocidentais", ["ruRU"] = "Западные Чумные Земли", ["zhCN"] = "西瘟疫之地" },
+ }
+end
+
+-- DBC WMA ID=23 MapID=0 'EasternPlaguelands'
+if not MTH_DS_Zones[139] then
+ MTH_DS_Zones[139] = {
+ ["continent"] = 0,
+ ["parent"] = 0,
+ ["dbcAreaId"] = 139,
+ ["dbcMapId"] = 0,
+ ["dbcName"] = "EasternPlaguelands",
+ ["worldBounds"] = { left=-2185.42, right=-6056.25, top=3800.00, bottom=1218.75 },
+ ["names"] = { ["deDE"] = "Östliche Pestländer", ["enUS"] = "Eastern Plaguelands", ["esES"] = "Tierras de la Peste del Este", ["ptBR"] = "Terras Pestilentas Orientais", ["ruRU"] = "Восточные Чумные Земли", ["zhCN"] = "东瘟疫之地" },
+ }
+end
+
+-- DBC WMA ID=24 MapID=0 'Hilsbrad'
+if not MTH_DS_Zones[267] then
+ MTH_DS_Zones[267] = {
+ ["continent"] = 0,
+ ["parent"] = 0,
+ ["dbcAreaId"] = 267,
+ ["dbcMapId"] = 0,
+ ["dbcName"] = "Hilsbrad",
+ ["worldBounds"] = { left=1066.67, right=-2133.33, top=400.00, bottom=-1733.33 },
+ ["names"] = { ["deDE"] = "Vorgebirge des Hügellandes", ["enUS"] = "Hillsbrad Foothills", ["esES"] = "Laderas de Trabalomas", ["ptBR"] = "Contraforte de Eira dos Montes", ["ruRU"] = "Предгорья Хилсбрада", ["zhCN"] = "希尔斯布莱德丘陵" },
+ }
+end
+
+-- DBC WMA ID=26 MapID=0 'Hinterlands'
+if not MTH_DS_Zones[47] then
+ MTH_DS_Zones[47] = {
+ ["continent"] = 0,
+ ["parent"] = 0,
+ ["dbcAreaId"] = 47,
+ ["dbcMapId"] = 0,
+ ["dbcName"] = "Hinterlands",
+ ["worldBounds"] = { left=-1575.00, right=-5425.00, top=1466.67, bottom=-1100.00 },
+ ["names"] = { ["deDE"] = "Hinterland", ["enUS"] = "The Hinterlands", ["esES"] = "Tierras del Interior", ["ptBR"] = "Terras Agrestes", ["ruRU"] = "Внутренние Земли", ["zhCN"] = "辛特兰" },
+ }
+end
+
+-- DBC WMA ID=27 MapID=0 'DunMorogh'
+if not MTH_DS_Zones[1] then
+ MTH_DS_Zones[1] = {
+ ["continent"] = 0,
+ ["parent"] = 0,
+ ["dbcAreaId"] = 1,
+ ["dbcMapId"] = 0,
+ ["dbcName"] = "DunMorogh",
+ ["worldBounds"] = { left=1802.08, right=-3122.92, top=-3877.08, bottom=-7160.42 },
+ ["names"] = { ["deDE"] = "Dun Morogh", ["enUS"] = "Dun Morogh", ["esES"] = "Dun Morogh", ["ptBR"] = "Dun Morogh", ["ruRU"] = "Дун Морог", ["zhCN"] = "丹莫罗" },
+ }
+end
+
+-- DBC WMA ID=28 MapID=0 'SearingGorge'
+if not MTH_DS_Zones[51] then
+ MTH_DS_Zones[51] = {
+ ["continent"] = 0,
+ ["parent"] = 0,
+ ["dbcAreaId"] = 51,
+ ["dbcMapId"] = 0,
+ ["dbcName"] = "SearingGorge",
+ ["worldBounds"] = { left=-322.92, right=-2554.17, top=-6100.00, bottom=-7587.50 },
+ ["names"] = { ["deDE"] = "Sengende Schlucht", ["enUS"] = "Searing Gorge", ["esES"] = "La Garganta de Fuego", ["ptBR"] = "Garganta Abrasadora", ["ruRU"] = "Тлеющее Ущелье", ["zhCN"] = "灼热峡谷" },
+ }
+end
+
+-- DBC WMA ID=29 MapID=0 'BurningSteppes'
+if not MTH_DS_Zones[46] then
+ MTH_DS_Zones[46] = {
+ ["continent"] = 0,
+ ["parent"] = 0,
+ ["dbcAreaId"] = 46,
+ ["dbcMapId"] = 0,
+ ["dbcName"] = "BurningSteppes",
+ ["worldBounds"] = { left=-266.67, right=-3195.83, top=-7031.25, bottom=-8983.33 },
+ ["names"] = { ["deDE"] = "Brennende Steppe", ["enUS"] = "Burning Steppes", ["esES"] = "Las Estepas Ardientes", ["ptBR"] = "Estepes Ardentes", ["ruRU"] = "Пылающие Степи", ["zhCN"] = "燃烧平原" },
+ }
+end
+
+-- DBC WMA ID=30 MapID=0 'Elwynn'
+if not MTH_DS_Zones[12] then
+ MTH_DS_Zones[12] = {
+ ["continent"] = 0,
+ ["parent"] = 0,
+ ["dbcAreaId"] = 12,
+ ["dbcMapId"] = 0,
+ ["dbcName"] = "Elwynn",
+ ["worldBounds"] = { left=1535.42, right=-1935.42, top=-7939.58, bottom=-10254.17 },
+ ["names"] = { ["deDE"] = "Wald von Elwynn", ["enUS"] = "Elwynn Forest", ["esES"] = "Bosque de Elwynn", ["ptBR"] = "Floresta de Elwynn", ["ruRU"] = "Элвиннский Лес", ["zhCN"] = "艾尔文森林" },
+ }
+end
+
+-- DBC WMA ID=32 MapID=0 'DeadwindPass'
+if not MTH_DS_Zones[41] then
+ MTH_DS_Zones[41] = {
+ ["continent"] = 0,
+ ["parent"] = 0,
+ ["dbcAreaId"] = 41,
+ ["dbcMapId"] = 0,
+ ["dbcName"] = "DeadwindPass",
+ ["worldBounds"] = { left=-833.33, right=-3333.33, top=-9866.67, bottom=-11533.33 },
+ ["names"] = { ["deDE"] = "Gebirgspass der Totenwinde", ["enUS"] = "Deadwind Pass", ["esES"] = "Paso de la Muerte", ["ptBR"] = "Trilha do Vento Morto", ["ruRU"] = "Перевал Мертвого Ветра", ["zhCN"] = "逆风小径" },
+ }
+end
+
+-- DBC WMA ID=34 MapID=0 'Duskwood'
+if not MTH_DS_Zones[10] then
+ MTH_DS_Zones[10] = {
+ ["continent"] = 0,
+ ["parent"] = 0,
+ ["dbcAreaId"] = 10,
+ ["dbcMapId"] = 0,
+ ["dbcName"] = "Duskwood",
+ ["worldBounds"] = { left=833.33, right=-1866.67, top=-9716.67, bottom=-11516.67 },
+ ["names"] = { ["deDE"] = "Dämmerwald", ["enUS"] = "Duskwood", ["esES"] = "Bosque del Ocaso", ["ptBR"] = "Floresta do Crepúsculo", ["ruRU"] = "Сумеречный Лес", ["zhCN"] = "暮色森林" },
+ }
+end
+
+-- DBC WMA ID=35 MapID=0 'LochModan'
+if not MTH_DS_Zones[38] then
+ MTH_DS_Zones[38] = {
+ ["continent"] = 0,
+ ["parent"] = 0,
+ ["dbcAreaId"] = 38,
+ ["dbcMapId"] = 0,
+ ["dbcName"] = "LochModan",
+ ["worldBounds"] = { left=-1993.75, right=-4752.08, top=-4487.50, bottom=-6327.08 },
+ ["names"] = { ["deDE"] = "Loch Modan", ["enUS"] = "Loch Modan", ["esES"] = "Loch Modan", ["ptBR"] = "Loch Modan", ["ruRU"] = "Лок Модан", ["zhCN"] = "洛克莫丹" },
+ }
+end
+
+-- DBC WMA ID=36 MapID=0 'Redridge'
+if not MTH_DS_Zones[44] then
+ MTH_DS_Zones[44] = {
+ ["continent"] = 0,
+ ["parent"] = 0,
+ ["dbcAreaId"] = 44,
+ ["dbcMapId"] = 0,
+ ["dbcName"] = "Redridge",
+ ["worldBounds"] = { left=-1570.83, right=-3741.67, top=-8575.00, bottom=-10022.92 },
+ ["names"] = { ["deDE"] = "Rotkammgebirge", ["enUS"] = "Redridge Mountains", ["esES"] = "Montañas Crestagrana", ["ptBR"] = "Montanhas Cristarrubra", ["ruRU"] = "Красногорье", ["zhCN"] = "赤脊山" },
+ }
+end
+
+-- DBC WMA ID=37 MapID=0 'Stranglethorn'
+if not MTH_DS_Zones[33] then
+ MTH_DS_Zones[33] = {
+ ["continent"] = 0,
+ ["parent"] = 0,
+ ["dbcAreaId"] = 33,
+ ["dbcMapId"] = 0,
+ ["dbcName"] = "Stranglethorn",
+ ["worldBounds"] = { left=2220.83, right=-4160.42, top=-11168.75, bottom=-15422.92 },
+ ["names"] = { ["deDE"] = "Schlingendorntal", ["enUS"] = "Stranglethorn Vale", ["esES"] = "Vega de Tuercespina", ["ptBR"] = "Selva do Espinhaço", ["ruRU"] = "Тернистая Долина", ["zhCN"] = "荆棘谷" },
+ }
+end
+
+-- DBC WMA ID=38 MapID=0 'SwampOfSorrows'
+if not MTH_DS_Zones[8] then
+ MTH_DS_Zones[8] = {
+ ["continent"] = 0,
+ ["parent"] = 0,
+ ["dbcAreaId"] = 8,
+ ["dbcMapId"] = 0,
+ ["dbcName"] = "SwampOfSorrows",
+ ["worldBounds"] = { left=-2222.92, right=-4516.67, top=-9620.83, bottom=-11150.00 },
+ ["names"] = { ["deDE"] = "Sümpfe des Elends", ["enUS"] = "Swamp of Sorrows", ["esES"] = "Pantano de las Penas", ["ptBR"] = "Pântano das Mágoas", ["ruRU"] = "Болото Печали", ["zhCN"] = "悲伤沼泽" },
+ }
+end
+
+-- DBC WMA ID=39 MapID=0 'Westfall'
+if not MTH_DS_Zones[40] then
+ MTH_DS_Zones[40] = {
+ ["continent"] = 0,
+ ["parent"] = 0,
+ ["dbcAreaId"] = 40,
+ ["dbcMapId"] = 0,
+ ["dbcName"] = "Westfall",
+ ["worldBounds"] = { left=3016.67, right=-483.33, top=-9400.00, bottom=-11733.33 },
+ ["names"] = { ["deDE"] = "Westfall", ["enUS"] = "Westfall", ["esES"] = "Páramos de Poniente", ["ptBR"] = "Cerro Oeste", ["ruRU"] = "Западный Край", ["zhCN"] = "西部荒野" },
+ }
+end
+
+-- DBC WMA ID=40 MapID=0 'Wetlands'
+if not MTH_DS_Zones[11] then
+ MTH_DS_Zones[11] = {
+ ["continent"] = 0,
+ ["parent"] = 0,
+ ["dbcAreaId"] = 11,
+ ["dbcMapId"] = 0,
+ ["dbcName"] = "Wetlands",
+ ["worldBounds"] = { left=-389.58, right=-4525.00, top=-2147.92, bottom=-4904.17 },
+ ["names"] = { ["deDE"] = "Sumpfland", ["enUS"] = "Wetlands", ["esES"] = "Los Humedales", ["ptBR"] = "Pantanal", ["ruRU"] = "Болотина", ["zhCN"] = "湿地" },
+ }
+end
+
+-- DBC WMA ID=41 MapID=1 'Teldrassil'
+if not MTH_DS_Zones[141] then
+ MTH_DS_Zones[141] = {
+ ["continent"] = 1,
+ ["parent"] = 1,
+ ["dbcAreaId"] = 141,
+ ["dbcMapId"] = 1,
+ ["dbcName"] = "Teldrassil",
+ ["worldBounds"] = { left=3814.58, right=-1277.08, top=11831.25, bottom=8437.50 },
+ ["names"] = { ["deDE"] = "Teldrassil", ["enUS"] = "Teldrassil", ["esES"] = "Teldrassil", ["ptBR"] = "Teldrassil", ["ruRU"] = "Тельдрассил", ["zhCN"] = "泰达希尔" },
+ }
+end
+
+-- DBC WMA ID=42 MapID=1 'Darkshore'
+if not MTH_DS_Zones[148] then
+ MTH_DS_Zones[148] = {
+ ["continent"] = 1,
+ ["parent"] = 1,
+ ["dbcAreaId"] = 148,
+ ["dbcMapId"] = 1,
+ ["dbcName"] = "Darkshore",
+ ["worldBounds"] = { left=2941.67, right=-3608.33, top=8333.33, bottom=3966.67 },
+ ["names"] = { ["deDE"] = "Dunkelküste", ["enUS"] = "Darkshore", ["esES"] = "Costa Oscura", ["ptBR"] = "Costa Negra", ["ruRU"] = "Темные Берега", ["zhCN"] = "黑海岸" },
+ }
+end
+
+-- DBC WMA ID=43 MapID=1 'Ashenvale'
+if not MTH_DS_Zones[331] then
+ MTH_DS_Zones[331] = {
+ ["continent"] = 1,
+ ["parent"] = 1,
+ ["dbcAreaId"] = 331,
+ ["dbcMapId"] = 1,
+ ["dbcName"] = "Ashenvale",
+ ["worldBounds"] = { left=1700.00, right=-4066.67, top=4672.92, bottom=829.17 },
+ ["names"] = { ["deDE"] = "Eschental", ["enUS"] = "Ashenvale", ["esES"] = "Vallefresno", ["ptBR"] = "Vale Gris", ["ruRU"] = "Ясеневый Лес", ["zhCN"] = "灰谷" },
+ }
+end
+
+-- DBC WMA ID=61 MapID=1 'ThousandNeedles'
+if not MTH_DS_Zones[400] then
+ MTH_DS_Zones[400] = {
+ ["continent"] = 1,
+ ["parent"] = 1,
+ ["dbcAreaId"] = 400,
+ ["dbcMapId"] = 1,
+ ["dbcName"] = "ThousandNeedles",
+ ["worldBounds"] = { left=-433.33, right=-4833.33, top=-3966.67, bottom=-6900.00 },
+ ["names"] = { ["deDE"] = "Tausend Nadeln", ["enUS"] = "Thousand Needles", ["esES"] = "Las Mil Agujas", ["ptBR"] = "Mil Agulhas", ["ruRU"] = "Тысяча Игл", ["zhCN"] = "千针石林" },
+ }
+end
+
+-- DBC WMA ID=81 MapID=1 'StonetalonMountains'
+if not MTH_DS_Zones[406] then
+ MTH_DS_Zones[406] = {
+ ["continent"] = 1,
+ ["parent"] = 1,
+ ["dbcAreaId"] = 406,
+ ["dbcMapId"] = 1,
+ ["dbcName"] = "StonetalonMountains",
+ ["worldBounds"] = { left=3949.00, right=-2069.00, top=3441.00, bottom=-569.00 },
+ ["names"] = { ["deDE"] = "Steinkrallengebirge", ["enUS"] = "Stonetalon Mountains", ["esES"] = "Sierra Espolón", ["ptBR"] = "Cordilheira das Torres de Pedra", ["ruRU"] = "Когтистые Горы", ["zhCN"] = "石爪山脉" },
+ }
+end
+
+-- DBC WMA ID=101 MapID=1 'Desolace'
+if not MTH_DS_Zones[405] then
+ MTH_DS_Zones[405] = {
+ ["continent"] = 1,
+ ["parent"] = 1,
+ ["dbcAreaId"] = 405,
+ ["dbcMapId"] = 1,
+ ["dbcName"] = "Desolace",
+ ["worldBounds"] = { left=4233.33, right=-262.50, top=452.08, bottom=-2545.83 },
+ ["names"] = { ["deDE"] = "Desolace", ["enUS"] = "Desolace", ["esES"] = "Desolace", ["ptBR"] = "Desolação", ["ruRU"] = "Пустоши", ["zhCN"] = "凄凉之地" },
+ }
+end
+
+-- DBC WMA ID=121 MapID=1 'Feralas'
+if not MTH_DS_Zones[357] then
+ MTH_DS_Zones[357] = {
+ ["continent"] = 1,
+ ["parent"] = 1,
+ ["dbcAreaId"] = 357,
+ ["dbcMapId"] = 1,
+ ["dbcName"] = "Feralas",
+ ["worldBounds"] = { left=5441.67, right=-1508.33, top=-2366.67, bottom=-7000.00 },
+ ["names"] = { ["deDE"] = "Feralas", ["enUS"] = "Feralas", ["esES"] = "Feralas", ["ptBR"] = "Feralas", ["ruRU"] = "Фералас", ["zhCN"] = "菲拉斯" },
+ }
+end
+
+-- DBC WMA ID=141 MapID=1 'Dustwallow'
+if not MTH_DS_Zones[15] then
+ MTH_DS_Zones[15] = {
+ ["continent"] = 1,
+ ["parent"] = 1,
+ ["dbcAreaId"] = 15,
+ ["dbcMapId"] = 1,
+ ["dbcName"] = "Dustwallow",
+ ["worldBounds"] = { left=-975.00, right=-6225.00, top=-2033.33, bottom=-5533.33 },
+ ["names"] = { ["deDE"] = "Düstermarschen", ["enUS"] = "Dustwallow Marsh", ["esES"] = "Marjal Revolcafango", ["ptBR"] = "Pântano Vadeoso", ["ruRU"] = "Пылевые Топи", ["zhCN"] = "尘泥沼泽" },
+ }
+end
+
+-- DBC WMA ID=161 MapID=1 'Tanaris'
+if not MTH_DS_Zones[440] then
+ MTH_DS_Zones[440] = {
+ ["continent"] = 1,
+ ["parent"] = 1,
+ ["dbcAreaId"] = 440,
+ ["dbcMapId"] = 1,
+ ["dbcName"] = "Tanaris",
+ ["worldBounds"] = { left=-218.75, right=-7118.75, top=-5875.00, bottom=-10475.00 },
+ ["names"] = { ["deDE"] = "Tanaris", ["enUS"] = "Tanaris", ["esES"] = "Tanaris", ["ptBR"] = "Tanaris", ["ruRU"] = "Танарис", ["zhCN"] = "塔纳利斯" },
+ }
+end
+
+-- DBC WMA ID=181 MapID=1 'Aszhara'
+if not MTH_DS_Zones[16] then
+ MTH_DS_Zones[16] = {
+ ["continent"] = 1,
+ ["parent"] = 1,
+ ["dbcAreaId"] = 16,
+ ["dbcMapId"] = 1,
+ ["dbcName"] = "Aszhara",
+ ["worldBounds"] = { left=-3277.08, right=-8347.92, top=5341.67, bottom=1960.42 },
+ ["names"] = { ["deDE"] = "Azshara", ["enUS"] = "Azshara", ["esES"] = "Azshara", ["ptBR"] = "Azshara", ["ruRU"] = "Азшара", ["zhCN"] = "艾萨拉" },
+ }
+end
+
+-- DBC WMA ID=182 MapID=1 'Felwood'
+if not MTH_DS_Zones[361] then
+ MTH_DS_Zones[361] = {
+ ["continent"] = 1,
+ ["parent"] = 1,
+ ["dbcAreaId"] = 361,
+ ["dbcMapId"] = 1,
+ ["dbcName"] = "Felwood",
+ ["worldBounds"] = { left=1641.67, right=-4108.33, top=7133.33, bottom=3300.00 },
+ ["names"] = { ["deDE"] = "Teufelswald", ["enUS"] = "Felwood", ["esES"] = "Frondavil", ["ptBR"] = "Selva Maleva", ["ruRU"] = "Оскверненный Лес", ["zhCN"] = "费伍德森林" },
+ }
+end
+
+-- DBC WMA ID=201 MapID=1 'UngoroCrater'
+if not MTH_DS_Zones[490] then
+ MTH_DS_Zones[490] = {
+ ["continent"] = 1,
+ ["parent"] = 1,
+ ["dbcAreaId"] = 490,
+ ["dbcMapId"] = 1,
+ ["dbcName"] = "UngoroCrater",
+ ["worldBounds"] = { left=533.33, right=-3166.67, top=-5966.67, bottom=-8433.33 },
+ ["names"] = { ["deDE"] = "Krater von Un'Goro", ["enUS"] = "Un'Goro Crater", ["esES"] = "Cráter de Un'goro", ["ptBR"] = "Cratera Un'goro", ["ruRU"] = "Кратер Ун'Горо", ["zhCN"] = "安戈洛环形山" },
+ }
+end
+
+-- DBC WMA ID=241 MapID=1 'Moonglade'
+if not MTH_DS_Zones[493] then
+ MTH_DS_Zones[493] = {
+ ["continent"] = 1,
+ ["parent"] = 1,
+ ["dbcAreaId"] = 493,
+ ["dbcMapId"] = 1,
+ ["dbcName"] = "Moonglade",
+ ["worldBounds"] = { left=-1381.25, right=-3689.58, top=8491.67, bottom=6952.08 },
+ ["names"] = { ["deDE"] = "Mondlichtung", ["enUS"] = "Moonglade", ["esES"] = "Claro de la Luna", ["ptBR"] = "Clareira da Lua", ["ruRU"] = "Лунная Поляна", ["zhCN"] = "月光林地" },
+ }
+end
+
+-- DBC WMA ID=261 MapID=1 'Silithus'
+if not MTH_DS_Zones[1377] then
+ MTH_DS_Zones[1377] = {
+ ["continent"] = 1,
+ ["parent"] = 1,
+ ["dbcAreaId"] = 1377,
+ ["dbcMapId"] = 1,
+ ["dbcName"] = "Silithus",
+ ["worldBounds"] = { left=2537.50, right=-945.83, top=-5958.33, bottom=-8281.25 },
+ ["names"] = { ["deDE"] = "Silithus", ["enUS"] = "Silithus", ["esES"] = "Silithus", ["ptBR"] = "Silithus", ["ruRU"] = "Силитус", ["zhCN"] = "希利苏斯" },
+ }
+end
+
+-- DBC WMA ID=281 MapID=1 'Winterspring'
+if not MTH_DS_Zones[618] then
+ MTH_DS_Zones[618] = {
+ ["continent"] = 1,
+ ["parent"] = 1,
+ ["dbcAreaId"] = 618,
+ ["dbcMapId"] = 1,
+ ["dbcName"] = "Winterspring",
+ ["worldBounds"] = { left=-316.67, right=-7416.67, top=8533.33, bottom=3800.00 },
+ ["names"] = { ["deDE"] = "Winterquell", ["enUS"] = "Winterspring", ["esES"] = "Cuna del Invierno", ["ptBR"] = "Hibérnia", ["ruRU"] = "Зимние Ключи", ["zhCN"] = "冬泉谷" },
+ }
+end
+
+-- DBC WMA ID=341 MapID=0 'Ironforge'
+if not MTH_DS_Zones[1537] then
+ MTH_DS_Zones[1537] = {
+ ["continent"] = 0,
+ ["parent"] = 0,
+ ["dbcAreaId"] = 1537,
+ ["dbcMapId"] = 0,
+ ["dbcName"] = "Ironforge",
+ ["worldBounds"] = { left=-713.59, right=-1504.22, top=-4569.24, bottom=-5096.85 },
+ ["names"] = { ["deDE"] = "Eisenschmiede", ["enUS"] = "Ironforge", ["esES"] = "Forjaz", ["ptBR"] = "Altaforja", ["ruRU"] = "Стальгорн", ["zhCN"] = "铁炉堡" },
+ }
+end
+
+-- DBC WMA ID=401 MapID=30 'AlteracValley'
+if not MTH_DS_Zones[2597] then
+ MTH_DS_Zones[2597] = {
+ ["continent"] = 30,
+ ["parent"] = 30,
+ ["dbcAreaId"] = 2597,
+ ["dbcMapId"] = 30,
+ ["dbcName"] = "AlteracValley",
+ ["worldBounds"] = { left=1781.25, right=-2456.25, top=1085.42, bottom=-1739.58 },
+ ["names"] = { ["deDE"] = "Alteractal", ["enUS"] = "Alterac Valley", ["esES"] = "Valle de Alterac", ["ptBR"] = "Vale Alterac", ["ruRU"] = "Альтеракская Долина", ["zhCN"] = "奥特兰克山谷" },
+ }
+end
+
+-- DBC WMA ID=443 MapID=489 'WarsongGulch'
+if not MTH_DS_Zones[3277] then
+ MTH_DS_Zones[3277] = {
+ ["continent"] = 489,
+ ["parent"] = 489,
+ ["dbcAreaId"] = 3277,
+ ["dbcMapId"] = 489,
+ ["dbcName"] = "WarsongGulch",
+ ["worldBounds"] = { left=2041.67, right=895.83, top=1627.08, bottom=862.50 },
+ ["names"] = { ["deDE"] = "Kriegshymnenschlucht", ["enUS"] = "Warsong Gulch", ["esES"] = "Garganta Grito de Guerra", ["ptBR"] = "Ravina Brado Guerreiro", ["ruRU"] = "Ущелье Песни Войны", ["zhCN"] = "战歌峡谷" },
+ }
+end
+
+-- DBC WMA ID=461 MapID=529 'ArathiBasin'
+if not MTH_DS_Zones[3358] then
+ MTH_DS_Zones[3358] = {
+ ["continent"] = 529,
+ ["parent"] = 529,
+ ["dbcAreaId"] = 3358,
+ ["dbcMapId"] = 529,
+ ["dbcName"] = "ArathiBasin",
+ ["worldBounds"] = { left=1858.33, right=102.08, top=1508.33, bottom=337.50 },
+ ["names"] = { ["deDE"] = "Arathibecken", ["enUS"] = "Arathi Basin", ["esES"] = "Cuenca de Arathi", ["ptBR"] = "Bacia Arathi", ["ruRU"] = "Низина Арати", ["zhCN"] = "阿拉希盆地" },
+ }
+end
+
+-- DBC WMA ID=500 MapID=1 'GMIsland'
+if not MTH_DS_Zones[876] then
+ MTH_DS_Zones[876] = {
+ ["continent"] = 1,
+ ["parent"] = 1,
+ ["dbcAreaId"] = 876,
+ ["dbcMapId"] = 1,
+ ["dbcName"] = "GMIsland",
+ ["worldBounds"] = { left=16748.00, right=15920.00, top=16525.00, bottom=15984.00 },
+ ["names"] = { ["deDE"] = "GM-Insel", ["enUS"] = "GM Island", ["esES"] = "Isla GM", ["ptBR"] = "Ilha GM", ["ruRU"] = "Остров ГМ", ["zhCN"] = "GM岛" },
+ }
+end
+
+-- DBC WMA ID=501 MapID=1 'Hyjal'
+if not MTH_DS_Zones[616] then
+ MTH_DS_Zones[616] = {
+ ["continent"] = 1,
+ ["parent"] = 1,
+ ["dbcAreaId"] = 616,
+ ["dbcMapId"] = 1,
+ ["dbcName"] = "Hyjal",
+ ["worldBounds"] = { left=-1080.00, right=-4286.00, top=6125.00, bottom=3983.00 },
+ ["names"] = { ["deDE"] = "Hyjal", ["enUS"] = "Hyjal", ["esES"] = "Hyjal", ["ptBR"] = "Hyjal", ["ruRU"] = "Хиджал", ["zhCN"] = "海加尔山" },
+ }
+end
+
+-- DBC WMA ID=502 MapID=0 'ScarletEnclave'
+if not MTH_DS_Zones[4012] then
+ MTH_DS_Zones[4012] = {
+ ["continent"] = 0,
+ ["parent"] = 0,
+ ["dbcAreaId"] = 4012,
+ ["dbcMapId"] = 0,
+ ["dbcName"] = "ScarletEnclave",
+ ["worldBounds"] = { left=-4050.00, right=-7209.00, top=3087.00, bottom=979.00 },
+ ["names"] = { ["deDE"] = "Scharlachrote Enklave", ["enUS"] = "Scarlet Enclave", ["esES"] = "Enclave Escarlata", ["ptBR"] = "Enclave Scarlet", ["ruRU"] = "Анклав Алого Ордена", ["zhCN"] = "血色领地" },
+ }
+end
+
+-- DBC WMA ID=503 MapID=27 'Sunnyglade'
+if not MTH_DS_Zones[5023] then
+ MTH_DS_Zones[5023] = {
+ ["continent"] = 27,
+ ["parent"] = 27,
+ ["dbcAreaId"] = 5023,
+ ["dbcMapId"] = 27,
+ ["dbcName"] = "Sunnyglade",
+ ["worldBounds"] = { left=719.47, right=-269.16, top=2000.77, bottom=607.60 },
+ ["names"] = { ["deDE"] = "Sonnenhain Tal", ["enUS"] = "Sunnyglade Valley", ["esES"] = "Valle Claro Sol", ["ptBR"] = "Vale Sunnyglade", ["ruRU"] = "Солнечная Долина", ["zhCN"] = "阳光林地山谷" },
+ }
+end
+
+-- DBC WMA ID=504 MapID=0 'Lapidis'
+if not MTH_DS_Zones[409] then
+ MTH_DS_Zones[409] = {
+ ["continent"] = 0,
+ ["parent"] = 0,
+ ["dbcAreaId"] = 409,
+ ["dbcMapId"] = 0,
+ ["dbcName"] = "Lapidis",
+ ["worldBounds"] = { left=4933.33, right=2031.88, top=-11043.48, bottom=-12959.42 },
+ ["names"] = { ["deDE"] = "Insel des Doktor Lapidis", ["enUS"] = "Lapidis Isle", ["esES"] = "Isla Lapidis", ["ptBR"] = "Isla Lapidis", ["ruRU"] = "Остров Доктора Лапидиса", ["zhCN"] = "拉匹迪斯之岛" },
+ }
+end
+
+-- DBC WMA ID=505 MapID=0 'Gillijim'
+if not MTH_DS_Zones[408] then
+ MTH_DS_Zones[408] = {
+ ["continent"] = 0,
+ ["parent"] = 0,
+ ["dbcAreaId"] = 408,
+ ["dbcMapId"] = 0,
+ ["dbcName"] = "Gillijim",
+ ["worldBounds"] = { left=4436.22, right=1344.12, top=-12528.71, bottom=-14575.72 },
+ ["names"] = { ["deDE"] = "Gillijims Insel", ["enUS"] = "Gillijim's Isle", ["esES"] = "Isla de Gillijim", ["ptBR"] = "Ilha de Gillijim", ["ruRU"] = "Остров Гиллиджима", ["zhCN"] = "吉利吉姆之岛" },
+ }
+end
+
+-- DBC WMA ID=507 MapID=1 'TelAbim'
+if not MTH_DS_Zones[5121] then
+ MTH_DS_Zones[5121] = {
+ ["continent"] = 1,
+ ["parent"] = 1,
+ ["dbcAreaId"] = 5121,
+ ["dbcMapId"] = 1,
+ ["dbcName"] = "TelAbim",
+ ["worldBounds"] = { left=-5179.00, right=-8406.00, top=-7184.00, bottom=-9371.00 },
+ ["names"] = { ["deDE"] = "Tel'Abim", ["enUS"] = "Tel'Abim", ["esES"] = "Tel'Abim", ["ptBR"] = "Tel'Abim", ["ruRU"] = "Тель'Абим", ["zhCN"] = "泰拉比姆" },
+ }
+end
+
+-- DBC WMA ID=510 MapID=0 'Gilneas'
+if not MTH_DS_Zones[5179] then
+ MTH_DS_Zones[5179] = {
+ ["continent"] = 0,
+ ["parent"] = 0,
+ ["dbcAreaId"] = 5179,
+ ["dbcMapId"] = 0,
+ ["dbcName"] = "Gilneas",
+ ["worldBounds"] = { left=3253.00, right=-413.00, top=-359.00, bottom=-2801.00 },
+ ["names"] = { ["deDE"] = "Gilneas", ["enUS"] = "Gilneas", ["esES"] = "Gilneas", ["ptBR"] = "Gilneas", ["ruRU"] = "Гилнеас", ["zhCN"] = "吉尔尼斯" },
+ }
+end
+
+-- DBC WMA ID=511 MapID=1 'Icepoint'
+if not MTH_DS_Zones[5024] then
+ MTH_DS_Zones[5024] = {
+ ["continent"] = 1,
+ ["parent"] = 1,
+ ["dbcAreaId"] = 5024,
+ ["dbcMapId"] = 1,
+ ["dbcName"] = "Icepoint",
+ ["worldBounds"] = { left=-5595.00, right=-7203.00, top=14405.00, bottom=13330.00 },
+ ["names"] = { ["deDE"] = "Eisfels", ["enUS"] = "Icepoint Rock", ["esES"] = "Roca Punto de Hielo", ["ptBR"] = "Roca Punto de Hielo", ["ruRU"] = "Ледяная Скала", ["zhCN"] = "冰点岩" },
+ }
+end
+
+-- DBC WMA ID=512 MapID=1 'BlackstoneIsland'
+if not MTH_DS_Zones[5536] then
+ MTH_DS_Zones[5536] = {
+ ["continent"] = 1,
+ ["parent"] = 1,
+ ["dbcAreaId"] = 5536,
+ ["dbcMapId"] = 1,
+ ["dbcName"] = "BlackstoneIsland",
+ ["worldBounds"] = { left=-6274.00, right=-8746.00, top=799.00, bottom=-866.00 },
+ ["names"] = { ["deDE"] = "Schwarzstein Insel", ["enUS"] = "Blackstone Island", ["esES"] = "Isla Piedra Negra", ["ptBR"] = "Ilha Negrito", ["ruRU"] = "Остров Черного Камня", ["zhCN"] = "黑石岛" },
+ }
+end
+
+-- DBC WMA ID=513 MapID=0 'ThalassianHighlands'
+if not MTH_DS_Zones[5225] then
+ MTH_DS_Zones[5225] = {
+ ["continent"] = 0,
+ ["parent"] = 0,
+ ["dbcAreaId"] = 5225,
+ ["dbcMapId"] = 0,
+ ["dbcName"] = "ThalassianHighlands",
+ ["worldBounds"] = { left=-1005.00, right=-4087.00, top=4952.00, bottom=2891.00 },
+ ["names"] = { ["deDE"] = "Thalassisches Hochland", ["enUS"] = "Thalassian Highlands", ["esES"] = "Tierras Altas Thalassianas", ["ptBR"] = "Terras Altas Thalassianas", ["ruRU"] = "Талассийские Высоты", ["zhCN"] = "萨拉斯高地" },
+ }
+end
+
+-- DBC WMA ID=514 MapID=0 'DeadminesEntrance'
+if not MTH_DS_Zones[1581] then
+ MTH_DS_Zones[1581] = {
+ ["continent"] = 0,
+ ["parent"] = 0,
+ ["dbcAreaId"] = 1581,
+ ["dbcMapId"] = 0,
+ ["dbcName"] = "DeadminesEntrance",
+ ["worldBounds"] = { left=1793.18, right=1343.29, top=-11054.94, bottom=-11354.86 },
+ ["names"] = { ["deDE"] = "Die Todesminen", ["enUS"] = "The Deadmines", ["esES"] = "Las Minas de la Muerte", ["ptBR"] = "Minas Mortas", ["ruRU"] = "Мертвые Копи", ["zhCN"] = "死亡矿井" },
+ }
+end
+
+-- DBC WMA ID=516 MapID=1 'WailingCavernsEntrance'
+if not MTH_DS_Zones[718] then
+ MTH_DS_Zones[718] = {
+ ["continent"] = 1,
+ ["parent"] = 1,
+ ["dbcAreaId"] = 718,
+ ["dbcMapId"] = 1,
+ ["dbcName"] = "WailingCavernsEntrance",
+ ["worldBounds"] = { left=-1900.87, right=-2473.65, top=-488.64, bottom=-870.49 },
+ ["names"] = { ["deDE"] = "Höhlen des Wehklagens", ["enUS"] = "Wailing Caverns", ["esES"] = "Cuevas de los Lamentos", ["ptBR"] = "Caverna Ululante", ["ruRU"] = "Пещеры Стенаний", ["zhCN"] = "哀嚎洞穴" },
+ }
+end
+
+-- DBC WMA ID=517 MapID=1 'MaraudonEntrance'
+if not MTH_DS_Zones[2100] then
+ MTH_DS_Zones[2100] = {
+ ["continent"] = 1,
+ ["parent"] = 1,
+ ["dbcAreaId"] = 2100,
+ ["dbcMapId"] = 1,
+ ["dbcName"] = "MaraudonEntrance",
+ ["worldBounds"] = { left=3208.00, right=2384.00, top=-1096.00, bottom=-1646.00 },
+ ["names"] = { ["deDE"] = "Maraudon", ["enUS"] = "Maraudon", ["esES"] = "Maraudon", ["ptBR"] = "Maraudon", ["ruRU"] = "Мародон", ["zhCN"] = "玛拉顿" },
+ }
+end
+
+-- DBC WMA ID=518 MapID=0 'GnomereganEntrance'
+if not MTH_DS_Zones[721] then
+ MTH_DS_Zones[721] = {
+ ["continent"] = 0,
+ ["parent"] = 0,
+ ["dbcAreaId"] = 721,
+ ["dbcMapId"] = 0,
+ ["dbcName"] = "GnomereganEntrance",
+ ["worldBounds"] = { left=1027.64, right=456.45, top=-4806.32, bottom=-5185.46 },
+ ["names"] = { ["deDE"] = "Gnomeregan", ["enUS"] = "Gnomeregan", ["esES"] = "Gnomeregan", ["ptBR"] = "Gnomeregan", ["ruRU"] = "Гномреган", ["zhCN"] = "诺莫瑞根" },
+ }
+end
+
+-- DBC WMA ID=519 MapID=0 'BlackrockMountain'
+if not MTH_DS_Zones[25] then
+ MTH_DS_Zones[25] = {
+ ["continent"] = 0,
+ ["parent"] = 0,
+ ["dbcAreaId"] = 25,
+ ["dbcMapId"] = 0,
+ ["dbcName"] = "BlackrockMountain",
+ ["worldBounds"] = { left=-760.94, right=-1472.50, top=-7327.82, bottom=-7796.50 },
+ ["names"] = { ["deDE"] = "Der Schwarzfels", ["enUS"] = "Blackrock Mountain", ["esES"] = "Montaña Roca Negra", ["ptBR"] = "Montanha Rocha Negra", ["ruRU"] = "Черная Гора", ["zhCN"] = "黑石山" },
+ }
+end
+
+-- DBC WMA ID=520 MapID=0 'ScarletMonasteryEntrance'
+if not MTH_DS_Zones[796] then
+ MTH_DS_Zones[796] = {
+ ["continent"] = 0,
+ ["parent"] = 0,
+ ["dbcAreaId"] = 796,
+ ["dbcMapId"] = 0,
+ ["dbcName"] = "ScarletMonasteryEntrance",
+ ["worldBounds"] = { left=-659.96, right=-863.62, top=2947.37, bottom=2812.33 },
+ ["names"] = { ["deDE"] = "Das Scharlachrote Kloster", ["enUS"] = "Scarlet Monastery", ["esES"] = "Monasterio Escarlata", ["ptBR"] = "Monastério Escarlate", ["ruRU"] = "Монастырь Алого Ордена", ["zhCN"] = "血色修道院" },
+ }
+end
+
+-- DBC WMA ID=521 MapID=0 'UldamanEntrance'
+if not MTH_DS_Zones[1337] then
+ MTH_DS_Zones[1337] = {
+ ["continent"] = 0,
+ ["parent"] = 0,
+ ["dbcAreaId"] = 1337,
+ ["dbcMapId"] = 0,
+ ["dbcName"] = "UldamanEntrance",
+ ["worldBounds"] = { left=-2747.15, right=-3310.46, top=-5953.41, bottom=-6329.51 },
+ ["names"] = { ["deDE"] = "Uldaman", ["enUS"] = "Uldaman", ["esES"] = "Uldaman", ["ptBR"] = "Uldaman", ["ruRU"] = "Ульдаман", ["zhCN"] = "奥达曼" },
+ }
+end
+
+-- DBC WMA ID=522 MapID=1 'AhnQirajEntrance'
+if not MTH_DS_Zones[3478] then
+ MTH_DS_Zones[3478] = {
+ ["continent"] = 1,
+ ["parent"] = 1,
+ ["dbcAreaId"] = 3478,
+ ["dbcMapId"] = 1,
+ ["dbcName"] = "AhnQirajEntrance",
+ ["worldBounds"] = { left=3932.67, right=-206.35, top=-8005.20, bottom=-10951.25 },
+ ["names"] = { ["deDE"] = "Tore von Ahn'Qiraj", ["enUS"] = "Gates of Ahn'Qiraj", ["esES"] = "Puertas de Ahn'Qiraj", ["ptBR"] = "Portões de Ahn'Qiraj", ["ruRU"] = "Врата Ан'Киража", ["zhCN"] = "安其拉之门" },
+ }
+end
+
+-- DBC WMA ID=523 MapID=1 'CavernsOfTime'
+if not MTH_DS_Zones[1941] then
+ MTH_DS_Zones[1941] = {
+ ["continent"] = 1,
+ ["parent"] = 1,
+ ["dbcAreaId"] = 1941,
+ ["dbcMapId"] = 1,
+ ["dbcName"] = "CavernsOfTime",
+ ["worldBounds"] = { left=-3695.85, right=-5044.09, top=-8023.09, bottom=-8911.18 },
+ ["names"] = { ["deDE"] = "Höhlen der Zeit", ["enUS"] = "Caverns of Time", ["esES"] = "Cavernas del Tiempo", ["ptBR"] = "Cavernas do Tempo", ["ruRU"] = "Пещеры Времени", ["zhCN"] = "时光之穴" },
+ }
+end
+
+-- DBC WMA ID=601 MapID=813 'WinterVeilVale'
+if not MTH_DS_Zones[5130] then
+ MTH_DS_Zones[5130] = {
+ ["continent"] = 813,
+ ["parent"] = 813,
+ ["dbcAreaId"] = 5130,
+ ["dbcMapId"] = 813,
+ ["dbcName"] = "WinterVeilVale",
+ ["worldBounds"] = { left=1916.00, right=484.00, top=-2332.00, bottom=-3309.00 },
+ ["names"] = { ["deDE"] = "Winterhauchtal", ["enUS"] = "Winter Veil Vale", ["esES"] = "Valle del Velo Invernal", ["ptBR"] = "Vale do Véu de Inverno", ["ruRU"] = "Долина Зимнего Покрова", ["zhCN"] = "冬幕谷" },
+ }
+end
+
+-- DBC WMA ID=603 MapID=389 'Ragefire'
+if not MTH_DS_Zones[2437] then
+ MTH_DS_Zones[2437] = {
+ ["continent"] = 389,
+ ["parent"] = 389,
+ ["dbcAreaId"] = 2437,
+ ["dbcMapId"] = 389,
+ ["dbcName"] = "Ragefire",
+ ["worldBounds"] = { left=452.87, right=-285.99, top=39.62, bottom=-452.95 },
+ ["names"] = { ["deDE"] = "Der Flammenschlund", ["enUS"] = "Ragefire Chasm", ["esES"] = "Sima Ígnea", ["ptBR"] = "Cavernas Ígneas", ["ruRU"] = "Огненная Пропасть", ["zhCN"] = "怒焰裂谷" },
+ }
+end
+
+-- DBC WMA ID=605 MapID=209 'ZulFarrak'
+if not MTH_DS_Zones[1176] then
+ MTH_DS_Zones[1176] = {
+ ["continent"] = 209,
+ ["parent"] = 209,
+ ["dbcAreaId"] = 1176,
+ ["dbcMapId"] = 209,
+ ["dbcName"] = "ZulFarrak",
+ ["worldBounds"] = { left=1625.00, right=241.67, top=2052.08, bottom=1129.17 },
+ ["names"] = { ["deDE"] = "Zul'Farrak", ["enUS"] = "Zul'Farrak", ["esES"] = "Zul'Farrak", ["ptBR"] = "Zul'farrak", ["ruRU"] = "Зул'Фаррак", ["zhCN"] = "祖尔法拉克" },
+ }
+end
+
+-- DBC WMA ID=607 MapID=109 'TheTempleOfAtalHakkar'
+if not MTH_DS_Zones[1477] then
+ MTH_DS_Zones[1477] = {
+ ["continent"] = 109,
+ ["parent"] = 109,
+ ["dbcAreaId"] = 1477,
+ ["dbcMapId"] = 109,
+ ["dbcName"] = "TheTempleOfAtalHakkar",
+ ["worldBounds"] = { left=442.76, right=-252.27, top=-255.17, bottom=-718.52 },
+ ["names"] = { ["deDE"] = "Der Tempel von Atal'Hakkar", ["enUS"] = "The Temple of Atal'Hakkar", ["esES"] = "El Templo de Atal'hakkar", ["ptBR"] = "Templo de Atal'hakkar", ["ruRU"] = "Храм Атал'Хаккара", ["zhCN"] = "阿塔哈卡神庙" },
+ }
+end
+
+-- DBC WMA ID=609 MapID=48 'BlackFathomDeeps'
+if not MTH_DS_Zones[719] then
+ MTH_DS_Zones[719] = {
+ ["continent"] = 48,
+ ["parent"] = 48,
+ ["dbcAreaId"] = 719,
+ ["dbcMapId"] = 48,
+ ["dbcName"] = "BlackFathomDeeps",
+ ["worldBounds"] = { left=485.41, right=-736.46, top=-107.91, bottom=-914.33 },
+ ["names"] = { ["deDE"] = "Tiefschwarze Grotte", ["enUS"] = "Blackfathom Deeps", ["esES"] = "Cavernas de Brazanegra", ["ptBR"] = "Profundezas Negras", ["ruRU"] = "Непроглядная Пучина", ["zhCN"] = "黑暗深渊" },
+ }
+end
+
+-- DBC WMA ID=611 MapID=34 'TheStockade'
+if not MTH_DS_Zones[717] then
+ MTH_DS_Zones[717] = {
+ ["continent"] = 34,
+ ["parent"] = 34,
+ ["dbcAreaId"] = 717,
+ ["dbcMapId"] = 34,
+ ["dbcName"] = "TheStockade",
+ ["worldBounds"] = { left=189.82, right=-188.33, top=220.63, bottom=-31.47 },
+ ["names"] = { ["deDE"] = "Das Verlies", ["enUS"] = "The Stockade", ["esES"] = "Las Mazmorras", ["ptBR"] = "O Cárcere", ["ruRU"] = "Тюрьма", ["zhCN"] = "监狱" },
+ }
+end
+
+-- DBC WMA ID=613 MapID=90 'Gnomeregan'
+if not MTH_DS_Zones[721] then
+ MTH_DS_Zones[721] = {
+ ["continent"] = 90,
+ ["parent"] = 90,
+ ["dbcAreaId"] = 721,
+ ["dbcMapId"] = 90,
+ ["dbcName"] = "Gnomeregan",
+ ["worldBounds"] = { left=491.90, right=-277.77, top=-180.89, bottom=-694.00 },
+ ["names"] = { ["deDE"] = "Gnomeregan", ["enUS"] = "Gnomeregan", ["esES"] = "Gnomeregan", ["ptBR"] = "Gnomeregan", ["ruRU"] = "Гномреган", ["zhCN"] = "诺莫瑞根" },
+ }
+end
+
+-- DBC WMA ID=615 MapID=70 'Uldaman'
+if not MTH_DS_Zones[1337] then
+ MTH_DS_Zones[1337] = {
+ ["continent"] = 70,
+ ["parent"] = 70,
+ ["dbcAreaId"] = 1337,
+ ["dbcMapId"] = 70,
+ ["dbcName"] = "Uldaman",
+ ["worldBounds"] = { left=645.12, right=-248.55, top=204.31, bottom=-391.47 },
+ ["names"] = { ["deDE"] = "Uldaman", ["enUS"] = "Uldaman", ["esES"] = "Uldaman", ["ptBR"] = "Uldaman", ["ruRU"] = "Ульдаман", ["zhCN"] = "奥达曼" },
+ }
+end
+
+-- DBC WMA ID=617 MapID=409 'MoltenCore'
+if not MTH_DS_Zones[2717] then
+ MTH_DS_Zones[2717] = {
+ ["continent"] = 409,
+ ["parent"] = 409,
+ ["dbcAreaId"] = 2717,
+ ["dbcMapId"] = 409,
+ ["dbcName"] = "MoltenCore",
+ ["worldBounds"] = { left=-11.00, right=-1506.00, top=1439.00, bottom=456.00 },
+ ["names"] = { ["deDE"] = "Geschmolzener Kern", ["enUS"] = "Molten Core", ["esES"] = "Núcleo de Magma", ["ptBR"] = "Núcleo Derretido", ["ruRU"] = "Огненные Недра", ["zhCN"] = "熔火之心" },
+ }
+end
+
+-- DBC WMA ID=619 MapID=309 'ZulGurub'
+if not MTH_DS_Zones[1977] then
+ MTH_DS_Zones[1977] = {
+ ["continent"] = 309,
+ ["parent"] = 309,
+ ["dbcAreaId"] = 1977,
+ ["dbcMapId"] = 309,
+ ["dbcName"] = "ZulGurub",
+ ["worldBounds"] = { left=-612.50, right=-2733.33, top=-11225.00, bottom=-12639.58 },
+ ["names"] = { ["deDE"] = "Zul'Gurub", ["enUS"] = "Zul'Gurub", ["esES"] = "Zul'Gurub", ["ptBR"] = "Zul'gurub", ["ruRU"] = "Зул'Гуруб", ["zhCN"] = "祖尔格拉布" },
+ }
+end
+
+-- DBC WMA ID=621 MapID=429 'DireMaul'
+if not MTH_DS_Zones[2557] then
+ MTH_DS_Zones[2557] = {
+ ["continent"] = 429,
+ ["parent"] = 429,
+ ["dbcAreaId"] = 2557,
+ ["dbcMapId"] = 429,
+ ["dbcName"] = "DireMaul",
+ ["worldBounds"] = { left=887.50, right=-387.50, top=1050.00, bottom=200.00 },
+ ["names"] = { ["deDE"] = "Düsterbruch", ["enUS"] = "Dire Maul", ["esES"] = "La Masacre", ["ptBR"] = "Gládio Cruel", ["ruRU"] = "Забытый Город", ["zhCN"] = "厄运之槌" },
+ }
+end
+
+-- DBC WMA ID=623 MapID=230 'BlackrockDepths'
+if not MTH_DS_Zones[1584] then
+ MTH_DS_Zones[1584] = {
+ ["continent"] = 230,
+ ["parent"] = 230,
+ ["dbcAreaId"] = 1584,
+ ["dbcMapId"] = 230,
+ ["dbcName"] = "BlackrockDepths",
+ ["worldBounds"] = { left=875.00, right=-1110.00, top=1513.00, bottom=245.00 },
+ ["names"] = { ["deDE"] = "Schwarzfelstiefen", ["enUS"] = "Blackrock Depths", ["esES"] = "Profundidades de Roca Negra", ["ptBR"] = "Abismo Rocha Negra", ["ruRU"] = "Глубины Черной Горы", ["zhCN"] = "黑石深渊" },
+ }
+end
+
+-- DBC WMA ID=625 MapID=509 'RuinsofAhnQiraj'
+if not MTH_DS_Zones[3429] then
+ MTH_DS_Zones[3429] = {
+ ["continent"] = 509,
+ ["parent"] = 509,
+ ["dbcAreaId"] = 3429,
+ ["dbcMapId"] = 509,
+ ["dbcName"] = "RuinsofAhnQiraj",
+ ["worldBounds"] = { left=3035.42, right=522.92, top=-8233.33, bottom=-9908.33 },
+ ["names"] = { ["deDE"] = "Ruinen von Ahn'Qiraj", ["enUS"] = "Ruins of Ahn'Qiraj", ["esES"] = "Ruinas de Ahn'Qiraj", ["ptBR"] = "Ruínas de Ahn'qiraj", ["ruRU"] = "Руины Ан'Киража", ["zhCN"] = "安其拉废墟" },
+ }
+end
+
+-- DBC WMA ID=627 MapID=249 'OnyxiasLair'
+if not MTH_DS_Zones[2159] then
+ MTH_DS_Zones[2159] = {
+ ["continent"] = 249,
+ ["parent"] = 249,
+ ["dbcAreaId"] = 2159,
+ ["dbcMapId"] = 249,
+ ["dbcName"] = "OnyxiasLair",
+ ["worldBounds"] = { left=111.38, right=-371.73, top=98.25, bottom=-223.83 },
+ ["names"] = { ["deDE"] = "Onyxias Hort", ["enUS"] = "Onyxia's Lair", ["esES"] = "Guarida de Onyxia", ["ptBR"] = "Covil da Onyxia", ["ruRU"] = "Логово Ониксии", ["zhCN"] = "奥妮克希亚的巢穴" },
+ }
+end
+
+-- DBC WMA ID=629 MapID=229 'BlackrockSpire'
+if not MTH_DS_Zones[1583] then
+ MTH_DS_Zones[1583] = {
+ ["continent"] = 229,
+ ["parent"] = 229,
+ ["dbcAreaId"] = 1583,
+ ["dbcMapId"] = 229,
+ ["dbcName"] = "BlackrockSpire",
+ ["worldBounds"] = { left=10.59, right=-876.25, top=304.40, bottom=-286.83 },
+ ["names"] = { ["deDE"] = "Schwarzfelsspitze", ["enUS"] = "Blackrock Spire", ["esES"] = "Cumbre de Roca Negra", ["ptBR"] = "Pico da Rocha Negra", ["ruRU"] = "Пик Черной Горы", ["zhCN"] = "黑石塔" },
+ }
+end
+
+-- DBC WMA ID=631 MapID=43 'WailingCaverns'
+if not MTH_DS_Zones[718] then
+ MTH_DS_Zones[718] = {
+ ["continent"] = 43,
+ ["parent"] = 43,
+ ["dbcAreaId"] = 718,
+ ["dbcMapId"] = 43,
+ ["dbcName"] = "WailingCaverns",
+ ["worldBounds"] = { left=790.00, right=-380.00, top=215.00, bottom=-570.00 },
+ ["names"] = { ["deDE"] = "Höhlen des Wehklagens", ["enUS"] = "Wailing Caverns", ["esES"] = "Cuevas de los Lamentos", ["ptBR"] = "Caverna Ululante", ["ruRU"] = "Пещеры Стенаний", ["zhCN"] = "哀嚎洞穴" },
+ }
+end
+
+-- DBC WMA ID=633 MapID=349 'Maraudon'
+if not MTH_DS_Zones[2100] then
+ MTH_DS_Zones[2100] = {
+ ["continent"] = 349,
+ ["parent"] = 349,
+ ["dbcAreaId"] = 2100,
+ ["dbcMapId"] = 349,
+ ["dbcName"] = "Maraudon",
+ ["worldBounds"] = { left=485.41, right=-1626.68, top=1199.76, bottom=-211.13 },
+ ["names"] = { ["deDE"] = "Maraudon", ["enUS"] = "Maraudon", ["esES"] = "Maraudon", ["ptBR"] = "Maraudon", ["ruRU"] = "Мародон", ["zhCN"] = "玛拉顿" },
+ }
+end
+
+-- DBC WMA ID=635 MapID=469 'BlackwingLair'
+if not MTH_DS_Zones[2677] then
+ MTH_DS_Zones[2677] = {
+ ["continent"] = 469,
+ ["parent"] = 469,
+ ["dbcAreaId"] = 2677,
+ ["dbcMapId"] = 469,
+ ["dbcName"] = "BlackwingLair",
+ ["worldBounds"] = { left=-844.62, right=-1344.05, top=-7394.12, bottom=-7727.07 },
+ ["names"] = { ["deDE"] = "Pechschwingenhort", ["enUS"] = "Blackwing Lair", ["esES"] = "Guarida de Alanegra", ["ptBR"] = "Covil Asa Negra", ["ruRU"] = "Логово Крыла Тьмы", ["zhCN"] = "黑翼之巢" },
+ }
+end
+
+-- DBC WMA ID=637 MapID=36 'TheDeadmines'
+if not MTH_DS_Zones[5138] then
+ MTH_DS_Zones[5138] = {
+ ["continent"] = 36,
+ ["parent"] = 36,
+ ["dbcAreaId"] = 5138,
+ ["dbcMapId"] = 36,
+ ["dbcName"] = "TheDeadmines",
+ ["worldBounds"] = { left=-322.94, right=-979.53, top=36.93, bottom=-398.04 },
+ ["names"] = { ["deDE"] = "Die Todesminen", ["enUS"] = "The Deadmines", ["esES"] = "Las Minas de la Muerte", ["ptBR"] = "Minas Mortas", ["ruRU"] = "Мертвые Копи", ["zhCN"] = "死亡矿井" },
+ }
+end
+
+-- DBC WMA ID=639 MapID=129 'RazorfenDowns'
+if not MTH_DS_Zones[722] then
+ MTH_DS_Zones[722] = {
+ ["continent"] = 129,
+ ["parent"] = 129,
+ ["dbcAreaId"] = 722,
+ ["dbcMapId"] = 129,
+ ["dbcName"] = "RazorfenDowns",
+ ["worldBounds"] = { left=1271.00, right=390.00, top=2683.00, bottom=2094.00 },
+ ["names"] = { ["deDE"] = "Hügel der Klingenhauer", ["enUS"] = "Razorfen Downs", ["esES"] = "Zahúrda Rajacieno", ["ptBR"] = "Urzal dos Mortos", ["ruRU"] = "Курганы Иглошкурых", ["zhCN"] = "剃刀高地" },
+ }
+end
+
+-- DBC WMA ID=641 MapID=47 'RazorfenKraul'
+if not MTH_DS_Zones[491] then
+ MTH_DS_Zones[491] = {
+ ["continent"] = 47,
+ ["parent"] = 47,
+ ["dbcAreaId"] = 491,
+ ["dbcMapId"] = 47,
+ ["dbcName"] = "RazorfenKraul",
+ ["worldBounds"] = { left=2058.92, right=1322.47, top=2349.64, bottom=1858.68 },
+ ["names"] = { ["deDE"] = "Kral der Klingenhauer", ["enUS"] = "Razorfen Kraul", ["esES"] = "Horado Rajacieno", ["ptBR"] = "Urzal dos Tuscos", ["ruRU"] = "Лабиринты Иглошкурых", ["zhCN"] = "剃刀沼泽" },
+ }
+end
+
+-- DBC WMA ID=643 MapID=189 'ScarletMonastery'
+if not MTH_DS_Zones[5136] then
+ MTH_DS_Zones[5136] = {
+ ["continent"] = 189,
+ ["parent"] = 189,
+ ["dbcAreaId"] = 5136,
+ ["dbcMapId"] = 189,
+ ["dbcName"] = "ScarletMonastery",
+ ["worldBounds"] = { left=1567.97, right=947.99, top=2030.18, bottom=1616.86 },
+ ["names"] = { ["deDE"] = "Friedhof des Scharlachroten Klosters", ["enUS"] = "Scarlet Monastery Graveyard", ["esES"] = "Cementerio Monasterio Escarlata", ["ptBR"] = "Cemitério do Monastério Escarlate", ["ruRU"] = "Кладбище Монастыря Алого Ордена", ["zhCN"] = "血色修道院-墓地" },
+ }
+end
+
+-- DBC WMA ID=644 MapID=189 'ScarletMonastery2f'
+if not MTH_DS_Zones[5135] then
+ MTH_DS_Zones[5135] = {
+ ["continent"] = 189,
+ ["parent"] = 189,
+ ["dbcAreaId"] = 5135,
+ ["dbcMapId"] = 189,
+ ["dbcName"] = "ScarletMonastery2f",
+ ["worldBounds"] = { left=-162.27, right=-482.46, top=307.37, bottom=93.91 },
+ ["names"] = { ["deDE"] = "Bibliothek des Scharlachroten Klosters", ["enUS"] = "Scarlet Monastery Library", ["esES"] = "Biblioteca Monasterio Escarlata", ["ptBR"] = "Biblioteca do Monastério Escarlate", ["ruRU"] = "Библиотека Монастыря Алого Ордена", ["zhCN"] = "血色修道院-图书馆" },
+ }
+end
+
+-- DBC WMA ID=645 MapID=189 'ScarletMonastery3f'
+if not MTH_DS_Zones[5153] then
+ MTH_DS_Zones[5153] = {
+ ["continent"] = 189,
+ ["parent"] = 189,
+ ["dbcAreaId"] = 5153,
+ ["dbcMapId"] = 189,
+ ["dbcName"] = "ScarletMonastery3f",
+ ["worldBounds"] = { left=50.27, right=-562.42, top=2009.10, bottom=1600.64 },
+ ["names"] = { ["deDE"] = "Waffenkammer des Scharlachroten Klosters", ["enUS"] = "Scarlet Monastery Armory", ["esES"] = "Armería Monasterio Escarlata", ["ptBR"] = "Arsenal do Monastério Escarlate", ["ruRU"] = "Оружейная Монастыря Алого Ордена", ["zhCN"] = "血色修道院-军械库" },
+ }
+end
+
+-- DBC WMA ID=646 MapID=189 'ScarletMonastery4f'
+if not MTH_DS_Zones[5163] then
+ MTH_DS_Zones[5163] = {
+ ["continent"] = 189,
+ ["parent"] = 189,
+ ["dbcAreaId"] = 5163,
+ ["dbcMapId"] = 189,
+ ["dbcName"] = "ScarletMonastery4f",
+ ["worldBounds"] = { left=1743.99, right=1040.69, top=1281.29, bottom=812.42 },
+ ["names"] = { ["deDE"] = "Kathedrale des Scharlachroten Klosters", ["enUS"] = "Scarlet Monastery Cathedral", ["esES"] = "Catedral Monasterio Escarlata", ["ptBR"] = "Catedral do Monastério Escarlate", ["ruRU"] = "Собор Монастыря Алого Ордена", ["zhCN"] = "血色修道院-大教堂" },
+ }
+end
+
+-- DBC WMA ID=648 MapID=289 'Scholomance'
+if not MTH_DS_Zones[2057] then
+ MTH_DS_Zones[2057] = {
+ ["continent"] = 289,
+ ["parent"] = 289,
+ ["dbcAreaId"] = 2057,
+ ["dbcMapId"] = 289,
+ ["dbcName"] = "Scholomance",
+ ["worldBounds"] = { left=251.41, right=-68.64, top=317.70, bottom=104.33 },
+ ["names"] = { ["deDE"] = "Scholomance", ["enUS"] = "Scholomance", ["esES"] = "Scholomance", ["ptBR"] = "Scolomântia", ["ruRU"] = "Некроситет", ["zhCN"] = "通灵学院" },
+ }
+end
+
+-- DBC WMA ID=650 MapID=33 'ShadowfangKeep'
+if not MTH_DS_Zones[209] then
+ MTH_DS_Zones[209] = {
+ ["continent"] = 33,
+ ["parent"] = 33,
+ ["dbcAreaId"] = 209,
+ ["dbcMapId"] = 33,
+ ["dbcName"] = "ShadowfangKeep",
+ ["worldBounds"] = { left=2436.00, right=2055.00, top=-61.00, bottom=-315.00 },
+ ["names"] = { ["deDE"] = "Burg Schattenfang", ["enUS"] = "Shadowfang Keep", ["esES"] = "Castillo de Colmillo Oscuro", ["ptBR"] = "Bastilha da Presa Negra", ["ruRU"] = "Крепость Темного Клыка", ["zhCN"] = "影牙城堡" },
+ }
+end
+
+-- DBC WMA ID=652 MapID=329 'Stratholme'
+if not MTH_DS_Zones[2017] then
+ MTH_DS_Zones[2017] = {
+ ["continent"] = 329,
+ ["parent"] = 329,
+ ["dbcAreaId"] = 2017,
+ ["dbcMapId"] = 329,
+ ["dbcName"] = "Stratholme",
+ ["worldBounds"] = { left=-2639.83, right=-3825.18, top=4163.90, bottom=3374.04 },
+ ["names"] = { ["deDE"] = "Stratholme", ["enUS"] = "Stratholme", ["esES"] = "Stratholme", ["ptBR"] = "Stratholme", ["ruRU"] = "Стратхольм", ["zhCN"] = "斯坦索姆" },
+ }
+end
+
+-- DBC WMA ID=654 MapID=531 'AhnQiraj'
+if not MTH_DS_Zones[3428] then
+ MTH_DS_Zones[3428] = {
+ ["continent"] = 531,
+ ["parent"] = 531,
+ ["dbcAreaId"] = 3428,
+ ["dbcMapId"] = 531,
+ ["dbcName"] = "AhnQiraj",
+ ["worldBounds"] = { left=2515.63, right=1538.07, top=-8051.80, bottom=-8703.50 },
+ ["names"] = { ["deDE"] = "Ahn'Qiraj", ["enUS"] = "Ahn'Qiraj", ["esES"] = "Ahn'Qiraj", ["ptBR"] = "Ahn'qiraj", ["ruRU"] = "Ан'Кираж", ["zhCN"] = "安其拉" },
+ }
+end
+
+-- DBC WMA ID=655 MapID=531 'AhnQiraj2f'
+if not MTH_DS_Zones[5147] then
+ MTH_DS_Zones[5147] = {
+ ["continent"] = 531,
+ ["parent"] = 531,
+ ["dbcAreaId"] = 5147,
+ ["dbcMapId"] = 531,
+ ["dbcName"] = "AhnQiraj2f",
+ ["worldBounds"] = { left=2915.62, right=138.08, top=-7659.29, bottom=-9510.98 },
+ ["names"] = { ["deDE"] = "Ahn'Qiraj", ["enUS"] = "Ahn'Qiraj", ["esES"] = "Ahn'Qiraj", ["ptBR"] = "Ahn'qiraj", ["ruRU"] = "Ан'Кираж", ["zhCN"] = "安其拉" },
+ }
+end
+
+-- DBC WMA ID=657 MapID=532 'Karazhan'
+if not MTH_DS_Zones[3457] then
+ MTH_DS_Zones[3457] = {
+ ["continent"] = 532,
+ ["parent"] = 532,
+ ["dbcAreaId"] = 3457,
+ ["dbcMapId"] = 532,
+ ["dbcName"] = "Karazhan",
+ ["worldBounds"] = { left=-1614.00, right=-2212.00, top=-10780.00, bottom=-11179.00 },
+ ["names"] = { ["deDE"] = "Turm von Karazhan", ["enUS"] = "Tower of Karazhan", ["esES"] = "Torre de Karazhan", ["ptBR"] = "Torre de Karazhan", ["ruRU"] = "Каражан", ["zhCN"] = "卡拉赞之塔" },
+ }
+end
+
+-- DBC WMA ID=659 MapID=369 'DeeprunTram'
+if not MTH_DS_Zones[2257] then
+ MTH_DS_Zones[2257] = {
+ ["continent"] = 369,
+ ["parent"] = 369,
+ ["dbcAreaId"] = 2257,
+ ["dbcMapId"] = 369,
+ ["dbcName"] = "DeeprunTram",
+ ["worldBounds"] = { left=2623.50, right=2311.50, top=95.50, bottom=-112.50 },
+ ["names"] = { ["deDE"] = "Tiefenbahn", ["enUS"] = "Deeprun Tram", ["esES"] = "Tranvía Subterráneo", ["ptBR"] = "Metrô Correfundo", ["ruRU"] = "Подземный Поезд", ["zhCN"] = "矿道地铁" },
+ }
+end
+
+-- DBC WMA ID=660 MapID=369 'DeeprunTram2f'
+if not MTH_DS_Zones[5144] then
+ MTH_DS_Zones[5144] = {
+ ["continent"] = 369,
+ ["parent"] = 369,
+ ["dbcAreaId"] = 5144,
+ ["dbcMapId"] = 369,
+ ["dbcName"] = "DeeprunTram2f",
+ ["worldBounds"] = { left=187.50, right=-121.50, top=95.50, bottom=-112.50 },
+ ["names"] = { ["deDE"] = "Tiefenbahn", ["enUS"] = "Deeprun Tram", ["esES"] = "Tranvía Subterráneo", ["ptBR"] = "Metrô Correfundo", ["ruRU"] = "Подземный Поезд", ["zhCN"] = "矿道地铁" },
+ }
+end
+
+-- DBC WMA ID=662 MapID=269 'BlackMorass'
+if not MTH_DS_Zones[5204] then
+ MTH_DS_Zones[5204] = {
+ ["continent"] = 269,
+ ["parent"] = 269,
+ ["dbcAreaId"] = 5204,
+ ["dbcMapId"] = 269,
+ ["dbcName"] = "BlackMorass",
+ ["worldBounds"] = { left=7338.47, right=6066.48, top=-1247.55, bottom=-2093.03 },
+ ["names"] = { ["deDE"] = "Der Schwarze Morast", ["enUS"] = "The Black Morass", ["esES"] = "El Morass Negro", ["ptBR"] = "Lamaçal Negro", ["ruRU"] = "Черные Топи", ["zhCN"] = "黑色沼泽" },
+ }
+end
+
+-- DBC WMA ID=663 MapID=269 'BlackMorass2f'
+if not MTH_DS_Zones[2366] then
+ MTH_DS_Zones[2366] = {
+ ["continent"] = 269,
+ ["parent"] = 269,
+ ["dbcAreaId"] = 2366,
+ ["dbcMapId"] = 269,
+ ["dbcName"] = "BlackMorass2f",
+ ["worldBounds"] = { left=7651.85, right=6565.99, top=-1500.47, bottom=-2227.08 },
+ ["names"] = { ["deDE"] = "Der Schwarze Morast", ["enUS"] = "The Black Morass", ["esES"] = "La Ciénaga Negra", ["ptBR"] = "O Morass Negro", ["ruRU"] = "Черные Топи", ["zhCN"] = "黑色沼泽" },
+ }
+end
+
+-- DBC WMA ID=665 MapID=815 'GilneasCity'
+if not MTH_DS_Zones[5208] then
+ MTH_DS_Zones[5208] = {
+ ["continent"] = 815,
+ ["parent"] = 815,
+ ["dbcAreaId"] = 5208,
+ ["dbcMapId"] = 815,
+ ["dbcName"] = "GilneasCity",
+ ["worldBounds"] = { left=3290.32, right=2040.14, top=-760.72, bottom=-1598.16 },
+ ["names"] = { ["deDE"] = "Gilneas", ["enUS"] = "Gilneas City", ["esES"] = "Ciudad Gilneas", ["ptBR"] = "Cidade de Gilneas", ["ruRU"] = "Гилнеас", ["zhCN"] = "吉尔尼斯城" },
+ }
+end
+
+-- DBC WMA ID=667 MapID=533 'Naxxramas'
+if not MTH_DS_Zones[3456] then
+ MTH_DS_Zones[3456] = {
+ ["continent"] = 533,
+ ["parent"] = 533,
+ ["dbcAreaId"] = 3456,
+ ["dbcMapId"] = 533,
+ ["dbcName"] = "Naxxramas",
+ ["worldBounds"] = { left=-2375.27, right=-4366.96, top=3656.70, bottom=2338.28 },
+ ["names"] = { ["deDE"] = "Naxxramas", ["enUS"] = "Naxxramas", ["esES"] = "Naxxramas", ["ptBR"] = "Naxxramas", ["ruRU"] = "Наксрамас", ["zhCN"] = "纳克萨玛斯" },
+ }
+end
+
+-- DBC WMA ID=668 MapID=533 'Naxxramas2f'
+if not MTH_DS_Zones[5148] then
+ MTH_DS_Zones[5148] = {
+ ["continent"] = 533,
+ ["parent"] = 533,
+ ["dbcAreaId"] = 5148,
+ ["dbcMapId"] = 533,
+ ["dbcName"] = "Naxxramas2f",
+ ["worldBounds"] = { left=-4869.36, right=-5521.46, top=3816.56, bottom=3376.89 },
+ ["names"] = { ["deDE"] = "Die Höhere Nekropole", ["enUS"] = "The Upper Necropolis", ["esES"] = "La Necropolis Superior", ["ptBR"] = "Necrópole Superior", ["ruRU"] = "Верхний Некрополь", ["zhCN"] = "上层大墓地" },
+ }
+end
+
+-- DBC WMA ID=670 MapID=802 'CrescentGrove'
+if not MTH_DS_Zones[5077] then
+ MTH_DS_Zones[5077] = {
+ ["continent"] = 802,
+ ["parent"] = 802,
+ ["dbcAreaId"] = 5077,
+ ["dbcMapId"] = 802,
+ ["dbcName"] = "CrescentGrove",
+ ["worldBounds"] = { left=1207.72, right=-1435.49, top=882.98, bottom=-868.18 },
+ ["names"] = { ["deDE"] = "Mondsichelhain", ["enUS"] = "Crescent Grove", ["esES"] = "Claro de la Media Luna", ["ptBR"] = "Bosque Crescente", ["ruRU"] = "Роща Полумесяца", ["zhCN"] = "新月林地" },
+ }
+end
+
+-- DBC WMA ID=672 MapID=808 'HateforgeQuarry'
+if not MTH_DS_Zones[5103] then
+ MTH_DS_Zones[5103] = {
+ ["continent"] = 808,
+ ["parent"] = 808,
+ ["dbcAreaId"] = 5103,
+ ["dbcMapId"] = 808,
+ ["dbcName"] = "HateforgeQuarry",
+ ["worldBounds"] = { left=-3024.33, right=-3776.45, top=-7888.28, bottom=-8398.61 },
+ ["names"] = { ["deDE"] = "Steinbruch der Hassschmiede", ["enUS"] = "Hateforge Quarry", ["esES"] = "Cantera Hateforge", ["ptBR"] = "Pedreira Forja do Ódio", ["ruRU"] = "Карьер Кузни Ненависти", ["zhCN"] = "仇恨熔炉采石场" },
+ }
+end
+
+-- DBC WMA ID=674 MapID=800 'KarazhanCrypt'
+if not MTH_DS_Zones[5086] then
+ MTH_DS_Zones[5086] = {
+ ["continent"] = 800,
+ ["parent"] = 800,
+ ["dbcAreaId"] = 5086,
+ ["dbcMapId"] = 800,
+ ["dbcName"] = "KarazhanCrypt",
+ ["worldBounds"] = { left=-1302.51, right=-1849.26, top=-10916.17, bottom=-11308.14 },
+ ["names"] = { ["deDE"] = "Karazhan Krypta", ["enUS"] = "Karazhan Crypt", ["esES"] = "Cripta de Karazhan", ["ptBR"] = "Cripta de Karazhan", ["ruRU"] = "Склеп Каражана", ["zhCN"] = "卡拉赞墓穴" },
+ }
+end
+
+-- DBC WMA ID=676 MapID=35 'StormwindVault'
+if not MTH_DS_Zones[5087] then
+ MTH_DS_Zones[5087] = {
+ ["continent"] = 35,
+ ["parent"] = 35,
+ ["dbcAreaId"] = 5087,
+ ["dbcMapId"] = 35,
+ ["dbcName"] = "StormwindVault",
+ ["worldBounds"] = { left=314.34, right=-40.16, top=89.30, bottom=-145.44 },
+ ["names"] = { ["deDE"] = "Gewölbe von Sturmwind", ["enUS"] = "Stormwind Vault", ["esES"] = "Cámara de Ventormenta", ["ptBR"] = "Cofre de Ventobravo", ["ruRU"] = "Тюрьма Штормграда", ["zhCN"] = "暴风城地牢" },
+ }
+end
+
+-- DBC WMA ID=678 MapID=807 'EmeraldSanctum'
+if not MTH_DS_Zones[5097] then
+ MTH_DS_Zones[5097] = {
+ ["continent"] = 807,
+ ["parent"] = 807,
+ ["dbcAreaId"] = 5097,
+ ["dbcMapId"] = 807,
+ ["dbcName"] = "EmeraldSanctum",
+ ["worldBounds"] = { left=3939.10, right=2666.00, top=3519.72, bottom=2666.00 },
+ ["names"] = { ["deDE"] = "Smaragdsanktum", ["enUS"] = "Emerald Sanctum", ["esES"] = "Sanctum Esmeralda", ["ptBR"] = "Santuário Esmeralda", ["ruRU"] = "Изумрудное Святилище", ["zhCN"] = "翡翠圣殿" },
+ }
+end
+
+-- DBC WMA ID=680 MapID=801 'Moomoo'
+if not MTH_DS_Zones[5053] then
+ MTH_DS_Zones[5053] = {
+ ["continent"] = 801,
+ ["parent"] = 801,
+ ["dbcAreaId"] = 5053,
+ ["dbcMapId"] = 801,
+ ["dbcName"] = "Moomoo",
+ ["worldBounds"] = { left=17296.30, right=16288.62, top=17158.52, bottom=16486.73 },
+ ["names"] = { ["deDE"] = "Moomoo Hain", ["enUS"] = "Moomoo Grove", ["esES"] = "Claro Moomoo", ["ptBR"] = "Bosque Moomoo", ["ruRU"] = "Роща Муумуу", ["zhCN"] = "奶牛树林" },
+ }
+end
+
+-- DBC WMA ID=682 MapID=814 'UpperKarazhan'
+if not MTH_DS_Zones[3457] then
+ MTH_DS_Zones[3457] = {
+ ["continent"] = 814,
+ ["parent"] = 814,
+ ["dbcAreaId"] = 3457,
+ ["dbcMapId"] = 814,
+ ["dbcName"] = "UpperKarazhan",
+ ["worldBounds"] = { left=-1378.00, right=-2201.00, top=-10887.00, bottom=-11436.00 },
+ ["names"] = { ["deDE"] = "Turm von Karazhan", ["enUS"] = "Tower of Karazhan", ["esES"] = "Torre de Karazhan", ["ptBR"] = "Torre de Karazhan", ["ruRU"] = "Каражан", ["zhCN"] = "卡拉赞之塔" },
+ }
+end
+
+-- DBC WMA ID=683 MapID=814 'UpperKarazhan2f'
+if not MTH_DS_Zones[5557] then
+ MTH_DS_Zones[5557] = {
+ ["continent"] = 814,
+ ["parent"] = 814,
+ ["dbcAreaId"] = 5557,
+ ["dbcMapId"] = 814,
+ ["dbcName"] = "UpperKarazhan2f",
+ ["worldBounds"] = { left=-1483.00, right=-4283.00, top=-5800.00, bottom=-7668.00 },
+ ["names"] = { ["deDE"] = "Der Fels der Verwüstung", ["enUS"] = "The Rock of Desolation", ["esES"] = "La Roca de la Desolación", ["ptBR"] = "A Pedra da Desolação", ["ruRU"] = "Скала Запустения", ["zhCN"] = "荒芜巨岩" },
+ }
+end
+
+-- DBC WMA ID=684 MapID=0 'GrimReaches'
+if not MTH_DS_Zones[5602] then
+ MTH_DS_Zones[5602] = {
+ ["continent"] = 0,
+ ["parent"] = 0,
+ ["dbcAreaId"] = 5602,
+ ["dbcMapId"] = 0,
+ ["dbcName"] = "GrimReaches",
+ ["worldBounds"] = { left=-2072.00, right=-7459.00, top=-2904.00, bottom=-6488.00 },
+ ["names"] = { ["deDE"] = "Düsterweiten", ["enUS"] = "Grim Reaches", ["esES"] = "Territorios Sombríos", ["ptBR"] = "Recônditos Sombrios", ["ruRU"] = "Пределы Мрака", ["zhCN"] = "冷酷海岸" },
+ }
+end
+
+-- DBC WMA ID=685 MapID=0 'Balor'
+if not MTH_DS_Zones[5561] then
+ MTH_DS_Zones[5561] = {
+ ["continent"] = 0,
+ ["parent"] = 0,
+ ["dbcAreaId"] = 5561,
+ ["dbcMapId"] = 0,
+ ["dbcName"] = "Balor",
+ ["worldBounds"] = { left=4728.00, right=1630.00, top=-7577.00, bottom=-9645.00 },
+ ["names"] = { ["deDE"] = "Balor", ["enUS"] = "Balor", ["esES"] = "Balor", ["ptBR"] = "Balor", ["ruRU"] = "Балор", ["zhCN"] = "巴洛" },
+ }
+end
+
+-- DBC WMA ID=686 MapID=0 'Northwind'
+if not MTH_DS_Zones[5581] then
+ MTH_DS_Zones[5581] = {
+ ["continent"] = 0,
+ ["parent"] = 0,
+ ["dbcAreaId"] = 5581,
+ ["dbcMapId"] = 0,
+ ["dbcName"] = "Northwind",
+ ["worldBounds"] = { left=2258.00, right=-983.00, top=-6327.00, bottom=-8484.00 },
+ ["names"] = { ["deDE"] = "Nordwind", ["enUS"] = "Northwind", ["esES"] = "Viento Norte", ["ptBR"] = "Vento Norte", ["ruRU"] = "Северный Ветер", ["zhCN"] = "北风领" },
+ }
+end
+
+-- DBC WMA ID=689 MapID=1 'DireMaulEntrance'
+if not MTH_DS_Zones[2557] then
+ MTH_DS_Zones[2557] = {
+ ["continent"] = 1,
+ ["parent"] = 1,
+ ["dbcAreaId"] = 2557,
+ ["dbcMapId"] = 1,
+ ["dbcName"] = "DireMaulEntrance",
+ ["worldBounds"] = { left=2014.00, right=690.00, top=-3401.00, bottom=-4270.00 },
+ ["names"] = { ["deDE"] = "Düsterbruch", ["enUS"] = "Dire Maul", ["esES"] = "La Masacre", ["ptBR"] = "Gládio Cruel", ["ruRU"] = "Забытый Город", ["zhCN"] = "厄运之槌" },
+ }
+end
+
+-- DBC WMA ID=691 MapID=816 'DragonmawRetreat'
+if not MTH_DS_Zones[5601] then
+ MTH_DS_Zones[5601] = {
+ ["continent"] = 816,
+ ["parent"] = 816,
+ ["dbcAreaId"] = 5601,
+ ["dbcMapId"] = 816,
+ ["dbcName"] = "DragonmawRetreat",
+ ["worldBounds"] = { left=-3428.00, right=-5062.00, top=-5599.00, bottom=-6672.00 },
+ ["names"] = { ["deDE"] = "Drachenmal Zuflucht", ["enUS"] = "Dragonmaw Retreat", ["esES"] = "Retiro Faucedraco", ["ptBR"] = "Retiro Presa do Dragão", ["ruRU"] = "Приют Драконьей Пасти", ["zhCN"] = "龙喉居所" },
+ }
+end
+
+-- DBC WMA ID=693 MapID=818 'StormwroughtRuins'
+if not MTH_DS_Zones[5628] then
+ MTH_DS_Zones[5628] = {
+ ["continent"] = 818,
+ ["parent"] = 818,
+ ["dbcAreaId"] = 5628,
+ ["dbcMapId"] = 818,
+ ["dbcName"] = "StormwroughtRuins",
+ ["worldBounds"] = { left=-3365.00, right=-5345.00, top=-5424.00, bottom=-6774.00 },
+ ["names"] = { ["deDE"] = "Ruine von Sturmschmied", ["enUS"] = "Stormwrought Ruins", ["esES"] = "Ruinas Forjatormenta", ["ptBR"] = "Ruínas Forjatormenta", ["ruRU"] = "Выкованные Бурей Руины", ["zhCN"] = "风暴废墟" },
+ }
+end
diff --git a/init/api.xml b/init/api.xml
index 2f63560..d61c29c 100644
--- a/init/api.xml
+++ b/init/api.xml
@@ -17,6 +17,8 @@
+
+
@@ -29,6 +31,7 @@
+
diff --git a/modules/autobuy/module.lua b/modules/autobuy/module.lua
index ef3121c..d6bd726 100644
--- a/modules/autobuy/module.lua
+++ b/modules/autobuy/module.lua
@@ -6,7 +6,7 @@
local MTH_AutoBuy = {
name = "autobuy",
enabled = false,
- version = "1.2.0",
+ version = "1.3.0",
events = {
"VARIABLES_LOADED",
"MERCHANT_SHOW",
@@ -140,12 +140,9 @@ function MTH_AutoBuy:onEvent(event)
return
end
- AB_Log("onEvent event=" .. tostring(event) .. " module.enabled=" .. tostring(self.enabled), "debug")
-
if event == "VARIABLES_LOADED" then
engine:Init()
AB_SetBridgeActive(self.enabled and true or false)
- AB_Log("onEvent VARIABLES_LOADED -> engine init", "debug")
local store = engine:EnsureDefaults()
AB_Trace("VARIABLES_LOADED module.enabled=" .. tostring(self.enabled)
.. " store.enabled=" .. tostring(store and store.enabled)
diff --git a/modules/autoquest/module.lua b/modules/autoquest/module.lua
index de3f53d..2ae9be3 100644
--- a/modules/autoquest/module.lua
+++ b/modules/autoquest/module.lua
@@ -6,7 +6,7 @@
local MTH_AutoQuest = {
name = "autoquest",
enabled = false,
- version = "1.2.0",
+ version = "1.3.0",
events = {
"GOSSIP_SHOW",
"QUEST_GREETING",
diff --git a/modules/chronometer/module.lua b/modules/chronometer/module.lua
index 6a3baa0..2fca941 100644
--- a/modules/chronometer/module.lua
+++ b/modules/chronometer/module.lua
@@ -1,7 +1,7 @@
local MTH_ChronometerModule = {
name = "chronometer",
enabled = true,
- version = "1.2.0",
+ version = "1.3.0",
events = {},
initialized = false,
}
diff --git a/modules/feedomatic/FeedOMatic.lua b/modules/feedomatic/FeedOMatic.lua
index 8a5b3fa..97a2bf0 100644
--- a/modules/feedomatic/FeedOMatic.lua
+++ b/modules/feedomatic/FeedOMatic.lua
@@ -57,7 +57,7 @@ FOM_RealmPlayer = nil;
FOM_LastPetName = nil;
FOM_LastFeedAttempt = nil;
FOM_TRACE_ENABLED = false;
-local FOM_CORE_ATTEMPT_TRACKING_ENABLED = false;
+local FOM_CORE_ATTEMPT_TRACKING_ENABLED = true;
local FOM_PERF_TRACE_ENABLED = false;
local FOM_PERF_TRACE_HISTORY_LIMIT = 80;
local FOM_PERF_TRACE_SPIKE_MS = 12;
@@ -126,7 +126,10 @@ FOM_FamilyToLegacyMap = {
};
local function FOM_Trace(message)
- return;
+ if not FOM_TRACE_ENABLED then return; end
+ if type(DEFAULT_CHAT_FRAME) == "table" and DEFAULT_CHAT_FRAME.AddMessage then
+ DEFAULT_CHAT_FRAME:AddMessage("|cffffff00[FOM-Trace]|r " .. tostring(message));
+ end
end
local function FOM_PerfNowMs()
@@ -1301,6 +1304,7 @@ function FOM_OnUpdate(elapsed)
.. " pet='" .. tostring(FOM_LastFeedAttempt.petName or "")
.. "' elapsed=" .. string.format("%.2f", elapsedSinceFeed));
FOM_LastFeedAttempt = nil;
+ FOM_LastFood = nil;
elseif (elapsedSinceFeed >= 2.50) then
local failedAttempt = FOM_LastFeedAttempt;
if (FOM_LastFeedAttempt.coreAttemptId and type(MTH_FEED_RecordBuffOutcome) == "function") then
@@ -1952,6 +1956,7 @@ function FOM_ChatCommandHandler(msg)
if ( cmd == "add" ) then
for _, food in inputFoods do
local foodID = FOM_IDFromLink(food);
+ FOM_ClearItemBans(foodID);
if ( FOM_AddFood(diet, tonumber(foodID)) ) then
GFWUtils.Print("Added "..food.." to "..GFWUtils.Hilite(capDiet).." list.");
else
@@ -2011,6 +2016,12 @@ function FOM_AddFood(diet, food)
return false;
end
else
+ -- Item is in the base list; clear it from RemovedFoods if present so it isn't banned
+ if (FOM_RemovedFoods and FOM_RemovedFoods[diet] and GFWTable.IndexOf(FOM_RemovedFoods[diet], food) ~= 0) then
+ table.remove( FOM_RemovedFoods[diet], GFWTable.IndexOf(FOM_RemovedFoods[diet], food) );
+ table.sort( FOM_RemovedFoods[diet] );
+ return true;
+ end
return false;
end
@@ -2018,7 +2029,7 @@ end
-- Remove a food from a list
function FOM_RemoveFood(diet, food)
-
+
if (FOM_Foods[diet] == nil) then
GFWUtils.DebugLog("FOM_Foods[diet] == nil");
end
@@ -2057,6 +2068,42 @@ function FOM_RemoveFood(diet, food)
end
+-- Clear quarantine, core exception blocks, and RemovedFoods ban for a specific item (called when user explicitly re-adds via /fom add)
+local function FOM_ClearItemBans(itemID)
+ local numericItem = tonumber(itemID);
+ if (numericItem == nil) then return; end
+ -- Clear from RemovedFoods across all diet lists
+ if (type(FOM_RemovedFoods) == "table") then
+ for diet, list in FOM_RemovedFoods do
+ if (type(list) == "table") then
+ local idx = GFWTable.IndexOf(list, numericItem);
+ if (idx ~= 0) then
+ table.remove(list, idx);
+ end
+ end
+ end
+ end
+ -- Clear FOM quarantine (all families)
+ local store = FOM_EnsureQuarantineStore();
+ if (type(store) == "table" and type(store.byFamily) == "table") then
+ for _, byItem in store.byFamily do
+ if (type(byItem) == "table") then
+ byItem[numericItem] = nil;
+ end
+ end
+ end
+ -- Clear core exception/block
+ if (type(MTH_FEED_GetStore) == "function") then
+ local coreStore = MTH_FEED_GetStore();
+ if (coreStore and coreStore.exceptions and type(coreStore.exceptions.byItemId) == "table") then
+ coreStore.exceptions.byItemId[numericItem] = nil;
+ coreStore.exceptions.byItemId[tostring(numericItem)] = nil;
+ end
+ end
+ -- Invalidate precompute cache so next feed re-scans
+ FOM_FEED_SCAN_CACHE = nil;
+end
+
function FOM_IsBGActive()
local bgNum = 1;
local status;
diff --git a/modules/feedomatic/module.lua b/modules/feedomatic/module.lua
index 973119c..fd6b34e 100644
--- a/modules/feedomatic/module.lua
+++ b/modules/feedomatic/module.lua
@@ -6,7 +6,7 @@
local MTH_FeedOMatic = {
name = "feedomatic",
enabled = false,
- version = "1.2.0",
+ version = "1.3.0",
events = {
"VARIABLES_LOADED",
"MERCHANT_SHOW",
diff --git a/modules/icu/module.lua b/modules/icu/module.lua
index 907d418..c93cd14 100644
--- a/modules/icu/module.lua
+++ b/modules/icu/module.lua
@@ -6,7 +6,7 @@
local MTH_ICU = {
name = "icu",
enabled = false,
- version = "1.2.0",
+ version = "1.3.0",
events = {
"VARIABLES_LOADED",
},
diff --git a/modules/smartammo/engine.lua b/modules/smartammo/engine.lua
index f05f08c..4db7d1c 100644
--- a/modules/smartammo/engine.lua
+++ b/modules/smartammo/engine.lua
@@ -137,17 +137,23 @@ end
local function MTHSmartAmmo_ForceHookGlobals()
if type(MTHSmartAmmo_CastSpell_Hook) == "function" and CastSpell ~= MTHSmartAmmo_CastSpell_Hook then
- MTH_SA_CastSpell = CastSpell
- CastSpell = MTHSmartAmmo_CastSpell_Hook
- end
- if type(MTHSmartAmmo_UseAction_Hook) == "function" and UseAction ~= MTHSmartAmmo_UseAction_Hook then
- MTH_SA_UseAction = UseAction
- UseAction = MTHSmartAmmo_UseAction_Hook
- end
- if type(MTHSmartAmmo_CastSpellByName_Hook) == "function" and CastSpellByName ~= MTHSmartAmmo_CastSpellByName_Hook then
- MTH_SA_CastSpellByName = CastSpellByName
- CastSpellByName = MTHSmartAmmo_CastSpellByName_Hook
- end
+ if CastSpell == MTHSmartAmmo_OriginalCastSpell or MTH_SA_CastSpell == nil then
+ MTH_SA_CastSpell = CastSpell
+ CastSpell = MTHSmartAmmo_CastSpell_Hook
+ end
+ end
+ if type(MTHSmartAmmo_UseAction_Hook) == "function" and UseAction ~= MTHSmartAmmo_UseAction_Hook then
+ if UseAction == MTHSmartAmmo_OriginalUseAction or MTH_SA_UseAction == nil then
+ MTH_SA_UseAction = UseAction
+ UseAction = MTHSmartAmmo_UseAction_Hook
+ end
+ end
+ if type(MTHSmartAmmo_CastSpellByName_Hook) == "function" and CastSpellByName ~= MTHSmartAmmo_CastSpellByName_Hook then
+ if CastSpellByName == MTHSmartAmmo_OriginalCastSpellByName or MTH_SA_CastSpellByName == nil then
+ MTH_SA_CastSpellByName = CastSpellByName
+ CastSpellByName = MTHSmartAmmo_CastSpellByName_Hook
+ end
+ end
end
MTH_SA = {}
@@ -423,13 +429,6 @@ local MTH_SA_OnUpdateElapsed = 0
frame:SetScript("OnUpdate", function()
local dt = arg1 or 0
MTHSmartAmmo_HookEnsureElapsed = MTHSmartAmmo_HookEnsureElapsed + dt
- if MTHSmartAmmo_HookEnsureElapsed >= 0.5 then
- MTHSmartAmmo_HookEnsureElapsed = 0
- if MTH_SA_IsModuleEnabled() then
- MTHSmartAmmo_InitializeHooks()
- end
- end
-
MTH_SA_OnUpdateElapsed = MTH_SA_OnUpdateElapsed + dt
if MTH_SA_OnUpdateElapsed < 0.10 then
return
@@ -463,11 +462,10 @@ function MTH_SA_CountEquippedAmmo()
local ammo = GetInventoryItemCount("player", 0)
local equippedName = MTH_SA_GetEquippedAmmoName()
if equippedName and equippedName ~= "" then
- MTH_SA_LastKnownEquippedName = equippedName
- end
- if not ammo then
- MTH_SA_Quantity=0
- return
+ if equippedName ~= MTH_SA_LastKnownEquippedName then
+ MTH_SA_LastKnownEquippedName = equippedName
+ MTHSmartAmmo_RefreshAmmoButtonDisplay()
+ end
elseif ammo ~= MTH_SA_Quantity then
MTH_SA_Quantity = ammo
end
@@ -663,12 +661,15 @@ MTHSmartAmmo_UseAction_Hook = function(slot, checkCursor, onSelf)
end
MTHSmartAmmo_InUseActionHook = true
- if not GetActionText(slot) and MTHSmartAmmo_IsSmartEnabled() then
+ local _actionText = GetActionText(slot)
+ local _smart = MTHSmartAmmo_IsSmartEnabled()
+ if not _actionText and _smart then
MTH_SA_Tooltip:SetOwner(UIParent, "ANCHOR_NONE")
MTH_SA_Tooltip:SetAction(slot)
local name = MTH_SA_TooltipTextLeft1:GetText()
MTH_SA_LastSpell = name
- if name and MTH_AMMO_JUNKSHOT_SET and MTH_AMMO_JUNKSHOT_SET[name] then
+ local _inSet = name and MTH_AMMO_JUNKSHOT_SET and MTH_AMMO_JUNKSHOT_SET[name]
+ if _inSet then
if MTH_SA_Check() or MTH_SA_FindAmmo() then
MTH_SA_EquipAmmo(1)
end
@@ -724,19 +725,29 @@ MTHSmartAmmo_InitializeHooks = function()
return
end
- if CastSpell ~= MTHSmartAmmo_CastSpell_Hook then
- MTH_SA_CastSpell = CastSpell
- CastSpell = MTHSmartAmmo_CastSpell_Hook
- end
+-- Only install a hook if vanilla is on top (first-time install) or MetaHunt
+ -- is already on top. If another addon (e.g. Quiver) is on top, it has already
+ -- captured MetaHunt's hook as its super — reinstalling would create a double
+ -- invocation and break addons that rely on IsCurrentAction after their super call.
+ if CastSpell ~= MTHSmartAmmo_CastSpell_Hook then
+ if CastSpell == MTHSmartAmmo_OriginalCastSpell or MTH_SA_CastSpell == nil then
+ MTH_SA_CastSpell = CastSpell
+ CastSpell = MTHSmartAmmo_CastSpell_Hook
+ end
+ end
- if UseAction ~= MTHSmartAmmo_UseAction_Hook then
- MTH_SA_UseAction = UseAction
- UseAction = MTHSmartAmmo_UseAction_Hook
- end
+ if UseAction ~= MTHSmartAmmo_UseAction_Hook then
+ if UseAction == MTHSmartAmmo_OriginalUseAction or MTH_SA_UseAction == nil then
+ MTH_SA_UseAction = UseAction
+ UseAction = MTHSmartAmmo_UseAction_Hook
+ end
+ end
- if CastSpellByName ~= MTHSmartAmmo_CastSpellByName_Hook then
- MTH_SA_CastSpellByName = CastSpellByName
- CastSpellByName = MTHSmartAmmo_CastSpellByName_Hook
+ if CastSpellByName ~= MTHSmartAmmo_CastSpellByName_Hook then
+ if CastSpellByName == MTHSmartAmmo_OriginalCastSpellByName or MTH_SA_CastSpellByName == nil then
+ MTH_SA_CastSpellByName = CastSpellByName
+ CastSpellByName = MTHSmartAmmo_CastSpellByName_Hook
+ end
end
end
diff --git a/modules/smartammo/module.lua b/modules/smartammo/module.lua
index e07aadf..406f2bd 100644
--- a/modules/smartammo/module.lua
+++ b/modules/smartammo/module.lua
@@ -7,7 +7,7 @@ MTH_SA_MANAGED_HOOKS = true
local MTH_SmartAmmo = {
name = "smartammo",
enabled = true,
- version = "1.2.0",
+ version = "1.3.0",
events = {
"VARIABLES_LOADED",
-- PLAYER_ENTERING_WORLD handled by engine's own frame
diff --git a/modules/tooltips/module.lua b/modules/tooltips/module.lua
index c8ca8c8..0f7e4b4 100644
--- a/modules/tooltips/module.lua
+++ b/modules/tooltips/module.lua
@@ -6,7 +6,7 @@
local MTH_Tooltips = {
name = "tooltips",
enabled = true,
- version = "1.2.0",
+ version = "1.3.0",
events = {
"UPDATE_MOUSEOVER_UNIT",
"UNIT_NAME_UPDATE",
diff --git a/modules/zhunter/module.lua b/modules/zhunter/module.lua
index 4a49679..19831dd 100644
--- a/modules/zhunter/module.lua
+++ b/modules/zhunter/module.lua
@@ -8,7 +8,7 @@ MTH_ZH_MANAGED_HOOKS = true
local MTH_ZHunter = {
name = "zhunter",
enabled = true,
- version = "1.2.0",
+ version = "1.3.0",
events = {
"VARIABLES_LOADED",
-- PLAYER_ENTERING_WORLD handled by bootstrap frame + adjustment frames