From c9fa298c71fff487d183a30e925167055a1a666d Mon Sep 17 00:00:00 2001 From: Spit <19otari98@gmail.com> Date: Sun, 29 Mar 2026 20:23:40 +0300 Subject: [PATCH] update survival --- AtlasLoot.toc | 2 +- Core/AtlasLoot.lua | 4 +- Core/AtlasLoot.xml | 2 +- Core/ButtonRegistry.lua | 26 +- Core/Crafting.lua | 131 +--- Core/Factions.lua | 28 +- Core/Spells.lua | 1160 +++++++++++++++++++++++++++++++---- Database/Crafting.lua | 117 +++- Database/TableRegister.lua | 14 +- Database/TooltipStrings.lua | 87 ++- 10 files changed, 1324 insertions(+), 247 deletions(-) diff --git a/AtlasLoot.toc b/AtlasLoot.toc index a415678..4fd1a86 100644 --- a/AtlasLoot.toc +++ b/AtlasLoot.toc @@ -3,7 +3,7 @@ ## Notes: Shows possible loot from dungeon bosses and other sources. ## Author: Otari (overhaul/revamp, menu changes, bugfixes/updates), Lexie (Turtle WoW fixes/updates), Pepopo, MarcelineVQ (Kara40 loot), Shagu ## LegacyAuthor: Daviesh, Pompa (Turtle WoW World Bosses), Xerron (Turtle WoW World Bosses), Gurky (Turtle WoW 1.16/1.16.1 Dungeons) -## Version: 3.3.3 +## Version: 3.3.4 ## SavedVariablesPerCharacter: AtlasLootCharDB ## OptionalDeps: Alphamap, AtlasLoader, LootLink, ItemSync, HewdropLib, Ace2, EquipCompare, EQCompare diff --git a/Core/AtlasLoot.lua b/Core/AtlasLoot.lua index f57c98a..5686049 100644 --- a/Core/AtlasLoot.lua +++ b/Core/AtlasLoot.lua @@ -270,8 +270,8 @@ AtlasLoot_HewdropDown = { { { AL["Tailoring"], "TAILORINGMENU", "Table" }, }, { { AL["Cooking"], "CookingApprentice1", "Table" }, }, { { AL["First Aid"], "FirstAid1", "Table" }, }, - { { AL["Survival"], "Survival1", "Table" }, }, - { { AL["Gardening"], "Survival2", "Table" }, }, + { { AL["Survival"], "SurvivalApprentice1", "Table" }, }, + { { AL["Gardening"], "Gardening1", "Table" }, }, { { AL["Poisons"], "Poisons1", "Table" }, }, { { AL["Crafted Sets"], "CRAFTSET", "Table" },}, { { AL["Crafted Epic Weapons"], "CraftedWeapons1", "Table" }, }, diff --git a/Core/AtlasLoot.xml b/Core/AtlasLoot.xml index 815b7f0..fa7d655 100644 --- a/Core/AtlasLoot.xml +++ b/Core/AtlasLoot.xml @@ -457,7 +457,7 @@ - + diff --git a/Core/ButtonRegistry.lua b/Core/ButtonRegistry.lua index ae584f7..f3fee4b 100644 --- a/Core/ButtonRegistry.lua +++ b/Core/ButtonRegistry.lua @@ -5039,13 +5039,31 @@ AtlasLoot_ButtonRegistry = { }; -- Survival - ["Survival1"] = { - Title = AL["Survival"]; - Back_Page = "CRAFTINGMENU"; + ["SurvivalApprentice1"] = { + Title = AL["Survival"] .. ": " .. AL["Apprentice"], + Next_Page = "SurvivalJourneyman1", + Back_Page = "CRAFTINGMENU", + }; + ["SurvivalJourneyman1"] = { + Title = AL["Survival"] .. ": " .. AL["Journeyman"], + Prev_Page = "SurvivalApprentice1"; + Next_Page = "SurvivalExpert1", + Back_Page = "CRAFTINGMENU", + }; + ["SurvivalExpert1"] = { + Title = AL["Survival"] .. ": " .. AL["Expert"], + Prev_Page = "SurvivalJourneyman1"; + Next_Page = "SurvivalArtisan1", + Back_Page = "CRAFTINGMENU", + }; + ["SurvivalArtisan1"] = { + Title = AL["Survival"] .. ": " .. AL["Artisan"], + Prev_Page = "SurvivalExpert1"; + Back_Page = "CRAFTINGMENU", }; -- Gardening - ["Survival2"] = { + ["Gardening1"] = { Title = AL["Gardening"]; Back_Page = "CRAFTINGMENU"; }; diff --git a/Core/Crafting.lua b/Core/Crafting.lua index bc2a5b8..14ac32d 100644 --- a/Core/Crafting.lua +++ b/Core/Crafting.lua @@ -1,5 +1,8 @@ local AL = AceLibrary("AceLocale-2.2"):new("AtlasLoot"); - +local _G = getfenv(0) +local buttonsPerPage = 30 +local ButtonsInfo1 +local ButtonsInfo2 local RED = "|cffff0000"; local ORANGE = "|cffFF8400"; local WHITE = "|cffFFFFFF"; @@ -8,102 +11,36 @@ function AtlasLoot_CraftingMenu() AtlasLoot_PrepMenu(nil, AL["Crafting"]) AtlasLootCharDB.LastBoss = "CRAFTINGMENU" AtlasLootCharDB.LastBossText = AL["Crafting"] - --Alchemy - AtlasLootMenuItem_1_Name:SetText(AL["Alchemy"]); - AtlasLootMenuItem_1_Extra:SetText(""); - AtlasLootMenuItem_1_Icon:SetTexture("Interface\\Icons\\Trade_Alchemy"); - AtlasLootMenuItem_1.lootpage="ALCHEMYMENU"; - AtlasLootMenuItem_1:Show(); - --Enchanting - AtlasLootMenuItem_2_Name:SetText(AL["Enchanting"]); - AtlasLootMenuItem_2_Extra:SetText(""); - AtlasLootMenuItem_2_Icon:SetTexture("Interface\\Icons\\Trade_Engraving"); - AtlasLootMenuItem_2.lootpage="ENCHANTINGMENU"; - AtlasLootMenuItem_2:Show(); - --Engineering - AtlasLootMenuItem_3_Name:SetText(AL["Engineering"]); - AtlasLootMenuItem_3_Extra:SetText(""); - AtlasLootMenuItem_3_Icon:SetTexture("Interface\\Icons\\Trade_Engineering"); - AtlasLootMenuItem_3.lootpage="ENGINEERINGMENU"; - AtlasLootMenuItem_3:Show(); - --Leatherworking - AtlasLootMenuItem_4_Name:SetText(AL["Leatherworking"]); - AtlasLootMenuItem_4_Extra:SetText(""); - AtlasLootMenuItem_4_Icon:SetTexture("Interface\\Icons\\INV_Misc_ArmorKit_17"); - AtlasLootMenuItem_4.lootpage="LEATHERWORKINGMENU"; - AtlasLootMenuItem_4:Show(); - --Blacksmithing - AtlasLootMenuItem_5_Name:SetText(AL["Blacksmithing"]); - AtlasLootMenuItem_5_Extra:SetText(""); - AtlasLootMenuItem_5_Icon:SetTexture("Interface\\Icons\\Trade_BlackSmithing"); - AtlasLootMenuItem_5.lootpage="SMITHINGMENU"; - AtlasLootMenuItem_5:Show(); - --Tailoring - AtlasLootMenuItem_6_Name:SetText(AL["Tailoring"]); - AtlasLootMenuItem_6_Extra:SetText(""); - AtlasLootMenuItem_6_Icon:SetTexture("Interface\\Icons\\Trade_Tailoring"); - AtlasLootMenuItem_6.lootpage="TAILORINGMENU"; - AtlasLootMenuItem_6:Show(); - --Jewelcrafting - AtlasLootMenuItem_7_Name:SetText(AL["Jewelcrafting"]); - AtlasLootMenuItem_7_Extra:SetText(""); - AtlasLootMenuItem_7_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Necklace_01"); - AtlasLootMenuItem_7.lootpage="JEWELCRAFTMENU"; - AtlasLootMenuItem_7:Show(); - --Herbalism - AtlasLootMenuItem_8_Name:SetText(AL["Herbalism"]); - AtlasLootMenuItem_8_Extra:SetText(""); - AtlasLootMenuItem_8_Icon:SetTexture("Interface\\Icons\\Trade_Herbalism"); - AtlasLootMenuItem_8.lootpage="Herbalism1"; - AtlasLootMenuItem_8:Show(); - --Mining - AtlasLootMenuItem_9_Name:SetText(AL["Mining"]); - AtlasLootMenuItem_9_Extra:SetText(""); - AtlasLootMenuItem_9_Icon:SetTexture("Interface\\Icons\\Trade_Mining"); - AtlasLootMenuItem_9.lootpage="Mining1"; - AtlasLootMenuItem_9:Show(); - --Cooking - AtlasLootMenuItem_11_Name:SetText(AL["Cooking"]); - AtlasLootMenuItem_11_Extra:SetText(""); - AtlasLootMenuItem_11_Icon:SetTexture("Interface\\Icons\\INV_Misc_Food_15"); - AtlasLootMenuItem_11.lootpage="CookingApprentice1"; - AtlasLootMenuItem_11:Show(); - --First Aid - AtlasLootMenuItem_12_Name:SetText(AL["First Aid"]); - AtlasLootMenuItem_12_Extra:SetText(""); - AtlasLootMenuItem_12_Icon:SetTexture("Interface\\Icons\\Spell_Holy_SealOfSacrifice"); - AtlasLootMenuItem_12.lootpage="FirstAid1"; - AtlasLootMenuItem_12:Show(); - --Survival - AtlasLootMenuItem_13_Name:SetText(AL["Survival"]); - AtlasLootMenuItem_13_Extra:SetText(""); - AtlasLootMenuItem_13_Icon:SetTexture("Interface\\Icons\\Trade_Survival"); - AtlasLootMenuItem_13.lootpage="Survival1"; - AtlasLootMenuItem_13:Show(); - --Gardening - AtlasLootMenuItem_14_Name:SetText(AL["Gardening"]); - AtlasLootMenuItem_14_Extra:SetText(""); - AtlasLootMenuItem_14_Icon:SetTexture("Interface\\Icons\\Trade_Herbalism"); - AtlasLootMenuItem_14.lootpage="Survival2"; - AtlasLootMenuItem_14:Show(); - --Poisons - AtlasLootMenuItem_15_Name:SetText(AL["Poisons"]); - AtlasLootMenuItem_15_Extra:SetText("|cfffff468"..AL["Rogue"]); - AtlasLootMenuItem_15_Icon:SetTexture("Interface\\Icons\\Trade_BrewPoison"); - AtlasLootMenuItem_15.lootpage="Poisons1"; - AtlasLootMenuItem_15:Show(); - --Crafted Armor Sets - AtlasLootMenuItem_16_Name:SetText(AL["Crafted Sets"]); - AtlasLootMenuItem_16_Extra:SetText(""); - AtlasLootMenuItem_16_Icon:SetTexture("Interface\\Icons\\INV_Pants_Wolf"); - AtlasLootMenuItem_16.lootpage="CRAFTSET"; - AtlasLootMenuItem_16:Show(); - --Crafted Epic Weapons - AtlasLootMenuItem_18_Name:SetText(AL["Crafted Epic Weapons"]); - AtlasLootMenuItem_18_Extra:SetText(""); - AtlasLootMenuItem_18_Icon:SetTexture("Interface\\Icons\\INV_Hammer_Unique_Sulfuras"); - AtlasLootMenuItem_18.lootpage="CraftedWeapons1"; - AtlasLootMenuItem_18:Show(); + if not ButtonsInfo1 then + ButtonsInfo1 = { + { name = AL["Alchemy"], lootpage = "ALCHEMYMENU", icon = "Interface\\Icons\\Trade_Alchemy" }, + { name = AL["Enchanting"], lootpage = "ENCHANTINGMENU", icon = "Interface\\Icons\\Trade_Engraving" }, + { name = AL["Engineering"], lootpage = "ENGINEERINGMENU", icon = "Interface\\Icons\\Trade_Engineering" }, + { name = AL["Leatherworking"], lootpage = "LEATHERWORKINGMENU", icon = "Interface\\Icons\\INV_Misc_ArmorKit_17" }, + { name = AL["Blacksmithing"], lootpage = "SMITHINGMENU", icon = "Interface\\Icons\\Trade_BlackSmithing" }, + { name = AL["Tailoring"], lootpage = "TAILORINGMENU", icon = "Interface\\Icons\\Trade_Tailoring" }, + { name = AL["Jewelcrafting"], lootpage = "JEWELCRAFTMENU", icon = "Interface\\Icons\\INV_Jewelry_Necklace_01" }, + { name = AL["Herbalism"], lootpage = "Herbalism1", icon = "Interface\\Icons\\Trade_Herbalism" }, + { name = AL["Mining"], lootpage = "Mining1", icon = "Interface\\Icons\\Trade_Mining" }, + { }, + { name = AL["Cooking"], lootpage = "CookingApprentice1", icon = "Interface\\Icons\\INV_Misc_Food_15" }, + { name = AL["First Aid"], lootpage = "FirstAid1", icon = "Interface\\Icons\\Spell_Holy_SealOfSacrifice" }, + { name = AL["Survival"], lootpage = "SurvivalApprentice1", icon = "Interface\\Icons\\Trade_Survival" }, + { name = AL["Gardening"], lootpage = "Gardening1", icon = "Interface\\Icons\\Trade_Herbalism" }, + { name = AL["Poisons"], lootpage = "Poisons1", icon = "Interface\\Icons\\Trade_BrewPoison" }, + { name = AL["Crafted Sets"], lootpage = "CRAFTSET", icon = "Interface\\Icons\\INV_Pants_Wolf" }, + { name = AL["Crafted Epic Weapons"], lootpage = "CraftedWeapons1", icon = "Interface\\Icons\\INV_Hammer_Unique_Sulfuras" }, + } + end + for i = 1, min(buttonsPerPage, getn(ButtonsInfo1)) do + if ButtonsInfo1[i].name then + _G["AtlasLootMenuItem_"..i.."_Name"]:SetText(ButtonsInfo1[i].name) + _G["AtlasLootMenuItem_"..i.."_Extra"]:SetText(ButtonsInfo1[i].extra) + _G["AtlasLootMenuItem_"..i.."_Icon"]:SetTexture(ButtonsInfo1[i].icon) + _G["AtlasLootMenuItem_"..i].lootpage = ButtonsInfo1[i].lootpage + _G["AtlasLootMenuItem_"..i]:Show() + end + end end function AtlasLootCraftedSetMenu() diff --git a/Core/Factions.lua b/Core/Factions.lua index 424f1a5..5e06931 100644 --- a/Core/Factions.lua +++ b/Core/Factions.lua @@ -11,20 +11,20 @@ function AtlasLootRepMenu() AtlasLootCharDB.LastBossText = AL["Factions"] if not ButtonsInfo1 then ButtonsInfo1 = { - { name = AL["Argent Dawn"], extra = "", lootpage = "Argent1", icon = "Interface\\Icons\\INV_Jewelry_Talisman_08" }, - { name = AL["Brood of Nozdormu"], extra = "", lootpage = "AQBroodRings", icon = "Interface\\Icons\\INV_Jewelry_Ring_40" }, - { name = AL["Darkmoon Faire"], extra = "", lootpage = "Darkmoon", icon = "Interface\\Icons\\INV_Misc_Ticket_Tarot_Maelstrom_01" }, - { name = AL["Hydraxian Waterlords"], extra = "", lootpage = "WaterLords1", icon = "Interface\\Icons\\Spell_Frost_SummonWaterElemental_2" }, - { name = AL["Thorium Brotherhood"], extra = "", lootpage = "Thorium1", icon = "Interface\\Icons\\INV_Ingot_Mithril" }, - { name = AL["Cenarion Circle"], extra = "", lootpage = "Cenarion1", icon = "Interface\\Icons\\Spell_Nature_HealingTouch" }, - { name = AL["Shen'dralar"], extra = "", lootpage = "Shendralar", icon = "Interface\\Icons\\INV_Misc_Book_04" }, - { name = AL["Draenei Exiles"], extra = "", lootpage = "DraeneiExiles", icon = "Interface\\Icons\\INV_Enchant_ShardGlowingLarge" }, - { name = AL["Bloodsail Buccaneers"], extra = "", lootpage = "Bloodsail1", icon = "Interface\\Icons\\INV_Helmet_66" }, - { name = AL["Zandalar Tribe"], extra = "", lootpage = "Zandalar1", icon = "Interface\\Icons\\INV_Misc_Coin_08" }, - { name = AL["Timbermaw Hold"], extra = "", lootpage = "Timbermaw", icon = "Interface\\Icons\\INV_Misc_Horn_01" }, - { name = AL["Wardens of Time"], extra = "", lootpage = "Wardens1", icon = "Interface\\Icons\\INV_Misc_Head_Dragon_Bronze" }, - { name = AL["Gelkis Clan Centaur"], extra = "", lootpage = "GelkisClan1", icon = "Interface\\Icons\\INV_Misc_Head_Centaur_01" }, - { name = AL["Magram Clan Centaur"], extra = "", lootpage = "MagramClan1", icon = "Interface\\Icons\\INV_Misc_Head_Centaur_01" }, + { name = AL["Argent Dawn"], lootpage = "Argent1", icon = "Interface\\Icons\\INV_Jewelry_Talisman_08" }, + { name = AL["Brood of Nozdormu"], lootpage = "AQBroodRings", icon = "Interface\\Icons\\INV_Jewelry_Ring_40" }, + { name = AL["Darkmoon Faire"], lootpage = "Darkmoon", icon = "Interface\\Icons\\INV_Misc_Ticket_Tarot_Maelstrom_01" }, + { name = AL["Hydraxian Waterlords"], lootpage = "WaterLords1", icon = "Interface\\Icons\\Spell_Frost_SummonWaterElemental_2" }, + { name = AL["Thorium Brotherhood"], lootpage = "Thorium1", icon = "Interface\\Icons\\INV_Ingot_Mithril" }, + { name = AL["Cenarion Circle"], lootpage = "Cenarion1", icon = "Interface\\Icons\\Spell_Nature_HealingTouch" }, + { name = AL["Shen'dralar"], lootpage = "Shendralar", icon = "Interface\\Icons\\INV_Misc_Book_04" }, + { name = AL["Draenei Exiles"], lootpage = "DraeneiExiles", icon = "Interface\\Icons\\INV_Enchant_ShardGlowingLarge" }, + { name = AL["Bloodsail Buccaneers"], lootpage = "Bloodsail1", icon = "Interface\\Icons\\INV_Helmet_66" }, + { name = AL["Zandalar Tribe"], lootpage = "Zandalar1", icon = "Interface\\Icons\\INV_Misc_Coin_08" }, + { name = AL["Timbermaw Hold"], lootpage = "Timbermaw", icon = "Interface\\Icons\\INV_Misc_Horn_01" }, + { name = AL["Wardens of Time"], lootpage = "Wardens1", icon = "Interface\\Icons\\INV_Misc_Head_Dragon_Bronze" }, + { name = AL["Gelkis Clan Centaur"], lootpage = "GelkisClan1", icon = "Interface\\Icons\\INV_Misc_Head_Centaur_01" }, + { name = AL["Magram Clan Centaur"], lootpage = "MagramClan1", icon = "Interface\\Icons\\INV_Misc_Head_Centaur_01" }, {}, { name = AL["Stormwind"], extra = BLUE..AL["Alliance"], lootpage = "Stormwind", icon = "Interface\\Icons\\race_human"--[[INV_BannerPVP_02]] }, { name = AL["Ironforge"], extra = BLUE..AL["Alliance"], lootpage = "Ironforge", icon = "Interface\\Icons\\race_dwarf"--[[Ability_Racial_Avatar]] }, diff --git a/Core/Spells.lua b/Core/Spells.lua index 5fc924c..f60b2ad 100644 --- a/Core/Spells.lua +++ b/Core/Spells.lua @@ -15860,93 +15860,6 @@ GetSpellInfoAtlasLootDB = { { 8925 }, }, }, - [46064] = { - ["craftItem"] = 6182, - ["name"] = AL["Dim Torch"], - ["castTime"] = 2, - ["reagents"] = { - { 6183 }, - }, - }, - [46066] = { - ["craftItem"] = 65028, - ["name"] = AL["Murloc's Flippers"], - ["castTime"] = 10, - ["reagents"] = { - { 5785, 16 }, - { 4234, 8 }, - { 8343, 2 }, - { 6370, 3 }, - { 6372 }, - }, - }, - [46068] = { - ["craftItem"] = 60001, - ["name"] = AL["Cleaning Cloth"], - ["castTime"] = 3, - ["reagents"] = { - { 4306, 2 }, - { 9260 }, - }, - ["craftQuantityMin"] = 2, - }, - [46072] = { - ["craftItem"] = 51283, - ["name"] = AL["Traveler's Tent"], - ["castTime"] = 10, - ["cooldown"] = 7200, - ["text"] = AL["Sets up a traveler's tent. While under the cover of the tent you are resting and may gain rested experience. Can only be used outdoors."], - ["reagents"] = { - { 4470, 5 }, - { 2589, 10 }, - { 50231 }, - }, - }, - [46073] = { - ["craftItem"] = 51282, - ["name"] = AL["Fishing Boat"], - ["castTime"] = 20, - ["cooldown"] = 7200, - ["text"] = AL["Sets up a fishing boat. While on your boat you gain +50 fishing skill. Can only be used outdoors near a deep enough body of water."], - ["reagents"] = { - { 4470, 20 }, - { 4359, 10 }, - { 17058, 2 }, - }, - }, - [46074] = { - ["craftItem"] = 51705, - ["name"] = AL["Simple Wooden Planter"], - ["castTime"] = 10, - ["text"] = AL["Sets up a simple wooden planter. Planters allow you to plant seeds and cultivate crops."], - ["reagents"] = { - { 4470, 10 }, - { 4359, 4 }, - }, - }, - [46075] = { - ["craftItem"] = 2714, - ["name"] = AL["Iron Lantern"], - ["castTime"] = 2, - ["reagents"] = { - { 3575, 2 }, - { 814, 4 }, - { 2592, 5 }, - }, - }, - [46077] = { - ["craftItem"] = 65030, - ["name"] = AL["Repaired Electro-Lantern"], - ["castTime"] = 5, - ["reagents"] = { - { 1630, 5 }, - { 10561 }, - { 4359 }, - { 4375 }, - { 4404, 2 }, - { 10558, 2 }, - }, - }, [46085] = { ["craftItem"] = 53015, ["name"] = AL["Gurubashi Gumbo"], @@ -16802,26 +16715,6 @@ GetSpellInfoAtlasLootDB = { { 14227, 4 }, }, }, - [47101] = { - ["craftItem"] = 7009, - ["name"] = AL["Survivalist's Skinning Knife"], - ["castTime"] = 12.5, - ["reagents"] = { - { 2835, 2 }, - { 2320 }, - { 2318 }, - }, - }, - [47103] = { - ["craftItem"] = 7010, - ["name"] = AL["Driftwood Fishing Pole"], - ["castTime"] = 12.5, - ["reagents"] = { - { 2320, 2 }, - { 7011 }, - { 4470, 2 }, - }, - }, [49551] = { ["craftItem"] = 83309, ["name"] = AL["Empowering Herbal Salad"], @@ -17558,5 +17451,1058 @@ GetSpellInfoAtlasLootDB = { { 2692 }, }, }, + [36842] = { + ["name"] = AL["Oakwood Bow"], + ["craftItem"] = 42099, + ["castTime"] = 10.0, + ["tools"] = { 42004 }, + ["reagents"] = { + { 4470, 12 }, + { 2324, 2 }, + { 42006, 2 }, + { 2319 }, + }, + }, + [36843] = { + ["name"] = AL["Simple Fishing Lure"], + ["craftItem"] = 114, + ["castTime"] = 3.0, + ["reagents"] = { + { 5503 }, + { 42005 }, + }, + }, + [36844] = { + ["name"] = AL["Healing Salve"], + ["craftItem"] = 42125, + ["castTime"] = 3.0, + ["reagents"] = { + { 42142, 4 }, + { 42005, 2 }, + { 3174 }, + }, + }, + [36845] = { + ["name"] = AL["Fishing Bag"], + ["craftItem"] = 33371, + ["castTime"] = 10.0, + ["reagents"] = { + { 2319, 8 }, + { 2321, 4 }, + { 4231, 4 }, + { 4289, 6 }, + }, + }, + [36846] = { + ["name"] = AL["Skinner’s Pack"], + ["craftItem"] = 33372, + ["castTime"] = 10.0, + ["reagents"] = { + { 2319, 6 }, + { 2321, 2 }, + { 4231, 4 }, + { 7005 }, + }, + }, + [36847] = { + ["name"] = AL["Gardening Pitchfork"], + ["craftItem"] = 42100, + ["castTime"] = 10.0, + ["tools"] = { 42004, 5956 }, + ["reagents"] = { + { 2841, 10 }, + { 4470, 10 }, + { 2319, 4 }, + }, + }, + [36848] = { + ["name"] = AL["Murloc Scale Coat"], + ["craftItem"] = 42101, + ["castTime"] = 10.0, + ["reagents"] = { + { 2319, 6 }, + { 2321, 2 }, + { 5784, 10 }, + { 6372, 2 }, + }, + }, + [36849] = { + ["name"] = AL["Bundle of Bright Wood Sticks"], + ["craftItem"] = 42150, + ["castTime"] = 3.0, + ["tools"] = { 42004 }, + ["reagents"] = { + { 42007, 3 }, + }, + }, + [36850] = { + ["name"] = AL["Sturdy Net"], + ["craftItem"] = 42154, + ["castTime"] = 3.0, + ["reagents"] = { + { 50231, 4 }, + }, + }, + [36851] = { + ["name"] = AL["Sturdy Cane"], + ["craftItem"] = 42102, + ["castTime"] = 10.0, + ["tools"] = { 42004 }, + ["reagents"] = { + { 42007, 12 }, + { 2319, 2 }, + { 2321 }, + }, + }, + [36852] = { + ["name"] = AL["Sturdy Knife"], + ["craftItem"] = 42103, + ["castTime"] = 10.0, + ["tools"] = { 42004, 5956 }, + ["reagents"] = { + { 42007, 2 }, + { 2319, 2 }, + { 2841, 6 }, + { 1206 }, + { 55151, 2 }, + }, + }, + [36853] = { + ["name"] = AL["Sturdy Blade"], + ["craftItem"] = 42104, + ["castTime"] = 10.0, + ["tools"] = { 42004, 5956 }, + ["reagents"] = { + { 42007, 2 }, + { 2319 }, + { 2841, 8 }, + { 1206 }, + { 3478, 2 }, + }, + }, + [36854] = { + ["name"] = AL["Reliable Fishing Rod"], + ["craftItem"] = 42105, + ["castTime"] = 10.0, + ["tools"] = { 42004 }, + ["reagents"] = { + { 42007, 6 }, + { 2321 }, + { 2841, 2 }, + }, + }, + [36855] = { + ["name"] = AL["Throwable Net"], + ["craftItem"] = 42132, + ["castTime"] = 3.0, + ["reagents"] = { + { 42154 }, + { 2836, 4 }, + }, + }, + [36856] = { + ["name"] = AL["Hat of the Junior Chef"], + ["craftItem"] = 42106, + ["castTime"] = 10.0, + ["reagents"] = { + { 4305, 6 }, + { 2324, 8 }, + { 4291, 4 }, + { 2692, 5 }, + { 3713, 5 }, + { 3182, 5 }, + }, + }, + [36857] = { + ["name"] = AL["Treasure Compass"], + ["craftItem"] = 42107, + ["castTime"] = 10.0, + ["reagents"] = { + { 4404, 4 }, + { 4382, 6 }, + { 4359, 20 }, + { 1529, 2 }, + { 4375, 6 }, + }, + }, + [36858] = { + ["name"] = AL["Bright Wood Arrows"], + ["craftItem"] = 42198, + ["castTime"] = 3.0, + ["craftQuantityMin"] = 200, + ["tools"] = { 42004 }, + ["reagents"] = { + { 42150 }, + { 5116 }, + { 3575 }, + }, + }, + [36859] = { + ["name"] = AL["Studded Ration’s Bag"], + ["craftItem"] = 33373, + ["castTime"] = 10.0, + ["reagents"] = { + { 4234, 8 }, + { 4233, 3 }, + { 4341, 2 }, + { 4291, 4 }, + { 6370, 6 }, + { 4289, 8 }, + }, + }, + [36860] = { + ["name"] = AL["Potent Healing Salve"], + ["craftItem"] = 42126, + ["castTime"] = 3.0, + ["reagents"] = { + { 42005, 4 }, + { 34001, 3 }, + { 159 }, + }, + }, + [36861] = { + ["name"] = AL["Spicy Fishing Lure"], + ["craftItem"] = 125, + ["castTime"] = 3.0, + ["reagents"] = { + { 5504 }, + { 2692 }, + }, + }, + [30004] = { + ["name"] = AL["Slowing Bolas"], + ["craftItem"] = 106, + ["castTime"] = 3.0, + ["reagents"] = { + { 2838, 3 }, + { 50231, 2 }, + }, + }, + [30006] = { + ["name"] = AL["Edged Machete"], + ["craftItem"] = 42108, + ["castTime"] = 10.0, + ["tools"] = { 42004, 5956 }, + ["reagents"] = { + { 3575, 8 }, + { 4234, 2 }, + { 50231 }, + { 42008 }, + }, + }, + [30008] = { + ["name"] = AL["Iron Spear"], + ["craftItem"] = 42109, + ["castTime"] = 10.0, + ["tools"] = { 5956 }, + ["reagents"] = { + { 3575, 8 }, + { 3486, 2 }, + { 50231 }, + { 4234, 2 }, + }, + }, + [30010] = { + ["name"] = AL["Reinforced Fishing Rod"], + ["craftItem"] = 42110, + ["castTime"] = 10.0, + ["tools"] = { 42004 }, + ["reagents"] = { + { 3575, 2 }, + { 42008, 8 }, + { 42006 }, + { 4359, 10 }, + }, + }, + [30013] = { + ["name"] = AL["Water Trudgers"], + ["craftItem"] = 42111, + ["castTime"] = 10.0, + ["reagents"] = { + { 4234, 12 }, + { 17057, 20 }, + { 4340, 2 }, + { 5500, 4 }, + }, + }, + [30015] = { + ["name"] = AL["Bundle of Shade Wood Sticks"], + ["craftItem"] = 42151, + ["castTime"] = 3.0, + ["tools"] = { 42004 }, + ["reagents"] = { + { 42008, 4 }, + }, + }, + [36747] = { + ["name"] = AL["Jungle Remedy"], + ["craftItem"] = 2633, + ["castTime"] = 3.0, + ["reagents"] = { + { 42005, 4 }, + { 42143, 2 }, + { 4595 }, + }, + }, + [30017] = { + ["name"] = AL["Sharpened Herb Sickle"], + ["craftItem"] = 42112, + ["castTime"] = 10.0, + ["tools"] = { 42004 }, + ["reagents"] = { + { 3575, 2 }, + { 3577 }, + { 42008 }, + { 4234, 2 }, + { 4359, 4 }, + }, + }, + [36749] = { + ["name"] = AL["Spirited Precision Sickle"], + ["craftItem"] = 42231, + ["castTime"] = 20.0, + ["reagents"] = { + { 42112 }, + { 19726, 8 }, + { 18262, 2 }, + { 12803, 8 }, + { 10286, 8 }, + }, + }, + [36751] = { + ["name"] = AL["Prospector’s Magnifying Lens"], + ["craftItem"] = 42232, + ["castTime"] = 20.0, + ["reagents"] = { + { 55252, 2 }, + { 16000, 4 }, + { 55154, 5 }, + { 12655, 8 }, + { 12361, 3 }, + { 12364, 3 }, + }, + }, + [30022] = { + ["name"] = AL["Lined Wintercloak"], + ["craftItem"] = 42113, + ["castTime"] = 10.0, + ["reagents"] = { + { 4236, 2 }, + { 4234, 8 }, + { 4340, 2 }, + { 4306, 6 }, + { 4291, 4 }, + }, + }, + [30024] = { + ["name"] = AL["Sleek Pinewood Bow"], + ["craftItem"] = 42114, + ["castTime"] = 10.0, + ["tools"] = { 42004 }, + ["reagents"] = { + { 42008, 8 }, + { 42006 }, + { 3577, 2 }, + { 5116, 6 }, + }, + }, + [30027] = { + ["name"] = AL["Superior Healing Salve"], + ["craftItem"] = 42127, + ["castTime"] = 3.0, + ["reagents"] = { + { 42005, 6 }, + { 3357 }, + { 42143, 4 }, + }, + }, + [30029] = { + ["name"] = AL["Savory Fishing Lure"], + ["craftItem"] = 133, + ["castTime"] = 3.0, + ["reagents"] = { + { 7974 }, + { 3713, 2 }, + }, + }, + [30031] = { + ["name"] = AL["Smooth Ironfeather Arrows"], + ["craftItem"] = 42200, + ["castTime"] = 3.0, + ["craftQuantityMin"] = 200, + ["tools"] = { 42004 }, + ["reagents"] = { + { 42152 }, + { 15420 }, + { 12359 }, + }, + }, + [30033] = { + ["name"] = AL["Heavy Duty Machete"], + ["craftItem"] = 42120, + ["castTime"] = 10.0, + ["tools"] = { 5956 }, + ["reagents"] = { + { 12359, 6 }, + { 8170, 4 }, + { 12644, 2 }, + }, + }, + [36765] = { + ["name"] = AL["Bundle of Simple Sticks"], + ["craftItem"] = 42149, + ["castTime"] = 3.0, + ["tools"] = { 42004 }, + ["reagents"] = { + { 4470, 2 }, + }, + }, + [36766] = { + ["name"] = AL["Crude Walking Stick"], + ["craftItem"] = 42089, + ["castTime"] = 10.0, + ["tools"] = { 42004 }, + ["reagents"] = { + { 4470, 4 }, + }, + }, + [36767] = { + ["name"] = AL["Crude Machete"], + ["craftItem"] = 42090, + ["castTime"] = 10.0, + ["tools"] = { 42004, 5956 }, + ["reagents"] = { + { 4470 }, + { 2840, 3 }, + }, + }, + [30037] = { + ["name"] = AL["Thorium Spear"], + ["craftItem"] = 42122, + ["castTime"] = 10.0, + ["tools"] = { 42004, 5956 }, + ["reagents"] = { + { 12359, 4 }, + { 8170, 4 }, + { 42009, 6 }, + { 55154, 2 }, + }, + }, + [36769] = { + ["name"] = AL["Crude Hunting Bow"], + ["craftItem"] = 42092, + ["castTime"] = 10.0, + ["tools"] = { 42004 }, + ["reagents"] = { + { 4470, 3 }, + { 42006, 2 }, + }, + }, + [36770] = { + ["name"] = AL["Copper Lantern"], + ["craftItem"] = 42093, + ["castTime"] = 10.0, + ["tools"] = { 5956 }, + ["reagents"] = { + { 6182 }, + { 2840, 3 }, + }, + }, + [36771] = { + ["name"] = AL["Simple Slingshot"], + ["craftItem"] = 42229, + ["castTime"] = 3.0, + ["craftQuantityMin"] = 20, + ["tools"] = { 42004 }, + ["reagents"] = { + { 51708, 4 }, + { 42149, 2 }, + { 42006 }, + }, + }, + [36772] = { + ["name"] = AL["Simple Herbalist’s Backpack"], + ["craftItem"] = 33369, + ["castTime"] = 10.0, + ["reagents"] = { + { 2318, 6 }, + { 2320, 4 }, + { 4231, 2 }, + { 2447, 12 }, + }, + }, + [36773] = { + ["name"] = AL["Makeshift Rations Bag"], + ["craftItem"] = 33370, + ["castTime"] = 10.0, + ["reagents"] = { + { 2318, 4 }, + { 2320, 6 }, + { 4231 }, + { 4289, 4 }, + }, + }, + [36774] = { + ["name"] = AL["Weak Healing Salve"], + ["craftItem"] = 42233, + ["castTime"] = 3.0, + ["reagents"] = { + { 159 }, + { 42005, 2 }, + { 42142 }, + }, + }, + [30045] = { + ["name"] = AL["Mastercraft Fishing Rod"], + ["craftItem"] = 42123, + ["castTime"] = 10.0, + ["tools"] = { 42004 }, + ["reagents"] = { + { 12359, 8 }, + { 8170, 4 }, + { 42009, 10 }, + { 42006, 2 }, + { 16000, 4 }, + { 7080, 4 }, + }, + }, + [30050] = { + ["name"] = AL["Miner’s Rucksack"], + ["craftItem"] = 33375, + ["castTime"] = 10.0, + ["reagents"] = { + { 8170, 24 }, + { 8172, 3 }, + { 42153, 10 }, + { 2901 }, + { 7071, 4 }, + { 14341, 6 }, + }, + }, + [30052] = { + ["name"] = AL["Herbalist’s Knapsack"], + ["craftItem"] = 33376, + ["castTime"] = 10.0, + ["reagents"] = { + { 8170, 22 }, + { 8172, 4 }, + { 42153, 10 }, + { 42095 }, + { 7071, 4 }, + { 14341, 4 }, + }, + }, + [30054] = { + ["name"] = AL["Skinner’s Carryall"], + ["craftItem"] = 33378, + ["castTime"] = 10.0, + ["reagents"] = { + { 8170, 28 }, + { 12810, 6 }, + { 15407, 2 }, + { 33372 }, + { 7071, 4 }, + { 14341, 6 }, + }, + }, + [36786] = { + ["name"] = AL["Gardening Gloves"], + ["craftItem"] = 42095, + ["castTime"] = 10.0, + ["reagents"] = { + { 2318, 4 }, + { 2320, 2 }, + { 2447, 6 }, + }, + }, + [36787] = { + ["name"] = AL["Crude Fishing Rod"], + ["craftItem"] = 42096, + ["castTime"] = 10.0, + ["tools"] = { 42004 }, + ["reagents"] = { + { 4470, 8 }, + { 2321 }, + }, + }, + [30057] = { + ["name"] = AL["Cooling Ration’s Bag"], + ["craftItem"] = 33379, + ["castTime"] = 10.0, + ["reagents"] = { + { 8170, 18 }, + { 12810, 8 }, + { 15407, 2 }, + { 7080, 4 }, + { 7071, 4 }, + { 14341, 6 }, + }, + }, + [36789] = { + ["name"] = AL["Gardening Broom"], + ["craftItem"] = 42098, + ["castTime"] = 10.0, + ["tools"] = { 42004 }, + ["reagents"] = { + { 4470, 6 }, + { 42149, 8 }, + { 2321 }, + { 2319 }, + }, + }, + [46068] = { + ["name"] = AL["Cleaning Cloth"], + ["craftItem"] = 60001, + ["castTime"] = 3.0, + ["reagents"] = { + { 4306, 2 }, + { 9260 }, + }, + }, + [46072] = { + ["name"] = AL["Traveler's Tent"], + ["text"] = AL["Sets up a traveler's tent. While under the cover of the tent you are resting and may gain rested experience. Can only be used outdoors."], + ["craftItem"] = 51283, + ["castTime"] = 10.0, + ["cooldown"] = 7200.0, + ["reagents"] = { + { 4470, 5 }, + { 2589, 10 }, + { 50231 }, + }, + }, + [30061] = { + ["name"] = AL["Starfeather Arrows"], + ["craftItem"] = 42201, + ["castTime"] = 10.0, + ["craftQuantityMin"] = 200, + ["tools"] = { 42004 }, + ["reagents"] = { + { 42153 }, + { 15420, 4 }, + }, + }, + [46064] = { + ["name"] = AL["Dim Torch"], + ["craftItem"] = 6182, + ["castTime"] = 2.0, + ["reagents"] = { + { 6183 }, + }, + }, + [30063] = { + ["name"] = AL["Major Healing Salve"], + ["craftItem"] = 42129, + ["castTime"] = 3.0, + ["reagents"] = { + { 42005, 10 }, + { 10286 }, + { 42146, 4 }, + }, + }, + [36795] = { + ["name"] = AL["Nutritious Rations"], + ["craftItem"] = 42155, + ["castTime"] = 10.0, + ["craftQuantityMin"] = 3, + ["reagents"] = { + { 51712, 2 }, + { 51711, 2 }, + { 51710, 2 }, + }, + }, + [36796] = { + ["name"] = AL["Shade Wood Arrows"], + ["craftItem"] = 42199, + ["castTime"] = 3.0, + ["craftQuantityMin"] = 200, + ["tools"] = { 42004 }, + ["reagents"] = { + { 42151 }, + { 5636 }, + { 3860 }, + }, + }, + [36797] = { + ["name"] = AL["Vine Cutter"], + ["craftItem"] = 42115, + ["castTime"] = 10.0, + ["tools"] = { 5956 }, + ["reagents"] = { + { 3860, 10 }, + { 7966, 2 }, + { 4304, 4 }, + { 42151 }, + }, + }, + [36798] = { + ["name"] = AL["Hiking Staff"], + ["craftItem"] = 42116, + ["castTime"] = 10.0, + ["tools"] = { 42004 }, + ["reagents"] = { + { 42008, 10 }, + { 50231, 4 }, + { 7966, 2 }, + }, + }, + [36799] = { + ["name"] = AL["Tree Hatchet"], + ["craftItem"] = 42117, + ["castTime"] = 10.0, + ["tools"] = { 5956 }, + ["reagents"] = { + { 3860, 10 }, + { 7966, 4 }, + { 55153, 2 }, + { 42151 }, + }, + }, + [36800] = { + ["name"] = AL["Bundle of Tropical Sticks"], + ["craftItem"] = 42152, + ["castTime"] = 3.0, + ["tools"] = { 42004 }, + ["reagents"] = { + { 42009, 5 }, + }, + }, + [36801] = { + ["name"] = AL["Sunshade Hat"], + ["craftItem"] = 42118, + ["castTime"] = 10.0, + ["reagents"] = { + { 4304, 12 }, + { 6049, 2 }, + { 7068, 4 }, + { 8150, 6 }, + { 4402, 5 }, + }, + }, + [36802] = { + ["name"] = AL["Thick Rations Bag"], + ["craftItem"] = 33374, + ["castTime"] = 10.0, + ["reagents"] = { + { 4304, 12 }, + { 8172, 2 }, + { 8343, 4 }, + { 4338, 10 }, + { 8150, 5 }, + }, + }, + [36803] = { + ["name"] = AL["Warped Recurve Bow"], + ["craftItem"] = 42119, + ["castTime"] = 10.0, + ["tools"] = { 42004 }, + ["reagents"] = { + { 42009, 10 }, + { 4304, 4 }, + { 42006, 2 }, + { 5117, 6 }, + { 7081, 4 }, + }, + }, + [36804] = { + ["name"] = AL["Spiced Berries "], + ["craftItem"] = 42130, + ["castTime"] = 3.0, + ["reagents"] = { + { 51711 }, + { 42005 }, + { 2692, 2 }, + }, + }, + [36805] = { + ["name"] = AL["Aromatic Berries"], + ["craftItem"] = 42131, + ["castTime"] = 3.0, + ["reagents"] = { + { 51714 }, + { 42005 }, + { 3713, 2 }, + }, + }, + [36806] = { + ["name"] = AL["Advanced Camouflage"], + ["craftItem"] = 42230, + ["castTime"] = 3.0, + ["reagents"] = { + { 11018, 2 }, + { 42149, 2 }, + { 42145, 10 }, + }, + }, + [36807] = { + ["name"] = AL["Emergency Parachute"], + ["craftItem"] = 42156, + ["castTime"] = 3.0, + ["reagents"] = { + { 50231, 4 }, + { 14047, 5 }, + { 42154 }, + }, + }, + [36808] = { + ["name"] = AL["Stabilizing Healing Salve"], + ["craftItem"] = 42128, + ["castTime"] = 3.0, + ["reagents"] = { + { 42005, 8 }, + { 8831 }, + { 42145, 4 }, + }, + }, + [30078] = { + ["name"] = AL["Snap Trap"], + ["craftItem"] = 42328, + ["castTime"] = 10.0, + ["reagents"] = { + { 4387, 4 }, + { 4359, 8 }, + }, + }, + [46077] = { + ["name"] = AL["Repaired Electro-Lantern"], + ["craftItem"] = 65030, + ["castTime"] = 5.0, + ["reagents"] = { + { 1630, 5 }, + { 10561 }, + { 4359 }, + { 4375 }, + { 4404, 2 }, + { 10558, 2 }, + }, + }, + [46075] = { + ["name"] = AL["Iron Lantern"], + ["craftItem"] = 2714, + ["castTime"] = 2.0, + ["tools"] = { 5956 }, + ["reagents"] = { + { 3575, 4 }, + { 2592, 8 }, + { 814, 4 }, + }, + }, + [46074] = { + ["name"] = AL["Simple Wooden Planter"], + ["text"] = AL["Sets up a simple wooden planter. Planters allow you to plant seeds and cultivate crops."], + ["craftItem"] = 51705, + ["castTime"] = 10.0, + ["reagents"] = { + { 4470, 10 }, + { 4359, 4 }, + }, + }, + [46073] = { + ["name"] = AL["Fishing Boat"], + ["text"] = AL["Sets up a fishing boat. While on your boat you gain +50 fishing skill. Can only be used outdoors near a deep enough body of water."], + ["craftItem"] = 51282, + ["castTime"] = 20.0, + ["cooldown"] = 3600.0, + ["tools"] = { 42004 }, + ["reagents"] = { + { 4470, 20 }, + { 4359, 10 }, + { 17058, 2 }, + }, + }, + [47101] = { + ["name"] = AL["Survivalist's Skinning Knife"], + ["craftItem"] = 7009, + ["castTime"] = 12.5, + ["reagents"] = { + { 2835, 2 }, + { 2320 }, + { 2318 }, + }, + }, + [30084] = { + ["name"] = AL["Firefin Fishing Trap"], + ["craftItem"] = 42330, + ["castTime"] = 10.0, + ["tools"] = { 42004 }, + ["reagents"] = { + { 42151, 2 }, + { 125 }, + { 42154 }, + }, + }, + [47103] = { + ["name"] = AL["Driftwood Fishing Pole"], + ["craftItem"] = 7010, + ["castTime"] = 12.5, + ["tools"] = { 42004 }, + ["reagents"] = { + { 2320, 2 }, + { 7011 }, + { 4470, 2 }, + }, + }, + [30086] = { + ["name"] = AL["Stonescale Fishing Trap"], + ["craftItem"] = 42331, + ["castTime"] = 10.0, + ["tools"] = { 42004 }, + ["reagents"] = { + { 42153, 2 }, + { 145 }, + { 42154, 2 }, + }, + }, + [46066] = { + ["name"] = AL["Murloc's Flippers"], + ["craftItem"] = 65028, + ["castTime"] = 10.0, + ["reagents"] = { + { 2319, 4 }, + { 2321, 2 }, + { 5784, 8 }, + { 6372 }, + { 17058, 2 }, + }, + }, + [36809] = { + ["name"] = AL["Premium Fishing Lure"], + ["craftItem"] = 145, + ["castTime"] = 3.0, + ["reagents"] = { + { 7974, 2 }, + { 18288 }, + }, + }, + [30071] = { + ["name"] = AL["Blackmouth Fishing Trap"], + ["craftItem"] = 42329, + ["castTime"] = 10.0, + ["reagents"] = { + { 42150, 2 }, + { 114 }, + { 42154 }, + }, + }, + [36788] = { + ["name"] = AL["Hunting Spear"], + ["craftItem"] = 42097, + ["castTime"] = 10.0, + ["tools"] = { 42004, 5956 }, + ["reagents"] = { + { 2841, 8 }, + { 2318, 4 }, + { 2321, 2 }, + { 4470, 12 }, + }, + }, + [36785] = { + ["name"] = AL["Makeshift Knife"], + ["craftItem"] = 42094, + ["castTime"] = 10.0, + ["tools"] = { 42004, 5956 }, + ["reagents"] = { + { 4470 }, + { 2840, 3 }, + { 2318, 2 }, + }, + }, + [30042] = { + ["name"] = AL["Bundle of Star Wood Sticks"], + ["craftItem"] = 42153, + ["castTime"] = 3.0, + ["tools"] = { 42004 }, + ["reagents"] = { + { 11291, 5 }, + }, + }, + [30039] = { + ["name"] = AL["Razor-sharp Skinning Knife"], + ["craftItem"] = 42124, + ["castTime"] = 10.0, + ["tools"] = { 5956 }, + ["reagents"] = { + { 7005 }, + { 12404, 4 }, + { 12655, 8 }, + { 7910, 6 }, + { 7068, 8 }, + { 7078, 4 }, + }, + }, + [36768] = { + ["name"] = AL["Crude Hatchet"], + ["craftItem"] = 42091, + ["castTime"] = 10.0, + ["reagents"] = { + { 4470 }, + { 2840, 3 }, + }, + }, + [30035] = { + ["name"] = AL["Thorium Edged Machete"], + ["craftItem"] = 42121, + ["castTime"] = 10.0, + ["tools"] = { 5956 }, + ["reagents"] = { + { 12359, 10 }, + { 8170, 4 }, + { 12644, 2 }, + { 55154, 2 }, + { 7910 }, + }, + }, + [30069] = { + ["name"] = AL["Oil-Powered Cooker"], + ["craftItem"] = 36701, + ["castTime"] = 20.0, + ["reagents"] = { + { 10561, 8 }, + { 15994, 6 }, + { 10558, 6 }, + { 814, 10 }, + { 7078, 2 }, + { 12655, 4 }, + }, + }, + [30067] = { + ["name"] = AL["Starfeather Arrows"], + ["craftItem"] = 42201, + ["castTime"] = 3.0, + ["craftQuantityMin"] = 200, + ["tools"] = { 42004 }, + ["reagents"] = { + { 42153 }, + { 15420, 4 }, + { 12655 }, + }, + }, + [30073] = { + ["name"] = AL["Rugged Mining Sack"], + ["craftItem"] = 42294, + ["castTime"] = 10.0, + ["reagents"] = { + { 4234, 8 }, + { 4233, 3 }, + { 4341, 2 }, + { 4291, 4 }, + { 4306, 14 }, + }, + }, + [30065] = { + ["name"] = AL["Fisherman's Backpack"], + ["craftItem"] = 33377, + ["castTime"] = 10.0, + ["reagents"] = { + { 8170, 20 }, + { 8172, 6 }, + { 42153, 10 }, + { 42123 }, + { 7071, 4 }, + { 14341, 6 }, + }, + }, + + }, } diff --git a/Database/Crafting.lua b/Database/Crafting.lua index f492e5d..d300e86 100644 --- a/Database/Crafting.lua +++ b/Database/Crafting.lua @@ -3562,24 +3562,110 @@ AtlasLoot_Data["AtlasLootCrafting"] = { -------------- -- Survival -- -------------- - - Survival1 = { - { 0, "Trade_Survival", "=q6=#sk1#", "" }, - { "s46064", "inv_torch_lit", "=q1=Dim Torch", "=ds=#sr# =so1=1 =so2=30 =so3=45 =so4=60" }, - { "s47103", "INV_Misc_Flute_01", "=q1=Driftwood Fishing Pole", "=ds=#sr# =so1=10 =so2=40 =so3=55 =so4=70" }, + SurvivalApprentice1 = { + { "s46064", "INV_Torch_Lit", "=q1=Dim Torch", "=ds=#sr# =so1=1 =so2=10 =so3=12 =so4=15" }, + { "s36765", "bundle_of_simple_sticks_1", "=q1=Bundle of Simple Sticks", "=ds=#sr# =so1=5 =so2=10 =so3=12 =so4=15" }, { "s47101", "INV_Weapon_ShortBlade_08", "=q1=Survivalist's Skinning Knife", "=ds=#sr# =so1=10 =so2=30 =so3=45 =so4=60" }, - { "s46072", "Trade_Survival", "=q2=Traveler's Tent", "=ds=#sr# =so1=50 =so2=100 =so3=125 =so4=150" }, - { "s46074", "trade_herbalism", "=q2=Simple Woodern Planter", "=ds=#sr# =so1=75 =so2=100 =so3=112 =so4=125" }, - { "s46073", "inv_tradeskillitem_02", "=q2=Fishing Boat", "=ds=#sr# =so1=75 =so2=125 =so3=150 =so4=175" }, - { 0, "", "", "" }, - { 0, "Trade_Survival", "=q6=#sk2#", "" }, - { "s46075", "inv_misc_lantern_01", "=q2=Iron Lantern", "=ds=#sr# =so1=90 =so2=30 =so3=45 =so4=60" }, - { "s46068", "inv_misc_bandage_07", "=q1=Cleaning Cloth", "=ds=#sr# =so1=100 =so2=150 =so3=175 =so4=200" }, - { "s46066", "inv_boots_fabric_01", "=q2=Murloc's Flippers", "=ds=#sr# =so1=120 =so2=150 =so3=162 =so4=175" }, - { "s46077", "inv_misc_lantern_01", "=q3=Repaired Electro-Lantern", "=ds=#sr# =so1=120 =so2=120 =so3=135 =so4=150" }, + { "s47103", "INV_Misc_Flute_01", "=q1=Driftwood Fishing Pole", "=ds=#sr# =so1=10 =so2=40 =so3=55 =so4=70" }, + { "s36768", "INV_Axe_14", "=q1=Crude Hatchet", "=ds=#sr# =so1=15 =so2=25 =so3=35 =so4=45" }, + { "s36766", "INV_Staff_08", "=q1=Crude Walking Stick", "=ds=#sr# =so1=15 =so2=25 =so3=35 =so4=45" }, + { "s36767", "INV_Sword_16", "=q1=Crude Machete", "=ds=#sr# =so1=15 =so2=25 =so3=35 =so4=45" }, + { "s36769", "INV_Weapon_Bow_02", "=q1=Crude Hunting Bow", "=ds=#sr# =so1=15 =so2=25 =so3=35 =so4=45" }, + { "s36770", "INV_Misc_Lantern_01", "=q2=Copper Lantern", "=ds=#sr# =so1=20 =so2=40 =so3=50 =so4=60" }, + { "s36771", "seed_shooter_2", "=q1=Simple Slingshot", "=ds=#sr# =so1=30 =so2=50 =so3=60 =so4=70" }, + { "s36772", "simple_herbalists_backpack_2", "=q1=Simple Herbalist's Backpack", "=ds=#sr# =so1=40 =so2=60 =so3=70 =so4=80" }, + { "s36773", "INV_Misc_Bag_02", "=q1=Makeshift Ration Bag", "=ds=#sr# =so1=40 =so2=60 =so3=70 =so4=80" }, + { "s46072", "Trade_Survival", "=q2=Traveler's Tent", "=ds=#sr# =so1=50 =so2=100 =so3=110 =so4=120" }, + { "s36774", "weak_healing_salve_1", "=q1=Weak Healing Salve", "=ds=#sr# =so1=50 =so2=70 =so3=80 =so4=90" }, + { "s36785", "INV_Weapon_ShortBlade_01", "=q1=Makeshift Knife", "=ds=#sr# =so1=60 =so2=80 =so3=90 =so4=100" }, + { "s36786", "INV_Gauntlets_21", "=q2=Gardening Gloves", "=ds=#sr# =so1=65 =so2=85 =so3=95 =so4=105" }, + { "s36787", "INV_Fishingpole_02", "=q1=Crude Fishing Rod", "=ds=#sr# =so1=70 =so2=90 =so3=100 =so4=110" }, + { "s46074", "Trade_Herbalism", "=q2=Simple Wooden Planter", "=ds=#sr# =so1=75 =so2=100 =so3=112 =so4=125" }, + }; + SurvivalJourneyman1 = { + { "s36788", "INV_Spear_05", "=q1=Hunting Spear", "=ds=#sr# =so1=90 =so2=110 =so3=120 =so4=130" }, + { "s36789", "INV_Misc_Flute_01", "=q2=Gardening Broom", "=ds=#sr# =so1=95 =so2=115 =so3=125 =so4=135" }, + { "s36843", "INV_Misc_MonsterTail_03", "=q2=Simple Fishing Lure", "=ds=#sr# =so1=100 =so2=120 =so3=130 =so4=140" }, + { "s36844", "healing_salve_1", "=q1=Healing Salve", "=ds=#sr# =so1=100 =so2=120 =so3=130 =so4=140" }, + { "s36842", "INV_Weapon_Bow_07", "=q2=Oakwood Bow", "=ds=#sr# =so1=100 =so2=120 =so3=130 =so4=140" }, + { "s36845", "INV_Misc_Bag_10_Red", "=q1=Fishing Bag", "=ds=#sr# =so1=105 =so2=125 =so3=135 =so4=145" }, + { "s36846", "skinners_pack_1", "=q1=Skinner's Pack", "=ds=#sr# =so1=110 =so2=130 =so3=140 =so4=150" }, + { "s46073", "INV_TradeskillItem_02", "=q2=Fishing Boat", "=ds=#sr# =so1=115 =so2=135 =so3=145 =so4=155" }, + { "s36847", "INV_Spear_04", "=q1=Gardening Pitchfork", "=ds=#sr# =so1=120 =so2=140 =so3=150 =so4=160" }, + { "s30071", "blackmouth_fishing_trap_1", "=q1=Blackmouth Fishing Trap", "=ds=#sr# =so1=125 =so2=145 =so3=155 =so4=165" }, + { "s36848", "INV_Chest_Chain_10", "=q2=Murloc Scale Coat", "=ds=#sr# =so1=125 =so2=145 =so3=155 =so4=165" }, + { "s36849", "bundle_of_oak_sticks_", "=q1=Bundle of Bright Wood Sticks", "=ds=#sr# =so1=125 =so2=135 =so3=140 =so4=145" }, + { "s46066", "INV_Boots_Fabric_01", "=q2=Murloc's Flippers", "=ds=#sr# =so1=125 =so2=145 =so3=155 =so4=165" }, + { "s36853", "INV_Sword_06", "=q2=Sturdy Blade", "=ds=#sr# =so1=130 =so2=150 =so3=160 =so4=170" }, + { "s36850", "INV_Misc_Net_01", "=q1=Sturdy Net", "=ds=#sr# =so1=130 =so2=130 =so3=135 =so4=140" }, + { "s36851", "INV_Staff_17", "=q1=Sturdy Cane", "=ds=#sr# =so1=130 =so2=150 =so3=160 =so4=170" }, + { "s36852", "INV_Weapon_ShortBlade_04", "=q2=Sturdy Knife", "=ds=#sr# =so1=130 =so2=150 =so3=160 =so4=170" }, + { "s36854", "INV_Fishingpole_02", "=q1=Reliable Fishing Rod", "=ds=#sr# =so1=135 =so2=155 =so3=165 =so4=175" }, + { "s36855", "INV_Misc_Net_01", "=q1=Throwable Net", "=ds=#sr# =so1=140 =so2=160 =so3=170 =so4=180" }, + { "s36856", "hat_of_the_junior_chef_1", "=q3=Hat of the Junior Chef", "=ds=#sr# =so1=140 =so2=160 =so3=170 =so4=180" }, + { "s30073", "INV_Misc_Bag_10", "=q2=Rugged Mining Sack", "=ds=#sr# =so1=140 =so2=160 =so3=170 =so4=180" }, + { "s36858", "INV_Ammo_Arrow_02", "=q2=Bright Wood Arrows", "=ds=#sr# =so1=145 =so2=165 =so3=175 =so4=185" }, + { "s36857", "INV_Misc_PocketWatch_02", "=q2=Treasure Compass", "=ds=#sr# =so1=145 =so2=165 =so3=175 =so4=185" }, + { "s36861", "inv_misc_food_85", "=q2=Spicy Fishing Lure", "=ds=#sr# =so1=150 =so2=170 =so3=180 =so4=190" }, + { "s36860", "potent_healing_salve_1", "=q1=Potent Healing Salve", "=ds=#sr# =so1=150 =so2=170 =so3=180 =so4=190" }, + { "s36859", "INV_Misc_Bag_11", "=q1=Studded Rations Bag", "=ds=#sr# =so1=150 =so2=170 =so3=180 =so4=190" }, + }; + SurvivalExpert1 = { + { "s30004", "slowing_bolas_2", "=q1=Slowing Bolas", "=ds=#sr# =so1=155 =so2=175 =so3=185 =so4=195" }, + { "s46075", "INV_Misc_Lantern_01", "=q2=Iron Lantern", "=ds=#sr# =so1=160 =so2=180 =so3=190 =so4=200" }, + { "s30078", "snap_trap_3", "=q1=Snap Trap", "=ds=#sr# =so1=160 =so2=180 =so3=190 =so4=200" }, + { "s30006", "INV_Sword_16", "=q1=Edged Machete", "=ds=#sr# =so1=165 =so2=185 =so3=195 =so4=205" }, + { "s30008", "INV_Spear_05", "=q1=Iron Spear", "=ds=#sr# =so1=165 =so2=185 =so3=195 =so4=205" }, + { "s30010", "INV_Fishingpole_02", "=q1=Reinforced Fishing Rod", "=ds=#sr# =so1=170 =so2=190 =so3=200 =so4=210" }, + { "s30015", "bundle_of_pine_sticks_", "=q1=Bundle of Shade Wood Sticks", "=ds=#sr# =so1=175 =so2=185 =so3=190 =so4=195" }, + { "s30084", "firefin_fishing_trap_1", "=q1=Firefin Fishing Trap", "=ds=#sr# =so1=175 =so2=195 =so3=205 =so4=215" }, + { "s30013", "INV_Boots_07", "=q3=Water Trudgers", "=ds=#sr# =so1=175 =so2=195 =so3=205 =so4=215" }, + { "s46068", "INV_Misc_Bandage_07", "=q1=Cleaning Cloth", "=ds=#sr# =so1=180 =so2=200 =so3=210 =so4=220" }, + { "s30017", "spirited_precision_sickle_2", "=q2=Sharpened Herb Sickle", "=ds=#sr# =so1=180 =so2=200 =so3=210 =so4=220" }, + { "s30022", "INV_Misc_Cape_06", "=q2=Lined Wintercloak", "=ds=#sr# =so1=185 =so2=205 =so3=215 =so4=225" }, + { "s30024", "INV_Weapon_Bow_02", "=q2=Sleek Pinewood Bow", "=ds=#sr# =so1=190 =so2=210 =so3=220 =so4=230" }, + { "s36747", "INV_Potion_122", "=q1=Jungle Remedy", "=ds=#sr# =so1=195 =so2=215 =so3=225 =so4=235" }, + { "s30027", "superior_healing_salve_1", "=q1=Superior Healing Salve", "=ds=#sr# =so1=200 =so2=220 =so3=230 =so4=240" }, + { "s30029", "INV_Misc_Pelt_Wolf_Ruin_03", "=q2=Savory Fishing Lure", "=ds=#sr# =so1=200 =so2=220 =so3=230 =so4=240" }, + { "s36796", "INV_Ammo_Arrow_02", "=q2=Shade Wood Arrows", "=ds=#sr# =so1=205 =so2=225 =so3=235 =so4=245" }, + { "s36795", "nutritious_rations_2", "=q1=Nutritious Rations", "=ds=#sr# =so1=205 =so2=225 =so3=235 =so4=245" }, + { "s36798", "INV_Staff_07", "=q1=Hiking Staff", "=ds=#sr# =so1=215 =so2=235 =so3=245 =so4=255" }, + { "s36797", "INV_Axe_24", "=q2=Vine Cutter", "=ds=#sr# =so1=215 =so2=235 =so3=245 =so4=255" }, + { "s36799", "INV_ThrowingAxe_01", "=q1=Tree Hatchet", "=ds=#sr# =so1=215 =so2=235 =so3=245 =so4=255" }, + { "s36800", "bundle_of_tropical_sticks_1", "=q1=Bundle of Tropical Sticks", "=ds=#sr# =so1=225 =so2=235 =so3=240 =so4=245" }, + }; + SurvivalArtisan1 = { + { "s46077", "INV_Misc_Lantern_01", "=q3=Repaired Electro-Lantern", "=ds=#sr# =so1=230 =so2=250 =so3=260 =so4=270" }, + { "s36801", "INV_Helmet_31", "=q2=Sunshade Hat", "=ds=#sr# =so1=235 =so2=255 =so3=265 =so4=275" }, + { "s36802", "INV_Misc_Bag_19", "=q2=Thick Rations Bag", "=ds=#sr# =so1=235 =so2=255 =so3=265 =so4=275" }, + { "s36805", "aromatic_berries_2", "=q1=Aromatic Berries", "=ds=#sr# =so1=240 =so2=260 =so3=270 =so4=280" }, + { "s36804", "spiced_berries_2", "=q1=Spiced Berries", "=ds=#sr# =so1=240 =so2=260 =so3=270 =so4=280" }, + { "s36803", "INV_Weapon_Bow_07", "=q2=Warped Recurve Bow", "=ds=#sr# =so1=240 =so2=260 =so3=270 =so4=280" }, + { "s36806", "advanced_camouflage_2", "=q1=Advanced Camouflage", "=ds=#sr# =so1=245 =so2=265 =so3=275 =so4=285" }, + { "s36807", "inv_parachute_9", "=q1=Emergency Parachute", "=ds=#sr# =so1=250 =so2=270 =so3=280 =so4=290" }, + { "s36809", "INV_Misc_EngGizmos_19", "=q2=Premium Fishing Lure", "=ds=#sr# =so1=250 =so2=270 =so3=280 =so4=290" }, + { "s36808", "stabilizing_healing_salve_1", "=q1=Stabilizing Healing Salve", "=ds=#sr# =so1=250 =so2=270 =so3=280 =so4=290" }, + { "s30031", "INV_Ammo_Arrow_02", "=q2=Smooth Ironfeather Arrows", "=ds=#sr# =so1=255 =so2=275 =so3=285 =so4=295" }, + { "s30033", "INV_Sword_33", "=q1=Heavy Duty Machete", "=ds=#sr# =so1=260 =so2=280 =so3=285 =so4=290" }, + { "s30035", "INV_Sword_33", "=q2=Thorium Edged Machete", "=ds=#sr# =so1=260 =so2=280 =so3=285 =so4=290" }, + { "s30037", "INV_Spear_08", "=q1=Thorium Spear", "=ds=#sr# =so1=265 =so2=285 =so3=295 =so4=305" }, + { "s30039", "INV_Weapon_ShortBlade_14", "=q3=Razor-sharp Skinning Knife", "=ds=#sr# =so1=270 =so2=290 =so3=300 =so4=310" }, + { "s30042", "bundle_of_star_wood_sticks_1", "=q1=Bundle of Star Wood Sticks", "=ds=#sr# =so1=270 =so2=275 =so3=280 =so4=285" }, + { "s30086", "stonescale_fishing_trap_1", "=q1=Stonescale Fishing Trap", "=ds=#sr# =so1=275 =so2=295 =so3=305 =so4=315" }, + { "s30045", "INV_Fishingpole_02", "=q3=Mastercraft Fishing Rod", "=ds=#sr# =so1=275 =so2=295 =so3=305 =so4=315" }, + { "s30050", "miners_rucksack_1", "=q2=Miner's Rucksack", "=ds=#sr# =so1=280 =so2=300 =so3=310 =so4=320" }, + { "s30065", "fishermans_backpack_1", "=q2=Fisherman's Backpack", "=ds=#sr# =so1=285 =so2=305 =so3=315 =so4=325" }, + { "s30052", "herbalists_knapsack_1", "=q2=Herbalist's Knapsack", "=ds=#sr# =so1=285 =so2=305 =so3=315 =so4=325" }, + { "s30054", "skinners_pack_1", "=q2=Skinner's Carryall", "=ds=#sr# =so1=285 =so2=305 =so3=315 =so4=325" }, + { "s30057", "INV_Misc_Bag_17", "=q3=Cooling Rations Bag", "=ds=#sr# =so1=290 =so2=310 =so3=320 =so4=330" }, + { "s30069", "oil-powered_cooker_4", "=q3=Oil-Powered Cooker", "=ds=#sr# =so1=295 =so2=315 =so3=325 =so4=335" }, + { "s36749", "spirited_precision_sickle_4", "=q3=Spirited Precision Sickle", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, + { "s30067", "INV_Ammo_Arrow_02", "=q3=Starfeather Arrows", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, + { "s30063", "major_healing_salve_1", "=q1=Major Healing Salve", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, + { "s36751", "prospectors_magnifying_lens_3", "=q3=Prospector’s Magnifying Lens", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, }; - Survival2 = { + Gardening1 = { { 51706, "inv_misc_bag_03", "=q1=Country Pumpkin Seeds", "", "" }, { 51713, "inv_misc_food_25", "=q1=Plump Country Pumpkin", "3-8", "" }, { 51710, "inv_misc_food_25", "=q1=Plump Country Pumpkin", "3-8", "" }, @@ -3595,7 +3681,6 @@ AtlasLoot_Data["AtlasLootCrafting"] = { { 51716, "inv_misc_bag_04", "=q1=Magic Mushroom Spores", "", "" }, { 51720, "inv_mushroom_11", "=q1=Power Mushroom", "2-6", "" }, { 51717, "inv_mushroom_11", "=q1=Hardened Mushroom", "2-6", "" }, - }; Poisons1 = { diff --git a/Database/TableRegister.lua b/Database/TableRegister.lua index 898b444..4aafe4d 100644 --- a/Database/TableRegister.lua +++ b/Database/TableRegister.lua @@ -1016,8 +1016,11 @@ AtlasLoot_TableNames = { --FirstAid ["FirstAid1"] = { AL["First Aid"], "AtlasLootCrafting" }, --Survival - ["Survival1"] = { AL["Survival"], "AtlasLootCrafting" }, - ["Survival2"] = { AL["Gardening"], "AtlasLootCrafting" }, + ["SurvivalApprentice1"] = { AL["Survival"], "AtlasLootCrafting" }, + ["SurvivalJourneyman1"] = { AL["Survival"], "AtlasLootCrafting" }, + ["SurvivalExpert1"] = { AL["Survival"], "AtlasLootCrafting" }, + ["SurvivalArtisan1"] = { AL["Survival"], "AtlasLootCrafting" }, + ["Gardening1"] = { AL["Gardening"], "AtlasLootCrafting" }, --Poisons ["Poisons1"] = { AL["Rogue"] .. " - " .. AL["Poisons"], "AtlasLootCrafting" }, ----------- @@ -2223,8 +2226,11 @@ AtlasLoot_TableNamesBoss = { --FirstAid ["FirstAid1"] = { AL["First Aid"], "AtlasLootCrafting" }, --Survival - ["Survival1"] = { AL["Survival"], "AtlasLootCrafting" }, - ["Survival2"] = { AL["Gardening"], "AtlasLootCrafting" }, + ["SurvivalApprentice1"] = { AL["Survival"], "AtlasLootCrafting" }, + ["SurvivalJourneyman1"] = { AL["Survival"], "AtlasLootCrafting" }, + ["SurvivalExpert1"] = { AL["Survival"], "AtlasLootCrafting" }, + ["SurvivalArtisan1"] = { AL["Survival"], "AtlasLootCrafting" }, + ["Gardening1"] = { AL["Gardening"], "AtlasLootCrafting" }, --Poisons ["Poisons1"] = { AL["Rogue"] .. ": " .. AL["Poisons"], "AtlasLootCrafting" }, }, diff --git a/Database/TooltipStrings.lua b/Database/TooltipStrings.lua index 316a34a..ea12164 100644 --- a/Database/TooltipStrings.lua +++ b/Database/TooltipStrings.lua @@ -7201,5 +7201,90 @@ AtlasLoot_Data["AtlasLootSources"] = { [33046] = AL["Windhorn Canyon"].." - "..AL["Chieftain Shalk Blackwind"].." (24.94%)", [33048] = AL["Windhorn Canyon"].." - "..AL["Chieftain Shalk Blackwind"].." (25.26%)", [70243] = AL["Windhorn Canyon"].." - "..AL["Chieftain Shalk Blackwind"].." (6.05%)", - + [42149] = AL["Survival"].." ("..AL["Skill:"].." 5+)", + [7009] = AL["Survival"].." ("..AL["Skill:"].." 10+)", + [7010] = AL["Survival"].." ("..AL["Skill:"].." 10+)", + [42091] = AL["Survival"].." ("..AL["Skill:"].." 15+)", + [42089] = AL["Survival"].." ("..AL["Skill:"].." 15+)", + [42090] = AL["Survival"].." ("..AL["Skill:"].." 15+)", + [42092] = AL["Survival"].." ("..AL["Skill:"].." 15+)", + [42093] = AL["Survival"].." ("..AL["Skill:"].." 20+)", + [42229] = AL["Survival"].." ("..AL["Skill:"].." 30+)", + [33369] = AL["Survival"].." ("..AL["Skill:"].." 40+)", + [33370] = AL["Survival"].." ("..AL["Skill:"].." 40+)", + [42233] = AL["Survival"].." ("..AL["Skill:"].." 50+)", + [42094] = AL["Survival"].." ("..AL["Skill:"].." 60+)", + [42095] = AL["Survival"].." ("..AL["Skill:"].." 65+)", + [42096] = AL["Survival"].." ("..AL["Skill:"].." 70+)", + [42097] = AL["Survival"].." ("..AL["Skill:"].." 90+)", + [42098] = AL["Survival"].." ("..AL["Skill:"].." 95+)", + [114] = AL["Survival"].." ("..AL["Skill:"].." 100+)", + [42125] = AL["Survival"].." ("..AL["Skill:"].." 100+)", + [42099] = AL["Survival"].." ("..AL["Skill:"].." 100+)", + [33371] = AL["Survival"].." ("..AL["Skill:"].." 105+)", + [33372] = AL["Survival"].." ("..AL["Skill:"].." 110+)", + [42100] = AL["Survival"].." ("..AL["Skill:"].." 120+)", + [42329] = AL["Survival"].." ("..AL["Skill:"].." 125+)", + [42101] = AL["Survival"].." ("..AL["Skill:"].." 125+)", + [42150] = AL["Survival"].." ("..AL["Skill:"].." 125+)", + [42104] = AL["Survival"].." ("..AL["Skill:"].." 130+)", + [42154] = AL["Survival"].." ("..AL["Skill:"].." 130+)", + [42102] = AL["Survival"].." ("..AL["Skill:"].." 130+)", + [42103] = AL["Survival"].." ("..AL["Skill:"].." 130+)", + [42105] = AL["Survival"].." ("..AL["Skill:"].." 135+)", + [42132] = AL["Survival"].." ("..AL["Skill:"].." 140+)", + [42106] = AL["Survival"].." ("..AL["Skill:"].." 140+)", + [42294] = AL["Survival"].." ("..AL["Skill:"].." 140+)", + [42198] = AL["Survival"].." ("..AL["Skill:"].." 145+)", + [42107] = AL["Survival"].." ("..AL["Skill:"].." 145+)", + [125] = AL["Survival"].." ("..AL["Skill:"].." 150+)", + [42126] = AL["Survival"].." ("..AL["Skill:"].." 150+)", + [33373] = AL["Survival"].." ("..AL["Skill:"].." 150+)", + [106] = AL["Survival"].." ("..AL["Skill:"].." 155+)", + [42328] = AL["Survival"].." ("..AL["Skill:"].." 160+)", + [42108] = AL["Survival"].." ("..AL["Skill:"].." 165+)", + [42109] = AL["Survival"].." ("..AL["Skill:"].." 165+)", + [42110] = AL["Survival"].." ("..AL["Skill:"].." 170+)", + [42151] = AL["Survival"].." ("..AL["Skill:"].." 175+)", + [42330] = AL["Survival"].." ("..AL["Skill:"].." 175+)", + [42111] = AL["Survival"].." ("..AL["Skill:"].." 175+)", + [42112] = AL["Survival"].." ("..AL["Skill:"].." 180+)", + [42113] = AL["Survival"].." ("..AL["Skill:"].." 185+)", + [42114] = AL["Survival"].." ("..AL["Skill:"].." 190+)", + [2633] = AL["Survival"].." ("..AL["Skill:"].." 195+)", + [42127] = AL["Survival"].." ("..AL["Skill:"].." 200+)", + [133] = AL["Survival"].." ("..AL["Skill:"].." 200+)", + [42199] = AL["Survival"].." ("..AL["Skill:"].." 205+)", + [42155] = AL["Survival"].." ("..AL["Skill:"].." 205+)", + [42116] = AL["Survival"].." ("..AL["Skill:"].." 215+)", + [42115] = AL["Survival"].." ("..AL["Skill:"].." 215+)", + [42117] = AL["Survival"].." ("..AL["Skill:"].." 215+)", + [42152] = AL["Survival"].." ("..AL["Skill:"].." 225+)", + [42118] = AL["Survival"].." ("..AL["Skill:"].." 235+)", + [33374] = AL["Survival"].." ("..AL["Skill:"].." 235+)", + [42131] = AL["Survival"].." ("..AL["Skill:"].." 240+)", + [42130] = AL["Survival"].." ("..AL["Skill:"].." 240+)", + [42119] = AL["Survival"].." ("..AL["Skill:"].." 240+)", + [42230] = AL["Survival"].." ("..AL["Skill:"].." 245+)", + [42156] = AL["Survival"].." ("..AL["Skill:"].." 250+)", + [145] = AL["Survival"].." ("..AL["Skill:"].." 250+)", + [42128] = AL["Survival"].." ("..AL["Skill:"].." 250+)", + [42200] = AL["Survival"].." ("..AL["Skill:"].." 255+)", + [42120] = AL["Survival"].." ("..AL["Skill:"].." 260+)", + [42121] = AL["Survival"].." ("..AL["Skill:"].." 260+)", + [42122] = AL["Survival"].." ("..AL["Skill:"].." 265+)", + [42124] = AL["Survival"].." ("..AL["Skill:"].." 270+)", + [42153] = AL["Survival"].." ("..AL["Skill:"].." 270+)", + [42331] = AL["Survival"].." ("..AL["Skill:"].." 275+)", + [42123] = AL["Survival"].." ("..AL["Skill:"].." 275+)", + [33375] = AL["Survival"].." ("..AL["Skill:"].." 280+)", + [33377] = AL["Survival"].." ("..AL["Skill:"].." 285+)", + [33376] = AL["Survival"].." ("..AL["Skill:"].." 285+)", + [33378] = AL["Survival"].." ("..AL["Skill:"].." 285+)", + [33379] = AL["Survival"].." ("..AL["Skill:"].." 290+)", + [36701] = AL["Survival"].." ("..AL["Skill:"].." 295+)", + [42231] = AL["Survival"].." ("..AL["Skill:"].." 300)", + [42201] = AL["Survival"].." ("..AL["Skill:"].." 300)", + [42129] = AL["Survival"].." ("..AL["Skill:"].." 300)", + [42232] = AL["Survival"].." ("..AL["Skill:"].." 300)", }