diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
new file mode 100644
index 0000000..742ac5f
--- /dev/null
+++ b/.github/workflows/release.yml
@@ -0,0 +1,45 @@
+# description of this workflow, can be anything you want
+name: Package and release
+
+# we need to let GitHub know _when_ we want to release, typically only when we create a new tag.
+# this will target only tags, and not all pushes to the master branch.
+# this part can be heavily customized to your liking, like targeting only tags that match a certain word,
+# other branches or even pullrequests.
+on:
+ push:
+ tags:
+ - '**'
+
+# a workflow is built up as jobs, and within these jobs are steps
+jobs:
+
+ # "release" is a job, you can name it anything you want
+ release:
+
+ # we can run our steps on pretty much anything, but the "ubuntu-latest" image is a safe bet
+ runs-on: ubuntu-latest
+
+ # specify the environment variables used by the packager, matching the secrets from the project on GitHub
+ env:
+ GITHUB_OAUTH: ${{ secrets.GITHUB_TOKEN }} # "GITHUB_TOKEN" is a secret always provided to the workflow
+ # for your own token, the name cannot start with "GITHUB_"
+
+ # "steps" holds a list of all the steps needed to package and release our AddOn
+ steps:
+
+ # we first have to clone the AddOn project, this is a required step
+ - name: Clone project
+ uses: actions/checkout@v2
+ with:
+ fetch-depth: 0 # gets git history for changelogs
+
+ # once cloned, we just run the GitHub Action for the packager project
+ - name: Package and release
+ uses: BigWigsMods/packager@v2
+
+ # another example where we supply additional arguments, this example is specifically to release
+ # for the Burning Crusade Classic version of the game and doesn't upload to WoWInterface
+ - name: Package and release for Burning Crusade Classic
+ uses: BigWigsMods/packager@v2
+ with:
+ args: -g bcc -w 0
diff --git a/Database/Hunter.lua b/Database/Hunter.lua
deleted file mode 100644
index f7070cb..0000000
--- a/Database/Hunter.lua
+++ /dev/null
@@ -1,957 +0,0 @@
-local _, FieldGuide = ...
-
-FieldGuide.HUNTER = {
- [2] = {
- [1] = {
- ["name"] = "Track Beasts",
- ["rank"] = 1,
- ["cost"] = 10,
- ["texture"] = "Interface/ICONS/ability_tracking",
- ["id"] = 1494
- },
- },
- [4] = {
- [1] = {
- ["name"] = "Aspect of the Monkey",
- ["rank"] = 1,
- ["cost"] = 100,
- ["texture"] = "Interface/ICONS/ability_hunter_aspectofthemonkey",
- ["id"] = 13163
- },
- [2] = {
- ["name"] = "Serpent Sting",
- ["rank"] = 1,
- ["cost"] = 100,
- ["texture"] = "Interface/ICONS/ability_hunter_quickshot",
- ["id"] = 1978
- },
- },
- [6] = {
- [1] = {
- ["name"] = "Arcane Shot",
- ["rank"] = 1,
- ["cost"] = 100,
- ["texture"] = "Interface/ICONS/ability_impalingbolt",
- ["id"] = 3044
- },
- [2] = {
- ["name"] = "Hunter's Mark",
- ["rank"] = 1,
- ["cost"] = 100,
- ["texture"] = "Interface/ICONS/ability_hunter_snipershot",
- ["id"] = 1130
- },
- },
- [8] = {
- [1] = {
- ["name"] = "Parry",
- ["rank"] = 1,
- ["cost"] = 200,
- ["texture"] = "Interface/ICONS/ability_parry",
- ["id"] = 3127
- },
- [2] = {
- ["name"] = "Concussive Shot",
- ["rank"] = 1,
- ["cost"] = 200,
- ["texture"] = "Interface/ICONS/spell_frost_stun",
- ["id"] = 5116
- },
- [3] = {
- ["name"] = "Raptor Strike",
- ["rank"] = 2,
- ["cost"] = 200,
- ["texture"] = "Interface/ICONS/ability_meleedamage",
- ["id"] = 14260
- },
- },
- [10] = {
- [1] = {
- ["name"] = "Beast Training",
- ["rank"] = 1,
- ["cost"] = 0,
- ["texture"] = "Interface/ICONS/ability_hunter_beastcall02",
- ["id"] = 5149
- },
- [2] = {
- ["name"] = "Aspect of the Hawk",
- ["rank"] = 1,
- ["cost"] = 400,
- ["texture"] = "Interface/ICONS/spell_nature_ravenform",
- ["id"] = 13165
- },
- [3] = {
- ["name"] = "Call Pet",
- ["rank"] = 1,
- ["cost"] = 0,
- ["texture"] = "Interface/ICONS/ability_hunter_beastcall",
- ["id"] = 883
- },
- [4] = {
- ["name"] = "Dismiss Pet",
- ["rank"] = 1,
- ["cost"] = 0,
- ["texture"] = "Interface/ICONS/spell_nature_spiritwolf",
- ["id"] = 2641
- },
- [5] = {
- ["name"] = "Feed Pet",
- ["rank"] = 1,
- ["cost"] = 0,
- ["texture"] = "Interface/ICONS/ability_hunter_beasttraining",
- ["id"] = 6991
- },
- [6] = {
- ["name"] = "Revive Pet",
- ["rank"] = 1,
- ["cost"] = 0,
- ["texture"] = "Interface/ICONS/ability_hunter_beastsoothe",
- ["id"] = 982
- },
- [7] = {
- ["name"] = "Tame Beast",
- ["rank"] = 1,
- ["cost"] = 0,
- ["texture"] = "Interface/ICONS/ability_hunter_beasttaming",
- ["id"] = 1515
- },
- [8] = {
- ["name"] = "Serpent Sting",
- ["rank"] = 2,
- ["cost"] = 400,
- ["texture"] = "Interface/ICONS/ability_hunter_quickshot",
- ["id"] = 13549
- },
- [9] = {
- ["name"] = "Track Humanoids",
- ["rank"] = 1,
- ["cost"] = 400,
- ["texture"] = "Interface/ICONS/spell_holy_prayerofhealing",
- ["id"] = 19883
- },
- },
- [12] = {
- [1] = {
- ["name"] = "Mend Pet",
- ["rank"] = 1,
- ["cost"] = 600,
- ["texture"] = "Interface/ICONS/ability_hunter_mendpet",
- ["id"] = 136
- },
- [2] = {
- ["name"] = "Arcane Shot",
- ["rank"] = 2,
- ["cost"] = 600,
- ["texture"] = "Interface/ICONS/ability_impalingbolt",
- ["id"] = 14281
- },
- [3] = {
- ["name"] = "Distracting Shot",
- ["rank"] = 1,
- ["cost"] = 600,
- ["texture"] = "Interface/ICONS/spell_arcane_blink",
- ["id"] = 20736
- },
- [4] = {
- ["name"] = "Wing Clip",
- ["rank"] = 1,
- ["cost"] = 600,
- ["texture"] = "Interface/ICONS/ability_rogue_trip",
- ["id"] = 2974
- },
- },
- [14] = {
- [1] = {
- ["name"] = "Eagle Eye",
- ["rank"] = 1,
- ["cost"] = 1200,
- ["texture"] = "Interface/ICONS/ability_hunter_eagleeye",
- ["id"] = 6197
- },
- [2] = {
- ["name"] = "Eyes of the Beast",
- ["rank"] = 1,
- ["cost"] = 1200,
- ["texture"] = "Interface/ICONS/ability_eyeoftheowl",
- ["id"] = 1002
- },
- [3] = {
- ["name"] = "Scare Beast",
- ["rank"] = 1,
- ["cost"] = 1200,
- ["texture"] = "Interface/ICONS/ability_druid_cower",
- ["id"] = 1513
- },
- },
- [16] = {
- [1] = {
- ["name"] = "Immolation Trap",
- ["rank"] = 1,
- ["cost"] = 1800,
- ["texture"] = "Interface/ICONS/spell_fire_flameshock",
- ["id"] = 13795
- },
- [2] = {
- ["name"] = "Mongoose Bite",
- ["rank"] = 1,
- ["cost"] = 1800,
- ["texture"] = "Interface/ICONS/ability_hunter_swiftstrike",
- ["id"] = 1495
- },
- [3] = {
- ["name"] = "Raptor Strike",
- ["rank"] = 3,
- ["cost"] = 1800,
- ["texture"] = "Interface/ICONS/ability_meleedamage",
- ["id"] = 14261
- },
- },
- [18] = {
- [1] = {
- ["name"] = "Aspect of the Hawk",
- ["rank"] = 2,
- ["cost"] = 2000,
- ["texture"] = "Interface/ICONS/spell_nature_ravenform",
- ["id"] = 14318
- },
- [2] = {
- ["name"] = "Multi-Shot",
- ["rank"] = 1,
- ["cost"] = 2000,
- ["texture"] = "Interface/ICONS/ability_upgrademoonglaive",
- ["id"] = 2643
- },
- [3] = {
- ["name"] = "Serpent Sting",
- ["rank"] = 3,
- ["cost"] = 2000,
- ["texture"] = "Interface/ICONS/ability_hunter_quickshot",
- ["id"] = 13550
- },
- [4] = {
- ["name"] = "Track Undead",
- ["rank"] = 1,
- ["cost"] = 2000,
- ["texture"] = "Interface/ICONS/spell_shadow_darksummoning",
- ["id"] = 19884
- },
- },
- [20] = {
- [1] = {
- ["name"] = "Dual Wield",
- ["rank"] = 1,
- ["cost"] = 2200,
- ["texture"] = "Interface/ICONS/ability_dualwield",
- ["id"] = 674
- },
- [2] = {
- ["name"] = "Aspect of the Cheetah",
- ["rank"] = 1,
- ["cost"] = 2200,
- ["texture"] = "Interface/ICONS/ability_mount_jungletiger",
- ["id"] = 5118
- },
- [3] = {
- ["name"] = "Mend Pet",
- ["rank"] = 2,
- ["cost"] = 2200,
- ["texture"] = "Interface/ICONS/ability_hunter_mendpet",
- ["id"] = 3111
- },
- [4] = {
- ["name"] = "Arcane Shot",
- ["rank"] = 3,
- ["cost"] = 2200,
- ["texture"] = "Interface/ICONS/ability_impalingbolt",
- ["id"] = 14282
- },
- [5] = {
- ["name"] = "Distracting Shot",
- ["rank"] = 2,
- ["cost"] = 2200,
- ["texture"] = "Interface/ICONS/spell_arcane_blink",
- ["id"] = 14274
- },
- [6] = {
- ["name"] = "Disengage",
- ["rank"] = 1,
- ["cost"] = 2200,
- ["texture"] = "Interface/ICONS/ability_rogue_feint",
- ["id"] = 781
- },
- [7] = {
- ["name"] = "Freezing Trap",
- ["rank"] = 1,
- ["cost"] = 2200,
- ["texture"] = "Interface/ICONS/spell_frost_chainsofice",
- ["id"] = 1499
- },
- },
- [22] = {
- [1] = {
- ["name"] = "Hunter's Mark",
- ["rank"] = 2,
- ["cost"] = 6000,
- ["texture"] = "Interface/ICONS/ability_hunter_snipershot",
- ["id"] = 14323
- },
- [2] = {
- ["name"] = "Scorpid Sting",
- ["rank"] = 1,
- ["cost"] = 6000,
- ["texture"] = "Interface/ICONS/ability_hunter_criticalshot",
- ["id"] = 3043
- },
- },
- [24] = {
- [1] = {
- ["name"] = "Beast Lore",
- ["rank"] = 1,
- ["cost"] = 7000,
- ["texture"] = "Interface/ICONS/ability_physical_taunt",
- ["id"] = 1462
- },
- [2] = {
- ["name"] = "Raptor Strike",
- ["rank"] = 4,
- ["cost"] = 7000,
- ["texture"] = "Interface/ICONS/ability_meleedamage",
- ["id"] = 14262
- },
- [3] = {
- ["name"] = "Track Hidden",
- ["rank"] = 1,
- ["cost"] = 7000,
- ["texture"] = "Interface/ICONS/ability_stealth",
- ["id"] = 19885
- },
- },
- [26] = {
- [1] = {
- ["name"] = "Rapid Fire",
- ["rank"] = 1,
- ["cost"] = 7000,
- ["texture"] = "Interface/ICONS/ability_hunter_runningshot",
- ["id"] = 3045
- },
- [2] = {
- ["name"] = "Serpent Sting",
- ["rank"] = 4,
- ["cost"] = 7000,
- ["texture"] = "Interface/ICONS/ability_hunter_quickshot",
- ["id"] = 13551
- },
- [3] = {
- ["name"] = "Immolation Trap",
- ["rank"] = 2,
- ["cost"] = 7000,
- ["texture"] = "Interface/ICONS/spell_fire_flameshock",
- ["id"] = 14302
- },
- [4] = {
- ["name"] = "Track Elementals",
- ["rank"] = 1,
- ["cost"] = 7000,
- ["texture"] = "Interface/ICONS/spell_frost_summonwaterelemental",
- ["id"] = 19880
- },
- },
- [28] = {
- [1] = {
- ["name"] = "Aspect of the Hawk",
- ["rank"] = 3,
- ["cost"] = 8000,
- ["texture"] = "Interface/ICONS/spell_nature_ravenform",
- ["id"] = 14319
- },
- [2] = {
- ["name"] = "Mend Pet",
- ["rank"] = 3,
- ["cost"] = 8000,
- ["texture"] = "Interface/ICONS/ability_hunter_mendpet",
- ["id"] = 3661
- },
- [3] = {
- ["name"] = "Aimed Shot",
- ["rank"] = 2,
- ["cost"] = 400,
- ["texture"] = "Interface/ICONS/inv_spear_07",
- ["id"] = 20900,
- ["talent"] = true
- },
- [4] = {
- ["name"] = "Arcane Shot",
- ["rank"] = 4,
- ["cost"] = 8000,
- ["texture"] = "Interface/ICONS/ability_impalingbolt",
- ["id"] = 14283
- },
- [5] = {
- ["name"] = "Frost Trap",
- ["rank"] = 1,
- ["cost"] = 8000,
- ["texture"] = "Interface/ICONS/spell_frost_freezingbreath",
- ["id"] = 13809
- },
- },
- [30] = {
- [1] = {
- ["name"] = "Aspect of the Beast",
- ["rank"] = 1,
- ["cost"] = 8000,
- ["texture"] = "Interface/ICONS/ability_mount_pinktiger",
- ["id"] = 13161
- },
- [2] = {
- ["name"] = "Scare Beast",
- ["rank"] = 2,
- ["cost"] = 8000,
- ["texture"] = "Interface/ICONS/ability_druid_cower",
- ["id"] = 14326
- },
- [3] = {
- ["name"] = "Distracting Shot",
- ["rank"] = 3,
- ["cost"] = 8000,
- ["texture"] = "Interface/ICONS/spell_arcane_blink",
- ["id"] = 15629
- },
- [4] = {
- ["name"] = "Multi-Shot",
- ["rank"] = 2,
- ["cost"] = 8000,
- ["texture"] = "Interface/ICONS/ability_upgrademoonglaive",
- ["id"] = 14288
- },
- [5] = {
- ["name"] = "Feign Death",
- ["rank"] = 1,
- ["cost"] = 8000,
- ["texture"] = "Interface/ICONS/ability_rogue_feigndeath",
- ["id"] = 5384
- },
- [6] = {
- ["name"] = "Mongoose Bite",
- ["rank"] = 2,
- ["cost"] = 8000,
- ["texture"] = "Interface/ICONS/ability_hunter_swiftstrike",
- ["id"] = 14269
- },
- },
- [32] = {
- [1] = {
- ["name"] = "Flare",
- ["rank"] = 1,
- ["cost"] = 10000,
- ["texture"] = "Interface/ICONS/spell_fire_flare",
- ["id"] = 1543
- },
- [2] = {
- ["name"] = "Scorpid Sting",
- ["rank"] = 2,
- ["cost"] = 10000,
- ["texture"] = "Interface/ICONS/ability_hunter_criticalshot",
- ["id"] = 14275
- },
- [3] = {
- ["name"] = "Raptor Strike",
- ["rank"] = 5,
- ["cost"] = 10000,
- ["texture"] = "Interface/ICONS/ability_meleedamage",
- ["id"] = 14263
- },
- [4] = {
- ["name"] = "Track Demons",
- ["rank"] = 1,
- ["cost"] = 10000,
- ["texture"] = "Interface/ICONS/spell_shadow_summonfelhunter",
- ["id"] = 19878
- },
- },
- [34] = {
- [1] = {
- ["name"] = "Serpent Sting",
- ["rank"] = 5,
- ["cost"] = 12000,
- ["texture"] = "Interface/ICONS/ability_hunter_quickshot",
- ["id"] = 13552
- },
- [2] = {
- ["name"] = "Disengage",
- ["rank"] = 2,
- ["cost"] = 12000,
- ["texture"] = "Interface/ICONS/ability_rogue_feint",
- ["id"] = 14272
- },
- [3] = {
- ["name"] = "Explosive Trap",
- ["rank"] = 1,
- ["cost"] = 12000,
- ["texture"] = "Interface/ICONS/spell_fire_selfdestruct",
- ["id"] = 13813
- },
- },
- [36] = {
- [1] = {
- ["name"] = "Mend Pet",
- ["rank"] = 4,
- ["cost"] = 14000,
- ["texture"] = "Interface/ICONS/ability_hunter_mendpet",
- ["id"] = 3662
- },
- [2] = {
- ["name"] = "Aimed Shot",
- ["rank"] = 3,
- ["cost"] = 700,
- ["texture"] = "Interface/ICONS/inv_spear_07",
- ["id"] = 20901,
- ["talent"] = true
- },
- [3] = {
- ["name"] = "Arcane Shot",
- ["rank"] = 5,
- ["cost"] = 14000,
- ["texture"] = "Interface/ICONS/ability_impalingbolt",
- ["id"] = 14284
- },
- [4] = {
- ["name"] = "Viper Sting",
- ["rank"] = 1,
- ["cost"] = 14000,
- ["texture"] = "Interface/ICONS/ability_hunter_aimedshot",
- ["id"] = 3034
- },
- [5] = {
- ["name"] = "Immolation Trap",
- ["rank"] = 3,
- ["cost"] = 14000,
- ["texture"] = "Interface/ICONS/spell_fire_flameshock",
- ["id"] = 14303
- },
- },
- [38] = {
- [1] = {
- ["name"] = "Aspect of the Hawk",
- ["rank"] = 4,
- ["cost"] = 16000,
- ["texture"] = "Interface/ICONS/spell_nature_ravenform",
- ["id"] = 14320
- },
- [2] = {
- ["name"] = "Wing Clip",
- ["rank"] = 2,
- ["cost"] = 16000,
- ["texture"] = "Interface/ICONS/ability_rogue_trip",
- ["id"] = 14267
- },
- },
- [40] = {
- [1] = {
- ["name"] = "Mail",
- ["rank"] = 1,
- ["cost"] = 18000,
- ["texture"] = "Interface/ICONS/inv_chest_chain_05",
- ["id"] = 8737
- },
- [2] = {
- ["name"] = "Aspect of the Pack",
- ["rank"] = 1,
- ["cost"] = 18000,
- ["texture"] = "Interface/ICONS/ability_mount_whitetiger",
- ["id"] = 13159
- },
- [3] = {
- ["name"] = "Distracting Shot",
- ["rank"] = 4,
- ["cost"] = 18000,
- ["texture"] = "Interface/ICONS/spell_arcane_blink",
- ["id"] = 15630
- },
- [4] = {
- ["name"] = "Hunter's Mark",
- ["rank"] = 3,
- ["cost"] = 18000,
- ["texture"] = "Interface/ICONS/ability_hunter_snipershot",
- ["id"] = 14324
- },
- [5] = {
- ["name"] = "Volley",
- ["rank"] = 1,
- ["cost"] = 18000,
- ["texture"] = "Interface/ICONS/ability_marksmanship",
- ["id"] = 1510
- },
- [6] = {
- ["name"] = "Freezing Trap",
- ["rank"] = 2,
- ["cost"] = 18000,
- ["texture"] = "Interface/ICONS/spell_frost_chainsofice",
- ["id"] = 14310
- },
- [7] = {
- ["name"] = "Raptor Strike",
- ["rank"] = 6,
- ["cost"] = 18000,
- ["texture"] = "Interface/ICONS/ability_meleedamage",
- ["id"] = 14264
- },
- [8] = {
- ["name"] = "Track Giants",
- ["rank"] = 1,
- ["cost"] = 18000,
- ["texture"] = "Interface/ICONS/ability_racial_avatar",
- ["id"] = 19882
- },
- },
- [42] = {
- [1] = {
- ["name"] = "Multi-Shot",
- ["rank"] = 3,
- ["cost"] = 24000,
- ["texture"] = "Interface/ICONS/ability_upgrademoonglaive",
- ["id"] = 14289
- },
- [2] = {
- ["name"] = "Scorpid Sting",
- ["rank"] = 3,
- ["cost"] = 24000,
- ["texture"] = "Interface/ICONS/ability_hunter_criticalshot",
- ["id"] = 14276
- },
- [3] = {
- ["name"] = "Serpent Sting",
- ["rank"] = 6,
- ["cost"] = 24000,
- ["texture"] = "Interface/ICONS/ability_hunter_quickshot",
- ["id"] = 13553
- },
- [4] = {
- ["name"] = "Counterattack",
- ["rank"] = 2,
- ["cost"] = 1200,
- ["texture"] = "Interface/ICONS/ability_warrior_challange",
- ["id"] = 20909,
- ["talent"] = true
- },
- },
- [44] = {
- [1] = {
- ["name"] = "Mend Pet",
- ["rank"] = 5,
- ["cost"] = 26000,
- ["texture"] = "Interface/ICONS/ability_hunter_mendpet",
- ["id"] = 13542
- },
- [2] = {
- ["name"] = "Aimed Shot",
- ["rank"] = 4,
- ["cost"] = 1300,
- ["texture"] = "Interface/ICONS/inv_spear_07",
- ["id"] = 20902,
- ["talent"] = true
- },
- [3] = {
- ["name"] = "Arcane Shot",
- ["rank"] = 6,
- ["cost"] = 26000,
- ["texture"] = "Interface/ICONS/ability_impalingbolt",
- ["id"] = 14285
- },
- [4] = {
- ["name"] = "Explosive Trap",
- ["rank"] = 2,
- ["cost"] = 26000,
- ["texture"] = "Interface/ICONS/spell_fire_selfdestruct",
- ["id"] = 14316
- },
- [5] = {
- ["name"] = "Mongoose Bite",
- ["rank"] = 3,
- ["cost"] = 26000,
- ["texture"] = "Interface/ICONS/ability_hunter_swiftstrike",
- ["id"] = 14270
- },
- },
- [46] = {
- [1] = {
- ["name"] = "Aspect of the Wild",
- ["rank"] = 1,
- ["cost"] = 28000,
- ["texture"] = "Interface/ICONS/spell_nature_protectionformnature",
- ["id"] = 20043
- },
- [2] = {
- ["name"] = "Scare Beast",
- ["rank"] = 3,
- ["cost"] = 28000,
- ["texture"] = "Interface/ICONS/ability_druid_cower",
- ["id"] = 14327
- },
- [3] = {
- ["name"] = "Viper Sting",
- ["rank"] = 2,
- ["cost"] = 28000,
- ["texture"] = "Interface/ICONS/ability_hunter_aimedshot",
- ["id"] = 14279
- },
- [4] = {
- ["name"] = "Immolation Trap",
- ["rank"] = 4,
- ["cost"] = 28000,
- ["texture"] = "Interface/ICONS/spell_fire_flameshock",
- ["id"] = 14304
- },
- },
- [48] = {
- [1] = {
- ["name"] = "Aspect of the Hawk",
- ["rank"] = 5,
- ["cost"] = 32000,
- ["texture"] = "Interface/ICONS/spell_nature_ravenform",
- ["id"] = 14321
- },
- [2] = {
- ["name"] = "Disengage",
- ["rank"] = 3,
- ["cost"] = 32000,
- ["texture"] = "Interface/ICONS/ability_rogue_feint",
- ["id"] = 14273
- },
- [3] = {
- ["name"] = "Raptor Strike",
- ["rank"] = 7,
- ["cost"] = 32000,
- ["texture"] = "Interface/ICONS/ability_meleedamage",
- ["id"] = 14265
- },
- },
- [50] = {
- [1] = {
- ["name"] = "Distracting Shot",
- ["rank"] = 5,
- ["cost"] = 36000,
- ["texture"] = "Interface/ICONS/spell_arcane_blink",
- ["id"] = 15631
- },
- [2] = {
- ["name"] = "Serpent Sting",
- ["rank"] = 7,
- ["cost"] = 36000,
- ["texture"] = "Interface/ICONS/ability_hunter_quickshot",
- ["id"] = 13554
- },
- [3] = {
- ["name"] = "Trueshot Aura",
- ["rank"] = 2,
- ["cost"] = 1800,
- ["texture"] = "Interface/ICONS/ability_trueshot",
- ["id"] = 20905,
- ["talent"] = true
- },
- [4] = {
- ["name"] = "Volley",
- ["rank"] = 2,
- ["cost"] = 36000,
- ["texture"] = "Interface/ICONS/ability_marksmanship",
- ["id"] = 14294
- },
- [5] = {
- ["name"] = "Track Dragonkin",
- ["rank"] = 1,
- ["cost"] = 36000,
- ["texture"] = "Interface/ICONS/inv_misc_head_dragon_01",
- ["id"] = 19879
- },
- [6] = {
- ["name"] = "Wyvern Sting",
- ["rank"] = 2,
- ["cost"] = 0,
- ["texture"] = "Interface/ICONS/inv_spear_02",
- ["id"] = 24132,
- ["talent"] = true
- },
- },
- [52] = {
- [1] = {
- ["name"] = "Mend Pet",
- ["rank"] = 6,
- ["cost"] = 40000,
- ["texture"] = "Interface/ICONS/ability_hunter_mendpet",
- ["id"] = 13543
- },
- [2] = {
- ["name"] = "Aimed Shot",
- ["rank"] = 5,
- ["cost"] = 2000,
- ["texture"] = "Interface/ICONS/inv_spear_07",
- ["id"] = 20903,
- ["talent"] = true
- },
- [3] = {
- ["name"] = "Arcane Shot",
- ["rank"] = 7,
- ["cost"] = 40000,
- ["texture"] = "Interface/ICONS/ability_impalingbolt",
- ["id"] = 14286
- },
- [4] = {
- ["name"] = "Scorpid Sting",
- ["rank"] = 4,
- ["cost"] = 40000,
- ["texture"] = "Interface/ICONS/ability_hunter_criticalshot",
- ["id"] = 14277
- },
- },
- [54] = {
- [1] = {
- ["name"] = "Multi-Shot",
- ["rank"] = 4,
- ["cost"] = 42000,
- ["texture"] = "Interface/ICONS/ability_upgrademoonglaive",
- ["id"] = 14290
- },
- [2] = {
- ["name"] = "Counterattack",
- ["rank"] = 3,
- ["cost"] = 2100,
- ["texture"] = "Interface/ICONS/ability_warrior_challange",
- ["id"] = 20910,
- ["talent"] = true
- },
- [3] = {
- ["name"] = "Explosive Trap",
- ["rank"] = 3,
- ["cost"] = 42000,
- ["texture"] = "Interface/ICONS/spell_fire_selfdestruct",
- ["id"] = 14317
- },
- },
- [56] = {
- [1] = {
- ["name"] = "Aspect of the Wild",
- ["rank"] = 2,
- ["cost"] = 46000,
- ["texture"] = "Interface/ICONS/spell_nature_protectionformnature",
- ["id"] = 20190
- },
- [2] = {
- ["name"] = "Viper Sting",
- ["rank"] = 3,
- ["cost"] = 46000,
- ["texture"] = "Interface/ICONS/ability_hunter_aimedshot",
- ["id"] = 14280
- },
- [3] = {
- ["name"] = "Immolation Trap",
- ["rank"] = 5,
- ["cost"] = 46000,
- ["texture"] = "Interface/ICONS/spell_fire_flameshock",
- ["id"] = 14305
- },
- [4] = {
- ["name"] = "Raptor Strike",
- ["rank"] = 8,
- ["cost"] = 46000,
- ["texture"] = "Interface/ICONS/ability_meleedamage",
- ["id"] = 14266
- },
- },
- [58] = {
- [1] = {
- ["name"] = "Aspect of the Hawk",
- ["rank"] = 6,
- ["cost"] = 48000,
- ["texture"] = "Interface/ICONS/spell_nature_ravenform",
- ["id"] = 14322
- },
- [2] = {
- ["name"] = "Hunter's Mark",
- ["rank"] = 4,
- ["cost"] = 48000,
- ["texture"] = "Interface/ICONS/ability_hunter_snipershot",
- ["id"] = 14325
- },
- [3] = {
- ["name"] = "Serpent Sting",
- ["rank"] = 8,
- ["cost"] = 48000,
- ["texture"] = "Interface/ICONS/ability_hunter_quickshot",
- ["id"] = 13555
- },
- [4] = {
- ["name"] = "Volley",
- ["rank"] = 3,
- ["cost"] = 48000,
- ["texture"] = "Interface/ICONS/ability_marksmanship",
- ["id"] = 14295
- },
- [5] = {
- ["name"] = "Mongoose Bite",
- ["rank"] = 4,
- ["cost"] = 48000,
- ["texture"] = "Interface/ICONS/ability_hunter_swiftstrike",
- ["id"] = 14271
- },
- },
- [60] = {
- [1] = {
- ["name"] = "Mend Pet",
- ["rank"] = 7,
- ["cost"] = 50000,
- ["texture"] = "Interface/ICONS/ability_hunter_mendpet",
- ["id"] = 13544
- },
- [2] = {
- ["name"] = "Aimed Shot",
- ["rank"] = 6,
- ["cost"] = 2500,
- ["texture"] = "Interface/ICONS/inv_spear_07",
- ["id"] = 20904,
- ["talent"] = true
- },
- [3] = {
- ["name"] = "Arcane Shot",
- ["rank"] = 8,
- ["cost"] = 50000,
- ["texture"] = "Interface/ICONS/ability_impalingbolt",
- ["id"] = 14287
- },
- [4] = {
- ["name"] = "Distracting Shot",
- ["rank"] = 6,
- ["cost"] = 50000,
- ["texture"] = "Interface/ICONS/spell_arcane_blink",
- ["id"] = 15632
- },
- [5] = {
- ["name"] = "Trueshot Aura",
- ["rank"] = 3,
- ["cost"] = 2500,
- ["texture"] = "Interface/ICONS/ability_trueshot",
- ["id"] = 20906,
- ["talent"] = true
- },
- [6] = {
- ["name"] = "Freezing Trap",
- ["rank"] = 3,
- ["cost"] = 50000,
- ["texture"] = "Interface/ICONS/spell_frost_chainsofice",
- ["id"] = 14311
- },
- [7] = {
- ["name"] = "Wing Clip",
- ["rank"] = 3,
- ["cost"] = 50000,
- ["texture"] = "Interface/ICONS/ability_rogue_trip",
- ["id"] = 14268
- },
- [8] = {
- ["name"] = "Wyvern Sting",
- ["rank"] = 3,
- ["cost"] = 2500,
- ["texture"] = "Interface/ICONS/inv_spear_02",
- ["id"] = 24133,
- ["talent"] = true
- },
- },
-}
diff --git a/Database/HunterPets.lua b/Database/HunterPets.lua
deleted file mode 100644
index 9f82303..0000000
--- a/Database/HunterPets.lua
+++ /dev/null
@@ -1,409 +0,0 @@
-local _, FieldGuide = ...
-
-FieldGuide.HUNTER_PETS = {
- [2] = {
- [1] = {
- ["name"] = "Growl",
- ["rank"] = 1,
- ["cost"] = 0,
- ["texture"] = "Interface/ICONS/ability_physical_taunt",
- ["id"] = 2649
- },
- },
- [4] = {
- { empty = true }
- },
- [6] = {
- { empty = true }
- },
- [8] = {
- { empty = true }
- },
- [10] = {
- [1] = {
- ["name"] = "Great Stamina",
- ["rank"] = 1,
- ["cost"] = 10,
- ["texture"] = "Interface/ICONS/spell_nature_unyeildingstamina",
- ["id"] = 4187
- },
- [2] = {
- ["name"] = "Growl",
- ["rank"] = 2,
- ["cost"] = 0,
- ["texture"] = "Interface/ICONS/ability_physical_taunt",
- ["id"] = 14916
- },
- [3] = {
- ["name"] = "Natural Armor",
- ["rank"] = 1,
- ["cost"] = 10,
- ["texture"] = "Interface/ICONS/spell_nature_spiritarmor",
- ["id"] = 24545
- },
- },
- [12] = {
- [1] = {
- ["name"] = "Great Stamina",
- ["rank"] = 2,
- ["cost"] = 120,
- ["texture"] = "Interface/ICONS/spell_nature_unyeildingstamina",
- ["id"] = 4188
- },
- [2] = {
- ["name"] = "Natural Armor",
- ["rank"] = 2,
- ["cost"] = 120,
- ["texture"] = "Interface/ICONS/spell_nature_spiritarmor",
- ["id"] = 24549
- },
- },
- [14] = {
- { empty = true }
- },
- [16] = {
- { empty = true }
- },
- [18] = {
- [1] = {
- ["name"] = "Great Stamina",
- ["rank"] = 3,
- ["cost"] = 400,
- ["texture"] = "Interface/ICONS/spell_nature_unyeildingstamina",
- ["id"] = 4189
- },
- [2] = {
- ["name"] = "Natural Armor",
- ["rank"] = 3,
- ["cost"] = 400,
- ["texture"] = "Interface/ICONS/spell_nature_spiritarmor",
- ["id"] = 24550
- },
- },
- [20] = {
- [1] = {
- ["name"] = "Arcane Resistance",
- ["rank"] = 1,
- ["cost"] = 440,
- ["texture"] = "Interface/ICONS/spell_nature_starfall",
- ["id"] = 24493
- },
- [2] = {
- ["name"] = "Fire Resistance",
- ["rank"] = 1,
- ["cost"] = 440,
- ["texture"] = "Interface/ICONS/spell_fire_firearmor",
- ["id"] = 23992
- },
- [3] = {
- ["name"] = "Frost Resistance",
- ["rank"] = 1,
- ["cost"] = 440,
- ["texture"] = "Interface/ICONS/spell_frost_frostward",
- ["id"] = 24446
- },
- [4] = {
- ["name"] = "Growl",
- ["rank"] = 3,
- ["cost"] = 440,
- ["texture"] = "Interface/ICONS/ability_physical_taunt",
- ["id"] = 14917
- },
- [5] = {
- ["name"] = "Nature Resistance",
- ["rank"] = 1,
- ["cost"] = 440,
- ["texture"] = "Interface/ICONS/spell_nature_resistnature",
- ["id"] = 24492
- },
- [6] = {
- ["name"] = "Shadow Resistance",
- ["rank"] = 1,
- ["cost"] = 440,
- ["texture"] = "Interface/ICONS/spell_shadow_antishadow",
- ["id"] = 24488
- },
- },
- [22] = {
- { empty = true }
- },
- [24] = {
- [1] = {
- ["name"] = "Great Stamina",
- ["rank"] = 4,
- ["cost"] = 1260,
- ["texture"] = "Interface/ICONS/spell_nature_unyeildingstamina",
- ["id"] = 4190
- },
- [2] = {
- ["name"] = "Natural Armor",
- ["rank"] = 4,
- ["cost"] = 1260,
- ["texture"] = "Interface/ICONS/spell_nature_spiritarmor",
- ["id"] = 24551
- },
- },
- [26] = {
- { empty = true }
- },
- [28] = {
- { empty = true }
- },
- [30] = {
- [1] = {
- ["name"] = "Arcane Resistance",
- ["rank"] = 2,
- ["cost"] = 1440,
- ["texture"] = "Interface/ICONS/spell_nature_starfall",
- ["id"] = 24497
- },
- [2] = {
- ["name"] = "Fire Resistance",
- ["rank"] = 2,
- ["cost"] = 1440,
- ["texture"] = "Interface/ICONS/spell_fire_firearmor",
- ["id"] = 24439
- },
- [3] = {
- ["name"] = "Frost Resistance",
- ["rank"] = 2,
- ["cost"] = 1440,
- ["texture"] = "Interface/ICONS/spell_frost_frostward",
- ["id"] = 24447
- },
- [4] = {
- ["name"] = "Great Stamina",
- ["rank"] = 5,
- ["cost"] = 1440,
- ["texture"] = "Interface/ICONS/spell_nature_unyeildingstamina",
- ["id"] = 4191
- },
- [5] = {
- ["name"] = "Growl",
- ["rank"] = 4,
- ["cost"] = 1440,
- ["texture"] = "Interface/ICONS/ability_physical_taunt",
- ["id"] = 14918
- },
- [6] = {
- ["name"] = "Natural Armor",
- ["rank"] = 5,
- ["cost"] = 1440,
- ["texture"] = "Interface/ICONS/spell_nature_spiritarmor",
- ["id"] = 24552
- },
- [7] = {
- ["name"] = "Nature Resistance",
- ["rank"] = 2,
- ["cost"] = 1440,
- ["texture"] = "Interface/ICONS/spell_nature_resistnature",
- ["id"] = 24502
- },
- [8] = {
- ["name"] = "Shadow Resistance",
- ["rank"] = 2,
- ["cost"] = 1440,
- ["texture"] = "Interface/ICONS/spell_shadow_antishadow",
- ["id"] = 24505
- },
- },
- [32] = {
- { empty = true }
- },
- [34] = {
- { empty = true }
- },
- [36] = {
- [1] = {
- ["name"] = "Great Stamina",
- ["rank"] = 6,
- ["cost"] = 2520,
- ["texture"] = "Interface/ICONS/spell_nature_unyeildingstamina",
- ["id"] = 4192
- },
- [2] = {
- ["name"] = "Natural Armor",
- ["rank"] = 6,
- ["cost"] = 2520,
- ["texture"] = "Interface/ICONS/spell_nature_spiritarmor",
- ["id"] = 24553
- },
- },
- [38] = {
- { empty = true }
- },
- [40] = {
- [1] = {
- ["name"] = "Arcane Resistance",
- ["rank"] = 3,
- ["cost"] = 3240,
- ["texture"] = "Interface/ICONS/spell_nature_starfall",
- ["id"] = 24500
- },
- [2] = {
- ["name"] = "Fire Resistance",
- ["rank"] = 3,
- ["cost"] = 3240,
- ["texture"] = "Interface/ICONS/spell_fire_firearmor",
- ["id"] = 24444
- },
- [3] = {
- ["name"] = "Frost Resistance",
- ["rank"] = 3,
- ["cost"] = 3240,
- ["texture"] = "Interface/ICONS/spell_frost_frostward",
- ["id"] = 24448
- },
- [4] = {
- ["name"] = "Growl",
- ["rank"] = 5,
- ["cost"] = 3240,
- ["texture"] = "Interface/ICONS/ability_physical_taunt",
- ["id"] = 14919
- },
- [5] = {
- ["name"] = "Nature Resistance",
- ["rank"] = 3,
- ["cost"] = 3240,
- ["texture"] = "Interface/ICONS/spell_nature_resistnature",
- ["id"] = 24503
- },
- [6] = {
- ["name"] = "Shadow Resistance",
- ["rank"] = 3,
- ["cost"] = 3240,
- ["texture"] = "Interface/ICONS/spell_shadow_antishadow",
- ["id"] = 24506
- },
- },
- [42] = {
- [1] = {
- ["name"] = "Great Stamina",
- ["rank"] = 7,
- ["cost"] = 4320,
- ["texture"] = "Interface/ICONS/spell_nature_unyeildingstamina",
- ["id"] = 4193
- },
- [2] = {
- ["name"] = "Natural Armor",
- ["rank"] = 7,
- ["cost"] = 4320,
- ["texture"] = "Interface/ICONS/spell_nature_spiritarmor",
- ["id"] = 24554
- },
- },
- [44] = {
- { empty = true }
- },
- [46] = {
- { empty = true }
- },
- [48] = {
- [1] = {
- ["name"] = "Great Stamina",
- ["rank"] = 8,
- ["cost"] = 5760,
- ["texture"] = "Interface/ICONS/spell_nature_unyeildingstamina",
- ["id"] = 4194
- },
- [2] = {
- ["name"] = "Natural Armor",
- ["rank"] = 8,
- ["cost"] = 5760,
- ["texture"] = "Interface/ICONS/spell_nature_spiritarmor",
- ["id"] = 24555
- },
- },
- [50] = {
- [1] = {
- ["name"] = "Arcane Resistance",
- ["rank"] = 4,
- ["cost"] = 6480,
- ["texture"] = "Interface/ICONS/spell_nature_starfall",
- ["id"] = 24501
- },
- [2] = {
- ["name"] = "Fire Resistance",
- ["rank"] = 4,
- ["cost"] = 6480,
- ["texture"] = "Interface/ICONS/spell_fire_firearmor",
- ["id"] = 24445
- },
- [3] = {
- ["name"] = "Frost Resistance",
- ["rank"] = 4,
- ["cost"] = 6480,
- ["texture"] = "Interface/ICONS/spell_frost_frostward",
- ["id"] = 24449
- },
- [4] = {
- ["name"] = "Growl",
- ["rank"] = 6,
- ["cost"] = 6480,
- ["texture"] = "Interface/ICONS/ability_physical_taunt",
- ["id"] = 14920
- },
- [5] = {
- ["name"] = "Nature Resistance",
- ["rank"] = 4,
- ["cost"] = 6480,
- ["texture"] = "Interface/ICONS/spell_nature_resistnature",
- ["id"] = 24504
- },
- [6] = {
- ["name"] = "Shadow Resistance",
- ["rank"] = 4,
- ["cost"] = 6480,
- ["texture"] = "Interface/ICONS/spell_shadow_antishadow",
- ["id"] = 24507
- },
- },
- [52] = {
- { empty = true }
- },
- [54] = {
- [1] = {
- ["name"] = "Great Stamina",
- ["rank"] = 9,
- ["cost"] = 7560,
- ["texture"] = "Interface/ICONS/spell_nature_unyeildingstamina",
- ["id"] = 5041
- },
- [2] = {
- ["name"] = "Natural Armor",
- ["rank"] = 9,
- ["cost"] = 7560,
- ["texture"] = "Interface/ICONS/spell_nature_spiritarmor",
- ["id"] = 24629
- },
- },
- [56] = {
- { empty = true }
- },
- [58] = {
- { empty = true }
- },
- [60] = {
- [1] = {
- ["name"] = "Great Stamina",
- ["rank"] = 10,
- ["cost"] = 9000,
- ["texture"] = "Interface/ICONS/spell_nature_unyeildingstamina",
- ["id"] = 5042
- },
- [2] = {
- ["name"] = "Growl",
- ["rank"] = 7,
- ["cost"] = 9000,
- ["texture"] = "Interface/ICONS/ability_physical_taunt",
- ["id"] = 14921
- },
- [3] = {
- ["name"] = "Natural Armor",
- ["rank"] = 10,
- ["cost"] = 9000,
- ["texture"] = "Interface/ICONS/spell_nature_spiritarmor",
- ["id"] = 24630
- },
- },
-}
diff --git a/Database/Priest.lua b/Database/Priest.lua
deleted file mode 100644
index d6f572a..0000000
--- a/Database/Priest.lua
+++ /dev/null
@@ -1,1494 +0,0 @@
-local _, FieldGuide = ...
-
-FieldGuide.PRIEST = {
- [2] = {
- [1] = {
- ["name"] = "Power Word: Fortitude",
- ["rank"] = 1,
- ["cost"] = 10,
- ["texture"] = "Interface/ICONS/spell_holy_wordfortitude",
- ["id"] = 1243
- },
- },
- [4] = {
- [1] = {
- ["name"] = "Lesser Heal",
- ["rank"] = 2,
- ["cost"] = 100,
- ["texture"] = "Interface/ICONS/spell_holy_lesserheal",
- ["id"] = 2052
- },
- [2] = {
- ["name"] = "Shadow Word: Pain",
- ["rank"] = 1,
- ["cost"] = 100,
- ["texture"] = "Interface/ICONS/spell_shadow_shadowwordpain",
- ["id"] = 589
- },
- },
- [6] = {
- [1] = {
- ["name"] = "Power Word: Shield",
- ["rank"] = 1,
- ["cost"] = 100,
- ["texture"] = "Interface/ICONS/spell_holy_powerwordshield",
- ["id"] = 17
- },
- [2] = {
- ["name"] = "Smite",
- ["rank"] = 2,
- ["cost"] = 100,
- ["texture"] = "Interface/ICONS/spell_holy_holysmite",
- ["id"] = 591
- },
- },
- [8] = {
- [1] = {
- ["name"] = "Renew",
- ["rank"] = 1,
- ["cost"] = 200,
- ["texture"] = "Interface/ICONS/spell_holy_renew",
- ["id"] = 139
- },
- [2] = {
- ["name"] = "Fade",
- ["rank"] = 1,
- ["cost"] = 200,
- ["texture"] = "Interface/ICONS/spell_magic_lesserinvisibilty",
- ["id"] = 586
- },
- },
- [10] = {
- [1] = {
- ["name"] = "Starshards",
- ["rank"] = 1,
- ["cost"] = 0,
- ["texture"] = "Interface/ICONS/spell_arcane_starfire",
- ["id"] = 10797,
- ["faction"] = 1,
- ["race"] = "Night Elf"
- },
- [2] = {
- ["name"] = "Desperate Prayer",
- ["rank"] = 1,
- ["cost"] = 0,
- ["texture"] = "Interface/ICONS/spell_holy_restoration",
- ["id"] = 13908,
- ["faction"] = 1,
- ["race"] = "Dwarf, Human"
- },
- [3] = {
- ["name"] = "Lesser Heal",
- ["rank"] = 3,
- ["cost"] = 300,
- ["texture"] = "Interface/ICONS/spell_holy_lesserheal",
- ["id"] = 2053
- },
- [4] = {
- ["name"] = "Resurrection",
- ["rank"] = 1,
- ["cost"] = 300,
- ["texture"] = "Interface/ICONS/spell_holy_resurrection",
- ["id"] = 2006
- },
- [5] = {
- ["name"] = "Hex of Weakness",
- ["rank"] = 1,
- ["cost"] = 0,
- ["texture"] = "Interface/ICONS/spell_shadow_fingerofdeath",
- ["id"] = 9035,
- ["faction"] = 2,
- ["race"] = "Troll"
- },
- [6] = {
- ["name"] = "Mind Blast",
- ["rank"] = 1,
- ["cost"] = 300,
- ["texture"] = "Interface/ICONS/spell_shadow_unholyfrenzy",
- ["id"] = 8092
- },
- [7] = {
- ["name"] = "Shadow Word: Pain",
- ["rank"] = 2,
- ["cost"] = 300,
- ["texture"] = "Interface/ICONS/spell_shadow_shadowwordpain",
- ["id"] = 594
- },
- [8] = {
- ["name"] = "Touch of Weakness",
- ["rank"] = 1,
- ["cost"] = 0,
- ["texture"] = "Interface/ICONS/spell_shadow_deadofnight",
- ["id"] = 2652,
- ["faction"] = 2,
- ["race"] = "Undead"
- },
- },
- [12] = {
- [1] = {
- ["name"] = "Inner Fire",
- ["rank"] = 1,
- ["cost"] = 800,
- ["texture"] = "Interface/ICONS/spell_holy_innerfire",
- ["id"] = 588
- },
- [2] = {
- ["name"] = "Power Word: Fortitude",
- ["rank"] = 2,
- ["cost"] = 800,
- ["texture"] = "Interface/ICONS/spell_holy_wordfortitude",
- ["id"] = 1244
- },
- [3] = {
- ["name"] = "Power Word: Shield",
- ["rank"] = 2,
- ["cost"] = 800,
- ["texture"] = "Interface/ICONS/spell_holy_powerwordshield",
- ["id"] = 592
- },
- },
- [14] = {
- [1] = {
- ["name"] = "Cure Disease",
- ["rank"] = 1,
- ["cost"] = 1200,
- ["texture"] = "Interface/ICONS/spell_holy_nullifydisease",
- ["id"] = 528
- },
- [2] = {
- ["name"] = "Renew",
- ["rank"] = 2,
- ["cost"] = 1200,
- ["texture"] = "Interface/ICONS/spell_holy_renew",
- ["id"] = 6074
- },
- [3] = {
- ["name"] = "Smite",
- ["rank"] = 3,
- ["cost"] = 1200,
- ["texture"] = "Interface/ICONS/spell_holy_holysmite",
- ["id"] = 598
- },
- [4] = {
- ["name"] = "Psychic Scream",
- ["rank"] = 1,
- ["cost"] = 1200,
- ["texture"] = "Interface/ICONS/spell_shadow_psychicscream",
- ["id"] = 8122
- },
- },
- [16] = {
- [1] = {
- ["name"] = "Heal",
- ["rank"] = 1,
- ["cost"] = 1600,
- ["texture"] = "Interface/ICONS/spell_holy_heal",
- ["id"] = 2054
- },
- [2] = {
- ["name"] = "Mind Blast",
- ["rank"] = 2,
- ["cost"] = 1600,
- ["texture"] = "Interface/ICONS/spell_shadow_unholyfrenzy",
- ["id"] = 8102
- },
- },
- [18] = {
- [1] = {
- ["name"] = "Dispel Magic",
- ["rank"] = 1,
- ["cost"] = 2000,
- ["texture"] = "Interface/ICONS/spell_holy_dispelmagic",
- ["id"] = 527
- },
- [2] = {
- ["name"] = "Power Word: Shield",
- ["rank"] = 3,
- ["cost"] = 2000,
- ["texture"] = "Interface/ICONS/spell_holy_powerwordshield",
- ["id"] = 600
- },
- [3] = {
- ["name"] = "Starshards",
- ["rank"] = 2,
- ["cost"] = 100,
- ["texture"] = "Interface/ICONS/spell_arcane_starfire",
- ["id"] = 19296,
- ["faction"] = 1,
- ["race"] = "Night Elf"
- },
- [4] = {
- ["name"] = "Desperate Prayer",
- ["rank"] = 2,
- ["cost"] = 100,
- ["texture"] = "Interface/ICONS/spell_holy_restoration",
- ["id"] = 19236,
- ["faction"] = 1,
- ["race"] = "Dwarf, Human"
- },
- [5] = {
- ["name"] = "Shadow Word: Pain",
- ["rank"] = 3,
- ["cost"] = 2000,
- ["texture"] = "Interface/ICONS/spell_shadow_shadowwordpain",
- ["id"] = 970
- },
- },
- [20] = {
- [1] = {
- ["name"] = "Elune's Grace",
- ["rank"] = 1,
- ["cost"] = 0,
- ["texture"] = "Interface/ICONS/spell_holy_elunesgrace",
- ["id"] = 2651,
- ["faction"] = 1,
- ["race"] = "Night Elf"
- },
- [2] = {
- ["name"] = "Feedback",
- ["rank"] = 1,
- ["cost"] = 0,
- ["texture"] = "Interface/ICONS/spell_shadow_ritualofsacrifice",
- ["id"] = 13896,
- ["faction"] = 1,
- ["race"] = "Human"
- },
- [3] = {
- ["name"] = "Inner Fire",
- ["rank"] = 2,
- ["cost"] = 3000,
- ["texture"] = "Interface/ICONS/spell_holy_innerfire",
- ["id"] = 7128
- },
- [4] = {
- ["name"] = "Shackle Undead",
- ["rank"] = 1,
- ["cost"] = 3000,
- ["texture"] = "Interface/ICONS/spell_nature_slow",
- ["id"] = 9484
- },
- [5] = {
- ["name"] = "Fear Ward",
- ["rank"] = 1,
- ["cost"] = 0,
- ["texture"] = "Interface/ICONS/spell_holy_excorcism",
- ["id"] = 6346,
- ["faction"] = 1,
- ["race"] = "Dwarf"
- },
- [6] = {
- ["name"] = "Flash Heal",
- ["rank"] = 1,
- ["cost"] = 3000,
- ["texture"] = "Interface/ICONS/spell_holy_flashheal",
- ["id"] = 2061
- },
- [7] = {
- ["name"] = "Holy Fire",
- ["rank"] = 1,
- ["cost"] = 3000,
- ["texture"] = "Interface/ICONS/spell_holy_searinglight",
- ["id"] = 14914
- },
- [8] = {
- ["name"] = "Renew",
- ["rank"] = 3,
- ["cost"] = 3000,
- ["texture"] = "Interface/ICONS/spell_holy_renew",
- ["id"] = 6075
- },
- [9] = {
- ["name"] = "Devouring Plague",
- ["rank"] = 1,
- ["cost"] = 0,
- ["texture"] = "Interface/ICONS/spell_shadow_blackplague",
- ["id"] = 2944,
- ["faction"] = 2,
- ["race"] = "Undead"
- },
- [10] = {
- ["name"] = "Fade",
- ["rank"] = 2,
- ["cost"] = 3000,
- ["texture"] = "Interface/ICONS/spell_magic_lesserinvisibilty",
- ["id"] = 9578
- },
- [11] = {
- ["name"] = "Hex of Weakness",
- ["rank"] = 2,
- ["cost"] = 150,
- ["texture"] = "Interface/ICONS/spell_shadow_fingerofdeath",
- ["id"] = 19281,
- ["faction"] = 2,
- ["race"] = "Troll"
- },
- [12] = {
- ["name"] = "Mind Soothe",
- ["rank"] = 1,
- ["cost"] = 3000,
- ["texture"] = "Interface/ICONS/spell_holy_mindsooth",
- ["id"] = 453
- },
- [13] = {
- ["name"] = "Shadowguard",
- ["rank"] = 1,
- ["cost"] = 0,
- ["texture"] = "Interface/ICONS/spell_nature_lightningshield",
- ["id"] = 18137,
- ["faction"] = 2,
- ["race"] = "Troll"
- },
- [14] = {
- ["name"] = "Touch of Weakness",
- ["rank"] = 2,
- ["cost"] = 200,
- ["texture"] = "Interface/ICONS/spell_shadow_deadofnight",
- ["id"] = 19261,
- ["faction"] = 2,
- ["race"] = "Undead"
- },
- },
- [22] = {
- [1] = {
- ["name"] = "Heal",
- ["rank"] = 2,
- ["cost"] = 4000,
- ["texture"] = "Interface/ICONS/spell_holy_heal",
- ["id"] = 2055
- },
- [2] = {
- ["name"] = "Resurrection",
- ["rank"] = 2,
- ["cost"] = 4000,
- ["texture"] = "Interface/ICONS/spell_holy_resurrection",
- ["id"] = 2010
- },
- [3] = {
- ["name"] = "Smite",
- ["rank"] = 4,
- ["cost"] = 4000,
- ["texture"] = "Interface/ICONS/spell_holy_holysmite",
- ["id"] = 984
- },
- [4] = {
- ["name"] = "Mind Blast",
- ["rank"] = 3,
- ["cost"] = 4000,
- ["texture"] = "Interface/ICONS/spell_shadow_unholyfrenzy",
- ["id"] = 8103
- },
- [5] = {
- ["name"] = "Mind Vision",
- ["rank"] = 1,
- ["cost"] = 4000,
- ["texture"] = "Interface/ICONS/spell_holy_mindvision",
- ["id"] = 2096
- },
- },
- [24] = {
- [1] = {
- ["name"] = "Mana Burn",
- ["rank"] = 1,
- ["cost"] = 5000,
- ["texture"] = "Interface/ICONS/spell_shadow_manaburn",
- ["id"] = 8129
- },
- [2] = {
- ["name"] = "Power Word: Fortitude",
- ["rank"] = 3,
- ["cost"] = 5000,
- ["texture"] = "Interface/ICONS/spell_holy_wordfortitude",
- ["id"] = 1245
- },
- [3] = {
- ["name"] = "Power Word: Shield",
- ["rank"] = 4,
- ["cost"] = 5000,
- ["texture"] = "Interface/ICONS/spell_holy_powerwordshield",
- ["id"] = 3747
- },
- [4] = {
- ["name"] = "Holy Fire",
- ["rank"] = 2,
- ["cost"] = 5000,
- ["texture"] = "Interface/ICONS/spell_holy_searinglight",
- ["id"] = 15262
- },
- },
- [26] = {
- [1] = {
- ["name"] = "Starshards",
- ["rank"] = 3,
- ["cost"] = 300,
- ["texture"] = "Interface/ICONS/spell_arcane_starfire",
- ["id"] = 19299,
- ["faction"] = 1,
- ["race"] = "Night Elf"
- },
- [2] = {
- ["name"] = "Desperate Prayer",
- ["rank"] = 3,
- ["cost"] = 300,
- ["texture"] = "Interface/ICONS/spell_holy_restoration",
- ["id"] = 19238,
- ["faction"] = 1,
- ["race"] = "Dwarf, Human"
- },
- [3] = {
- ["name"] = "Flash Heal",
- ["rank"] = 2,
- ["cost"] = 6000,
- ["texture"] = "Interface/ICONS/spell_holy_flashheal",
- ["id"] = 9472
- },
- [4] = {
- ["name"] = "Renew",
- ["rank"] = 4,
- ["cost"] = 6000,
- ["texture"] = "Interface/ICONS/spell_holy_renew",
- ["id"] = 6076
- },
- [5] = {
- ["name"] = "Shadow Word: Pain",
- ["rank"] = 4,
- ["cost"] = 6000,
- ["texture"] = "Interface/ICONS/spell_shadow_shadowwordpain",
- ["id"] = 992
- },
- },
- [28] = {
- [1] = {
- ["name"] = "Heal",
- ["rank"] = 3,
- ["cost"] = 8000,
- ["texture"] = "Interface/ICONS/spell_holy_heal02",
- ["id"] = 6063
- },
- [2] = {
- ["name"] = "Holy Nova",
- ["rank"] = 2,
- ["cost"] = 400,
- ["texture"] = "Interface/ICONS/spell_holy_holynova",
- ["id"] = 15430,
- ["talent"] = true
- },
- [3] = {
- ["name"] = "Devouring Plague",
- ["rank"] = 2,
- ["cost"] = 400,
- ["texture"] = "Interface/ICONS/spell_shadow_blackplague",
- ["id"] = 19276,
- ["faction"] = 2,
- ["race"] = "Undead"
- },
- [4] = {
- ["name"] = "Mind Blast",
- ["rank"] = 4,
- ["cost"] = 8000,
- ["texture"] = "Interface/ICONS/spell_shadow_unholyfrenzy",
- ["id"] = 8104
- },
- [5] = {
- ["name"] = "Mind Flay",
- ["rank"] = 2,
- ["cost"] = 400,
- ["texture"] = "Interface/ICONS/spell_shadow_siphonmana",
- ["id"] = 17311,
- ["talent"] = true
- },
- [6] = {
- ["name"] = "Psychic Scream",
- ["rank"] = 2,
- ["cost"] = 8000,
- ["texture"] = "Interface/ICONS/spell_shadow_psychicscream",
- ["id"] = 8124
- },
- [7] = {
- ["name"] = "Shadowguard",
- ["rank"] = 2,
- ["cost"] = 400,
- ["texture"] = "Interface/ICONS/spell_nature_lightningshield",
- ["id"] = 19308,
- ["faction"] = 2,
- ["race"] = "Troll"
- },
- },
- [30] = {
- [1] = {
- ["name"] = "Elune's Grace",
- ["rank"] = 2,
- ["cost"] = 500,
- ["texture"] = "Interface/ICONS/spell_holy_elunesgrace",
- ["id"] = 19289,
- ["faction"] = 1,
- ["race"] = "Night Elf"
- },
- [2] = {
- ["name"] = "Feedback",
- ["rank"] = 2,
- ["cost"] = 450,
- ["texture"] = "Interface/ICONS/spell_shadow_ritualofsacrifice",
- ["id"] = 19271,
- ["faction"] = 1,
- ["race"] = "Human"
- },
- [3] = {
- ["name"] = "Inner Fire",
- ["rank"] = 3,
- ["cost"] = 10000,
- ["texture"] = "Interface/ICONS/spell_holy_innerfire",
- ["id"] = 602
- },
- [4] = {
- ["name"] = "Power Word: Shield",
- ["rank"] = 5,
- ["cost"] = 10000,
- ["texture"] = "Interface/ICONS/spell_holy_powerwordshield",
- ["id"] = 6065
- },
- [5] = {
- ["name"] = "Holy Fire",
- ["rank"] = 3,
- ["cost"] = 10000,
- ["texture"] = "Interface/ICONS/spell_holy_searinglight",
- ["id"] = 15263
- },
- [6] = {
- ["name"] = "Prayer of Healing",
- ["rank"] = 1,
- ["cost"] = 10000,
- ["texture"] = "Interface/ICONS/spell_holy_prayerofhealing02",
- ["id"] = 596
- },
- [7] = {
- ["name"] = "Smite",
- ["rank"] = 5,
- ["cost"] = 10000,
- ["texture"] = "Interface/ICONS/spell_holy_holysmite",
- ["id"] = 1004
- },
- [8] = {
- ["name"] = "Fade",
- ["rank"] = 3,
- ["cost"] = 10000,
- ["texture"] = "Interface/ICONS/spell_magic_lesserinvisibilty",
- ["id"] = 9579
- },
- [9] = {
- ["name"] = "Hex of Weakness",
- ["rank"] = 3,
- ["cost"] = 500,
- ["texture"] = "Interface/ICONS/spell_shadow_fingerofdeath",
- ["id"] = 19282,
- ["faction"] = 2,
- ["race"] = "Troll"
- },
- [10] = {
- ["name"] = "Mind Control",
- ["rank"] = 1,
- ["cost"] = 10000,
- ["texture"] = "Interface/ICONS/spell_shadow_shadowworddominate",
- ["id"] = 605
- },
- [11] = {
- ["name"] = "Shadow Protection",
- ["rank"] = 1,
- ["cost"] = 10000,
- ["texture"] = "Interface/ICONS/spell_shadow_antishadow",
- ["id"] = 976
- },
- [12] = {
- ["name"] = "Touch of Weakness",
- ["rank"] = 3,
- ["cost"] = 500,
- ["texture"] = "Interface/ICONS/spell_shadow_deadofnight",
- ["id"] = 19262,
- ["faction"] = 2,
- ["race"] = "Undead"
- },
- },
- [32] = {
- [1] = {
- ["name"] = "Mana Burn",
- ["rank"] = 2,
- ["cost"] = 11000,
- ["texture"] = "Interface/ICONS/spell_shadow_manaburn",
- ["id"] = 8131
- },
- [2] = {
- ["name"] = "Abolish Disease",
- ["rank"] = 1,
- ["cost"] = 11000,
- ["texture"] = "Interface/ICONS/spell_nature_nullifydisease",
- ["id"] = 552
- },
- [3] = {
- ["name"] = "Flash Heal",
- ["rank"] = 3,
- ["cost"] = 11000,
- ["texture"] = "Interface/ICONS/spell_holy_flashheal",
- ["id"] = 9473
- },
- [4] = {
- ["name"] = "Renew",
- ["rank"] = 5,
- ["cost"] = 11000,
- ["texture"] = "Interface/ICONS/spell_holy_renew",
- ["id"] = 6077
- },
- },
- [34] = {
- [1] = {
- ["name"] = "Levitate",
- ["rank"] = 1,
- ["cost"] = 12000,
- ["texture"] = "Interface/ICONS/spell_holy_layonhands",
- ["id"] = 1706
- },
- [2] = {
- ["name"] = "Starshards",
- ["rank"] = 4,
- ["cost"] = 600,
- ["texture"] = "Interface/ICONS/spell_arcane_starfire",
- ["id"] = 19302,
- ["faction"] = 1,
- ["race"] = "Night Elf"
- },
- [3] = {
- ["name"] = "Desperate Prayer",
- ["rank"] = 4,
- ["cost"] = 600,
- ["texture"] = "Interface/ICONS/spell_holy_restoration",
- ["id"] = 19240,
- ["faction"] = 1,
- ["race"] = "Dwarf, Human"
- },
- [4] = {
- ["name"] = "Heal",
- ["rank"] = 4,
- ["cost"] = 12000,
- ["texture"] = "Interface/ICONS/spell_holy_heal02",
- ["id"] = 6064
- },
- [5] = {
- ["name"] = "Resurrection",
- ["rank"] = 3,
- ["cost"] = 12000,
- ["texture"] = "Interface/ICONS/spell_holy_resurrection",
- ["id"] = 10880
- },
- [6] = {
- ["name"] = "Mind Blast",
- ["rank"] = 5,
- ["cost"] = 0,
- ["texture"] = "Interface/ICONS/spell_shadow_unholyfrenzy",
- ["id"] = 8105
- },
- [7] = {
- ["name"] = "Shadow Word: Pain",
- ["rank"] = 5,
- ["cost"] = 0,
- ["texture"] = "Interface/ICONS/spell_shadow_shadowwordpain",
- ["id"] = 2767
- },
- },
- [36] = {
- [1] = {
- ["name"] = "Dispel Magic",
- ["rank"] = 2,
- ["cost"] = 14000,
- ["texture"] = "Interface/ICONS/spell_holy_dispelmagic",
- ["id"] = 988
- },
- [2] = {
- ["name"] = "Power Word: Fortitude",
- ["rank"] = 4,
- ["cost"] = 14000,
- ["texture"] = "Interface/ICONS/spell_holy_wordfortitude",
- ["id"] = 2791
- },
- [3] = {
- ["name"] = "Power Word: Shield",
- ["rank"] = 6,
- ["cost"] = 14000,
- ["texture"] = "Interface/ICONS/spell_holy_powerwordshield",
- ["id"] = 6066
- },
- [4] = {
- ["name"] = "Holy Fire",
- ["rank"] = 4,
- ["cost"] = 14000,
- ["texture"] = "Interface/ICONS/spell_holy_searinglight",
- ["id"] = 15264
- },
- [5] = {
- ["name"] = "Holy Nova",
- ["rank"] = 3,
- ["cost"] = 700,
- ["texture"] = "Interface/ICONS/spell_holy_holynova",
- ["id"] = 15431,
- ["talent"] = true
- },
- [6] = {
- ["name"] = "Mind Flay",
- ["rank"] = 3,
- ["cost"] = 700,
- ["texture"] = "Interface/ICONS/spell_shadow_siphonmana",
- ["id"] = 17312,
- ["talent"] = true
- },
- [7] = {
- ["name"] = "Mind Soothe",
- ["rank"] = 2,
- ["cost"] = 14000,
- ["texture"] = "Interface/ICONS/spell_holy_mindsooth",
- ["id"] = 8192
- },
- [8] = {
- ["name"] = "Devouring Plague",
- ["rank"] = 3,
- ["cost"] = 700,
- ["texture"] = "Interface/ICONS/spell_shadow_blackplague",
- ["id"] = 19277,
- ["faction"] = 2,
- ["race"] = "Undead"
- },
- [9] = {
- ["name"] = "Shadowguard",
- ["rank"] = 3,
- ["cost"] = 700,
- ["texture"] = "Interface/ICONS/spell_nature_lightningshield",
- ["id"] = 19309,
- ["faction"] = 2,
- ["race"] = "Troll"
- },
- },
- [38] = {
- [1] = {
- ["name"] = "Flash Heal",
- ["rank"] = 4,
- ["cost"] = 16000,
- ["texture"] = "Interface/ICONS/spell_holy_flashheal",
- ["id"] = 9474
- },
- [2] = {
- ["name"] = "Renew",
- ["rank"] = 6,
- ["cost"] = 16000,
- ["texture"] = "Interface/ICONS/spell_holy_renew",
- ["id"] = 6078
- },
- [3] = {
- ["name"] = "Smite",
- ["rank"] = 6,
- ["cost"] = 16000,
- ["texture"] = "Interface/ICONS/spell_holy_holysmite",
- ["id"] = 6060
- },
- },
- [40] = {
- [1] = {
- ["name"] = "Divine Spirit",
- ["rank"] = 2,
- ["cost"] = 900,
- ["texture"] = "Interface/ICONS/spell_holy_divinespirit",
- ["id"] = 14818,
- ["talent"] = true
- },
- [2] = {
- ["name"] = "Elune's Grace",
- ["rank"] = 3,
- ["cost"] = 900,
- ["texture"] = "Interface/ICONS/spell_holy_elunesgrace",
- ["id"] = 19291,
- ["faction"] = 1,
- ["race"] = "Night Elf"
- },
- [3] = {
- ["name"] = "Feedback",
- ["rank"] = 3,
- ["cost"] = 810,
- ["texture"] = "Interface/ICONS/spell_shadow_ritualofsacrifice",
- ["id"] = 19273,
- ["faction"] = 1,
- ["race"] = "Human"
- },
- [4] = {
- ["name"] = "Inner Fire",
- ["rank"] = 4,
- ["cost"] = 18000,
- ["texture"] = "Interface/ICONS/spell_holy_innerfire",
- ["id"] = 1006
- },
- [5] = {
- ["name"] = "Mana Burn",
- ["rank"] = 3,
- ["cost"] = 18000,
- ["texture"] = "Interface/ICONS/spell_shadow_manaburn",
- ["id"] = 10874
- },
- [6] = {
- ["name"] = "Shackle Undead",
- ["rank"] = 2,
- ["cost"] = 18000,
- ["texture"] = "Interface/ICONS/spell_nature_slow",
- ["id"] = 9485
- },
- [7] = {
- ["name"] = "Greater Heal",
- ["rank"] = 1,
- ["cost"] = 18000,
- ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
- ["id"] = 2060
- },
- [8] = {
- ["name"] = "Prayer of Healing",
- ["rank"] = 2,
- ["cost"] = 18000,
- ["texture"] = "Interface/ICONS/spell_holy_prayerofhealing02",
- ["id"] = 996
- },
- [9] = {
- ["name"] = "Fade",
- ["rank"] = 4,
- ["cost"] = 18000,
- ["texture"] = "Interface/ICONS/spell_magic_lesserinvisibilty",
- ["id"] = 9592
- },
- [10] = {
- ["name"] = "Hex of Weakness",
- ["rank"] = 4,
- ["cost"] = 900,
- ["texture"] = "Interface/ICONS/spell_shadow_fingerofdeath",
- ["id"] = 19283,
- ["faction"] = 2,
- ["race"] = "Troll"
- },
- [11] = {
- ["name"] = "Mind Blast",
- ["rank"] = 6,
- ["cost"] = 18000,
- ["texture"] = "Interface/ICONS/spell_shadow_unholyfrenzy",
- ["id"] = 8106
- },
- [12] = {
- ["name"] = "Touch of Weakness",
- ["rank"] = 4,
- ["cost"] = 900,
- ["texture"] = "Interface/ICONS/spell_shadow_deadofnight",
- ["id"] = 19264,
- ["faction"] = 2,
- ["race"] = "Undead"
- },
- },
- [42] = {
- [1] = {
- ["name"] = "Power Word: Shield",
- ["rank"] = 7,
- ["cost"] = 22000,
- ["texture"] = "Interface/ICONS/spell_holy_powerwordshield",
- ["id"] = 10898
- },
- [2] = {
- ["name"] = "Starshards",
- ["rank"] = 5,
- ["cost"] = 1100,
- ["texture"] = "Interface/ICONS/spell_arcane_starfire",
- ["id"] = 19303,
- ["faction"] = 1,
- ["race"] = "Night Elf"
- },
- [3] = {
- ["name"] = "Desperate Prayer",
- ["rank"] = 5,
- ["cost"] = 1100,
- ["texture"] = "Interface/ICONS/spell_holy_restoration",
- ["id"] = 19241,
- ["faction"] = 1,
- ["race"] = "Dwarf, Human"
- },
- [4] = {
- ["name"] = "Holy Fire",
- ["rank"] = 5,
- ["cost"] = 22000,
- ["texture"] = "Interface/ICONS/spell_holy_searinglight",
- ["id"] = 15265
- },
- [5] = {
- ["name"] = "Psychic Scream",
- ["rank"] = 3,
- ["cost"] = 22000,
- ["texture"] = "Interface/ICONS/spell_shadow_psychicscream",
- ["id"] = 10888
- },
- [6] = {
- ["name"] = "Shadow Protection",
- ["rank"] = 2,
- ["cost"] = 22000,
- ["texture"] = "Interface/ICONS/spell_shadow_antishadow",
- ["id"] = 10957
- },
- [7] = {
- ["name"] = "Shadow Word: Pain",
- ["rank"] = 6,
- ["cost"] = 22000,
- ["texture"] = "Interface/ICONS/spell_shadow_shadowwordpain",
- ["id"] = 10892
- },
- },
- [44] = {
- [1] = {
- ["name"] = "Flash Heal",
- ["rank"] = 5,
- ["cost"] = 24000,
- ["texture"] = "Interface/ICONS/spell_holy_flashheal",
- ["id"] = 10915
- },
- [2] = {
- ["name"] = "Holy Nova",
- ["rank"] = 4,
- ["cost"] = 1200,
- ["texture"] = "Interface/ICONS/spell_holy_holynova",
- ["id"] = 27799,
- ["talent"] = true
- },
- [3] = {
- ["name"] = "Renew",
- ["rank"] = 7,
- ["cost"] = 24000,
- ["texture"] = "Interface/ICONS/spell_holy_renew",
- ["id"] = 10927
- },
- [4] = {
- ["name"] = "Devouring Plague",
- ["rank"] = 4,
- ["cost"] = 1200,
- ["texture"] = "Interface/ICONS/spell_shadow_blackplague",
- ["id"] = 19278,
- ["faction"] = 2,
- ["race"] = "Undead"
- },
- [5] = {
- ["name"] = "Mind Control",
- ["rank"] = 2,
- ["cost"] = 24000,
- ["texture"] = "Interface/ICONS/spell_shadow_shadowworddominate",
- ["id"] = 10911
- },
- [6] = {
- ["name"] = "Mind Flay",
- ["rank"] = 4,
- ["cost"] = 1200,
- ["texture"] = "Interface/ICONS/spell_shadow_siphonmana",
- ["id"] = 17313,
- ["talent"] = true
- },
- [7] = {
- ["name"] = "Mind Vision",
- ["rank"] = 2,
- ["cost"] = 24000,
- ["texture"] = "Interface/ICONS/spell_holy_mindvision",
- ["id"] = 10909
- },
- [8] = {
- ["name"] = "Shadowguard",
- ["rank"] = 4,
- ["cost"] = 1000,
- ["texture"] = "Interface/ICONS/spell_nature_lightningshield",
- ["id"] = 19310,
- ["faction"] = 2,
- ["race"] = "Troll"
- },
- },
- [46] = {
- [1] = {
- ["name"] = "Greater Heal",
- ["rank"] = 2,
- ["cost"] = 26000,
- ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
- ["id"] = 10963
- },
- [2] = {
- ["name"] = "Resurrection",
- ["rank"] = 4,
- ["cost"] = 26000,
- ["texture"] = "Interface/ICONS/spell_holy_resurrection",
- ["id"] = 10881
- },
- [3] = {
- ["name"] = "Smite",
- ["rank"] = 7,
- ["cost"] = 26000,
- ["texture"] = "Interface/ICONS/spell_holy_holysmite",
- ["id"] = 10933
- },
- [4] = {
- ["name"] = "Mind Blast",
- ["rank"] = 7,
- ["cost"] = 26000,
- ["texture"] = "Interface/ICONS/spell_shadow_unholyfrenzy",
- ["id"] = 10945
- },
- },
- [48] = {
- [1] = {
- ["name"] = "Mana Burn",
- ["rank"] = 4,
- ["cost"] = 28000,
- ["texture"] = "Interface/ICONS/spell_shadow_manaburn",
- ["id"] = 10875
- },
- [2] = {
- ["name"] = "Power Word: Fortitude",
- ["rank"] = 5,
- ["cost"] = 28000,
- ["texture"] = "Interface/ICONS/spell_holy_wordfortitude",
- ["id"] = 10937
- },
- [3] = {
- ["name"] = "Power Word: Shield",
- ["rank"] = 8,
- ["cost"] = 28000,
- ["texture"] = "Interface/ICONS/spell_holy_powerwordshield",
- ["id"] = 10899
- },
- [4] = {
- ["name"] = "Holy Fire",
- ["rank"] = 6,
- ["cost"] = 28000,
- ["texture"] = "Interface/ICONS/spell_holy_searinglight",
- ["id"] = 15266
- },
- },
- [50] = {
- [1] = {
- ["name"] = "Divine Spirit",
- ["rank"] = 3,
- ["cost"] = 1500,
- ["texture"] = "Interface/ICONS/spell_holy_divinespirit",
- ["id"] = 14819,
- ["talent"] = true
- },
- [2] = {
- ["name"] = "Elune's Grace",
- ["rank"] = 4,
- ["cost"] = 1500,
- ["texture"] = "Interface/ICONS/spell_holy_elunesgrace",
- ["id"] = 19292,
- ["faction"] = 1,
- ["race"] = "Night Elf"
- },
- [3] = {
- ["name"] = "Feedback",
- ["rank"] = 4,
- ["cost"] = 1500,
- ["texture"] = "Interface/ICONS/spell_shadow_ritualofsacrifice",
- ["id"] = 19274,
- ["faction"] = 1,
- ["race"] = "Human"
- },
- [4] = {
- ["name"] = "Inner Fire",
- ["rank"] = 5,
- ["cost"] = 30000,
- ["texture"] = "Interface/ICONS/spell_holy_innerfire",
- ["id"] = 10951
- },
- [5] = {
- ["name"] = "Starshards",
- ["rank"] = 6,
- ["cost"] = 1500,
- ["texture"] = "Interface/ICONS/spell_arcane_starfire",
- ["id"] = 19304,
- ["faction"] = 1,
- ["race"] = "Night Elf"
- },
- [6] = {
- ["name"] = "Desperate Prayer",
- ["rank"] = 6,
- ["cost"] = 1500,
- ["texture"] = "Interface/ICONS/spell_holy_restoration",
- ["id"] = 19242,
- ["faction"] = 1,
- ["race"] = "Dwarf, Human"
- },
- [7] = {
- ["name"] = "Flash Heal",
- ["rank"] = 6,
- ["cost"] = 30000,
- ["texture"] = "Interface/ICONS/spell_holy_flashheal",
- ["id"] = 10916
- },
- [8] = {
- ["name"] = "Lightwell",
- ["rank"] = 2,
- ["cost"] = 1200,
- ["texture"] = "Interface/ICONS/spell_holy_summonlightwell",
- ["id"] = 27870,
- ["talent"] = true
- },
- [9] = {
- ["name"] = "Prayer of Healing",
- ["rank"] = 3,
- ["cost"] = 30000,
- ["texture"] = "Interface/ICONS/spell_holy_prayerofhealing02",
- ["id"] = 10960
- },
- [10] = {
- ["name"] = "Renew",
- ["rank"] = 8,
- ["cost"] = 30000,
- ["texture"] = "Interface/ICONS/spell_holy_renew",
- ["id"] = 10928
- },
- [11] = {
- ["name"] = "Fade",
- ["rank"] = 5,
- ["cost"] = 30000,
- ["texture"] = "Interface/ICONS/spell_magic_lesserinvisibilty",
- ["id"] = 10941
- },
- [12] = {
- ["name"] = "Hex of Weakness",
- ["rank"] = 5,
- ["cost"] = 1500,
- ["texture"] = "Interface/ICONS/spell_shadow_fingerofdeath",
- ["id"] = 19284,
- ["faction"] = 2,
- ["race"] = "Troll"
- },
- [13] = {
- ["name"] = "Shadow Word: Pain",
- ["rank"] = 7,
- ["cost"] = 30000,
- ["texture"] = "Interface/ICONS/spell_shadow_shadowwordpain",
- ["id"] = 10893
- },
- [14] = {
- ["name"] = "Touch of Weakness",
- ["rank"] = 5,
- ["cost"] = 1500,
- ["texture"] = "Interface/ICONS/spell_shadow_deadofnight",
- ["id"] = 19265,
- ["faction"] = 2,
- ["race"] = "Undead"
- },
- },
- [52] = {
- [1] = {
- ["name"] = "Greater Heal",
- ["rank"] = 3,
- ["cost"] = 38000,
- ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
- ["id"] = 10964
- },
- [2] = {
- ["name"] = "Holy Nova",
- ["rank"] = 5,
- ["cost"] = 1900,
- ["texture"] = "Interface/ICONS/spell_holy_holynova",
- ["id"] = 27800,
- ["talent"] = true
- },
- [3] = {
- ["name"] = "Devouring Plague",
- ["rank"] = 5,
- ["cost"] = 1900,
- ["texture"] = "Interface/ICONS/spell_shadow_blackplague",
- ["id"] = 19279,
- ["faction"] = 2,
- ["race"] = "Undead"
- },
- [4] = {
- ["name"] = "Mind Blast",
- ["rank"] = 8,
- ["cost"] = 38000,
- ["texture"] = "Interface/ICONS/spell_shadow_unholyfrenzy",
- ["id"] = 10946
- },
- [5] = {
- ["name"] = "Mind Flay",
- ["rank"] = 5,
- ["cost"] = 1900,
- ["texture"] = "Interface/ICONS/spell_shadow_siphonmana",
- ["id"] = 17314,
- ["talent"] = true
- },
- [6] = {
- ["name"] = "Mind Soothe",
- ["rank"] = 3,
- ["cost"] = 38000,
- ["texture"] = "Interface/ICONS/spell_holy_mindsooth",
- ["id"] = 10953
- },
- [7] = {
- ["name"] = "Shadowguard",
- ["rank"] = 5,
- ["cost"] = 1200,
- ["texture"] = "Interface/ICONS/spell_nature_lightningshield",
- ["id"] = 19311,
- ["faction"] = 2,
- ["race"] = "Troll"
- },
- },
- [54] = {
- [1] = {
- ["name"] = "Power Word: Shield",
- ["rank"] = 9,
- ["cost"] = 40000,
- ["texture"] = "Interface/ICONS/spell_holy_powerwordshield",
- ["id"] = 10900
- },
- [2] = {
- ["name"] = "Holy Fire",
- ["rank"] = 7,
- ["cost"] = 40000,
- ["texture"] = "Interface/ICONS/spell_holy_searinglight",
- ["id"] = 15267
- },
- [3] = {
- ["name"] = "Smite",
- ["rank"] = 8,
- ["cost"] = 40000,
- ["texture"] = "Interface/ICONS/spell_holy_holysmite",
- ["id"] = 10934
- },
- },
- [56] = {
- [1] = {
- ["name"] = "Mana Burn",
- ["rank"] = 5,
- ["cost"] = 42000,
- ["texture"] = "Interface/ICONS/spell_shadow_manaburn",
- ["id"] = 10876
- },
- [2] = {
- ["name"] = "Flash Heal",
- ["rank"] = 7,
- ["cost"] = 42000,
- ["texture"] = "Interface/ICONS/spell_holy_flashheal",
- ["id"] = 10917
- },
- [3] = {
- ["name"] = "Renew",
- ["rank"] = 9,
- ["cost"] = 42000,
- ["texture"] = "Interface/ICONS/spell_holy_renew",
- ["id"] = 10929
- },
- [4] = {
- ["name"] = "Psychic Scream",
- ["rank"] = 4,
- ["cost"] = 42000,
- ["texture"] = "Interface/ICONS/spell_shadow_psychicscream",
- ["id"] = 10890
- },
- [5] = {
- ["name"] = "Shadow Protection",
- ["rank"] = 3,
- ["cost"] = 42000,
- ["texture"] = "Interface/ICONS/spell_shadow_antishadow",
- ["id"] = 10958
- },
- },
- [58] = {
- [1] = {
- ["name"] = "Starshards",
- ["rank"] = 7,
- ["cost"] = 2200,
- ["texture"] = "Interface/ICONS/spell_arcane_starfire",
- ["id"] = 19305,
- ["faction"] = 1,
- ["race"] = "Night Elf"
- },
- [2] = {
- ["name"] = "Desperate Prayer",
- ["rank"] = 7,
- ["cost"] = 2200,
- ["texture"] = "Interface/ICONS/spell_holy_restoration",
- ["id"] = 19243,
- ["faction"] = 1,
- ["race"] = "Dwarf, Human"
- },
- [3] = {
- ["name"] = "Greater Heal",
- ["rank"] = 4,
- ["cost"] = 44000,
- ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
- ["id"] = 10965
- },
- [4] = {
- ["name"] = "Resurrection",
- ["rank"] = 5,
- ["cost"] = 44000,
- ["texture"] = "Interface/ICONS/spell_holy_resurrection",
- ["id"] = 20770
- },
- [5] = {
- ["name"] = "Mind Blast",
- ["rank"] = 9,
- ["cost"] = 44000,
- ["texture"] = "Interface/ICONS/spell_shadow_unholyfrenzy",
- ["id"] = 10947
- },
- [6] = {
- ["name"] = "Mind Control",
- ["rank"] = 3,
- ["cost"] = 44000,
- ["texture"] = "Interface/ICONS/spell_shadow_shadowworddominate",
- ["id"] = 10912
- },
- [7] = {
- ["name"] = "Shadow Word: Pain",
- ["rank"] = 8,
- ["cost"] = 44000,
- ["texture"] = "Interface/ICONS/spell_shadow_shadowwordpain",
- ["id"] = 10894
- },
- },
- [60] = {
- [1] = {
- ["name"] = "Divine Spirit",
- ["rank"] = 4,
- ["cost"] = 2300,
- ["texture"] = "Interface/ICONS/spell_holy_divinespirit",
- ["id"] = 27841,
- ["talent"] = true
- },
- [2] = {
- ["name"] = "Elune's Grace",
- ["rank"] = 5,
- ["cost"] = 2070,
- ["texture"] = "Interface/ICONS/spell_holy_elunesgrace",
- ["id"] = 19293,
- ["faction"] = 1,
- ["race"] = "Night Elf"
- },
- [3] = {
- ["name"] = "Feedback",
- ["rank"] = 5,
- ["cost"] = 2300,
- ["texture"] = "Interface/ICONS/spell_shadow_ritualofsacrifice",
- ["id"] = 19275,
- ["faction"] = 1,
- ["race"] = "Human"
- },
- [4] = {
- ["name"] = "Inner Fire",
- ["rank"] = 6,
- ["cost"] = 46000,
- ["texture"] = "Interface/ICONS/spell_holy_innerfire",
- ["id"] = 10952
- },
- [5] = {
- ["name"] = "Power Word: Fortitude",
- ["rank"] = 6,
- ["cost"] = 46000,
- ["texture"] = "Interface/ICONS/spell_holy_wordfortitude",
- ["id"] = 10938
- },
- [6] = {
- ["name"] = "Power Word: Shield",
- ["rank"] = 10,
- ["cost"] = 46000,
- ["texture"] = "Interface/ICONS/spell_holy_powerwordshield",
- ["id"] = 10901
- },
- [7] = {
- ["name"] = "Prayer of Spirit",
- ["rank"] = 1,
- ["cost"] = 2300,
- ["texture"] = "Interface/ICONS/spell_holy_prayerofspirit",
- ["id"] = 27681,
- ["talent"] = true
- },
- [8] = {
- ["name"] = "Holy Fire",
- ["rank"] = 8,
- ["cost"] = 46000,
- ["texture"] = "Interface/ICONS/spell_holy_searinglight",
- ["id"] = 15261
- },
- [9] = {
- ["name"] = "Holy Nova",
- ["rank"] = 6,
- ["cost"] = 2300,
- ["texture"] = "Interface/ICONS/spell_holy_holynova",
- ["id"] = 27801,
- ["talent"] = true
- },
- [10] = {
- ["name"] = "Lightwell",
- ["rank"] = 3,
- ["cost"] = 1500,
- ["texture"] = "Interface/ICONS/spell_holy_summonlightwell",
- ["id"] = 27871,
- ["talent"] = true
- },
- [11] = {
- ["name"] = "Prayer of Healing",
- ["rank"] = 4,
- ["cost"] = 46000,
- ["texture"] = "Interface/ICONS/spell_holy_prayerofhealing02",
- ["id"] = 10961
- },
- [12] = {
- ["name"] = "Devouring Plague",
- ["rank"] = 6,
- ["cost"] = 2300,
- ["texture"] = "Interface/ICONS/spell_shadow_blackplague",
- ["id"] = 19280,
- ["faction"] = 2,
- ["race"] = "Undead"
- },
- [13] = {
- ["name"] = "Fade",
- ["rank"] = 6,
- ["cost"] = 46000,
- ["texture"] = "Interface/ICONS/spell_magic_lesserinvisibilty",
- ["id"] = 10942
- },
- [14] = {
- ["name"] = "Hex of Weakness",
- ["rank"] = 6,
- ["cost"] = 2300,
- ["texture"] = "Interface/ICONS/spell_shadow_fingerofdeath",
- ["id"] = 19285,
- ["faction"] = 2,
- ["race"] = "Troll"
- },
- [15] = {
- ["name"] = "Mind Flay",
- ["rank"] = 6,
- ["cost"] = 2300,
- ["texture"] = "Interface/ICONS/spell_shadow_siphonmana",
- ["id"] = 18807,
- ["talent"] = true
- },
- [16] = {
- ["name"] = "Shackle Undead",
- ["rank"] = 3,
- ["cost"] = 46000,
- ["texture"] = "Interface/ICONS/spell_nature_slow",
- ["id"] = 10955
- },
- [17] = {
- ["name"] = "Shadowguard",
- ["rank"] = 6,
- ["cost"] = 2300,
- ["texture"] = "Interface/ICONS/spell_nature_lightningshield",
- ["id"] = 19312,
- ["faction"] = 2,
- ["race"] = "Troll"
- },
- [18] = {
- ["name"] = "Touch of Weakness",
- ["rank"] = 6,
- ["cost"] = 2070,
- ["texture"] = "Interface/ICONS/spell_shadow_deadofnight",
- ["id"] = 19266,
- ["faction"] = 2,
- ["race"] = "Undead"
- },
- },
-}
diff --git a/Database/Riding.lua b/Database/Riding.lua
new file mode 100644
index 0000000..c7229ea
--- /dev/null
+++ b/Database/Riding.lua
@@ -0,0 +1,40 @@
+local _, FieldGuide = ...
+
+FieldGuide.RIDING = {
+ [30] = {
+ [1] = {
+ ["id"] = 33388,
+ ["name"] = "Riding",
+ ["rank"] = 1,
+ ["cost"] = 350000,
+ ["texture"] = "Interface/ICONS/spell_nature_swiftness",
+ }
+ },
+ [60] = {
+ [1] = {
+ ["id"] = 33391,
+ ["name"] = "Riding",
+ ["rank"] = 2,
+ ["cost"] = 6000000,
+ ["texture"] = "Interface/ICONS/spell_nature_swiftness",
+ }
+ },
+ [70] = {
+ [1] = {
+ ["id"] = 34090,
+ ["name"] = "Riding",
+ ["rank"] = 3,
+ ["cost"] = 8000000,
+ ["texture"] = "Interface/ICONS/spell_nature_swiftness",
+ ["cost_modifier"] = false
+ },
+ [2] = {
+ ["id"] = 34091,
+ ["name"] = "Riding",
+ ["rank"] = 4,
+ ["cost"] = 50000000,
+ ["texture"] = "Interface/ICONS/spell_nature_swiftness",
+ ["cost_modifier"] = false
+ }
+ }
+}
diff --git a/Database/Shaman.lua b/Database/Shaman.lua
deleted file mode 100644
index 8c819d0..0000000
--- a/Database/Shaman.lua
+++ /dev/null
@@ -1,1193 +0,0 @@
-local _, FieldGuide = ...
-
-FieldGuide.SHAMAN = {
- [2] = {
- [1] = {
- ["name"] = "Rockbiter Weapon",
- ["rank"] = 1,
- ["cost"] = 10,
- ["texture"] = "Interface/ICONS/spell_nature_rockbiter",
- ["id"] = 8017
- },
- },
- [4] = {
- [1] = {
- ["name"] = "Earth Shock",
- ["rank"] = 1,
- ["cost"] = 100,
- ["texture"] = "Interface/ICONS/spell_nature_earthshock",
- ["id"] = 8042
- },
- [2] = {
- ["name"] = "Stoneskin Totem",
- ["rank"] = 1,
- ["cost"] = 0,
- ["texture"] = "Interface/ICONS/spell_nature_stoneskintotem",
- ["id"] = 8071
- },
- },
- [6] = {
- [1] = {
- ["name"] = "Earthbind Totem",
- ["rank"] = 1,
- ["cost"] = 100,
- ["texture"] = "Interface/ICONS/spell_nature_strengthofearthtotem02",
- ["id"] = 2484
- },
- [2] = {
- ["name"] = "Healing Wave",
- ["rank"] = 2,
- ["cost"] = 100,
- ["texture"] = "Interface/ICONS/spell_nature_magicimmunity",
- ["id"] = 332
- },
- },
- [8] = {
- [1] = {
- ["name"] = "Earth Shock",
- ["rank"] = 2,
- ["cost"] = 100,
- ["texture"] = "Interface/ICONS/spell_nature_earthshock",
- ["id"] = 8044
- },
- [2] = {
- ["name"] = "Lightning Bolt",
- ["rank"] = 2,
- ["cost"] = 100,
- ["texture"] = "Interface/ICONS/spell_nature_lightning",
- ["id"] = 529
- },
- [3] = {
- ["name"] = "Stoneclaw Totem",
- ["rank"] = 1,
- ["cost"] = 100,
- ["texture"] = "Interface/ICONS/spell_nature_stoneclawtotem",
- ["id"] = 5730
- },
- [4] = {
- ["name"] = "Lightning Shield",
- ["rank"] = 1,
- ["cost"] = 100,
- ["texture"] = "Interface/ICONS/spell_nature_lightningshield",
- ["id"] = 324
- },
- [5] = {
- ["name"] = "Rockbiter Weapon",
- ["rank"] = 2,
- ["cost"] = 100,
- ["texture"] = "Interface/ICONS/spell_nature_rockbiter",
- ["id"] = 8018
- },
- },
- [10] = {
- [1] = {
- ["name"] = "Flame Shock",
- ["rank"] = 1,
- ["cost"] = 400,
- ["texture"] = "Interface/ICONS/spell_fire_flameshock",
- ["id"] = 8050
- },
- [2] = {
- ["name"] = "Searing Totem",
- ["rank"] = 1,
- ["cost"] = 0,
- ["texture"] = "Interface/ICONS/spell_fire_searingtotem",
- ["id"] = 3599
- },
- [3] = {
- ["name"] = "Flametongue Weapon",
- ["rank"] = 1,
- ["cost"] = 400,
- ["texture"] = "Interface/ICONS/spell_fire_flametounge",
- ["id"] = 8024
- },
- [4] = {
- ["name"] = "Strength of Earth Totem",
- ["rank"] = 1,
- ["cost"] = 400,
- ["texture"] = "Interface/ICONS/spell_nature_earthbindtotem",
- ["id"] = 8075
- },
- },
- [12] = {
- [1] = {
- ["name"] = "Fire Nova Totem",
- ["rank"] = 1,
- ["cost"] = 800,
- ["texture"] = "Interface/ICONS/spell_fire_sealoffire",
- ["id"] = 1535
- },
- [2] = {
- ["name"] = "Purge",
- ["rank"] = 1,
- ["cost"] = 720,
- ["texture"] = "Interface/ICONS/spell_nature_purge",
- ["id"] = 370
- },
- [3] = {
- ["name"] = "Ancestral Spirit",
- ["rank"] = 1,
- ["cost"] = 800,
- ["texture"] = "Interface/ICONS/spell_nature_regenerate",
- ["id"] = 2008
- },
- [4] = {
- ["name"] = "Healing Wave",
- ["rank"] = 3,
- ["cost"] = 800,
- ["texture"] = "Interface/ICONS/spell_nature_magicimmunity",
- ["id"] = 547
- },
- },
- [14] = {
- [1] = {
- ["name"] = "Earth Shock",
- ["rank"] = 3,
- ["cost"] = 900,
- ["texture"] = "Interface/ICONS/spell_nature_earthshock",
- ["id"] = 8045
- },
- [2] = {
- ["name"] = "Lightning Bolt",
- ["rank"] = 3,
- ["cost"] = 900,
- ["texture"] = "Interface/ICONS/spell_nature_lightning",
- ["id"] = 548
- },
- [3] = {
- ["name"] = "Stoneskin Totem",
- ["rank"] = 2,
- ["cost"] = 900,
- ["texture"] = "Interface/ICONS/spell_nature_stoneskintotem",
- ["id"] = 8154
- },
- },
- [16] = {
- [1] = {
- ["name"] = "Lightning Shield",
- ["rank"] = 2,
- ["cost"] = 1800,
- ["texture"] = "Interface/ICONS/spell_nature_lightningshield",
- ["id"] = 325
- },
- [2] = {
- ["name"] = "Rockbiter Weapon",
- ["rank"] = 3,
- ["cost"] = 1800,
- ["texture"] = "Interface/ICONS/spell_nature_rockbiter",
- ["id"] = 8019
- },
- [3] = {
- ["name"] = "Cure Poison",
- ["rank"] = 1,
- ["cost"] = 1800,
- ["texture"] = "Interface/ICONS/spell_nature_nullifypoison",
- ["id"] = 526
- },
- },
- [18] = {
- [1] = {
- ["name"] = "Flame Shock",
- ["rank"] = 2,
- ["cost"] = 2000,
- ["texture"] = "Interface/ICONS/spell_fire_flameshock",
- ["id"] = 8052
- },
- [2] = {
- ["name"] = "Stoneclaw Totem",
- ["rank"] = 2,
- ["cost"] = 2000,
- ["texture"] = "Interface/ICONS/spell_nature_stoneclawtotem",
- ["id"] = 6390
- },
- [3] = {
- ["name"] = "Flametongue Weapon",
- ["rank"] = 2,
- ["cost"] = 2000,
- ["texture"] = "Interface/ICONS/spell_fire_flametounge",
- ["id"] = 8027
- },
- [4] = {
- ["name"] = "Healing Wave",
- ["rank"] = 4,
- ["cost"] = 2000,
- ["texture"] = "Interface/ICONS/spell_nature_magicimmunity",
- ["id"] = 913
- },
- [5] = {
- ["name"] = "Tremor Totem",
- ["rank"] = 1,
- ["cost"] = 2000,
- ["texture"] = "Interface/ICONS/spell_nature_tremortotem",
- ["id"] = 8143
- },
- },
- [20] = {
- [1] = {
- ["name"] = "Frost Shock",
- ["rank"] = 1,
- ["cost"] = 2200,
- ["texture"] = "Interface/ICONS/spell_frost_frostshock",
- ["id"] = 8056
- },
- [2] = {
- ["name"] = "Lightning Bolt",
- ["rank"] = 4,
- ["cost"] = 2200,
- ["texture"] = "Interface/ICONS/spell_nature_lightning",
- ["id"] = 915
- },
- [3] = {
- ["name"] = "Searing Totem",
- ["rank"] = 2,
- ["cost"] = 2200,
- ["texture"] = "Interface/ICONS/spell_fire_searingtotem",
- ["id"] = 6363
- },
- [4] = {
- ["name"] = "Frostbrand Weapon",
- ["rank"] = 1,
- ["cost"] = 2200,
- ["texture"] = "Interface/ICONS/spell_frost_frostbrand",
- ["id"] = 8033
- },
- [5] = {
- ["name"] = "Ghost Wolf",
- ["rank"] = 1,
- ["cost"] = 2200,
- ["texture"] = "Interface/ICONS/spell_nature_spiritwolf",
- ["id"] = 2645
- },
- [6] = {
- ["name"] = "Healing Stream Totem",
- ["rank"] = 1,
- ["cost"] = 0,
- ["texture"] = "Interface/ICONS/inv_spear_04",
- ["id"] = 5394
- },
- [7] = {
- ["name"] = "Lesser Healing Wave",
- ["rank"] = 1,
- ["cost"] = 2200,
- ["texture"] = "Interface/ICONS/spell_nature_healingwavelesser",
- ["id"] = 8004
- },
- },
- [22] = {
- [1] = {
- ["name"] = "Fire Nova Totem",
- ["rank"] = 2,
- ["cost"] = 3000,
- ["texture"] = "Interface/ICONS/spell_fire_sealoffire",
- ["id"] = 8498
- },
- [2] = {
- ["name"] = "Water Breathing",
- ["rank"] = 1,
- ["cost"] = 3000,
- ["texture"] = "Interface/ICONS/spell_shadow_demonbreath",
- ["id"] = 131
- },
- [3] = {
- ["name"] = "Poison Cleansing Totem",
- ["rank"] = 1,
- ["cost"] = 3000,
- ["texture"] = "Interface/ICONS/spell_nature_poisoncleansingtotem",
- ["id"] = 8166
- },
- [4] = {
- ["name"] = "Cure Disease",
- ["rank"] = 1,
- ["cost"] = 3000,
- ["texture"] = "Interface/ICONS/spell_nature_removedisease",
- ["id"] = 2870
- },
- },
- [24] = {
- [1] = {
- ["name"] = "Earth Shock",
- ["rank"] = 4,
- ["cost"] = 3500,
- ["texture"] = "Interface/ICONS/spell_nature_earthshock",
- ["id"] = 8046
- },
- [2] = {
- ["name"] = "Frost Resistance Totem",
- ["rank"] = 1,
- ["cost"] = 3500,
- ["texture"] = "Interface/ICONS/spell_frostresistancetotem_01",
- ["id"] = 8181
- },
- [3] = {
- ["name"] = "Lightning Shield",
- ["rank"] = 3,
- ["cost"] = 3500,
- ["texture"] = "Interface/ICONS/spell_nature_lightningshield",
- ["id"] = 905
- },
- [4] = {
- ["name"] = "Rockbiter Weapon",
- ["rank"] = 4,
- ["cost"] = 3500,
- ["texture"] = "Interface/ICONS/spell_nature_rockbiter",
- ["id"] = 10399
- },
- [5] = {
- ["name"] = "Stoneskin Totem",
- ["rank"] = 3,
- ["cost"] = 3500,
- ["texture"] = "Interface/ICONS/spell_nature_stoneskintotem",
- ["id"] = 8155
- },
- [6] = {
- ["name"] = "Strength of Earth Totem",
- ["rank"] = 2,
- ["cost"] = 3500,
- ["texture"] = "Interface/ICONS/spell_nature_earthbindtotem",
- ["id"] = 8160
- },
- [7] = {
- ["name"] = "Ancestral Spirit",
- ["rank"] = 2,
- ["cost"] = 3500,
- ["texture"] = "Interface/ICONS/spell_nature_regenerate",
- ["id"] = 20609
- },
- [8] = {
- ["name"] = "Healing Wave",
- ["rank"] = 5,
- ["cost"] = 3500,
- ["texture"] = "Interface/ICONS/spell_nature_magicimmunity",
- ["id"] = 939
- },
- },
- [26] = {
- [1] = {
- ["name"] = "Lightning Bolt",
- ["rank"] = 5,
- ["cost"] = 4000,
- ["texture"] = "Interface/ICONS/spell_nature_lightning",
- ["id"] = 943
- },
- [2] = {
- ["name"] = "Magma Totem",
- ["rank"] = 1,
- ["cost"] = 4000,
- ["texture"] = "Interface/ICONS/spell_fire_selfdestruct",
- ["id"] = 8190
- },
- [3] = {
- ["name"] = "Far Sight",
- ["rank"] = 1,
- ["cost"] = 4000,
- ["texture"] = "Interface/ICONS/spell_nature_farsight",
- ["id"] = 6196
- },
- [4] = {
- ["name"] = "Flametongue Weapon",
- ["rank"] = 3,
- ["cost"] = 4000,
- ["texture"] = "Interface/ICONS/spell_fire_flametounge",
- ["id"] = 8030
- },
- [5] = {
- ["name"] = "Mana Spring Totem",
- ["rank"] = 1,
- ["cost"] = 4000,
- ["texture"] = "Interface/ICONS/spell_nature_manaregentotem",
- ["id"] = 5675
- },
- },
- [28] = {
- [1] = {
- ["name"] = "Flame Shock",
- ["rank"] = 3,
- ["cost"] = 6000,
- ["texture"] = "Interface/ICONS/spell_fire_flameshock",
- ["id"] = 8053
- },
- [2] = {
- ["name"] = "Stoneclaw Totem",
- ["rank"] = 3,
- ["cost"] = 6000,
- ["texture"] = "Interface/ICONS/spell_nature_stoneclawtotem",
- ["id"] = 6391
- },
- [3] = {
- ["name"] = "Fire Resistance Totem",
- ["rank"] = 1,
- ["cost"] = 6000,
- ["texture"] = "Interface/ICONS/spell_fireresistancetotem_01",
- ["id"] = 8184
- },
- [4] = {
- ["name"] = "Flametongue Totem",
- ["rank"] = 1,
- ["cost"] = 6000,
- ["texture"] = "Interface/ICONS/spell_nature_guardianward",
- ["id"] = 8227
- },
- [5] = {
- ["name"] = "Frostbrand Weapon",
- ["rank"] = 2,
- ["cost"] = 6000,
- ["texture"] = "Interface/ICONS/spell_frost_frostbrand",
- ["id"] = 8038
- },
- [6] = {
- ["name"] = "Water Walking",
- ["rank"] = 1,
- ["cost"] = 6000,
- ["texture"] = "Interface/ICONS/spell_frost_windwalkon",
- ["id"] = 546
- },
- [7] = {
- ["name"] = "Lesser Healing Wave",
- ["rank"] = 2,
- ["cost"] = 6000,
- ["texture"] = "Interface/ICONS/spell_nature_healingwavelesser",
- ["id"] = 8008
- },
- },
- [30] = {
- [1] = {
- ["name"] = "Searing Totem",
- ["rank"] = 3,
- ["cost"] = 7000,
- ["texture"] = "Interface/ICONS/spell_fire_searingtotem",
- ["id"] = 6364
- },
- [2] = {
- ["name"] = "Astral Recall",
- ["rank"] = 1,
- ["cost"] = 7000,
- ["texture"] = "Interface/ICONS/spell_nature_astralrecal",
- ["id"] = 556
- },
- [3] = {
- ["name"] = "Grounding Totem",
- ["rank"] = 1,
- ["cost"] = 7000,
- ["texture"] = "Interface/ICONS/spell_nature_groundingtotem",
- ["id"] = 8177
- },
- [4] = {
- ["name"] = "Nature Resistance Totem",
- ["rank"] = 1,
- ["cost"] = 0,
- ["texture"] = "Interface/ICONS/spell_nature_natureresistancetotem",
- ["id"] = 10595
- },
- [5] = {
- ["name"] = "Windfury Weapon",
- ["rank"] = 1,
- ["cost"] = 0,
- ["texture"] = "Interface/ICONS/spell_nature_cyclone",
- ["id"] = 8232
- },
- [6] = {
- ["name"] = "Healing Stream Totem",
- ["rank"] = 2,
- ["cost"] = 7000,
- ["texture"] = "Interface/ICONS/inv_spear_04",
- ["id"] = 6375
- },
- [7] = {
- ["name"] = "Reincarnation",
- ["rank"] = 1,
- ["cost"] = 7000,
- ["texture"] = "Interface/ICONS/spell_nature_reincarnation",
- ["id"] = 20608
- },
- },
- [32] = {
- [1] = {
- ["name"] = "Chain Lightning",
- ["rank"] = 1,
- ["cost"] = 8000,
- ["texture"] = "Interface/ICONS/spell_nature_chainlightning",
- ["id"] = 421
- },
- [2] = {
- ["name"] = "Fire Nova Totem",
- ["rank"] = 3,
- ["cost"] = 8000,
- ["texture"] = "Interface/ICONS/spell_fire_sealoffire",
- ["id"] = 8499
- },
- [3] = {
- ["name"] = "Lightning Bolt",
- ["rank"] = 6,
- ["cost"] = 8000,
- ["texture"] = "Interface/ICONS/spell_nature_lightning",
- ["id"] = 6041
- },
- [4] = {
- ["name"] = "Purge",
- ["rank"] = 2,
- ["cost"] = 8000,
- ["texture"] = "Interface/ICONS/spell_nature_purge",
- ["id"] = 8012
- },
- [5] = {
- ["name"] = "Lightning Shield",
- ["rank"] = 4,
- ["cost"] = 8000,
- ["texture"] = "Interface/ICONS/spell_nature_lightningshield",
- ["id"] = 945
- },
- [6] = {
- ["name"] = "Windfury Totem",
- ["rank"] = 1,
- ["cost"] = 8000,
- ["texture"] = "Interface/ICONS/spell_nature_windfury",
- ["id"] = 8512
- },
- [7] = {
- ["name"] = "Healing Wave",
- ["rank"] = 6,
- ["cost"] = 8000,
- ["texture"] = "Interface/ICONS/spell_nature_magicimmunity",
- ["id"] = 959
- },
- },
- [34] = {
- [1] = {
- ["name"] = "Frost Shock",
- ["rank"] = 2,
- ["cost"] = 9000,
- ["texture"] = "Interface/ICONS/spell_frost_frostshock",
- ["id"] = 8058
- },
- [2] = {
- ["name"] = "Rockbiter Weapon",
- ["rank"] = 5,
- ["cost"] = 9000,
- ["texture"] = "Interface/ICONS/spell_nature_rockbiter",
- ["id"] = 16314
- },
- [3] = {
- ["name"] = "Sentry Totem",
- ["rank"] = 1,
- ["cost"] = 9000,
- ["texture"] = "Interface/ICONS/spell_nature_removecurse",
- ["id"] = 6495
- },
- [4] = {
- ["name"] = "Stoneskin Totem",
- ["rank"] = 4,
- ["cost"] = 9000,
- ["texture"] = "Interface/ICONS/spell_nature_stoneskintotem",
- ["id"] = 10406
- },
- },
- [36] = {
- [1] = {
- ["name"] = "Earth Shock",
- ["rank"] = 5,
- ["cost"] = 10000,
- ["texture"] = "Interface/ICONS/spell_nature_earthshock",
- ["id"] = 10412
- },
- [2] = {
- ["name"] = "Magma Totem",
- ["rank"] = 2,
- ["cost"] = 10000,
- ["texture"] = "Interface/ICONS/spell_fire_selfdestruct",
- ["id"] = 10585
- },
- [3] = {
- ["name"] = "Flametongue Weapon",
- ["rank"] = 4,
- ["cost"] = 10000,
- ["texture"] = "Interface/ICONS/spell_fire_flametounge",
- ["id"] = 16339
- },
- [4] = {
- ["name"] = "Windwall Totem",
- ["rank"] = 1,
- ["cost"] = 10000,
- ["texture"] = "Interface/ICONS/spell_nature_earthbind",
- ["id"] = 15107
- },
- [5] = {
- ["name"] = "Ancestral Spirit",
- ["rank"] = 3,
- ["cost"] = 10000,
- ["texture"] = "Interface/ICONS/spell_nature_regenerate",
- ["id"] = 20610
- },
- [6] = {
- ["name"] = "Lesser Healing Wave",
- ["rank"] = 3,
- ["cost"] = 10000,
- ["texture"] = "Interface/ICONS/spell_nature_healingwavelesser",
- ["id"] = 8010
- },
- [7] = {
- ["name"] = "Mana Spring Totem",
- ["rank"] = 2,
- ["cost"] = 10000,
- ["texture"] = "Interface/ICONS/spell_nature_manaregentotem",
- ["id"] = 10495
- },
- },
- [38] = {
- [1] = {
- ["name"] = "Lightning Bolt",
- ["rank"] = 7,
- ["cost"] = 11000,
- ["texture"] = "Interface/ICONS/spell_nature_lightning",
- ["id"] = 10391
- },
- [2] = {
- ["name"] = "Stoneclaw Totem",
- ["rank"] = 4,
- ["cost"] = 11000,
- ["texture"] = "Interface/ICONS/spell_nature_stoneclawtotem",
- ["id"] = 6392
- },
- [3] = {
- ["name"] = "Flametongue Totem",
- ["rank"] = 2,
- ["cost"] = 11000,
- ["texture"] = "Interface/ICONS/spell_nature_guardianward",
- ["id"] = 8249
- },
- [4] = {
- ["name"] = "Frost Resistance Totem",
- ["rank"] = 2,
- ["cost"] = 11000,
- ["texture"] = "Interface/ICONS/spell_frostresistancetotem_01",
- ["id"] = 10478
- },
- [5] = {
- ["name"] = "Frostbrand Weapon",
- ["rank"] = 3,
- ["cost"] = 11000,
- ["texture"] = "Interface/ICONS/spell_frost_frostbrand",
- ["id"] = 10456
- },
- [6] = {
- ["name"] = "Strength of Earth Totem",
- ["rank"] = 3,
- ["cost"] = 11000,
- ["texture"] = "Interface/ICONS/spell_nature_earthbindtotem",
- ["id"] = 8161
- },
- [7] = {
- ["name"] = "Disease Cleansing Totem",
- ["rank"] = 1,
- ["cost"] = 11000,
- ["texture"] = "Interface/ICONS/spell_nature_diseasecleansingtotem",
- ["id"] = 8170
- },
- },
- [40] = {
- [1] = {
- ["name"] = "Mail",
- ["rank"] = 1,
- ["cost"] = 12000,
- ["texture"] = "Interface/ICONS/inv_chest_chain_05",
- ["id"] = 8737
- },
- [2] = {
- ["name"] = "Chain Lightning",
- ["rank"] = 2,
- ["cost"] = 12000,
- ["texture"] = "Interface/ICONS/spell_nature_chainlightning",
- ["id"] = 930
- },
- [3] = {
- ["name"] = "Flame Shock",
- ["rank"] = 4,
- ["cost"] = 12000,
- ["texture"] = "Interface/ICONS/spell_fire_flameshock",
- ["id"] = 10447
- },
- [4] = {
- ["name"] = "Searing Totem",
- ["rank"] = 4,
- ["cost"] = 12000,
- ["texture"] = "Interface/ICONS/spell_fire_searingtotem",
- ["id"] = 6365
- },
- [5] = {
- ["name"] = "Lightning Shield",
- ["rank"] = 5,
- ["cost"] = 12000,
- ["texture"] = "Interface/ICONS/spell_nature_lightningshield",
- ["id"] = 8134
- },
- [6] = {
- ["name"] = "Windfury Weapon",
- ["rank"] = 2,
- ["cost"] = 12000,
- ["texture"] = "Interface/ICONS/spell_nature_cyclone",
- ["id"] = 8235
- },
- [7] = {
- ["name"] = "Chain Heal",
- ["rank"] = 1,
- ["cost"] = 12000,
- ["texture"] = "Interface/ICONS/spell_nature_healingwavegreater",
- ["id"] = 1064
- },
- [8] = {
- ["name"] = "Healing Stream Totem",
- ["rank"] = 3,
- ["cost"] = 12000,
- ["texture"] = "Interface/ICONS/inv_spear_04",
- ["id"] = 6377
- },
- [9] = {
- ["name"] = "Healing Wave",
- ["rank"] = 7,
- ["cost"] = 12000,
- ["texture"] = "Interface/ICONS/spell_nature_magicimmunity",
- ["id"] = 8005
- },
- },
- [42] = {
- [1] = {
- ["name"] = "Fire Nova Totem",
- ["rank"] = 4,
- ["cost"] = 16000,
- ["texture"] = "Interface/ICONS/spell_fire_sealoffire",
- ["id"] = 11314
- },
- [2] = {
- ["name"] = "Fire Resistance Totem",
- ["rank"] = 2,
- ["cost"] = 16000,
- ["texture"] = "Interface/ICONS/spell_fireresistancetotem_01",
- ["id"] = 10537
- },
- [3] = {
- ["name"] = "Grace of Air Totem",
- ["rank"] = 1,
- ["cost"] = 16000,
- ["texture"] = "Interface/ICONS/spell_nature_invisibilitytotem",
- ["id"] = 8835
- },
- [4] = {
- ["name"] = "Windfury Totem",
- ["rank"] = 2,
- ["cost"] = 16000,
- ["texture"] = "Interface/ICONS/spell_nature_windfury",
- ["id"] = 10613
- },
- },
- [44] = {
- [1] = {
- ["name"] = "Lightning Bolt",
- ["rank"] = 8,
- ["cost"] = 18000,
- ["texture"] = "Interface/ICONS/spell_nature_lightning",
- ["id"] = 10392
- },
- [2] = {
- ["name"] = "Nature Resistance Totem",
- ["rank"] = 2,
- ["cost"] = 18000,
- ["texture"] = "Interface/ICONS/spell_nature_natureresistancetotem",
- ["id"] = 10600
- },
- [3] = {
- ["name"] = "Rockbiter Weapon",
- ["rank"] = 6,
- ["cost"] = 18000,
- ["texture"] = "Interface/ICONS/spell_nature_rockbiter",
- ["id"] = 16315
- },
- [4] = {
- ["name"] = "Stoneskin Totem",
- ["rank"] = 5,
- ["cost"] = 18000,
- ["texture"] = "Interface/ICONS/spell_nature_stoneskintotem",
- ["id"] = 10407
- },
- [5] = {
- ["name"] = "Lesser Healing Wave",
- ["rank"] = 4,
- ["cost"] = 18000,
- ["texture"] = "Interface/ICONS/spell_nature_healingwavelesser",
- ["id"] = 10466
- },
- },
- [46] = {
- [1] = {
- ["name"] = "Frost Shock",
- ["rank"] = 3,
- ["cost"] = 20000,
- ["texture"] = "Interface/ICONS/spell_frost_frostshock",
- ["id"] = 10472
- },
- [2] = {
- ["name"] = "Magma Totem",
- ["rank"] = 3,
- ["cost"] = 20000,
- ["texture"] = "Interface/ICONS/spell_fire_selfdestruct",
- ["id"] = 10586
- },
- [3] = {
- ["name"] = "Flametongue Weapon",
- ["rank"] = 5,
- ["cost"] = 20000,
- ["texture"] = "Interface/ICONS/spell_fire_flametounge",
- ["id"] = 16341
- },
- [4] = {
- ["name"] = "Windwall Totem",
- ["rank"] = 2,
- ["cost"] = 20000,
- ["texture"] = "Interface/ICONS/spell_nature_earthbind",
- ["id"] = 15111
- },
- [5] = {
- ["name"] = "Chain Heal",
- ["rank"] = 2,
- ["cost"] = 20000,
- ["texture"] = "Interface/ICONS/spell_nature_healingwavegreater",
- ["id"] = 10622
- },
- [6] = {
- ["name"] = "Mana Spring Totem",
- ["rank"] = 3,
- ["cost"] = 20000,
- ["texture"] = "Interface/ICONS/spell_nature_manaregentotem",
- ["id"] = 10496
- },
- },
- [48] = {
- [1] = {
- ["name"] = "Chain Lightning",
- ["rank"] = 3,
- ["cost"] = 22000,
- ["texture"] = "Interface/ICONS/spell_nature_chainlightning",
- ["id"] = 2860
- },
- [2] = {
- ["name"] = "Earth Shock",
- ["rank"] = 6,
- ["cost"] = 22000,
- ["texture"] = "Interface/ICONS/spell_nature_earthshock",
- ["id"] = 10413
- },
- [3] = {
- ["name"] = "Stoneclaw Totem",
- ["rank"] = 5,
- ["cost"] = 22000,
- ["texture"] = "Interface/ICONS/spell_nature_stoneclawtotem",
- ["id"] = 10427
- },
- [4] = {
- ["name"] = "Flametongue Totem",
- ["rank"] = 3,
- ["cost"] = 22000,
- ["texture"] = "Interface/ICONS/spell_nature_guardianward",
- ["id"] = 10526
- },
- [5] = {
- ["name"] = "Frostbrand Weapon",
- ["rank"] = 4,
- ["cost"] = 22000,
- ["texture"] = "Interface/ICONS/spell_frost_frostbrand",
- ["id"] = 16355
- },
- [6] = {
- ["name"] = "Lightning Shield",
- ["rank"] = 6,
- ["cost"] = 22000,
- ["texture"] = "Interface/ICONS/spell_nature_lightningshield",
- ["id"] = 10431
- },
- [7] = {
- ["name"] = "Ancestral Spirit",
- ["rank"] = 4,
- ["cost"] = 22000,
- ["texture"] = "Interface/ICONS/spell_nature_regenerate",
- ["id"] = 20776
- },
- [8] = {
- ["name"] = "Healing Wave",
- ["rank"] = 8,
- ["cost"] = 22000,
- ["texture"] = "Interface/ICONS/spell_nature_magicimmunity",
- ["id"] = 10395
- },
- [9] = {
- ["name"] = "Mana Tide Totem",
- ["rank"] = 2,
- ["cost"] = 4400,
- ["texture"] = "Interface/ICONS/spell_frost_summonwaterelemental",
- ["id"] = 17354,
- ["talent"] = true
- },
- },
- [50] = {
- [1] = {
- ["name"] = "Lightning Bolt",
- ["rank"] = 9,
- ["cost"] = 24000,
- ["texture"] = "Interface/ICONS/spell_nature_lightning",
- ["id"] = 15207
- },
- [2] = {
- ["name"] = "Searing Totem",
- ["rank"] = 5,
- ["cost"] = 24000,
- ["texture"] = "Interface/ICONS/spell_fire_searingtotem",
- ["id"] = 10437
- },
- [3] = {
- ["name"] = "Windfury Weapon",
- ["rank"] = 3,
- ["cost"] = 24000,
- ["texture"] = "Interface/ICONS/spell_nature_cyclone",
- ["id"] = 10486
- },
- [4] = {
- ["name"] = "Healing Stream Totem",
- ["rank"] = 4,
- ["cost"] = 24000,
- ["texture"] = "Interface/ICONS/inv_spear_04",
- ["id"] = 10462
- },
- [5] = {
- ["name"] = "Tranquil Air Totem",
- ["rank"] = 1,
- ["cost"] = 24000,
- ["texture"] = "Interface/ICONS/spell_nature_brilliance",
- ["id"] = 25908
- },
- },
- [52] = {
- [1] = {
- ["name"] = "Fire Nova Totem",
- ["rank"] = 5,
- ["cost"] = 27000,
- ["texture"] = "Interface/ICONS/spell_fire_sealoffire",
- ["id"] = 11315
- },
- [2] = {
- ["name"] = "Flame Shock",
- ["rank"] = 5,
- ["cost"] = 27000,
- ["texture"] = "Interface/ICONS/spell_fire_flameshock",
- ["id"] = 10448
- },
- [3] = {
- ["name"] = "Strength of Earth Totem",
- ["rank"] = 4,
- ["cost"] = 27000,
- ["texture"] = "Interface/ICONS/spell_nature_earthbindtotem",
- ["id"] = 10442
- },
- [4] = {
- ["name"] = "Windfury Totem",
- ["rank"] = 3,
- ["cost"] = 27000,
- ["texture"] = "Interface/ICONS/spell_nature_windfury",
- ["id"] = 10614
- },
- [5] = {
- ["name"] = "Lesser Healing Wave",
- ["rank"] = 5,
- ["cost"] = 27000,
- ["texture"] = "Interface/ICONS/spell_nature_healingwavelesser",
- ["id"] = 10467
- },
- },
- [54] = {
- [1] = {
- ["name"] = "Frost Resistance Totem",
- ["rank"] = 3,
- ["cost"] = 29000,
- ["texture"] = "Interface/ICONS/spell_frostresistancetotem_01",
- ["id"] = 10479
- },
- [2] = {
- ["name"] = "Rockbiter Weapon",
- ["rank"] = 7,
- ["cost"] = 29000,
- ["texture"] = "Interface/ICONS/spell_nature_rockbiter",
- ["id"] = 16316
- },
- [3] = {
- ["name"] = "Stoneskin Totem",
- ["rank"] = 6,
- ["cost"] = 29000,
- ["texture"] = "Interface/ICONS/spell_nature_stoneskintotem",
- ["id"] = 10408
- },
- [4] = {
- ["name"] = "Chain Heal",
- ["rank"] = 3,
- ["cost"] = 29000,
- ["texture"] = "Interface/ICONS/spell_nature_healingwavegreater",
- ["id"] = 10623
- },
- },
- [56] = {
- [1] = {
- ["name"] = "Chain Lightning",
- ["rank"] = 4,
- ["cost"] = 30000,
- ["texture"] = "Interface/ICONS/spell_nature_chainlightning",
- ["id"] = 10605
- },
- [2] = {
- ["name"] = "Lightning Bolt",
- ["rank"] = 10,
- ["cost"] = 30000,
- ["texture"] = "Interface/ICONS/spell_nature_lightning",
- ["id"] = 15208
- },
- [3] = {
- ["name"] = "Magma Totem",
- ["rank"] = 4,
- ["cost"] = 30000,
- ["texture"] = "Interface/ICONS/spell_fire_selfdestruct",
- ["id"] = 10587
- },
- [4] = {
- ["name"] = "Flametongue Weapon",
- ["rank"] = 6,
- ["cost"] = 30000,
- ["texture"] = "Interface/ICONS/spell_fire_flametounge",
- ["id"] = 16342
- },
- [5] = {
- ["name"] = "Grace of Air Totem",
- ["rank"] = 2,
- ["cost"] = 30000,
- ["texture"] = "Interface/ICONS/spell_nature_invisibilitytotem",
- ["id"] = 10627
- },
- [6] = {
- ["name"] = "Lightning Shield",
- ["rank"] = 7,
- ["cost"] = 30000,
- ["texture"] = "Interface/ICONS/spell_nature_lightningshield",
- ["id"] = 10432
- },
- [7] = {
- ["name"] = "Windwall Totem",
- ["rank"] = 3,
- ["cost"] = 30000,
- ["texture"] = "Interface/ICONS/spell_nature_earthbind",
- ["id"] = 15112
- },
- [8] = {
- ["name"] = "Healing Wave",
- ["rank"] = 9,
- ["cost"] = 30000,
- ["texture"] = "Interface/ICONS/spell_nature_magicimmunity",
- ["id"] = 10396
- },
- [9] = {
- ["name"] = "Mana Spring Totem",
- ["rank"] = 4,
- ["cost"] = 30000,
- ["texture"] = "Interface/ICONS/spell_nature_manaregentotem",
- ["id"] = 10497
- },
- },
- [58] = {
- [1] = {
- ["name"] = "Frost Shock",
- ["rank"] = 4,
- ["cost"] = 32000,
- ["texture"] = "Interface/ICONS/spell_frost_frostshock",
- ["id"] = 10473
- },
- [2] = {
- ["name"] = "Stoneclaw Totem",
- ["rank"] = 6,
- ["cost"] = 32000,
- ["texture"] = "Interface/ICONS/spell_nature_stoneclawtotem",
- ["id"] = 10428
- },
- [3] = {
- ["name"] = "Fire Resistance Totem",
- ["rank"] = 3,
- ["cost"] = 32000,
- ["texture"] = "Interface/ICONS/spell_fireresistancetotem_01",
- ["id"] = 10538
- },
- [4] = {
- ["name"] = "Flametongue Totem",
- ["rank"] = 4,
- ["cost"] = 32000,
- ["texture"] = "Interface/ICONS/spell_nature_guardianward",
- ["id"] = 16387
- },
- [5] = {
- ["name"] = "Frostbrand Weapon",
- ["rank"] = 5,
- ["cost"] = 32000,
- ["texture"] = "Interface/ICONS/spell_frost_frostbrand",
- ["id"] = 16356
- },
- [6] = {
- ["name"] = "Mana Tide Totem",
- ["rank"] = 3,
- ["cost"] = 7200,
- ["texture"] = "Interface/ICONS/spell_frost_summonwaterelemental",
- ["id"] = 17359,
- ["talent"] = true
- },
- },
- [60] = {
- [1] = {
- ["name"] = "Earth Shock",
- ["rank"] = 7,
- ["cost"] = 34000,
- ["texture"] = "Interface/ICONS/spell_nature_earthshock",
- ["id"] = 10414
- },
- [2] = {
- ["name"] = "Searing Totem",
- ["rank"] = 6,
- ["cost"] = 34000,
- ["texture"] = "Interface/ICONS/spell_fire_searingtotem",
- ["id"] = 10438
- },
- [3] = {
- ["name"] = "Nature Resistance Totem",
- ["rank"] = 3,
- ["cost"] = 34000,
- ["texture"] = "Interface/ICONS/spell_nature_natureresistancetotem",
- ["id"] = 10601
- },
- [4] = {
- ["name"] = "Windfury Weapon",
- ["rank"] = 4,
- ["cost"] = 34000,
- ["texture"] = "Interface/ICONS/spell_nature_cyclone",
- ["id"] = 16362
- },
- [5] = {
- ["name"] = "Ancestral Spirit",
- ["rank"] = 5,
- ["cost"] = 34000,
- ["texture"] = "Interface/ICONS/spell_nature_regenerate",
- ["id"] = 20777
- },
- [6] = {
- ["name"] = "Healing Stream Totem",
- ["rank"] = 5,
- ["cost"] = 34000,
- ["texture"] = "Interface/ICONS/inv_spear_04",
- ["id"] = 10463
- },
- [7] = {
- ["name"] = "Lesser Healing Wave",
- ["rank"] = 6,
- ["cost"] = 34000,
- ["texture"] = "Interface/ICONS/spell_nature_healingwavelesser",
- ["id"] = 10468
- },
- },
-}
diff --git a/Database/WeaponSkills.lua b/Database/WeaponSkills.lua
deleted file mode 100644
index 21fef42..0000000
--- a/Database/WeaponSkills.lua
+++ /dev/null
@@ -1,194 +0,0 @@
-local _, FieldGuide = ...
-
-local weapons = {
- ["bows"] = {
- ["name"] = "Bows",
- ["rank"] = 1,
- ["cost"] = 1000,
- ["texture"] = "Interface/ICONS/inv_weapon_bow_05",
- ["id"] = 264
- },
- ["crossbows"] = {
- ["name"] = "Crossbows",
- ["rank"] = 1,
- ["cost"] = 1000,
- ["texture"] = "Interface/ICONS/inv_weapon_crossbow_01",
- ["id"] = 5011
- },
- ["daggers"] = {
- ["name"] = "Daggers",
- ["rank"] = 1,
- ["cost"] = 1000,
- ["texture"] = "Interface/ICONS/ability_steelmelee",
- ["id"] = 1180
- },
- ["fist_weapons"] = {
- ["name"] = "Fist Weapons",
- ["rank"] = 1,
- ["cost"] = 1000,
- ["texture"] = "Interface/ICONS/inv_gauntlets_04",
- ["id"] = 15590
- },
- ["guns"] = {
- ["name"] = "Guns",
- ["rank"] = 1,
- ["cost"] = 1000,
- ["texture"] = "Interface/ICONS/inv_weapon_rifle_01",
- ["id"] = 266
- },
- ["one_handed_axes"] = {
- ["name"] = "Axes",
- ["rank"] = 1,
- ["cost"] = 1000,
- ["texture"] = "Interface/ICONS/inv_axe_01",
- ["id"] = 196
- },
- ["one_handed_maces"] = {
- ["name"] = "Maces",
- ["rank"] = 1,
- ["cost"] = 1000,
- ["texture"] = "Interface/ICONS/inv_mace_01",
- ["id"] = 198
- },
- ["one_handed_swords"] = {
- ["name"] = "Swords",
- ["rank"] = 1,
- ["cost"] = 1000,
- ["texture"] = "Interface/ICONS/ability_meleedamage",
- ["id"] = 201
- },
- ["polearms"] = {
- ["name"] = "Polearms",
- ["rank"] = 1,
- ["cost"] = 10000,
- ["texture"] = "Interface/ICONS/inv_spear_06",
- ["id"] = 200
- },
- ["staves"] = {
- ["name"] = "Staves",
- ["rank"] = 1,
- ["cost"] = 1000,
- ["texture"] = "Interface/ICONS/inv_staff_08",
- ["id"] = 227
- },
- ["thrown"] = {
- ["name"] = "Thrown",
- ["rank"] = 1,
- ["cost"] = 1000,
- ["texture"] = "Interface/ICONS/inv_throwingknife_02",
- ["id"] = 2567
- },
- ["two_handed_axes"] = {
- ["name"] = "Two-Handed Axes",
- ["rank"] = 1,
- ["cost"] = 1000,
- ["texture"] = "Interface/ICONS/inv_axe_04",
- ["id"] = 197
- },
- ["two_handed_maces"] = {
- ["name"] = "Two-Handed Maces",
- ["rank"] = 1,
- ["cost"] = 1000,
- ["texture"] = "Interface/ICONS/inv_mace_04",
- ["id"] = 199
- },
- ["two_handed_swords"] = {
- ["name"] = "Two-Handed Swords",
- ["rank"] = 1,
- ["cost"] = 1000,
- ["texture"] = "Interface/ICONS/ability_meleedamage",
- ["id"] = 202
- },
- ["wands"] = {
- ["name"] = "Wands",
- ["rank"] = 1,
- ["cost"] = 1000,
- ["texture"] = "Interface/ICONS/ability_shootwand",
- ["id"] = 5009
- }
-}
-
-FieldGuide.WEAPONS = {
- [1] = { -- Warrior.
- FieldGuide.copy(weapons.bows),
- FieldGuide.copy(weapons.crossbows),
- FieldGuide.copy(weapons.daggers),
- FieldGuide.copy(weapons.fist_weapons),
- FieldGuide.copy(weapons.guns),
- FieldGuide.copy(weapons.one_handed_axes),
- FieldGuide.copy(weapons.one_handed_maces),
- FieldGuide.copy(weapons.one_handed_swords),
- FieldGuide.copy(weapons.polearms),
- FieldGuide.copy(weapons.staves),
- FieldGuide.copy(weapons.thrown),
- FieldGuide.copy(weapons.two_handed_axes),
- FieldGuide.copy(weapons.two_handed_maces),
- FieldGuide.copy(weapons.two_handed_swords)
- },
- [2] = { -- Paladin.
- FieldGuide.copy(weapons.one_handed_axes),
- FieldGuide.copy(weapons.one_handed_maces),
- FieldGuide.copy(weapons.one_handed_swords),
- FieldGuide.copy(weapons.polearms),
- FieldGuide.copy(weapons.two_handed_axes),
- FieldGuide.copy(weapons.two_handed_maces),
- FieldGuide.copy(weapons.two_handed_swords)
- },
- [3] = { -- Hunter.
- FieldGuide.copy(weapons.bows),
- FieldGuide.copy(weapons.crossbows),
- FieldGuide.copy(weapons.daggers),
- FieldGuide.copy(weapons.fist_weapons),
- FieldGuide.copy(weapons.guns),
- FieldGuide.copy(weapons.one_handed_axes),
- FieldGuide.copy(weapons.one_handed_swords),
- FieldGuide.copy(weapons.polearms),
- FieldGuide.copy(weapons.staves),
- FieldGuide.copy(weapons.thrown),
- FieldGuide.copy(weapons.two_handed_axes),
- FieldGuide.copy(weapons.two_handed_swords)
- },
- [4] = { -- Rogue.
- FieldGuide.copy(weapons.bows),
- FieldGuide.copy(weapons.crossbows),
- FieldGuide.copy(weapons.daggers),
- FieldGuide.copy(weapons.fist_weapons),
- FieldGuide.copy(weapons.guns),
- FieldGuide.copy(weapons.one_handed_maces),
- FieldGuide.copy(weapons.one_handed_swords),
- FieldGuide.copy(weapons.thrown)
- },
- [5] = { -- Priest.
- FieldGuide.copy(weapons.daggers),
- FieldGuide.copy(weapons.one_handed_maces),
- FieldGuide.copy(weapons.staves),
- FieldGuide.copy(weapons.wands)
- },
- [6] = { -- Shaman.
- FieldGuide.copy(weapons.daggers),
- FieldGuide.copy(weapons.one_handed_axes),
- FieldGuide.copy(weapons.one_handed_maces),
- FieldGuide.copy(weapons.staves),
- FieldGuide.copy(weapons.two_handed_axes),
- FieldGuide.copy(weapons.two_handed_maces)
- },
- [7] = { -- Mage.
- FieldGuide.copy(weapons.daggers),
- FieldGuide.copy(weapons.one_handed_swords),
- FieldGuide.copy(weapons.staves),
- FieldGuide.copy(weapons.wands)
- },
- [8] = { -- Warlock.
- FieldGuide.copy(weapons.daggers),
- FieldGuide.copy(weapons.one_handed_swords),
- FieldGuide.copy(weapons.staves),
- FieldGuide.copy(weapons.wands)
- },
- [9] = { -- Druid.
- FieldGuide.copy(weapons.daggers),
- FieldGuide.copy(weapons.fist_weapons),
- FieldGuide.copy(weapons.one_handed_maces),
- FieldGuide.copy(weapons.staves),
- FieldGuide.copy(weapons.two_handed_maces)
- },
-}
diff --git a/Database/Weapons.lua b/Database/Weapons.lua
new file mode 100644
index 0000000..144ee32
--- /dev/null
+++ b/Database/Weapons.lua
@@ -0,0 +1,575 @@
+local _, FieldGuide = ...
+
+FieldGuide.WEAPONS = {
+ ["druid"] = {
+ [1] = {
+ ["id"] = 199,
+ ["name"] = "Two-Handed Maces",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_mace_04",
+ },
+ [2] = {
+ ["id"] = 198,
+ ["name"] = "One-Handed Maces",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_mace_01",
+ },
+ [3] = {
+ ["id"] = 15590,
+ ["name"] = "Fist Weapons",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_04",
+ },
+ [4] = {
+ ["id"] = 227,
+ ["name"] = "Staves",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_staff_08",
+ },
+ [5] = {
+ ["id"] = 1180,
+ ["name"] = "Daggers",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/ability_steelmelee",
+ }
+ },
+ ["hunter"] = {
+ [1] = {
+ ["id"] = 674,
+ ["name"] = "Dual Wield",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/ability_dualwield",
+ },
+ [2] = {
+ ["id"] = 200,
+ ["name"] = "Polearms",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_spear_06",
+ },
+ [3] = {
+ ["id"] = 197,
+ ["name"] = "Two-Handed Axes",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_axe_04",
+ },
+ [4] = {
+ ["id"] = 15590,
+ ["name"] = "Fist Weapons",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_04",
+ },
+ [5] = {
+ ["id"] = 202,
+ ["name"] = "Two-Handed Swords",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/ability_meleedamage",
+ },
+ [6] = {
+ ["id"] = 196,
+ ["name"] = "One-Handed Axes",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_axe_01",
+ },
+ [7] = {
+ ["id"] = 264,
+ ["name"] = "Bows",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_weapon_bow_05",
+ },
+ [8] = {
+ ["id"] = 2567,
+ ["name"] = "Thrown",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_throwingknife_02",
+ },
+ [9] = {
+ ["id"] = 227,
+ ["name"] = "Staves",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_staff_08",
+ },
+ [10] = {
+ ["id"] = 201,
+ ["name"] = "One-Handed Swords",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/ability_meleedamage",
+ },
+ [11] = {
+ ["id"] = 266,
+ ["name"] = "Guns",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_weapon_rifle_01",
+ },
+ [12] = {
+ ["id"] = 5011,
+ ["name"] = "Crossbows",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_weapon_crossbow_01",
+ },
+ [13] = {
+ ["id"] = 3127,
+ ["name"] = "Parry",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/ability_parry",
+ },
+ [14] = {
+ ["id"] = 1180,
+ ["name"] = "Daggers",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/ability_steelmelee",
+ },
+ [15] = {
+ ["id"] = 2764,
+ ["name"] = "Throw",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/ability_throw",
+ },
+ },
+ ["mage"] = {
+ [1] = {
+ ["id"] = 227,
+ ["name"] = "Staves",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_staff_08",
+ },
+ [2] = {
+ ["id"] = 201,
+ ["name"] = "One-Handed Swords",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/ability_meleedamage",
+ },
+ [3] = {
+ ["id"] = 1180,
+ ["name"] = "Daggers",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/ability_steelmelee",
+ },
+ [4] = {
+ ["id"] = 5009,
+ ["name"] = "Wands",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/ability_shootwand",
+ },
+ },
+ ["paladin"] = {
+ [1] = {
+ ["id"] = 200,
+ ["name"] = "Polearms",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_spear_06",
+ },
+ [2] = {
+ ["id"] = 199,
+ ["name"] = "Two-Handed Maces",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_mace_04",
+ },
+ [3] = {
+ ["id"] = 197,
+ ["name"] = "Two-Handed Axes",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_axe_04",
+ },
+ [4] = {
+ ["id"] = 198,
+ ["name"] = "One-Handed Maces",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_mace_01",
+ },
+ [5] = {
+ ["id"] = 202,
+ ["name"] = "Two-Handed Swords",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/ability_meleedamage",
+ },
+ [6] = {
+ ["id"] = 196,
+ ["name"] = "One-Handed Axes",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_axe_01",
+ },
+ [7] = {
+ ["id"] = 201,
+ ["name"] = "One-Handed Swords",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/ability_meleedamage",
+ },
+ [8] = {
+ ["id"] = 107,
+ ["name"] = "Block",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/ability_defend",
+ },
+ [9] = {
+ ["id"] = 3127,
+ ["name"] = "Parry",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/ability_parry",
+ },
+ },
+ ["priest"] = {
+ [1] = {
+ ["id"] = 198,
+ ["name"] = "One-Handed Maces",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_mace_01",
+ },
+ [2] = {
+ ["id"] = 227,
+ ["name"] = "Staves",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_staff_08",
+ },
+ [3] = {
+ ["id"] = 1180,
+ ["name"] = "Daggers",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/ability_steelmelee",
+ },
+ [4] = {
+ ["id"] = 5009,
+ ["name"] = "Wands",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/ability_shootwand",
+ },
+ },
+ ["rogue"] = {
+ [1] = {
+ ["id"] = 674,
+ ["name"] = "Dual Wield",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/ability_dualwield",
+ },
+ [2] = {
+ ["id"] = 198,
+ ["name"] = "One-Handed Maces",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_mace_01",
+ },
+ [3] = {
+ ["id"] = 15590,
+ ["name"] = "Fist Weapons",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_04",
+ },
+ [4] = {
+ ["id"] = 264,
+ ["name"] = "Bows",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_weapon_bow_05",
+ },
+ [5] = {
+ ["id"] = 2567,
+ ["name"] = "Thrown",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_throwingknife_02",
+ },
+ [6] = {
+ ["id"] = 201,
+ ["name"] = "One-Handed Swords",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/ability_meleedamage",
+ },
+ [7] = {
+ ["id"] = 266,
+ ["name"] = "Guns",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_weapon_rifle_01",
+ },
+ [8] = {
+ ["id"] = 5011,
+ ["name"] = "Crossbows",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_weapon_crossbow_01",
+ },
+ [9] = {
+ ["id"] = 3127,
+ ["name"] = "Parry",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/ability_parry",
+ },
+ [10] = {
+ ["id"] = 1180,
+ ["name"] = "Daggers",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/ability_steelmelee",
+ },
+ [11] = {
+ ["id"] = 2764,
+ ["name"] = "Throw",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/ability_throw",
+ },
+ },
+ ["shaman"] = {
+ [1] = {
+ ["id"] = 674,
+ ["name"] = "Dual Wield",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/ability_dualwield",
+ },
+ [2] = {
+ ["id"] = 199,
+ ["name"] = "Two-Handed Maces",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_mace_04",
+ },
+ [3] = {
+ ["id"] = 197,
+ ["name"] = "Two-Handed Axes",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_axe_04",
+ },
+ [4] = {
+ ["id"] = 198,
+ ["name"] = "One-Handed Maces",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_mace_01",
+ },
+ [5] = {
+ ["id"] = 15590,
+ ["name"] = "Fist Weapons",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_04",
+ },
+ [6] = {
+ ["id"] = 196,
+ ["name"] = "One-Handed Axes",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_axe_01",
+ },
+ [7] = {
+ ["id"] = 227,
+ ["name"] = "Staves",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_staff_08",
+ },
+ [8] = {
+ ["id"] = 107,
+ ["name"] = "Block",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/ability_defend",
+ },
+ [9] = {
+ ["id"] = 1180,
+ ["name"] = "Daggers",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/ability_steelmelee",
+ },
+ },
+ ["warlock"] = {
+ [1] = {
+ ["id"] = 227,
+ ["name"] = "Staves",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_staff_08",
+ },
+ [2] = {
+ ["id"] = 201,
+ ["name"] = "One-Handed Swords",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/ability_meleedamage",
+ },
+ [3] = {
+ ["id"] = 1180,
+ ["name"] = "Daggers",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/ability_steelmelee",
+ },
+ [4] = {
+ ["id"] = 5009,
+ ["name"] = "Wands",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/ability_shootwand",
+ },
+ },
+ ["warrior"] = {
+ [1] = {
+ ["id"] = 674,
+ ["name"] = "Dual Wield",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/ability_dualwield",
+ },
+ [2] = {
+ ["id"] = 200,
+ ["name"] = "Polearms",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_spear_06",
+ },
+ [3] = {
+ ["id"] = 199,
+ ["name"] = "Two-Handed Maces",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_mace_04",
+ },
+ [4] = {
+ ["id"] = 197,
+ ["name"] = "Two-Handed Axes",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_axe_04",
+ },
+ [5] = {
+ ["id"] = 198,
+ ["name"] = "One-Handed Maces",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_mace_01",
+ },
+ [6] = {
+ ["id"] = 15590,
+ ["name"] = "Fist Weapons",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_04",
+ },
+ [7] = {
+ ["id"] = 202,
+ ["name"] = "Two-Handed Swords",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/ability_meleedamage",
+ },
+ [8] = {
+ ["id"] = 196,
+ ["name"] = "One-Handed Axes",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_axe_01",
+ },
+ [9] = {
+ ["id"] = 264,
+ ["name"] = "Bows",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_weapon_bow_05",
+ },
+ [10] = {
+ ["id"] = 2567,
+ ["name"] = "Thrown",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_throwingknife_02",
+ },
+ [11] = {
+ ["id"] = 227,
+ ["name"] = "Staves",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_staff_08",
+ },
+ [12] = {
+ ["id"] = 201,
+ ["name"] = "One-Handed Swords",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/ability_meleedamage",
+ },
+ [13] = {
+ ["id"] = 107,
+ ["name"] = "Block",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/ability_defend",
+ },
+ [14] = {
+ ["id"] = 266,
+ ["name"] = "Guns",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_weapon_rifle_01",
+ },
+ [15] = {
+ ["id"] = 5011,
+ ["name"] = "Crossbows",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_weapon_crossbow_01",
+ },
+ [16] = {
+ ["id"] = 3127,
+ ["name"] = "Parry",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/ability_parry",
+ },
+ [17] = {
+ ["id"] = 1180,
+ ["name"] = "Daggers",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/ability_steelmelee",
+ },
+ [18] = {
+ ["id"] = 2764,
+ ["name"] = "Throw",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/ability_throw",
+ }
+ }
+}
diff --git a/Database/Druid.lua b/Database/classes/Druid.lua
similarity index 60%
rename from Database/Druid.lua
rename to Database/classes/Druid.lua
index bf7029f..169b4b2 100644
--- a/Database/Druid.lua
+++ b/Database/classes/Druid.lua
@@ -1,1378 +1,1800 @@
local _, FieldGuide = ...
FieldGuide.DRUID = {
- [2] = {
+ [1] = {
[1] = {
+ ["id"] = 5185,
+ ["name"] = "Healing Touch",
+ ["rank"] = 1,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_healingtouch"
+ },
+ [2] = {
+ ["id"] = 1126,
["name"] = "Mark of the Wild",
["rank"] = 1,
["cost"] = 10,
- ["texture"] = "Interface/ICONS/spell_nature_regeneration",
- ["id"] = 1126
+ ["texture"] = "Interface/ICONS/spell_nature_regeneration"
+ },
+ [3] = {
+ ["id"] = 5176,
+ ["name"] = "Wrath",
+ ["rank"] = 1,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_abolishmagic"
},
},
[4] = {
[1] = {
+ ["id"] = 8921,
["name"] = "Moonfire",
["rank"] = 1,
["cost"] = 100,
- ["texture"] = "Interface/ICONS/spell_nature_starfall",
- ["id"] = 8921
+ ["texture"] = "Interface/ICONS/spell_nature_starfall"
},
[2] = {
+ ["id"] = 774,
["name"] = "Rejuvenation",
["rank"] = 1,
["cost"] = 100,
- ["texture"] = "Interface/ICONS/spell_nature_rejuvenation",
- ["id"] = 774
+ ["texture"] = "Interface/ICONS/spell_nature_rejuvenation"
},
},
[6] = {
[1] = {
+ ["id"] = 467,
["name"] = "Thorns",
["rank"] = 1,
["cost"] = 100,
- ["texture"] = "Interface/ICONS/spell_nature_thorns",
- ["id"] = 467
+ ["texture"] = "Interface/ICONS/spell_nature_thorns"
},
[2] = {
+ ["id"] = 5177,
["name"] = "Wrath",
["rank"] = 2,
["cost"] = 100,
- ["texture"] = "Interface/ICONS/spell_nature_abolishmagic",
- ["id"] = 5177
+ ["texture"] = "Interface/ICONS/spell_nature_abolishmagic"
},
},
[8] = {
[1] = {
+ ["id"] = 339,
["name"] = "Entangling Roots",
["rank"] = 1,
["cost"] = 200,
- ["texture"] = "Interface/ICONS/spell_nature_stranglevines",
- ["id"] = 339
+ ["texture"] = "Interface/ICONS/spell_nature_stranglevines"
},
[2] = {
+ ["id"] = 5186,
["name"] = "Healing Touch",
["rank"] = 2,
["cost"] = 200,
- ["texture"] = "Interface/ICONS/spell_nature_healingtouch",
- ["id"] = 5186
+ ["texture"] = "Interface/ICONS/spell_nature_healingtouch"
},
},
[10] = {
[1] = {
- ["name"] = "Moonfire",
- ["rank"] = 2,
- ["cost"] = 300,
- ["texture"] = "Interface/ICONS/spell_nature_starfall",
- ["id"] = 8924
+ ["id"] = 5487,
+ ["name"] = "Bear Form",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_racial_bearform"
},
[2] = {
- ["name"] = "Teleport: Moonglade",
+ ["id"] = 99,
+ ["name"] = "Demoralizing Roar",
["rank"] = 1,
- ["cost"] = 0,
- ["texture"] = "Interface/ICONS/spell_arcane_teleportmoonglade",
- ["id"] = 18960
+ ["cost"] = 300,
+ ["texture"] = "Interface/ICONS/ability_druid_demoralizingroar"
},
[3] = {
- ["name"] = "Bear Form",
- ["rank"] = 1,
+ ["id"] = 6795,
+ ["name"] = "Growl",
+ ["rank"] = 0,
["cost"] = 0,
- ["texture"] = "Interface/ICONS/ability_racial_bearform",
- ["id"] = 5487
+ ["texture"] = "Interface/ICONS/ability_physical_taunt"
},
[4] = {
- ["name"] = "Demoralizing Roar",
- ["rank"] = 1,
+ ["id"] = 5232,
+ ["name"] = "Mark of the Wild",
+ ["rank"] = 2,
["cost"] = 300,
- ["texture"] = "Interface/ICONS/ability_druid_demoralizingroar",
- ["id"] = 99
+ ["texture"] = "Interface/ICONS/spell_nature_regeneration"
},
[5] = {
- ["name"] = "Growl",
- ["rank"] = 1,
- ["cost"] = 0,
- ["texture"] = "Interface/ICONS/ability_physical_taunt",
- ["id"] = 6795
- },
- [6] = {
+ ["id"] = 6807,
["name"] = "Maul",
["rank"] = 1,
["cost"] = 0,
- ["texture"] = "Interface/ICONS/ability_druid_maul",
- ["id"] = 6807
+ ["texture"] = "Interface/ICONS/ability_druid_maul"
},
- [7] = {
- ["name"] = "Mark of the Wild",
+ [6] = {
+ ["id"] = 8924,
+ ["name"] = "Moonfire",
["rank"] = 2,
["cost"] = 300,
- ["texture"] = "Interface/ICONS/spell_nature_regeneration",
- ["id"] = 5232
+ ["texture"] = "Interface/ICONS/spell_nature_starfall"
},
- [8] = {
+ [7] = {
+ ["id"] = 1058,
["name"] = "Rejuvenation",
["rank"] = 2,
["cost"] = 300,
- ["texture"] = "Interface/ICONS/spell_nature_rejuvenation",
- ["id"] = 1058
+ ["texture"] = "Interface/ICONS/spell_nature_rejuvenation"
+ },
+ [8] = {
+ ["id"] = 18960,
+ ["name"] = "Teleport: Moonglade",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_arcane_teleportmoonglade"
},
},
[12] = {
[1] = {
+ ["id"] = 5229,
["name"] = "Enrage",
- ["rank"] = 1,
+ ["rank"] = 0,
["cost"] = 800,
- ["texture"] = "Interface/ICONS/ability_druid_enrage",
- ["id"] = 5229
+ ["texture"] = "Interface/ICONS/ability_druid_enrage"
},
[2] = {
+ ["id"] = 8936,
["name"] = "Regrowth",
["rank"] = 1,
["cost"] = 800,
- ["texture"] = "Interface/ICONS/spell_nature_resistnature",
- ["id"] = 8936
+ ["texture"] = "Interface/ICONS/spell_nature_resistnature"
},
},
[14] = {
[1] = {
- ["name"] = "Thorns",
- ["rank"] = 2,
+ ["id"] = 5211,
+ ["name"] = "Bash",
+ ["rank"] = 1,
["cost"] = 900,
- ["texture"] = "Interface/ICONS/spell_nature_thorns",
- ["id"] = 782
+ ["texture"] = "Interface/ICONS/ability_druid_bash"
},
[2] = {
- ["name"] = "Wrath",
- ["rank"] = 3,
- ["cost"] = 900,
- ["texture"] = "Interface/ICONS/spell_nature_abolishmagic",
- ["id"] = 5178
+ ["id"] = 8946,
+ ["name"] = "Cure Poison",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_nullifypoison"
},
[3] = {
- ["name"] = "Bash",
- ["rank"] = 1,
+ ["id"] = 5187,
+ ["name"] = "Healing Touch",
+ ["rank"] = 3,
["cost"] = 900,
- ["texture"] = "Interface/ICONS/ability_druid_bash",
- ["id"] = 5211
+ ["texture"] = "Interface/ICONS/spell_nature_healingtouch"
},
[4] = {
- ["name"] = "Cure Poison",
- ["rank"] = 1,
- ["cost"] = 0,
- ["texture"] = "Interface/ICONS/spell_nature_nullifypoison",
- ["id"] = 8946
+ ["id"] = 782,
+ ["name"] = "Thorns",
+ ["rank"] = 2,
+ ["cost"] = 900,
+ ["texture"] = "Interface/ICONS/spell_nature_thorns"
},
[5] = {
- ["name"] = "Healing Touch",
+ ["id"] = 5178,
+ ["name"] = "Wrath",
["rank"] = 3,
["cost"] = 900,
- ["texture"] = "Interface/ICONS/spell_nature_healingtouch",
- ["id"] = 5187
+ ["texture"] = "Interface/ICONS/spell_nature_abolishmagic"
},
},
[16] = {
[1] = {
+ ["id"] = 1066,
+ ["name"] = "Aquatic Form",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_druid_aquaticform"
+ },
+ [2] = {
+ ["id"] = 8925,
["name"] = "Moonfire",
["rank"] = 3,
["cost"] = 1800,
- ["texture"] = "Interface/ICONS/spell_nature_starfall",
- ["id"] = 8925
- },
- [2] = {
- ["name"] = "Aquatic Form",
- ["rank"] = 1,
- ["cost"] = 0,
- ["texture"] = "Interface/ICONS/ability_druid_aquaticform",
- ["id"] = 1066
+ ["texture"] = "Interface/ICONS/spell_nature_starfall"
},
[3] = {
- ["name"] = "Swipe",
- ["rank"] = 1,
+ ["id"] = 1430,
+ ["name"] = "Rejuvenation",
+ ["rank"] = 3,
["cost"] = 1800,
- ["texture"] = "Interface/ICONS/inv_misc_monsterclaw_03",
- ["id"] = 779
+ ["texture"] = "Interface/ICONS/spell_nature_rejuvenation"
},
[4] = {
- ["name"] = "Rejuvenation",
- ["rank"] = 3,
+ ["id"] = 779,
+ ["name"] = "Swipe",
+ ["rank"] = 1,
["cost"] = 1800,
- ["texture"] = "Interface/ICONS/spell_nature_rejuvenation",
- ["id"] = 1430
+ ["texture"] = "Interface/ICONS/inv_misc_monsterclaw_03"
},
},
[18] = {
[1] = {
+ ["id"] = 16810,
+ ["name"] = "Nature's Grasp",
+ ["rank"] = 2,
+ ["cost"] = 95,
+ ["texture"] = "Interface/ICONS/spell_nature_natureswrath",
+ ["talent"] = true
+ },
+ [2] = {
+ ["id"] = 1062,
["name"] = "Entangling Roots",
["rank"] = 2,
["cost"] = 1900,
- ["texture"] = "Interface/ICONS/spell_nature_stranglevines",
- ["id"] = 1062
+ ["texture"] = "Interface/ICONS/spell_nature_stranglevines"
},
- [2] = {
+ [3] = {
+ ["id"] = 770,
["name"] = "Faerie Fire",
["rank"] = 1,
["cost"] = 1900,
- ["texture"] = "Interface/ICONS/spell_nature_faeriefire",
- ["id"] = 770
+ ["texture"] = "Interface/ICONS/spell_nature_faeriefire"
},
- [3] = {
+ [4] = {
+ ["id"] = 2637,
["name"] = "Hibernate",
["rank"] = 1,
["cost"] = 1900,
- ["texture"] = "Interface/ICONS/spell_nature_sleep",
- ["id"] = 2637
- },
- [4] = {
- ["name"] = "Nature's Grasp",
- ["rank"] = 2,
- ["cost"] = 95,
- ["texture"] = "Interface/ICONS/spell_nature_natureswrath",
- ["id"] = 16810,
- ["talent"] = true
+ ["texture"] = "Interface/ICONS/spell_nature_sleep"
},
[5] = {
+ ["id"] = 6808,
["name"] = "Maul",
["rank"] = 2,
["cost"] = 1900,
- ["texture"] = "Interface/ICONS/ability_druid_maul",
- ["id"] = 6808
+ ["texture"] = "Interface/ICONS/ability_druid_maul"
},
[6] = {
+ ["id"] = 8938,
["name"] = "Regrowth",
["rank"] = 2,
["cost"] = 1900,
- ["texture"] = "Interface/ICONS/spell_nature_resistnature",
- ["id"] = 8938
+ ["texture"] = "Interface/ICONS/spell_nature_resistnature"
},
},
[20] = {
[1] = {
- ["name"] = "Starfire",
- ["rank"] = 1,
+ ["id"] = 768,
+ ["name"] = "Cat Form",
+ ["rank"] = 0,
["cost"] = 2000,
- ["texture"] = "Interface/ICONS/spell_arcane_starfire",
- ["id"] = 2912
+ ["texture"] = "Interface/ICONS/ability_druid_catform"
},
[2] = {
- ["name"] = "Cat Form",
+ ["id"] = 1082,
+ ["name"] = "Claw",
["rank"] = 1,
["cost"] = 2000,
- ["texture"] = "Interface/ICONS/ability_druid_catform",
- ["id"] = 768
+ ["texture"] = "Interface/ICONS/ability_druid_rake"
},
[3] = {
- ["name"] = "Claw",
- ["rank"] = 1,
+ ["id"] = 1735,
+ ["name"] = "Demoralizing Roar",
+ ["rank"] = 2,
["cost"] = 2000,
- ["texture"] = "Interface/ICONS/ability_druid_rake",
- ["id"] = 1082
+ ["texture"] = "Interface/ICONS/ability_druid_demoralizingroar"
},
[4] = {
- ["name"] = "Demoralizing Roar",
- ["rank"] = 2,
+ ["id"] = 5188,
+ ["name"] = "Healing Touch",
+ ["rank"] = 4,
["cost"] = 2000,
- ["texture"] = "Interface/ICONS/ability_druid_demoralizingroar",
- ["id"] = 1735
+ ["texture"] = "Interface/ICONS/spell_nature_healingtouch"
},
[5] = {
- ["name"] = "Prowl",
- ["rank"] = 1,
+ ["id"] = 6756,
+ ["name"] = "Mark of the Wild",
+ ["rank"] = 3,
["cost"] = 2000,
- ["texture"] = "Interface/ICONS/ability_ambush",
- ["id"] = 5215
+ ["texture"] = "Interface/ICONS/spell_nature_regeneration"
},
[6] = {
- ["name"] = "Rip",
+ ["id"] = 5215,
+ ["name"] = "Prowl",
["rank"] = 1,
["cost"] = 2000,
- ["texture"] = "Interface/ICONS/ability_ghoulfrenzy",
- ["id"] = 1079
+ ["texture"] = "Interface/ICONS/ability_ambush"
},
[7] = {
- ["name"] = "Healing Touch",
- ["rank"] = 4,
+ ["id"] = 20484,
+ ["name"] = "Rebirth",
+ ["rank"] = 1,
["cost"] = 2000,
- ["texture"] = "Interface/ICONS/spell_nature_healingtouch",
- ["id"] = 5188
+ ["texture"] = "Interface/ICONS/spell_nature_reincarnation"
},
[8] = {
- ["name"] = "Mark of the Wild",
- ["rank"] = 3,
+ ["id"] = 1079,
+ ["name"] = "Rip",
+ ["rank"] = 1,
["cost"] = 2000,
- ["texture"] = "Interface/ICONS/spell_nature_regeneration",
- ["id"] = 6756
+ ["texture"] = "Interface/ICONS/ability_ghoulfrenzy"
},
[9] = {
- ["name"] = "Rebirth",
+ ["id"] = 2912,
+ ["name"] = "Starfire",
["rank"] = 1,
["cost"] = 2000,
- ["texture"] = "Interface/ICONS/spell_nature_reincarnation",
- ["id"] = 20484
+ ["texture"] = "Interface/ICONS/spell_arcane_starfire"
},
},
[22] = {
[1] = {
+ ["id"] = 8926,
["name"] = "Moonfire",
["rank"] = 4,
["cost"] = 3000,
- ["texture"] = "Interface/ICONS/spell_nature_starfall",
- ["id"] = 8926
+ ["texture"] = "Interface/ICONS/spell_nature_starfall"
},
[2] = {
- ["name"] = "Soothe Animal",
- ["rank"] = 1,
+ ["id"] = 2090,
+ ["name"] = "Rejuvenation",
+ ["rank"] = 4,
["cost"] = 3000,
- ["texture"] = "Interface/ICONS/ability_hunter_beastsoothe",
- ["id"] = 2908
+ ["texture"] = "Interface/ICONS/spell_nature_rejuvenation"
},
[3] = {
- ["name"] = "Wrath",
- ["rank"] = 4,
+ ["id"] = 5221,
+ ["name"] = "Shred",
+ ["rank"] = 1,
["cost"] = 3000,
- ["texture"] = "Interface/ICONS/spell_nature_abolishmagic",
- ["id"] = 5179
+ ["texture"] = "Interface/ICONS/spell_shadow_vampiricaura"
},
[4] = {
- ["name"] = "Shred",
+ ["id"] = 2908,
+ ["name"] = "Soothe Animal",
["rank"] = 1,
["cost"] = 3000,
- ["texture"] = "Interface/ICONS/spell_shadow_vampiricaura",
- ["id"] = 5221
+ ["texture"] = "Interface/ICONS/ability_hunter_beastsoothe"
},
[5] = {
- ["name"] = "Rejuvenation",
+ ["id"] = 5179,
+ ["name"] = "Wrath",
["rank"] = 4,
["cost"] = 3000,
- ["texture"] = "Interface/ICONS/spell_nature_rejuvenation",
- ["id"] = 2090
+ ["texture"] = "Interface/ICONS/spell_nature_abolishmagic"
},
},
[24] = {
[1] = {
- ["name"] = "Thorns",
- ["rank"] = 3,
+ ["id"] = 1822,
+ ["name"] = "Rake",
+ ["rank"] = 1,
["cost"] = 4000,
- ["texture"] = "Interface/ICONS/spell_nature_thorns",
- ["id"] = 1075
+ ["texture"] = "Interface/ICONS/ability_druid_disembowel"
},
[2] = {
- ["name"] = "Rake",
- ["rank"] = 1,
+ ["id"] = 8939,
+ ["name"] = "Regrowth",
+ ["rank"] = 3,
["cost"] = 4000,
- ["texture"] = "Interface/ICONS/ability_druid_disembowel",
- ["id"] = 1822
+ ["texture"] = "Interface/ICONS/spell_nature_resistnature"
},
[3] = {
- ["name"] = "Swipe",
- ["rank"] = 2,
+ ["id"] = 2782,
+ ["name"] = "Remove Curse",
+ ["rank"] = 0,
["cost"] = 4000,
- ["texture"] = "Interface/ICONS/inv_misc_monsterclaw_03",
- ["id"] = 780
+ ["texture"] = "Interface/ICONS/spell_holy_removecurse"
},
[4] = {
- ["name"] = "Tiger's Fury",
- ["rank"] = 1,
+ ["id"] = 780,
+ ["name"] = "Swipe",
+ ["rank"] = 2,
["cost"] = 4000,
- ["texture"] = "Interface/ICONS/ability_mount_jungletiger",
- ["id"] = 5217
+ ["texture"] = "Interface/ICONS/inv_misc_monsterclaw_03"
},
[5] = {
- ["name"] = "Regrowth",
+ ["id"] = 1075,
+ ["name"] = "Thorns",
["rank"] = 3,
["cost"] = 4000,
- ["texture"] = "Interface/ICONS/spell_nature_resistnature",
- ["id"] = 8939
+ ["texture"] = "Interface/ICONS/spell_nature_thorns"
},
[6] = {
- ["name"] = "Remove Curse",
+ ["id"] = 5217,
+ ["name"] = "Tiger's Fury",
["rank"] = 1,
["cost"] = 4000,
- ["texture"] = "Interface/ICONS/spell_holy_removecurse",
- ["id"] = 2782
+ ["texture"] = "Interface/ICONS/ability_mount_jungletiger"
},
},
[26] = {
[1] = {
- ["name"] = "Starfire",
- ["rank"] = 2,
+ ["id"] = 2893,
+ ["name"] = "Abolish Poison",
+ ["rank"] = 0,
["cost"] = 4500,
- ["texture"] = "Interface/ICONS/spell_arcane_starfire",
- ["id"] = 8949
+ ["texture"] = "Interface/ICONS/spell_nature_nullifypoison_02"
},
[2] = {
+ ["id"] = 1850,
["name"] = "Dash",
["rank"] = 1,
["cost"] = 4500,
- ["texture"] = "Interface/ICONS/ability_druid_dash",
- ["id"] = 1850
+ ["texture"] = "Interface/ICONS/ability_druid_dash"
},
[3] = {
- ["name"] = "Maul",
- ["rank"] = 3,
+ ["id"] = 5189,
+ ["name"] = "Healing Touch",
+ ["rank"] = 5,
["cost"] = 4500,
- ["texture"] = "Interface/ICONS/ability_druid_maul",
- ["id"] = 6809
+ ["texture"] = "Interface/ICONS/spell_nature_healingtouch"
},
[4] = {
- ["name"] = "Abolish Poison",
- ["rank"] = 1,
+ ["id"] = 6809,
+ ["name"] = "Maul",
+ ["rank"] = 3,
["cost"] = 4500,
- ["texture"] = "Interface/ICONS/spell_nature_nullifypoison_02",
- ["id"] = 2893
+ ["texture"] = "Interface/ICONS/ability_druid_maul"
},
[5] = {
- ["name"] = "Healing Touch",
- ["rank"] = 5,
+ ["id"] = 8949,
+ ["name"] = "Starfire",
+ ["rank"] = 2,
["cost"] = 4500,
- ["texture"] = "Interface/ICONS/spell_nature_healingtouch",
- ["id"] = 5189
+ ["texture"] = "Interface/ICONS/spell_arcane_starfire"
},
},
[28] = {
[1] = {
- ["name"] = "Entangling Roots",
- ["rank"] = 3,
- ["cost"] = 5000,
- ["texture"] = "Interface/ICONS/spell_nature_stranglevines",
- ["id"] = 5195
- },
- [2] = {
- ["name"] = "Moonfire",
- ["rank"] = 5,
- ["cost"] = 5000,
- ["texture"] = "Interface/ICONS/spell_nature_starfall",
- ["id"] = 8927
- },
- [3] = {
+ ["id"] = 16811,
["name"] = "Nature's Grasp",
["rank"] = 3,
["cost"] = 250,
["texture"] = "Interface/ICONS/spell_nature_natureswrath",
- ["id"] = 16811,
["talent"] = true
},
- [4] = {
+ [2] = {
+ ["id"] = 5209,
["name"] = "Challenging Roar",
- ["rank"] = 1,
+ ["rank"] = 0,
["cost"] = 5000,
- ["texture"] = "Interface/ICONS/ability_druid_challangingroar",
- ["id"] = 5209
+ ["texture"] = "Interface/ICONS/ability_druid_challangingroar"
},
- [5] = {
+ [3] = {
+ ["id"] = 3029,
["name"] = "Claw",
["rank"] = 2,
["cost"] = 5000,
- ["texture"] = "Interface/ICONS/ability_druid_rake",
- ["id"] = 3029
+ ["texture"] = "Interface/ICONS/ability_druid_rake"
},
- [6] = {
+ [4] = {
+ ["id"] = 8998,
["name"] = "Cower",
["rank"] = 1,
["cost"] = 5000,
- ["texture"] = "Interface/ICONS/ability_druid_cower",
- ["id"] = 8998
+ ["texture"] = "Interface/ICONS/ability_druid_cower"
},
- [7] = {
- ["name"] = "Rip",
- ["rank"] = 2,
+ [5] = {
+ ["id"] = 5195,
+ ["name"] = "Entangling Roots",
+ ["rank"] = 3,
["cost"] = 5000,
- ["texture"] = "Interface/ICONS/ability_ghoulfrenzy",
- ["id"] = 9492
+ ["texture"] = "Interface/ICONS/spell_nature_stranglevines"
},
- [8] = {
+ [6] = {
+ ["id"] = 8927,
+ ["name"] = "Moonfire",
+ ["rank"] = 5,
+ ["cost"] = 5000,
+ ["texture"] = "Interface/ICONS/spell_nature_starfall"
+ },
+ [7] = {
+ ["id"] = 2091,
["name"] = "Rejuvenation",
["rank"] = 5,
["cost"] = 5000,
- ["texture"] = "Interface/ICONS/spell_nature_rejuvenation",
- ["id"] = 2091
+ ["texture"] = "Interface/ICONS/spell_nature_rejuvenation"
+ },
+ [8] = {
+ ["id"] = 9492,
+ ["name"] = "Rip",
+ ["rank"] = 2,
+ ["cost"] = 5000,
+ ["texture"] = "Interface/ICONS/ability_ghoulfrenzy"
},
},
[30] = {
[1] = {
- ["name"] = "Faerie Fire",
+ ["id"] = 17390,
+ ["name"] = "Faerie Fire (Feral)",
["rank"] = 2,
- ["cost"] = 6000,
+ ["cost"] = 300,
["texture"] = "Interface/ICONS/spell_nature_faeriefire",
- ["id"] = 778
+ ["talent"] = true
},
[2] = {
- ["name"] = "Wrath",
- ["rank"] = 5,
- ["cost"] = 6000,
- ["texture"] = "Interface/ICONS/spell_nature_abolishmagic",
- ["id"] = 5180
- },
+ ["id"] = 24974,
+ ["name"] = "Insect Swarm",
+ ["rank"] = 2,
+ ["cost"] = 300,
+ ["texture"] = "Interface/ICONS/spell_nature_insectswarm",
+ ["talent"] = true
+ },
[3] = {
+ ["id"] = 6798,
["name"] = "Bash",
["rank"] = 2,
["cost"] = 6000,
- ["texture"] = "Interface/ICONS/ability_druid_bash",
- ["id"] = 6798
+ ["texture"] = "Interface/ICONS/ability_druid_bash"
},
[4] = {
- ["name"] = "Faerie Fire (Feral)",
+ ["id"] = 778,
+ ["name"] = "Faerie Fire",
["rank"] = 2,
- ["cost"] = 300,
- ["texture"] = "Interface/ICONS/spell_nature_faeriefire",
- ["id"] = 17390,
- ["talent"] = true
+ ["cost"] = 6000,
+ ["texture"] = "Interface/ICONS/spell_nature_faeriefire"
},
[5] = {
- ["name"] = "Shred",
- ["rank"] = 2,
+ ["id"] = 5234,
+ ["name"] = "Mark of the Wild",
+ ["rank"] = 4,
["cost"] = 6000,
- ["texture"] = "Interface/ICONS/spell_shadow_vampiricaura",
- ["id"] = 6800
+ ["texture"] = "Interface/ICONS/spell_nature_regeneration"
},
[6] = {
- ["name"] = "Travel Form",
- ["rank"] = 1,
+ ["id"] = 20739,
+ ["name"] = "Rebirth",
+ ["rank"] = 2,
["cost"] = 6000,
- ["texture"] = "Interface/ICONS/ability_druid_travelform",
- ["id"] = 783
+ ["texture"] = "Interface/ICONS/spell_nature_reincarnation"
},
[7] = {
- ["name"] = "Insect Swarm",
- ["rank"] = 2,
- ["cost"] = 300,
- ["texture"] = "Interface/ICONS/spell_nature_insectswarm",
- ["id"] = 24974,
- ["talent"] = true
- },
- [8] = {
- ["name"] = "Mark of the Wild",
+ ["id"] = 8940,
+ ["name"] = "Regrowth",
["rank"] = 4,
["cost"] = 6000,
- ["texture"] = "Interface/ICONS/spell_nature_regeneration",
- ["id"] = 5234
+ ["texture"] = "Interface/ICONS/spell_nature_resistnature"
},
- [9] = {
- ["name"] = "Rebirth",
+ [8] = {
+ ["id"] = 6800,
+ ["name"] = "Shred",
["rank"] = 2,
["cost"] = 6000,
- ["texture"] = "Interface/ICONS/spell_nature_reincarnation",
- ["id"] = 20739
+ ["texture"] = "Interface/ICONS/spell_shadow_vampiricaura"
+ },
+ [9] = {
+ ["id"] = 740,
+ ["name"] = "Tranquility",
+ ["rank"] = 1,
+ ["cost"] = 6000,
+ ["texture"] = "Interface/ICONS/spell_nature_tranquility"
},
[10] = {
- ["name"] = "Regrowth",
- ["rank"] = 4,
+ ["id"] = 783,
+ ["name"] = "Travel Form",
+ ["rank"] = 0,
["cost"] = 6000,
- ["texture"] = "Interface/ICONS/spell_nature_resistnature",
- ["id"] = 8940
+ ["texture"] = "Interface/ICONS/ability_druid_travelform"
},
[11] = {
- ["name"] = "Tranquility",
- ["rank"] = 1,
+ ["id"] = 5180,
+ ["name"] = "Wrath",
+ ["rank"] = 5,
["cost"] = 6000,
- ["texture"] = "Interface/ICONS/spell_nature_tranquility",
- ["id"] = 740
+ ["texture"] = "Interface/ICONS/spell_nature_abolishmagic"
},
},
[32] = {
[1] = {
+ ["id"] = 9490,
["name"] = "Demoralizing Roar",
["rank"] = 3,
["cost"] = 8000,
- ["texture"] = "Interface/ICONS/ability_druid_demoralizingroar",
- ["id"] = 9490
+ ["texture"] = "Interface/ICONS/ability_druid_demoralizingroar"
},
[2] = {
+ ["id"] = 22568,
["name"] = "Ferocious Bite",
["rank"] = 1,
["cost"] = 8000,
- ["texture"] = "Interface/ICONS/ability_druid_ferociousbite",
- ["id"] = 22568
+ ["texture"] = "Interface/ICONS/ability_druid_ferociousbite"
},
[3] = {
- ["name"] = "Ravage",
- ["rank"] = 1,
+ ["id"] = 6778,
+ ["name"] = "Healing Touch",
+ ["rank"] = 6,
["cost"] = 8000,
- ["texture"] = "Interface/ICONS/ability_druid_ravage",
- ["id"] = 6785
+ ["texture"] = "Interface/ICONS/spell_nature_healingtouch"
},
[4] = {
- ["name"] = "Track Humanoids",
+ ["id"] = 6785,
+ ["name"] = "Ravage",
["rank"] = 1,
["cost"] = 8000,
- ["texture"] = "Interface/ICONS/ability_tracking",
- ["id"] = 5225
+ ["texture"] = "Interface/ICONS/ability_druid_ravage"
},
[5] = {
- ["name"] = "Healing Touch",
- ["rank"] = 6,
+ ["id"] = 5225,
+ ["name"] = "Track Humanoids",
+ ["rank"] = 0,
["cost"] = 8000,
- ["texture"] = "Interface/ICONS/spell_nature_healingtouch",
- ["id"] = 6778
+ ["texture"] = "Interface/ICONS/ability_tracking"
},
},
[34] = {
[1] = {
- ["name"] = "Moonfire",
- ["rank"] = 6,
+ ["id"] = 8972,
+ ["name"] = "Maul",
+ ["rank"] = 4,
["cost"] = 10000,
- ["texture"] = "Interface/ICONS/spell_nature_starfall",
- ["id"] = 8928
+ ["texture"] = "Interface/ICONS/ability_druid_maul"
},
[2] = {
- ["name"] = "Starfire",
- ["rank"] = 3,
+ ["id"] = 8928,
+ ["name"] = "Moonfire",
+ ["rank"] = 6,
["cost"] = 10000,
- ["texture"] = "Interface/ICONS/spell_arcane_starfire",
- ["id"] = 8950
+ ["texture"] = "Interface/ICONS/spell_nature_starfall"
},
[3] = {
- ["name"] = "Thorns",
- ["rank"] = 4,
+ ["id"] = 1823,
+ ["name"] = "Rake",
+ ["rank"] = 2,
["cost"] = 10000,
- ["texture"] = "Interface/ICONS/spell_nature_thorns",
- ["id"] = 8914
+ ["texture"] = "Interface/ICONS/ability_druid_disembowel"
},
[4] = {
- ["name"] = "Maul",
- ["rank"] = 4,
+ ["id"] = 3627,
+ ["name"] = "Rejuvenation",
+ ["rank"] = 6,
["cost"] = 10000,
- ["texture"] = "Interface/ICONS/ability_druid_maul",
- ["id"] = 8972
+ ["texture"] = "Interface/ICONS/spell_nature_rejuvenation"
},
[5] = {
- ["name"] = "Rake",
- ["rank"] = 2,
+ ["id"] = 8950,
+ ["name"] = "Starfire",
+ ["rank"] = 3,
["cost"] = 10000,
- ["texture"] = "Interface/ICONS/ability_druid_disembowel",
- ["id"] = 1823
+ ["texture"] = "Interface/ICONS/spell_arcane_starfire"
},
[6] = {
+ ["id"] = 769,
["name"] = "Swipe",
["rank"] = 3,
["cost"] = 10000,
- ["texture"] = "Interface/ICONS/inv_misc_monsterclaw_03",
- ["id"] = 769
+ ["texture"] = "Interface/ICONS/inv_misc_monsterclaw_03"
},
[7] = {
- ["name"] = "Rejuvenation",
- ["rank"] = 6,
+ ["id"] = 8914,
+ ["name"] = "Thorns",
+ ["rank"] = 4,
["cost"] = 10000,
- ["texture"] = "Interface/ICONS/spell_nature_rejuvenation",
- ["id"] = 3627
+ ["texture"] = "Interface/ICONS/spell_nature_thorns"
},
},
[36] = {
[1] = {
+ ["id"] = 22842,
["name"] = "Frenzied Regeneration",
["rank"] = 1,
["cost"] = 11000,
- ["texture"] = "Interface/ICONS/ability_bullrush",
- ["id"] = 22842
+ ["texture"] = "Interface/ICONS/ability_bullrush"
},
[2] = {
+ ["id"] = 9005,
["name"] = "Pounce",
["rank"] = 1,
["cost"] = 11000,
- ["texture"] = "Interface/ICONS/ability_druid_supriseattack",
- ["id"] = 9005
+ ["texture"] = "Interface/ICONS/ability_druid_supriseattack"
},
[3] = {
- ["name"] = "Rip",
- ["rank"] = 3,
+ ["id"] = 8941,
+ ["name"] = "Regrowth",
+ ["rank"] = 5,
["cost"] = 11000,
- ["texture"] = "Interface/ICONS/ability_ghoulfrenzy",
- ["id"] = 9493
+ ["texture"] = "Interface/ICONS/spell_nature_resistnature"
},
[4] = {
- ["name"] = "Tiger's Fury",
- ["rank"] = 2,
+ ["id"] = 9493,
+ ["name"] = "Rip",
+ ["rank"] = 3,
["cost"] = 11000,
- ["texture"] = "Interface/ICONS/ability_mount_jungletiger",
- ["id"] = 6793
+ ["texture"] = "Interface/ICONS/ability_ghoulfrenzy"
},
[5] = {
- ["name"] = "Regrowth",
- ["rank"] = 5,
+ ["id"] = 6793,
+ ["name"] = "Tiger's Fury",
+ ["rank"] = 2,
["cost"] = 11000,
- ["texture"] = "Interface/ICONS/spell_nature_resistnature",
- ["id"] = 8941
+ ["texture"] = "Interface/ICONS/ability_mount_jungletiger"
},
},
[38] = {
[1] = {
- ["name"] = "Entangling Roots",
+ ["id"] = 16812,
+ ["name"] = "Nature's Grasp",
["rank"] = 4,
- ["cost"] = 12000,
- ["texture"] = "Interface/ICONS/spell_nature_stranglevines",
- ["id"] = 5196
+ ["cost"] = 600,
+ ["texture"] = "Interface/ICONS/spell_nature_natureswrath",
+ ["talent"] = true
},
[2] = {
- ["name"] = "Hibernate",
- ["rank"] = 2,
+ ["id"] = 5201,
+ ["name"] = "Claw",
+ ["rank"] = 3,
["cost"] = 12000,
- ["texture"] = "Interface/ICONS/spell_nature_sleep",
- ["id"] = 18657
+ ["texture"] = "Interface/ICONS/ability_druid_rake"
},
[3] = {
- ["name"] = "Nature's Grasp",
+ ["id"] = 5196,
+ ["name"] = "Entangling Roots",
["rank"] = 4,
- ["cost"] = 600,
- ["texture"] = "Interface/ICONS/spell_nature_natureswrath",
- ["id"] = 16812,
- ["talent"] = true
+ ["cost"] = 12000,
+ ["texture"] = "Interface/ICONS/spell_nature_stranglevines"
},
[4] = {
- ["name"] = "Soothe Animal",
- ["rank"] = 2,
+ ["id"] = 8903,
+ ["name"] = "Healing Touch",
+ ["rank"] = 7,
["cost"] = 12000,
- ["texture"] = "Interface/ICONS/ability_hunter_beastsoothe",
- ["id"] = 8955
+ ["texture"] = "Interface/ICONS/spell_nature_healingtouch"
},
[5] = {
- ["name"] = "Wrath",
- ["rank"] = 6,
+ ["id"] = 18657,
+ ["name"] = "Hibernate",
+ ["rank"] = 2,
["cost"] = 12000,
- ["texture"] = "Interface/ICONS/spell_nature_abolishmagic",
- ["id"] = 6780
+ ["texture"] = "Interface/ICONS/spell_nature_sleep"
},
[6] = {
- ["name"] = "Claw",
+ ["id"] = 8992,
+ ["name"] = "Shred",
["rank"] = 3,
["cost"] = 12000,
- ["texture"] = "Interface/ICONS/ability_druid_rake",
- ["id"] = 5201
+ ["texture"] = "Interface/ICONS/spell_shadow_vampiricaura"
},
[7] = {
- ["name"] = "Shred",
- ["rank"] = 3,
+ ["id"] = 8955,
+ ["name"] = "Soothe Animal",
+ ["rank"] = 2,
["cost"] = 12000,
- ["texture"] = "Interface/ICONS/spell_shadow_vampiricaura",
- ["id"] = 8992
+ ["texture"] = "Interface/ICONS/ability_hunter_beastsoothe"
},
[8] = {
- ["name"] = "Healing Touch",
- ["rank"] = 7,
+ ["id"] = 6780,
+ ["name"] = "Wrath",
+ ["rank"] = 6,
["cost"] = 12000,
- ["texture"] = "Interface/ICONS/spell_nature_healingtouch",
- ["id"] = 8903
+ ["texture"] = "Interface/ICONS/spell_nature_abolishmagic"
},
},
[40] = {
[1] = {
- ["name"] = "Hurricane",
- ["rank"] = 1,
- ["cost"] = 14000,
- ["texture"] = "Interface/ICONS/spell_nature_cyclone",
- ["id"] = 16914
+ ["id"] = 24975,
+ ["name"] = "Insect Swarm",
+ ["rank"] = 3,
+ ["cost"] = 700,
+ ["texture"] = "Interface/ICONS/spell_nature_insectswarm",
+ ["talent"] = true
},
[2] = {
- ["name"] = "Moonfire",
- ["rank"] = 7,
- ["cost"] = 14000,
- ["texture"] = "Interface/ICONS/spell_nature_starfall",
- ["id"] = 8929
- },
- [3] = {
+ ["id"] = 9000,
["name"] = "Cower",
["rank"] = 2,
- ["cost"] = 0,
- ["texture"] = "Interface/ICONS/ability_druid_cower",
- ["id"] = 9000
+ ["cost"] = 14000,
+ ["texture"] = "Interface/ICONS/ability_druid_cower"
},
- [4] = {
+ [3] = {
+ ["id"] = 9634,
["name"] = "Dire Bear Form",
- ["rank"] = 1,
+ ["rank"] = 0,
["cost"] = 14000,
- ["texture"] = "Interface/ICONS/ability_racial_bearform",
- ["id"] = 9634
+ ["texture"] = "Interface/ICONS/ability_racial_bearform"
},
- [5] = {
+ [4] = {
+ ["id"] = 20719,
["name"] = "Feline Grace",
- ["rank"] = 1,
+ ["rank"] = 0,
["cost"] = 14000,
- ["texture"] = "Interface/ICONS/inv_feather_01",
- ["id"] = 20719
+ ["texture"] = "Interface/ICONS/inv_feather_01"
},
- [6] = {
+ [5] = {
+ ["id"] = 22827,
["name"] = "Ferocious Bite",
["rank"] = 2,
["cost"] = 14000,
- ["texture"] = "Interface/ICONS/ability_druid_ferociousbite",
- ["id"] = 22827
+ ["texture"] = "Interface/ICONS/ability_druid_ferociousbite"
+ },
+ [6] = {
+ ["id"] = 16914,
+ ["name"] = "Hurricane",
+ ["rank"] = 1,
+ ["cost"] = 14000,
+ ["texture"] = "Interface/ICONS/spell_nature_cyclone"
},
[7] = {
- ["name"] = "Prowl",
- ["rank"] = 2,
+ ["id"] = 29166,
+ ["name"] = "Innervate",
+ ["rank"] = 0,
["cost"] = 14000,
- ["texture"] = "Interface/ICONS/ability_ambush",
- ["id"] = 6783
+ ["texture"] = "Interface/ICONS/spell_nature_lightning"
},
[8] = {
- ["name"] = "Innervate",
- ["rank"] = 1,
+ ["id"] = 8907,
+ ["name"] = "Mark of the Wild",
+ ["rank"] = 5,
["cost"] = 14000,
- ["texture"] = "Interface/ICONS/spell_nature_lightning",
- ["id"] = 29166
+ ["texture"] = "Interface/ICONS/spell_nature_regeneration"
},
[9] = {
- ["name"] = "Insect Swarm",
- ["rank"] = 3,
- ["cost"] = 700,
- ["texture"] = "Interface/ICONS/spell_nature_insectswarm",
- ["id"] = 24975,
- ["talent"] = true
+ ["id"] = 8929,
+ ["name"] = "Moonfire",
+ ["rank"] = 7,
+ ["cost"] = 14000,
+ ["texture"] = "Interface/ICONS/spell_nature_starfall"
},
[10] = {
- ["name"] = "Mark of the Wild",
- ["rank"] = 5,
+ ["id"] = 6783,
+ ["name"] = "Prowl",
+ ["rank"] = 2,
["cost"] = 14000,
- ["texture"] = "Interface/ICONS/spell_nature_regeneration",
- ["id"] = 8907
+ ["texture"] = "Interface/ICONS/ability_ambush"
},
[11] = {
+ ["id"] = 20742,
["name"] = "Rebirth",
["rank"] = 3,
["cost"] = 14000,
- ["texture"] = "Interface/ICONS/spell_nature_reincarnation",
- ["id"] = 20742
+ ["texture"] = "Interface/ICONS/spell_nature_reincarnation"
},
[12] = {
+ ["id"] = 8910,
["name"] = "Rejuvenation",
["rank"] = 7,
["cost"] = 14000,
- ["texture"] = "Interface/ICONS/spell_nature_rejuvenation",
- ["id"] = 8910
+ ["texture"] = "Interface/ICONS/spell_nature_rejuvenation"
},
[13] = {
+ ["id"] = 8918,
["name"] = "Tranquility",
["rank"] = 2,
["cost"] = 14000,
- ["texture"] = "Interface/ICONS/spell_nature_tranquility",
- ["id"] = 8918
+ ["texture"] = "Interface/ICONS/spell_nature_tranquility"
},
},
[42] = {
[1] = {
- ["name"] = "Faerie Fire",
+ ["id"] = 17391,
+ ["name"] = "Faerie Fire (Feral)",
["rank"] = 3,
- ["cost"] = 16000,
+ ["cost"] = 800,
["texture"] = "Interface/ICONS/spell_nature_faeriefire",
- ["id"] = 9749
+ ["talent"] = true
},
[2] = {
- ["name"] = "Starfire",
+ ["id"] = 9747,
+ ["name"] = "Demoralizing Roar",
["rank"] = 4,
["cost"] = 16000,
- ["texture"] = "Interface/ICONS/spell_arcane_starfire",
- ["id"] = 8951
+ ["texture"] = "Interface/ICONS/ability_druid_demoralizingroar"
},
[3] = {
- ["name"] = "Demoralizing Roar",
- ["rank"] = 4,
+ ["id"] = 9749,
+ ["name"] = "Faerie Fire",
+ ["rank"] = 3,
["cost"] = 16000,
- ["texture"] = "Interface/ICONS/ability_druid_demoralizingroar",
- ["id"] = 9747
+ ["texture"] = "Interface/ICONS/spell_nature_faeriefire"
},
[4] = {
- ["name"] = "Faerie Fire (Feral)",
- ["rank"] = 3,
- ["cost"] = 800,
- ["texture"] = "Interface/ICONS/spell_nature_faeriefire",
- ["id"] = 17391,
- ["talent"] = true
- },
- [5] = {
+ ["id"] = 9745,
["name"] = "Maul",
["rank"] = 5,
["cost"] = 16000,
- ["texture"] = "Interface/ICONS/ability_druid_maul",
- ["id"] = 9745
+ ["texture"] = "Interface/ICONS/ability_druid_maul"
},
- [6] = {
+ [5] = {
+ ["id"] = 6787,
["name"] = "Ravage",
["rank"] = 2,
["cost"] = 16000,
- ["texture"] = "Interface/ICONS/ability_druid_ravage",
- ["id"] = 6787
+ ["texture"] = "Interface/ICONS/ability_druid_ravage"
},
- [7] = {
+ [6] = {
+ ["id"] = 9750,
["name"] = "Regrowth",
["rank"] = 6,
["cost"] = 16000,
- ["texture"] = "Interface/ICONS/spell_nature_resistnature",
- ["id"] = 9750
+ ["texture"] = "Interface/ICONS/spell_nature_resistnature"
+ },
+ [7] = {
+ ["id"] = 8951,
+ ["name"] = "Starfire",
+ ["rank"] = 4,
+ ["cost"] = 16000,
+ ["texture"] = "Interface/ICONS/spell_arcane_starfire"
},
},
[44] = {
[1] = {
+ ["id"] = 22812,
["name"] = "Barkskin",
- ["rank"] = 1,
+ ["rank"] = 0,
["cost"] = 18000,
- ["texture"] = "Interface/ICONS/spell_nature_stoneclawtotem",
- ["id"] = 22812
+ ["texture"] = "Interface/ICONS/spell_nature_stoneclawtotem"
},
[2] = {
- ["name"] = "Thorns",
- ["rank"] = 5,
+ ["id"] = 9758,
+ ["name"] = "Healing Touch",
+ ["rank"] = 8,
["cost"] = 18000,
- ["texture"] = "Interface/ICONS/spell_nature_thorns",
- ["id"] = 9756
+ ["texture"] = "Interface/ICONS/spell_nature_healingtouch"
},
[3] = {
+ ["id"] = 1824,
["name"] = "Rake",
["rank"] = 3,
["cost"] = 18000,
- ["texture"] = "Interface/ICONS/ability_druid_disembowel",
- ["id"] = 1824
+ ["texture"] = "Interface/ICONS/ability_druid_disembowel"
},
[4] = {
+ ["id"] = 9752,
["name"] = "Rip",
["rank"] = 4,
["cost"] = 18000,
- ["texture"] = "Interface/ICONS/ability_ghoulfrenzy",
- ["id"] = 9752
+ ["texture"] = "Interface/ICONS/ability_ghoulfrenzy"
},
[5] = {
+ ["id"] = 9754,
["name"] = "Swipe",
["rank"] = 4,
["cost"] = 18000,
- ["texture"] = "Interface/ICONS/inv_misc_monsterclaw_03",
- ["id"] = 9754
+ ["texture"] = "Interface/ICONS/inv_misc_monsterclaw_03"
},
[6] = {
- ["name"] = "Healing Touch",
- ["rank"] = 8,
+ ["id"] = 9756,
+ ["name"] = "Thorns",
+ ["rank"] = 5,
["cost"] = 18000,
- ["texture"] = "Interface/ICONS/spell_nature_healingtouch",
- ["id"] = 9758
+ ["texture"] = "Interface/ICONS/spell_nature_thorns"
},
},
[46] = {
[1] = {
- ["name"] = "Moonfire",
- ["rank"] = 8,
+ ["id"] = 8983,
+ ["name"] = "Bash",
+ ["rank"] = 3,
["cost"] = 20000,
- ["texture"] = "Interface/ICONS/spell_nature_starfall",
- ["id"] = 9833
+ ["texture"] = "Interface/ICONS/ability_druid_bash"
},
[2] = {
- ["name"] = "Wrath",
- ["rank"] = 7,
+ ["id"] = 9821,
+ ["name"] = "Dash",
+ ["rank"] = 2,
["cost"] = 20000,
- ["texture"] = "Interface/ICONS/spell_nature_abolishmagic",
- ["id"] = 8905
- },
+ ["texture"] = "Interface/ICONS/ability_druid_dash"
+ },
[3] = {
- ["name"] = "Bash",
- ["rank"] = 3,
+ ["id"] = 22895,
+ ["name"] = "Frenzied Regeneration",
+ ["rank"] = 2,
["cost"] = 20000,
- ["texture"] = "Interface/ICONS/ability_druid_bash",
- ["id"] = 8983
+ ["texture"] = "Interface/ICONS/ability_bullrush"
},
[4] = {
- ["name"] = "Dash",
- ["rank"] = 2,
+ ["id"] = 9833,
+ ["name"] = "Moonfire",
+ ["rank"] = 8,
["cost"] = 20000,
- ["texture"] = "Interface/ICONS/ability_druid_dash",
- ["id"] = 9821
+ ["texture"] = "Interface/ICONS/spell_nature_starfall"
},
[5] = {
- ["name"] = "Frenzied Regeneration",
+ ["id"] = 9823,
+ ["name"] = "Pounce",
["rank"] = 2,
["cost"] = 20000,
- ["texture"] = "Interface/ICONS/ability_bullrush",
- ["id"] = 22895
+ ["texture"] = "Interface/ICONS/ability_druid_supriseattack"
},
[6] = {
- ["name"] = "Pounce",
- ["rank"] = 2,
+ ["id"] = 9839,
+ ["name"] = "Rejuvenation",
+ ["rank"] = 8,
["cost"] = 20000,
- ["texture"] = "Interface/ICONS/ability_druid_supriseattack",
- ["id"] = 9823
+ ["texture"] = "Interface/ICONS/spell_nature_rejuvenation"
},
[7] = {
+ ["id"] = 9829,
["name"] = "Shred",
["rank"] = 4,
["cost"] = 20000,
- ["texture"] = "Interface/ICONS/spell_shadow_vampiricaura",
- ["id"] = 9829
+ ["texture"] = "Interface/ICONS/spell_shadow_vampiricaura"
},
[8] = {
- ["name"] = "Rejuvenation",
- ["rank"] = 8,
+ ["id"] = 8905,
+ ["name"] = "Wrath",
+ ["rank"] = 7,
["cost"] = 20000,
- ["texture"] = "Interface/ICONS/spell_nature_rejuvenation",
- ["id"] = 9839
+ ["texture"] = "Interface/ICONS/spell_nature_abolishmagic"
},
},
[48] = {
[1] = {
- ["name"] = "Entangling Roots",
- ["rank"] = 5,
- ["cost"] = 22000,
- ["texture"] = "Interface/ICONS/spell_nature_stranglevines",
- ["id"] = 9852
- },
- [2] = {
+ ["id"] = 16813,
["name"] = "Nature's Grasp",
["rank"] = 5,
["cost"] = 1100,
["texture"] = "Interface/ICONS/spell_nature_natureswrath",
- ["id"] = 16813,
["talent"] = true
},
- [3] = {
+ [2] = {
+ ["id"] = 9849,
["name"] = "Claw",
["rank"] = 4,
["cost"] = 22000,
- ["texture"] = "Interface/ICONS/ability_druid_rake",
- ["id"] = 9849
+ ["texture"] = "Interface/ICONS/ability_druid_rake"
+ },
+ [3] = {
+ ["id"] = 9852,
+ ["name"] = "Entangling Roots",
+ ["rank"] = 5,
+ ["cost"] = 22000,
+ ["texture"] = "Interface/ICONS/spell_nature_stranglevines"
},
[4] = {
+ ["id"] = 22828,
["name"] = "Ferocious Bite",
["rank"] = 3,
["cost"] = 22000,
- ["texture"] = "Interface/ICONS/ability_druid_ferociousbite",
- ["id"] = 22828
+ ["texture"] = "Interface/ICONS/ability_druid_ferociousbite"
},
[5] = {
- ["name"] = "Tiger's Fury",
- ["rank"] = 3,
+ ["id"] = 9856,
+ ["name"] = "Regrowth",
+ ["rank"] = 7,
["cost"] = 22000,
- ["texture"] = "Interface/ICONS/ability_mount_jungletiger",
- ["id"] = 9845
+ ["texture"] = "Interface/ICONS/spell_nature_resistnature"
},
[6] = {
- ["name"] = "Regrowth",
- ["rank"] = 7,
+ ["id"] = 9845,
+ ["name"] = "Tiger's Fury",
+ ["rank"] = 3,
["cost"] = 22000,
- ["texture"] = "Interface/ICONS/spell_nature_resistnature",
- ["id"] = 9856
+ ["texture"] = "Interface/ICONS/ability_mount_jungletiger"
},
},
[50] = {
[1] = {
- ["name"] = "Hurricane",
- ["rank"] = 2,
- ["cost"] = 23000,
- ["texture"] = "Interface/ICONS/spell_nature_cyclone",
- ["id"] = 17401
+ ["id"] = 24976,
+ ["name"] = "Insect Swarm",
+ ["rank"] = 4,
+ ["cost"] = 1150,
+ ["texture"] = "Interface/ICONS/spell_nature_insectswarm",
+ ["talent"] = true
},
[2] = {
- ["name"] = "Starfire",
- ["rank"] = 5,
+ ["id"] = 21849,
+ ["name"] = "Gift of the Wild",
+ ["rank"] = 1,
["cost"] = 23000,
- ["texture"] = "Interface/ICONS/spell_arcane_starfire",
- ["id"] = 9875
+ ["texture"] = "Interface/ICONS/spell_nature_giftofthewild"
},
[3] = {
- ["name"] = "Maul",
- ["rank"] = 6,
+ ["id"] = 9888,
+ ["name"] = "Healing Touch",
+ ["rank"] = 9,
["cost"] = 23000,
- ["texture"] = "Interface/ICONS/ability_druid_maul",
- ["id"] = 9880
+ ["texture"] = "Interface/ICONS/spell_nature_healingtouch"
},
[4] = {
- ["name"] = "Ravage",
- ["rank"] = 3,
+ ["id"] = 17401,
+ ["name"] = "Hurricane",
+ ["rank"] = 2,
["cost"] = 23000,
- ["texture"] = "Interface/ICONS/ability_druid_ravage",
- ["id"] = 9866
+ ["texture"] = "Interface/ICONS/spell_nature_cyclone"
},
[5] = {
- ["name"] = "Healing Touch",
- ["rank"] = 9,
- ["cost"] = 23000,
- ["texture"] = "Interface/ICONS/spell_nature_healingtouch",
- ["id"] = 9888
+ ["id"] = 33878,
+ ["name"] = "Mangle (Bear)",
+ ["rank"] = 1,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_druid_mangle2"
},
[6] = {
- ["name"] = "Insect Swarm",
- ["rank"] = 4,
- ["cost"] = 1150,
- ["texture"] = "Interface/ICONS/spell_nature_insectswarm",
- ["id"] = 24976,
- ["talent"] = true
+ ["id"] = 33876,
+ ["name"] = "Mangle (Cat)",
+ ["rank"] = 1,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_druid_mangle2"
},
[7] = {
+ ["id"] = 9884,
["name"] = "Mark of the Wild",
["rank"] = 6,
["cost"] = 23000,
- ["texture"] = "Interface/ICONS/spell_nature_regeneration",
- ["id"] = 9884
+ ["texture"] = "Interface/ICONS/spell_nature_regeneration"
},
[8] = {
+ ["id"] = 9880,
+ ["name"] = "Maul",
+ ["rank"] = 6,
+ ["cost"] = 23000,
+ ["texture"] = "Interface/ICONS/ability_druid_maul"
+ },
+ [9] = {
+ ["id"] = 9866,
+ ["name"] = "Ravage",
+ ["rank"] = 3,
+ ["cost"] = 23000,
+ ["texture"] = "Interface/ICONS/ability_druid_ravage"
+ },
+ [10] = {
+ ["id"] = 20747,
["name"] = "Rebirth",
["rank"] = 4,
["cost"] = 23000,
- ["texture"] = "Interface/ICONS/spell_nature_reincarnation",
- ["id"] = 20747
+ ["texture"] = "Interface/ICONS/spell_nature_reincarnation"
},
- [9] = {
+ [11] = {
+ ["id"] = 9875,
+ ["name"] = "Starfire",
+ ["rank"] = 5,
+ ["cost"] = 23000,
+ ["texture"] = "Interface/ICONS/spell_arcane_starfire"
+ },
+ [12] = {
+ ["id"] = 9862,
["name"] = "Tranquility",
["rank"] = 3,
["cost"] = 23000,
- ["texture"] = "Interface/ICONS/spell_nature_tranquility",
- ["id"] = 9862
+ ["texture"] = "Interface/ICONS/spell_nature_tranquility"
},
},
[52] = {
[1] = {
- ["name"] = "Moonfire",
- ["rank"] = 9,
- ["cost"] = 26000,
- ["texture"] = "Interface/ICONS/spell_nature_starfall",
- ["id"] = 9834
- },
- [2] = {
+ ["id"] = 9892,
["name"] = "Cower",
["rank"] = 3,
["cost"] = 26000,
- ["texture"] = "Interface/ICONS/ability_druid_cower",
- ["id"] = 9892
+ ["texture"] = "Interface/ICONS/ability_druid_cower"
},
- [3] = {
+ [2] = {
+ ["id"] = 9898,
["name"] = "Demoralizing Roar",
["rank"] = 5,
["cost"] = 26000,
- ["texture"] = "Interface/ICONS/ability_druid_demoralizingroar",
- ["id"] = 9898
+ ["texture"] = "Interface/ICONS/ability_druid_demoralizingroar"
},
- [4] = {
- ["name"] = "Rip",
- ["rank"] = 5,
+ [3] = {
+ ["id"] = 9834,
+ ["name"] = "Moonfire",
+ ["rank"] = 9,
["cost"] = 26000,
- ["texture"] = "Interface/ICONS/ability_ghoulfrenzy",
- ["id"] = 9894
+ ["texture"] = "Interface/ICONS/spell_nature_starfall"
},
- [5] = {
+ [4] = {
+ ["id"] = 9840,
["name"] = "Rejuvenation",
["rank"] = 9,
["cost"] = 26000,
- ["texture"] = "Interface/ICONS/spell_nature_rejuvenation",
- ["id"] = 9840
+ ["texture"] = "Interface/ICONS/spell_nature_rejuvenation"
+ },
+ [5] = {
+ ["id"] = 9894,
+ ["name"] = "Rip",
+ ["rank"] = 5,
+ ["cost"] = 26000,
+ ["texture"] = "Interface/ICONS/ability_ghoulfrenzy"
},
},
[54] = {
[1] = {
- ["name"] = "Faerie Fire",
+ ["id"] = 17392,
+ ["name"] = "Faerie Fire (Feral)",
["rank"] = 4,
- ["cost"] = 28000,
+ ["cost"] = 1400,
["texture"] = "Interface/ICONS/spell_nature_faeriefire",
- ["id"] = 9907
+ ["talent"] = true
},
[2] = {
- ["name"] = "Soothe Animal",
- ["rank"] = 3,
+ ["id"] = 9907,
+ ["name"] = "Faerie Fire",
+ ["rank"] = 4,
["cost"] = 28000,
- ["texture"] = "Interface/ICONS/ability_hunter_beastsoothe",
- ["id"] = 9901
+ ["texture"] = "Interface/ICONS/spell_nature_faeriefire"
},
[3] = {
- ["name"] = "Thorns",
- ["rank"] = 6,
+ ["id"] = 9904,
+ ["name"] = "Rake",
+ ["rank"] = 4,
["cost"] = 28000,
- ["texture"] = "Interface/ICONS/spell_nature_thorns",
- ["id"] = 9910
+ ["texture"] = "Interface/ICONS/ability_druid_disembowel"
},
[4] = {
- ["name"] = "Wrath",
+ ["id"] = 9857,
+ ["name"] = "Regrowth",
["rank"] = 8,
["cost"] = 28000,
- ["texture"] = "Interface/ICONS/spell_nature_abolishmagic",
- ["id"] = 9912
+ ["texture"] = "Interface/ICONS/spell_nature_resistnature"
},
[5] = {
- ["name"] = "Faerie Fire (Feral)",
- ["rank"] = 4,
- ["cost"] = 1400,
- ["texture"] = "Interface/ICONS/spell_nature_faeriefire",
- ["id"] = 17392,
- ["talent"] = true
+ ["id"] = 9830,
+ ["name"] = "Shred",
+ ["rank"] = 5,
+ ["cost"] = 28000,
+ ["texture"] = "Interface/ICONS/spell_shadow_vampiricaura"
},
[6] = {
- ["name"] = "Rake",
- ["rank"] = 4,
+ ["id"] = 9901,
+ ["name"] = "Soothe Animal",
+ ["rank"] = 3,
["cost"] = 28000,
- ["texture"] = "Interface/ICONS/ability_druid_disembowel",
- ["id"] = 9904
+ ["texture"] = "Interface/ICONS/ability_hunter_beastsoothe"
},
[7] = {
- ["name"] = "Shred",
+ ["id"] = 9908,
+ ["name"] = "Swipe",
["rank"] = 5,
["cost"] = 28000,
- ["texture"] = "Interface/ICONS/spell_shadow_vampiricaura",
- ["id"] = 9830
+ ["texture"] = "Interface/ICONS/inv_misc_monsterclaw_03"
},
[8] = {
- ["name"] = "Swipe",
- ["rank"] = 5,
+ ["id"] = 9910,
+ ["name"] = "Thorns",
+ ["rank"] = 6,
["cost"] = 28000,
- ["texture"] = "Interface/ICONS/inv_misc_monsterclaw_03",
- ["id"] = 9908
+ ["texture"] = "Interface/ICONS/spell_nature_thorns"
},
[9] = {
- ["name"] = "Regrowth",
+ ["id"] = 9912,
+ ["name"] = "Wrath",
["rank"] = 8,
["cost"] = 28000,
- ["texture"] = "Interface/ICONS/spell_nature_resistnature",
- ["id"] = 9857
+ ["texture"] = "Interface/ICONS/spell_nature_abolishmagic"
},
},
[56] = {
[1] = {
+ ["id"] = 22829,
["name"] = "Ferocious Bite",
["rank"] = 4,
["cost"] = 30000,
- ["texture"] = "Interface/ICONS/ability_druid_ferociousbite",
- ["id"] = 22829
+ ["texture"] = "Interface/ICONS/ability_druid_ferociousbite"
},
[2] = {
+ ["id"] = 22896,
["name"] = "Frenzied Regeneration",
["rank"] = 3,
["cost"] = 30000,
- ["texture"] = "Interface/ICONS/ability_bullrush",
- ["id"] = 22896
+ ["texture"] = "Interface/ICONS/ability_bullrush"
},
[3] = {
- ["name"] = "Pounce",
- ["rank"] = 3,
+ ["id"] = 9889,
+ ["name"] = "Healing Touch",
+ ["rank"] = 10,
["cost"] = 30000,
- ["texture"] = "Interface/ICONS/ability_druid_supriseattack",
- ["id"] = 9827
+ ["texture"] = "Interface/ICONS/spell_nature_healingtouch"
},
[4] = {
- ["name"] = "Healing Touch",
- ["rank"] = 10,
+ ["id"] = 9827,
+ ["name"] = "Pounce",
+ ["rank"] = 3,
["cost"] = 30000,
- ["texture"] = "Interface/ICONS/spell_nature_healingtouch",
- ["id"] = 9889
+ ["texture"] = "Interface/ICONS/ability_druid_supriseattack"
},
},
[58] = {
[1] = {
- ["name"] = "Entangling Roots",
+ ["id"] = 17329,
+ ["name"] = "Nature's Grasp",
["rank"] = 6,
- ["cost"] = 32000,
- ["texture"] = "Interface/ICONS/spell_nature_stranglevines",
- ["id"] = 9853
+ ["cost"] = 1600,
+ ["texture"] = "Interface/ICONS/spell_nature_natureswrath",
+ ["talent"] = true
},
[2] = {
- ["name"] = "Hibernate",
- ["rank"] = 3,
+ ["id"] = 9850,
+ ["name"] = "Claw",
+ ["rank"] = 5,
["cost"] = 32000,
- ["texture"] = "Interface/ICONS/spell_nature_sleep",
- ["id"] = 18658
+ ["texture"] = "Interface/ICONS/ability_druid_rake"
},
[3] = {
- ["name"] = "Moonfire",
- ["rank"] = 10,
+ ["id"] = 9853,
+ ["name"] = "Entangling Roots",
+ ["rank"] = 6,
["cost"] = 32000,
- ["texture"] = "Interface/ICONS/spell_nature_starfall",
- ["id"] = 9835
+ ["texture"] = "Interface/ICONS/spell_nature_stranglevines"
},
[4] = {
- ["name"] = "Nature's Grasp",
- ["rank"] = 6,
- ["cost"] = 1600,
- ["texture"] = "Interface/ICONS/spell_nature_natureswrath",
- ["id"] = 17329,
- ["talent"] = true
+ ["id"] = 18658,
+ ["name"] = "Hibernate",
+ ["rank"] = 3,
+ ["cost"] = 32000,
+ ["texture"] = "Interface/ICONS/spell_nature_sleep"
},
[5] = {
- ["name"] = "Starfire",
- ["rank"] = 6,
- ["cost"] = 32000,
- ["texture"] = "Interface/ICONS/spell_arcane_starfire",
- ["id"] = 9876
+ ["id"] = 33986,
+ ["name"] = "Mangle (Bear)",
+ ["rank"] = 2,
+ ["cost"] = 1700,
+ ["texture"] = "Interface/ICONS/ability_druid_mangle2"
},
[6] = {
- ["name"] = "Claw",
- ["rank"] = 5,
- ["cost"] = 32000,
- ["texture"] = "Interface/ICONS/ability_druid_rake",
- ["id"] = 9850
+ ["id"] = 33982,
+ ["name"] = "Mangle (Cat)",
+ ["rank"] = 2,
+ ["cost"] = 1700,
+ ["texture"] = "Interface/ICONS/ability_druid_mangle2"
},
[7] = {
+ ["id"] = 9881,
["name"] = "Maul",
["rank"] = 7,
["cost"] = 32000,
- ["texture"] = "Interface/ICONS/ability_druid_maul",
- ["id"] = 9881
+ ["texture"] = "Interface/ICONS/ability_druid_maul"
},
[8] = {
+ ["id"] = 9835,
+ ["name"] = "Moonfire",
+ ["rank"] = 10,
+ ["cost"] = 32000,
+ ["texture"] = "Interface/ICONS/spell_nature_starfall"
+ },
+ [9] = {
+ ["id"] = 9867,
["name"] = "Ravage",
["rank"] = 4,
["cost"] = 32000,
- ["texture"] = "Interface/ICONS/ability_druid_ravage",
- ["id"] = 9867
+ ["texture"] = "Interface/ICONS/ability_druid_ravage"
},
- [9] = {
+ [10] = {
+ ["id"] = 9841,
["name"] = "Rejuvenation",
["rank"] = 10,
["cost"] = 32000,
- ["texture"] = "Interface/ICONS/spell_nature_rejuvenation",
- ["id"] = 9841
+ ["texture"] = "Interface/ICONS/spell_nature_rejuvenation"
+ },
+ [11] = {
+ ["id"] = 9876,
+ ["name"] = "Starfire",
+ ["rank"] = 6,
+ ["cost"] = 32000,
+ ["texture"] = "Interface/ICONS/spell_arcane_starfire"
},
},
[60] = {
[1] = {
+ ["id"] = 24977,
+ ["name"] = "Insect Swarm",
+ ["rank"] = 5,
+ ["cost"] = 1700,
+ ["texture"] = "Interface/ICONS/spell_nature_insectswarm",
+ ["talent"] = true
+ },
+ [2] = {
+ ["id"] = 31709,
+ ["name"] = "Cower",
+ ["rank"] = 4,
+ ["cost"] = 34000,
+ ["texture"] = "Interface/ICONS/ability_druid_cower"
+ },
+ [3] = {
+ ["id"] = 31018,
+ ["name"] = "Ferocious Bite",
+ ["rank"] = 5,
+ ["cost"] = 30000,
+ ["texture"] = "Interface/ICONS/ability_druid_ferociousbite"
+ },
+ [4] = {
+ ["id"] = 21850,
+ ["name"] = "Gift of the Wild",
+ ["rank"] = 2,
+ ["cost"] = 34000,
+ ["texture"] = "Interface/ICONS/spell_nature_giftofthewild"
+ },
+ [5] = {
+ ["id"] = 25297,
+ ["name"] = "Healing Touch",
+ ["rank"] = 11,
+ ["cost"] = 34000,
+ ["texture"] = "Interface/ICONS/spell_nature_healingtouch"
+ },
+ [6] = {
+ ["id"] = 17402,
["name"] = "Hurricane",
["rank"] = 3,
["cost"] = 34000,
- ["texture"] = "Interface/ICONS/spell_nature_cyclone",
- ["id"] = 17402
+ ["texture"] = "Interface/ICONS/spell_nature_cyclone"
},
- [2] = {
+ [7] = {
+ ["id"] = 9885,
+ ["name"] = "Mark of the Wild",
+ ["rank"] = 7,
+ ["cost"] = 34000,
+ ["texture"] = "Interface/ICONS/spell_nature_regeneration"
+ },
+ [8] = {
+ ["id"] = 9913,
["name"] = "Prowl",
["rank"] = 3,
["cost"] = 34000,
- ["texture"] = "Interface/ICONS/ability_ambush",
- ["id"] = 9913
+ ["texture"] = "Interface/ICONS/ability_ambush"
},
- [3] = {
+ [9] = {
+ ["id"] = 20748,
+ ["name"] = "Rebirth",
+ ["rank"] = 5,
+ ["cost"] = 34000,
+ ["texture"] = "Interface/ICONS/spell_nature_reincarnation"
+ },
+ [10] = {
+ ["id"] = 9858,
+ ["name"] = "Regrowth",
+ ["rank"] = 9,
+ ["cost"] = 34000,
+ ["texture"] = "Interface/ICONS/spell_nature_resistnature"
+ },
+ [11] = {
+ ["id"] = 25299,
+ ["name"] = "Rejuvenation",
+ ["rank"] = 11,
+ ["cost"] = 34000,
+ ["texture"] = "Interface/ICONS/spell_nature_rejuvenation"
+ },
+ [12] = {
+ ["id"] = 9896,
["name"] = "Rip",
["rank"] = 6,
["cost"] = 34000,
- ["texture"] = "Interface/ICONS/ability_ghoulfrenzy",
- ["id"] = 9896
+ ["texture"] = "Interface/ICONS/ability_ghoulfrenzy"
},
- [4] = {
+ [13] = {
+ ["id"] = 25298,
+ ["name"] = "Starfire",
+ ["rank"] = 7,
+ ["cost"] = 34000,
+ ["texture"] = "Interface/ICONS/spell_arcane_starfire"
+ },
+ [14] = {
+ ["id"] = 9846,
["name"] = "Tiger's Fury",
["rank"] = 4,
["cost"] = 34000,
- ["texture"] = "Interface/ICONS/ability_mount_jungletiger",
- ["id"] = 9846
+ ["texture"] = "Interface/ICONS/ability_mount_jungletiger"
+ },
+ [15] = {
+ ["id"] = 9863,
+ ["name"] = "Tranquility",
+ ["rank"] = 4,
+ ["cost"] = 34000,
+ ["texture"] = "Interface/ICONS/spell_nature_tranquility"
+ },
+ },
+ [61] = {
+ [1] = {
+ ["id"] = 27001,
+ ["name"] = "Shred",
+ ["rank"] = 6,
+ ["cost"] = 39000,
+ ["texture"] = "Interface/ICONS/spell_shadow_vampiricaura"
+ },
+ [2] = {
+ ["id"] = 26984,
+ ["name"] = "Wrath",
+ ["rank"] = 9,
+ ["cost"] = 39000,
+ ["texture"] = "Interface/ICONS/spell_nature_abolishmagic"
+ },
+ },
+ [62] = {
+ [1] = {
+ ["id"] = 26998,
+ ["name"] = "Demoralizing Roar",
+ ["rank"] = 6,
+ ["cost"] = 43000,
+ ["texture"] = "Interface/ICONS/ability_druid_demoralizingroar"
+ },
+ [2] = {
+ ["id"] = 26978,
+ ["name"] = "Healing Touch",
+ ["rank"] = 12,
+ ["cost"] = 43000,
+ ["texture"] = "Interface/ICONS/spell_nature_healingtouch"
+ },
+ [3] = {
+ ["id"] = 22570,
+ ["name"] = "Maim",
+ ["rank"] = 1,
+ ["cost"] = 43000,
+ ["texture"] = "Interface/ICONS/ability_druid_mangle"
+ },
+ },
+ [63] = {
+ [1] = {
+ ["id"] = 24248,
+ ["name"] = "Ferocious Bite",
+ ["rank"] = 6,
+ ["cost"] = 48000,
+ ["texture"] = "Interface/ICONS/ability_druid_ferociousbite"
+ },
+ [2] = {
+ ["id"] = 26987,
+ ["name"] = "Moonfire",
+ ["rank"] = 11,
+ ["cost"] = 48000,
+ ["texture"] = "Interface/ICONS/spell_nature_starfall"
+ },
+ [3] = {
+ ["id"] = 26981,
+ ["name"] = "Rejuvenation",
+ ["rank"] = 12,
+ ["cost"] = 48000,
+ ["texture"] = "Interface/ICONS/spell_nature_rejuvenation"
+ },
+ },
+ [64] = {
+ [1] = {
+ ["id"] = 33763,
+ ["name"] = "Lifebloom",
+ ["rank"] = 1,
+ ["cost"] = 53000,
+ ["texture"] = "Interface/ICONS/inv_misc_herb_felblossom"
+ },
+ [2] = {
+ ["id"] = 27003,
+ ["name"] = "Rake",
+ ["rank"] = 5,
+ ["cost"] = 53000,
+ ["texture"] = "Interface/ICONS/ability_druid_disembowel"
+ },
+ [3] = {
+ ["id"] = 26997,
+ ["name"] = "Swipe",
+ ["rank"] = 6,
+ ["cost"] = 53000,
+ ["texture"] = "Interface/ICONS/inv_misc_monsterclaw_03"
+ },
+ [4] = {
+ ["id"] = 26992,
+ ["name"] = "Thorns",
+ ["rank"] = 7,
+ ["cost"] = 53000,
+ ["texture"] = "Interface/ICONS/spell_nature_thorns"
+ },
+ },
+ [65] = {
+ [1] = {
+ ["id"] = 33357,
+ ["name"] = "Dash",
+ ["rank"] = 3,
+ ["cost"] = 59000,
+ ["texture"] = "Interface/ICONS/ability_druid_dash"
+ },
+ [2] = {
+ ["id"] = 26999,
+ ["name"] = "Frenzied Regeneration",
+ ["rank"] = 4,
+ ["cost"] = 59000,
+ ["texture"] = "Interface/ICONS/ability_bullrush"
+ },
+ [3] = {
+ ["id"] = 26980,
+ ["name"] = "Regrowth",
+ ["rank"] = 10,
+ ["cost"] = 59000,
+ ["texture"] = "Interface/ICONS/spell_nature_resistnature"
+ },
+ },
+ [66] = {
+ [1] = {
+ ["id"] = 27011,
+ ["name"] = "Faerie Fire (Feral)",
+ ["rank"] = 5,
+ ["cost"] = 1700,
+ ["texture"] = "Interface/ICONS/spell_nature_faeriefire",
+ ["talent"] = true
+ },
+ [2] = {
+ ["id"] = 26993,
+ ["name"] = "Faerie Fire",
+ ["rank"] = 5,
+ ["cost"] = 34000,
+ ["texture"] = "Interface/ICONS/spell_nature_faeriefire"
+ },
+ [3] = {
+ ["id"] = 33745,
+ ["name"] = "Lacerate",
+ ["rank"] = 1,
+ ["cost"] = 66000,
+ ["texture"] = "Interface/ICONS/ability_druid_lacerate"
+ },
+ [4] = {
+ ["id"] = 27006,
+ ["name"] = "Pounce",
+ ["rank"] = 4,
+ ["cost"] = 66000,
+ ["texture"] = "Interface/ICONS/ability_druid_supriseattack"
},
[5] = {
- ["name"] = "Insect Swarm",
+ ["id"] = 27005,
+ ["name"] = "Ravage",
["rank"] = 5,
+ ["cost"] = 66000,
+ ["texture"] = "Interface/ICONS/ability_druid_ravage"
+ },
+ },
+ [67] = {
+ [1] = {
+ ["id"] = 27000,
+ ["name"] = "Claw",
+ ["rank"] = 6,
+ ["cost"] = 73000,
+ ["texture"] = "Interface/ICONS/ability_druid_rake"
+ },
+ [2] = {
+ ["id"] = 26996,
+ ["name"] = "Maul",
+ ["rank"] = 8,
+ ["cost"] = 73000,
+ ["texture"] = "Interface/ICONS/ability_druid_maul"
+ },
+ [3] = {
+ ["id"] = 27008,
+ ["name"] = "Rip",
+ ["rank"] = 7,
+ ["cost"] = 73000,
+ ["texture"] = "Interface/ICONS/ability_ghoulfrenzy"
+ },
+ [4] = {
+ ["id"] = 26986,
+ ["name"] = "Starfire",
+ ["rank"] = 8,
+ ["cost"] = 73000,
+ ["texture"] = "Interface/ICONS/spell_arcane_starfire"
+ },
+ },
+ [68] = {
+ [1] = {
+ ["id"] = 27009,
+ ["name"] = "Nature's Grasp",
+ ["rank"] = 7,
["cost"] = 1700,
+ ["texture"] = "Interface/ICONS/spell_nature_natureswrath",
+ ["talent"] = true
+ },
+ [2] = {
+ ["id"] = 26989,
+ ["name"] = "Entangling Roots",
+ ["rank"] = 7,
+ ["cost"] = 81000,
+ ["texture"] = "Interface/ICONS/spell_nature_stranglevines"
+ },
+ [3] = {
+ ["id"] = 33943,
+ ["name"] = "Flight Form",
+ ["rank"] = 0,
+ ["cost"] = 81000,
+ ["texture"] = "Interface/ICONS/ability_druid_flightform"
+ },
+ [4] = {
+ ["id"] = 33987,
+ ["name"] = "Mangle (Bear)",
+ ["rank"] = 3,
+ ["cost"] = 1900,
+ ["texture"] = "Interface/ICONS/ability_druid_mangle2"
+ },
+ [5] = {
+ ["id"] = 33983,
+ ["name"] = "Mangle (Cat)",
+ ["rank"] = 3,
+ ["cost"] = 1700,
+ ["texture"] = "Interface/ICONS/ability_druid_mangle2"
+ },
+ },
+ [69] = {
+ [1] = {
+ ["id"] = 27004,
+ ["name"] = "Cower",
+ ["rank"] = 5,
+ ["cost"] = 90000,
+ ["texture"] = "Interface/ICONS/ability_druid_cower"
+ },
+ [2] = {
+ ["id"] = 26979,
+ ["name"] = "Healing Touch",
+ ["rank"] = 13,
+ ["cost"] = 90000,
+ ["texture"] = "Interface/ICONS/spell_nature_healingtouch"
+ },
+ [3] = {
+ ["id"] = 26994,
+ ["name"] = "Rebirth",
+ ["rank"] = 6,
+ ["cost"] = 90000,
+ ["texture"] = "Interface/ICONS/spell_nature_reincarnation"
+ },
+ [4] = {
+ ["id"] = 26982,
+ ["name"] = "Rejuvenation",
+ ["rank"] = 13,
+ ["cost"] = 90000,
+ ["texture"] = "Interface/ICONS/spell_nature_rejuvenation"
+ },
+ [5] = {
+ ["id"] = 26985,
+ ["name"] = "Wrath",
+ ["rank"] = 10,
+ ["cost"] = 90000,
+ ["texture"] = "Interface/ICONS/spell_nature_abolishmagic"
+ },
+ },
+ [70] = {
+ [1] = {
+ ["id"] = 27013,
+ ["name"] = "Insect Swarm",
+ ["rank"] = 6,
+ ["cost"] = 2500,
["texture"] = "Interface/ICONS/spell_nature_insectswarm",
- ["id"] = 24977,
["talent"] = true
},
- [6] = {
+ [2] = {
+ ["id"] = 33786,
+ ["name"] = "Cyclone",
+ ["rank"] = 0,
+ ["cost"] = 100000,
+ ["texture"] = "Interface/ICONS/spell_nature_earthbind"
+ },
+ [3] = {
+ ["id"] = 26991,
+ ["name"] = "Gift of the Wild",
+ ["rank"] = 3,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_giftofthewild"
+ },
+ [4] = {
+ ["id"] = 27012,
+ ["name"] = "Hurricane",
+ ["rank"] = 4,
+ ["cost"] = 100000,
+ ["texture"] = "Interface/ICONS/spell_nature_cyclone"
+ },
+ [5] = {
+ ["id"] = 26990,
["name"] = "Mark of the Wild",
- ["rank"] = 7,
- ["cost"] = 34000,
- ["texture"] = "Interface/ICONS/spell_nature_regeneration",
- ["id"] = 9885
+ ["rank"] = 8,
+ ["cost"] = 100000,
+ ["texture"] = "Interface/ICONS/spell_nature_regeneration"
+ },
+ [6] = {
+ ["id"] = 26988,
+ ["name"] = "Moonfire",
+ ["rank"] = 12,
+ ["cost"] = 100000,
+ ["texture"] = "Interface/ICONS/spell_nature_starfall"
},
[7] = {
- ["name"] = "Rebirth",
- ["rank"] = 5,
- ["cost"] = 34000,
- ["texture"] = "Interface/ICONS/spell_nature_reincarnation",
- ["id"] = 20748
+ ["id"] = 27002,
+ ["name"] = "Shred",
+ ["rank"] = 7,
+ ["cost"] = 100000,
+ ["texture"] = "Interface/ICONS/spell_shadow_vampiricaura"
},
[8] = {
- ["name"] = "Regrowth",
- ["rank"] = 9,
- ["cost"] = 34000,
- ["texture"] = "Interface/ICONS/spell_nature_resistnature",
- ["id"] = 9858
+ ["id"] = 26995,
+ ["name"] = "Soothe Animal",
+ ["rank"] = 4,
+ ["cost"] = 100000,
+ ["texture"] = "Interface/ICONS/ability_hunter_beastsoothe"
},
[9] = {
- ["name"] = "Tranquility",
- ["rank"] = 4,
+ ["id"] = 40120,
+ ["name"] = "Swift Flight Form",
+ ["rank"] = 0,
["cost"] = 0,
- ["texture"] = "Interface/ICONS/spell_nature_tranquility",
- ["id"] = 9863
+ ["texture"] = "Interface/ICONS/ability_druid_flightform"
+ },
+ [10] = {
+ ["id"] = 26983,
+ ["name"] = "Tranquility",
+ ["rank"] = 5,
+ ["cost"] = 100000,
+ ["texture"] = "Interface/ICONS/spell_nature_tranquility"
},
},
}
diff --git a/Database/classes/Hunter.lua b/Database/classes/Hunter.lua
new file mode 100644
index 0000000..26c0bea
--- /dev/null
+++ b/Database/classes/Hunter.lua
@@ -0,0 +1,1464 @@
+local _, FieldGuide = ...
+
+FieldGuide.HUNTER = {
+ [1] = {
+ [1] = {
+ ["id"] = 3127,
+ ["name"] = "Parry",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_parry"
+ },
+ [2] = {
+ ["id"] = 2764,
+ ["name"] = "Throw",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_throw"
+ },
+ [3] = {
+ ["id"] = 75,
+ ["name"] = "Auto Shot",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_whirlwind"
+ },
+ [4] = {
+ ["id"] = 2973,
+ ["name"] = "Raptor Strike",
+ ["rank"] = 1,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_meleedamage"
+ },
+ [5] = {
+ ["id"] = 1494,
+ ["name"] = "Track Beasts",
+ ["rank"] = 0,
+ ["cost"] = 10,
+ ["texture"] = "Interface/ICONS/ability_tracking"
+ },
+ },
+ [4] = {
+ [1] = {
+ ["id"] = 13163,
+ ["name"] = "Aspect of the Monkey",
+ ["rank"] = 0,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/ability_hunter_aspectofthemonkey"
+ },
+ [2] = {
+ ["id"] = 1978,
+ ["name"] = "Serpent Sting",
+ ["rank"] = 1,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/ability_hunter_quickshot"
+ },
+ },
+ [6] = {
+ [1] = {
+ ["id"] = 3044,
+ ["name"] = "Arcane Shot",
+ ["rank"] = 1,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/ability_impalingbolt"
+ },
+ [2] = {
+ ["id"] = 1130,
+ ["name"] = "Hunter's Mark",
+ ["rank"] = 1,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/ability_hunter_snipershot"
+ },
+ },
+ [8] = {
+ [1] = {
+ ["id"] = 5116,
+ ["name"] = "Concussive Shot",
+ ["rank"] = 0,
+ ["cost"] = 200,
+ ["texture"] = "Interface/ICONS/spell_frost_stun"
+ },
+ [2] = {
+ ["id"] = 14260,
+ ["name"] = "Raptor Strike",
+ ["rank"] = 2,
+ ["cost"] = 200,
+ ["texture"] = "Interface/ICONS/ability_meleedamage"
+ },
+ },
+ [10] = {
+ [1] = {
+ ["id"] = 13165,
+ ["name"] = "Aspect of the Hawk",
+ ["rank"] = 1,
+ ["cost"] = 400,
+ ["texture"] = "Interface/ICONS/spell_nature_ravenform"
+ },
+ [2] = {
+ ["id"] = 883,
+ ["name"] = "Call Pet",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_hunter_beastcall"
+ },
+ [3] = {
+ ["id"] = 2641,
+ ["name"] = "Dismiss Pet",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_spiritwolf"
+ },
+ [4] = {
+ ["id"] = 6991,
+ ["name"] = "Feed Pet",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_hunter_beasttraining"
+ },
+ [5] = {
+ ["id"] = 4195,
+ ["name"] = "Great Stamina",
+ ["rank"] = 1,
+ ["cost"] = 10,
+ ["texture"] = "Interface/ICONS/spell_nature_unyeildingstamina"
+ },
+ [6] = {
+ ["id"] = 24547,
+ ["name"] = "Natural Armor",
+ ["rank"] = 1,
+ ["cost"] = 10,
+ ["texture"] = "Interface/ICONS/spell_nature_spiritarmor"
+ },
+ [7] = {
+ ["id"] = 982,
+ ["name"] = "Revive Pet",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_hunter_beastsoothe"
+ },
+ [8] = {
+ ["id"] = 13549,
+ ["name"] = "Serpent Sting",
+ ["rank"] = 2,
+ ["cost"] = 400,
+ ["texture"] = "Interface/ICONS/ability_hunter_quickshot"
+ },
+ [9] = {
+ ["id"] = 1515,
+ ["name"] = "Tame Beast",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_hunter_beasttaming"
+ },
+ [10] = {
+ ["id"] = 19883,
+ ["name"] = "Track Humanoids",
+ ["rank"] = 0,
+ ["cost"] = 400,
+ ["texture"] = "Interface/ICONS/spell_holy_prayerofhealing"
+ },
+ },
+ [12] = {
+ [1] = {
+ ["id"] = 14281,
+ ["name"] = "Arcane Shot",
+ ["rank"] = 2,
+ ["cost"] = 600,
+ ["texture"] = "Interface/ICONS/ability_impalingbolt"
+ },
+ [2] = {
+ ["id"] = 20736,
+ ["name"] = "Distracting Shot",
+ ["rank"] = 1,
+ ["cost"] = 600,
+ ["texture"] = "Interface/ICONS/spell_arcane_blink"
+ },
+ [3] = {
+ ["id"] = 4196,
+ ["name"] = "Great Stamina",
+ ["rank"] = 2,
+ ["cost"] = 120,
+ ["texture"] = "Interface/ICONS/spell_nature_unyeildingstamina"
+ },
+ [4] = {
+ ["id"] = 136,
+ ["name"] = "Mend Pet",
+ ["rank"] = 1,
+ ["cost"] = 600,
+ ["texture"] = "Interface/ICONS/ability_hunter_mendpet"
+ },
+ [5] = {
+ ["id"] = 24556,
+ ["name"] = "Natural Armor",
+ ["rank"] = 2,
+ ["cost"] = 120,
+ ["texture"] = "Interface/ICONS/spell_nature_spiritarmor"
+ },
+ [6] = {
+ ["id"] = 2974,
+ ["name"] = "Wing Clip",
+ ["rank"] = 1,
+ ["cost"] = 600,
+ ["texture"] = "Interface/ICONS/ability_rogue_trip"
+ },
+ },
+ [14] = {
+ [1] = {
+ ["id"] = 6197,
+ ["name"] = "Eagle Eye",
+ ["rank"] = 0,
+ ["cost"] = 1200,
+ ["texture"] = "Interface/ICONS/ability_hunter_eagleeye"
+ },
+ [2] = {
+ ["id"] = 1002,
+ ["name"] = "Eyes of the Beast",
+ ["rank"] = 0,
+ ["cost"] = 1200,
+ ["texture"] = "Interface/ICONS/ability_eyeoftheowl"
+ },
+ [3] = {
+ ["id"] = 1513,
+ ["name"] = "Scare Beast",
+ ["rank"] = 1,
+ ["cost"] = 1200,
+ ["texture"] = "Interface/ICONS/ability_druid_cower"
+ },
+ },
+ [16] = {
+ [1] = {
+ ["id"] = 13795,
+ ["name"] = "Immolation Trap",
+ ["rank"] = 1,
+ ["cost"] = 1800,
+ ["texture"] = "Interface/ICONS/spell_fire_flameshock"
+ },
+ [2] = {
+ ["id"] = 1495,
+ ["name"] = "Mongoose Bite",
+ ["rank"] = 1,
+ ["cost"] = 1800,
+ ["texture"] = "Interface/ICONS/ability_hunter_swiftstrike"
+ },
+ [3] = {
+ ["id"] = 14261,
+ ["name"] = "Raptor Strike",
+ ["rank"] = 3,
+ ["cost"] = 1800,
+ ["texture"] = "Interface/ICONS/ability_meleedamage"
+ },
+ },
+ [18] = {
+ [1] = {
+ ["id"] = 14318,
+ ["name"] = "Aspect of the Hawk",
+ ["rank"] = 2,
+ ["cost"] = 2000,
+ ["texture"] = "Interface/ICONS/spell_nature_ravenform"
+ },
+ [2] = {
+ ["id"] = 4197,
+ ["name"] = "Great Stamina",
+ ["rank"] = 3,
+ ["cost"] = 400,
+ ["texture"] = "Interface/ICONS/spell_nature_unyeildingstamina"
+ },
+ [3] = {
+ ["id"] = 2643,
+ ["name"] = "Multi-Shot",
+ ["rank"] = 1,
+ ["cost"] = 2000,
+ ["texture"] = "Interface/ICONS/ability_upgrademoonglaive"
+ },
+ [4] = {
+ ["id"] = 24557,
+ ["name"] = "Natural Armor",
+ ["rank"] = 3,
+ ["cost"] = 400,
+ ["texture"] = "Interface/ICONS/spell_nature_spiritarmor"
+ },
+ [5] = {
+ ["id"] = 13550,
+ ["name"] = "Serpent Sting",
+ ["rank"] = 3,
+ ["cost"] = 2000,
+ ["texture"] = "Interface/ICONS/ability_hunter_quickshot"
+ },
+ [6] = {
+ ["id"] = 19884,
+ ["name"] = "Track Undead",
+ ["rank"] = 0,
+ ["cost"] = 2000,
+ ["texture"] = "Interface/ICONS/spell_shadow_darksummoning"
+ },
+ },
+ [20] = {
+ [1] = {
+ ["id"] = 24495,
+ ["name"] = "Arcane Resistance",
+ ["rank"] = 1,
+ ["cost"] = 440,
+ ["texture"] = "Interface/ICONS/spell_nature_starfall"
+ },
+ [2] = {
+ ["id"] = 14282,
+ ["name"] = "Arcane Shot",
+ ["rank"] = 3,
+ ["cost"] = 2200,
+ ["texture"] = "Interface/ICONS/ability_impalingbolt"
+ },
+ [3] = {
+ ["id"] = 5118,
+ ["name"] = "Aspect of the Cheetah",
+ ["rank"] = 0,
+ ["cost"] = 2200,
+ ["texture"] = "Interface/ICONS/ability_mount_jungletiger"
+ },
+ [4] = {
+ ["id"] = 781,
+ ["name"] = "Disengage",
+ ["rank"] = 1,
+ ["cost"] = 2200,
+ ["texture"] = "Interface/ICONS/ability_rogue_feint"
+ },
+ [5] = {
+ ["id"] = 14274,
+ ["name"] = "Distracting Shot",
+ ["rank"] = 2,
+ ["cost"] = 2200,
+ ["texture"] = "Interface/ICONS/spell_arcane_blink"
+ },
+ [6] = {
+ ["id"] = 24440,
+ ["name"] = "Fire Resistance",
+ ["rank"] = 1,
+ ["cost"] = 440,
+ ["texture"] = "Interface/ICONS/spell_fire_firearmor"
+ },
+ [7] = {
+ ["id"] = 1499,
+ ["name"] = "Freezing Trap",
+ ["rank"] = 1,
+ ["cost"] = 2200,
+ ["texture"] = "Interface/ICONS/spell_frost_chainsofice"
+ },
+ [8] = {
+ ["id"] = 24475,
+ ["name"] = "Frost Resistance",
+ ["rank"] = 1,
+ ["cost"] = 440,
+ ["texture"] = "Interface/ICONS/spell_frost_frostward"
+ },
+ [9] = {
+ ["id"] = 14923,
+ ["name"] = "Growl",
+ ["rank"] = 3,
+ ["cost"] = 440,
+ ["texture"] = "Interface/ICONS/ability_physical_taunt"
+ },
+ [10] = {
+ ["id"] = 3111,
+ ["name"] = "Mend Pet",
+ ["rank"] = 2,
+ ["cost"] = 2200,
+ ["texture"] = "Interface/ICONS/ability_hunter_mendpet"
+ },
+ [11] = {
+ ["id"] = 24494,
+ ["name"] = "Nature Resistance",
+ ["rank"] = 1,
+ ["cost"] = 440,
+ ["texture"] = "Interface/ICONS/spell_nature_resistnature"
+ },
+ [12] = {
+ ["id"] = 24490,
+ ["name"] = "Shadow Resistance",
+ ["rank"] = 1,
+ ["cost"] = 440,
+ ["texture"] = "Interface/ICONS/spell_shadow_antishadow"
+ },
+ },
+ [22] = {
+ [1] = {
+ ["id"] = 14323,
+ ["name"] = "Hunter's Mark",
+ ["rank"] = 2,
+ ["cost"] = 6000,
+ ["texture"] = "Interface/ICONS/ability_hunter_snipershot"
+ },
+ [2] = {
+ ["id"] = 3043,
+ ["name"] = "Scorpid Sting",
+ ["rank"] = 0,
+ ["cost"] = 6000,
+ ["texture"] = "Interface/ICONS/ability_hunter_criticalshot"
+ },
+ },
+ [24] = {
+ [1] = {
+ ["id"] = 1462,
+ ["name"] = "Beast Lore",
+ ["rank"] = 0,
+ ["cost"] = 7000,
+ ["texture"] = "Interface/ICONS/ability_physical_taunt"
+ },
+ [2] = {
+ ["id"] = 4198,
+ ["name"] = "Great Stamina",
+ ["rank"] = 4,
+ ["cost"] = 1400,
+ ["texture"] = "Interface/ICONS/spell_nature_unyeildingstamina"
+ },
+ [3] = {
+ ["id"] = 24558,
+ ["name"] = "Natural Armor",
+ ["rank"] = 4,
+ ["cost"] = 1400,
+ ["texture"] = "Interface/ICONS/spell_nature_spiritarmor"
+ },
+ [4] = {
+ ["id"] = 14262,
+ ["name"] = "Raptor Strike",
+ ["rank"] = 4,
+ ["cost"] = 7000,
+ ["texture"] = "Interface/ICONS/ability_meleedamage"
+ },
+ [5] = {
+ ["id"] = 19885,
+ ["name"] = "Track Hidden",
+ ["rank"] = 0,
+ ["cost"] = 7000,
+ ["texture"] = "Interface/ICONS/ability_stealth"
+ },
+ },
+ [26] = {
+ [1] = {
+ ["id"] = 14302,
+ ["name"] = "Immolation Trap",
+ ["rank"] = 2,
+ ["cost"] = 7000,
+ ["texture"] = "Interface/ICONS/spell_fire_flameshock"
+ },
+ [2] = {
+ ["id"] = 3045,
+ ["name"] = "Rapid Fire",
+ ["rank"] = 0,
+ ["cost"] = 7000,
+ ["texture"] = "Interface/ICONS/ability_hunter_runningshot"
+ },
+ [3] = {
+ ["id"] = 13551,
+ ["name"] = "Serpent Sting",
+ ["rank"] = 4,
+ ["cost"] = 7000,
+ ["texture"] = "Interface/ICONS/ability_hunter_quickshot"
+ },
+ [4] = {
+ ["id"] = 19880,
+ ["name"] = "Track Elementals",
+ ["rank"] = 0,
+ ["cost"] = 7000,
+ ["texture"] = "Interface/ICONS/spell_frost_summonwaterelemental"
+ },
+ },
+ [28] = {
+ [1] = {
+ ["id"] = 20900,
+ ["name"] = "Aimed Shot",
+ ["rank"] = 2,
+ ["cost"] = 400,
+ ["texture"] = "Interface/ICONS/inv_spear_07",
+ ["talent"] = true
+ },
+ [2] = {
+ ["id"] = 14283,
+ ["name"] = "Arcane Shot",
+ ["rank"] = 4,
+ ["cost"] = 8000,
+ ["texture"] = "Interface/ICONS/ability_impalingbolt"
+ },
+ [3] = {
+ ["id"] = 14319,
+ ["name"] = "Aspect of the Hawk",
+ ["rank"] = 3,
+ ["cost"] = 8000,
+ ["texture"] = "Interface/ICONS/spell_nature_ravenform"
+ },
+ [4] = {
+ ["id"] = 13809,
+ ["name"] = "Frost Trap",
+ ["rank"] = 0,
+ ["cost"] = 8000,
+ ["texture"] = "Interface/ICONS/spell_frost_freezingbreath"
+ },
+ [5] = {
+ ["id"] = 3661,
+ ["name"] = "Mend Pet",
+ ["rank"] = 3,
+ ["cost"] = 8000,
+ ["texture"] = "Interface/ICONS/ability_hunter_mendpet"
+ },
+ },
+ [30] = {
+ [1] = {
+ ["id"] = 24508,
+ ["name"] = "Arcane Resistance",
+ ["rank"] = 2,
+ ["cost"] = 1600,
+ ["texture"] = "Interface/ICONS/spell_nature_starfall"
+ },
+ [2] = {
+ ["id"] = 13161,
+ ["name"] = "Aspect of the Beast",
+ ["rank"] = 0,
+ ["cost"] = 8000,
+ ["texture"] = "Interface/ICONS/ability_mount_pinktiger"
+ },
+ [3] = {
+ ["id"] = 15629,
+ ["name"] = "Distracting Shot",
+ ["rank"] = 3,
+ ["cost"] = 8000,
+ ["texture"] = "Interface/ICONS/spell_arcane_blink"
+ },
+ [4] = {
+ ["id"] = 5384,
+ ["name"] = "Feign Death",
+ ["rank"] = 0,
+ ["cost"] = 8000,
+ ["texture"] = "Interface/ICONS/ability_rogue_feigndeath"
+ },
+ [5] = {
+ ["id"] = 24441,
+ ["name"] = "Fire Resistance",
+ ["rank"] = 2,
+ ["cost"] = 1600,
+ ["texture"] = "Interface/ICONS/spell_fire_firearmor"
+ },
+ [6] = {
+ ["id"] = 24476,
+ ["name"] = "Frost Resistance",
+ ["rank"] = 2,
+ ["cost"] = 1600,
+ ["texture"] = "Interface/ICONS/spell_frost_frostward"
+ },
+ [7] = {
+ ["id"] = 4199,
+ ["name"] = "Great Stamina",
+ ["rank"] = 5,
+ ["cost"] = 1600,
+ ["texture"] = "Interface/ICONS/spell_nature_unyeildingstamina"
+ },
+ [8] = {
+ ["id"] = 14924,
+ ["name"] = "Growl",
+ ["rank"] = 4,
+ ["cost"] = 1600,
+ ["texture"] = "Interface/ICONS/ability_physical_taunt"
+ },
+ [9] = {
+ ["id"] = 14269,
+ ["name"] = "Mongoose Bite",
+ ["rank"] = 2,
+ ["cost"] = 8000,
+ ["texture"] = "Interface/ICONS/ability_hunter_swiftstrike"
+ },
+ [10] = {
+ ["id"] = 14288,
+ ["name"] = "Multi-Shot",
+ ["rank"] = 2,
+ ["cost"] = 8000,
+ ["texture"] = "Interface/ICONS/ability_upgrademoonglaive"
+ },
+ [11] = {
+ ["id"] = 24559,
+ ["name"] = "Natural Armor",
+ ["rank"] = 5,
+ ["cost"] = 1600,
+ ["texture"] = "Interface/ICONS/spell_nature_spiritarmor"
+ },
+ [12] = {
+ ["id"] = 24511,
+ ["name"] = "Nature Resistance",
+ ["rank"] = 2,
+ ["cost"] = 1600,
+ ["texture"] = "Interface/ICONS/spell_nature_resistnature"
+ },
+ [13] = {
+ ["id"] = 14326,
+ ["name"] = "Scare Beast",
+ ["rank"] = 2,
+ ["cost"] = 8000,
+ ["texture"] = "Interface/ICONS/ability_druid_cower"
+ },
+ [14] = {
+ ["id"] = 24514,
+ ["name"] = "Shadow Resistance",
+ ["rank"] = 2,
+ ["cost"] = 1600,
+ ["texture"] = "Interface/ICONS/spell_shadow_antishadow"
+ },
+ },
+ [32] = {
+ [1] = {
+ ["id"] = 1543,
+ ["name"] = "Flare",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/spell_fire_flare"
+ },
+ [2] = {
+ ["id"] = 14263,
+ ["name"] = "Raptor Strike",
+ ["rank"] = 5,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/ability_meleedamage"
+ },
+ [3] = {
+ ["id"] = 19878,
+ ["name"] = "Track Demons",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/spell_shadow_summonfelhunter"
+ },
+ },
+ [34] = {
+ [1] = {
+ ["id"] = 14272,
+ ["name"] = "Disengage",
+ ["rank"] = 2,
+ ["cost"] = 12000,
+ ["texture"] = "Interface/ICONS/ability_rogue_feint"
+ },
+ [2] = {
+ ["id"] = 13813,
+ ["name"] = "Explosive Trap",
+ ["rank"] = 1,
+ ["cost"] = 12000,
+ ["texture"] = "Interface/ICONS/spell_fire_selfdestruct"
+ },
+ [3] = {
+ ["id"] = 13552,
+ ["name"] = "Serpent Sting",
+ ["rank"] = 5,
+ ["cost"] = 12000,
+ ["texture"] = "Interface/ICONS/ability_hunter_quickshot"
+ },
+ },
+ [36] = {
+ [1] = {
+ ["id"] = 20901,
+ ["name"] = "Aimed Shot",
+ ["rank"] = 3,
+ ["cost"] = 700,
+ ["texture"] = "Interface/ICONS/inv_spear_07",
+ ["talent"] = true
+ },
+ [2] = {
+ ["id"] = 14284,
+ ["name"] = "Arcane Shot",
+ ["rank"] = 5,
+ ["cost"] = 14000,
+ ["texture"] = "Interface/ICONS/ability_impalingbolt"
+ },
+ [3] = {
+ ["id"] = 4200,
+ ["name"] = "Great Stamina",
+ ["rank"] = 6,
+ ["cost"] = 2800,
+ ["texture"] = "Interface/ICONS/spell_nature_unyeildingstamina"
+ },
+ [4] = {
+ ["id"] = 14303,
+ ["name"] = "Immolation Trap",
+ ["rank"] = 3,
+ ["cost"] = 14000,
+ ["texture"] = "Interface/ICONS/spell_fire_flameshock"
+ },
+ [5] = {
+ ["id"] = 3662,
+ ["name"] = "Mend Pet",
+ ["rank"] = 4,
+ ["cost"] = 14000,
+ ["texture"] = "Interface/ICONS/ability_hunter_mendpet"
+ },
+ [6] = {
+ ["id"] = 24560,
+ ["name"] = "Natural Armor",
+ ["rank"] = 6,
+ ["cost"] = 2800,
+ ["texture"] = "Interface/ICONS/spell_nature_spiritarmor"
+ },
+ [7] = {
+ ["id"] = 3034,
+ ["name"] = "Viper Sting",
+ ["rank"] = 1,
+ ["cost"] = 14000,
+ ["texture"] = "Interface/ICONS/ability_hunter_aimedshot"
+ },
+ },
+ [38] = {
+ [1] = {
+ ["id"] = 14320,
+ ["name"] = "Aspect of the Hawk",
+ ["rank"] = 4,
+ ["cost"] = 16000,
+ ["texture"] = "Interface/ICONS/spell_nature_ravenform"
+ },
+ [2] = {
+ ["id"] = 14267,
+ ["name"] = "Wing Clip",
+ ["rank"] = 2,
+ ["cost"] = 16000,
+ ["texture"] = "Interface/ICONS/ability_rogue_trip"
+ },
+ },
+ [40] = {
+ [1] = {
+ ["id"] = 24509,
+ ["name"] = "Arcane Resistance",
+ ["rank"] = 3,
+ ["cost"] = 3600,
+ ["texture"] = "Interface/ICONS/spell_nature_starfall"
+ },
+ [2] = {
+ ["id"] = 13159,
+ ["name"] = "Aspect of the Pack",
+ ["rank"] = 0,
+ ["cost"] = 18000,
+ ["texture"] = "Interface/ICONS/ability_mount_whitetiger"
+ },
+ [3] = {
+ ["id"] = 15630,
+ ["name"] = "Distracting Shot",
+ ["rank"] = 4,
+ ["cost"] = 18000,
+ ["texture"] = "Interface/ICONS/spell_arcane_blink"
+ },
+ [4] = {
+ ["id"] = 24463,
+ ["name"] = "Fire Resistance",
+ ["rank"] = 3,
+ ["cost"] = 3600,
+ ["texture"] = "Interface/ICONS/spell_fire_firearmor"
+ },
+ [5] = {
+ ["id"] = 14310,
+ ["name"] = "Freezing Trap",
+ ["rank"] = 2,
+ ["cost"] = 18000,
+ ["texture"] = "Interface/ICONS/spell_frost_chainsofice"
+ },
+ [6] = {
+ ["id"] = 24477,
+ ["name"] = "Frost Resistance",
+ ["rank"] = 3,
+ ["cost"] = 3600,
+ ["texture"] = "Interface/ICONS/spell_frost_frostward"
+ },
+ [7] = {
+ ["id"] = 14925,
+ ["name"] = "Growl",
+ ["rank"] = 5,
+ ["cost"] = 3600,
+ ["texture"] = "Interface/ICONS/ability_physical_taunt"
+ },
+ [8] = {
+ ["id"] = 14324,
+ ["name"] = "Hunter's Mark",
+ ["rank"] = 3,
+ ["cost"] = 18000,
+ ["texture"] = "Interface/ICONS/ability_hunter_snipershot"
+ },
+ [9] = {
+ ["id"] = 24512,
+ ["name"] = "Nature Resistance",
+ ["rank"] = 3,
+ ["cost"] = 3600,
+ ["texture"] = "Interface/ICONS/spell_nature_resistnature"
+ },
+ [10] = {
+ ["id"] = 14264,
+ ["name"] = "Raptor Strike",
+ ["rank"] = 6,
+ ["cost"] = 18000,
+ ["texture"] = "Interface/ICONS/ability_meleedamage"
+ },
+ [11] = {
+ ["id"] = 24515,
+ ["name"] = "Shadow Resistance",
+ ["rank"] = 3,
+ ["cost"] = 3600,
+ ["texture"] = "Interface/ICONS/spell_shadow_antishadow"
+ },
+ [12] = {
+ ["id"] = 19882,
+ ["name"] = "Track Giants",
+ ["rank"] = 0,
+ ["cost"] = 18000,
+ ["texture"] = "Interface/ICONS/ability_racial_avatar"
+ },
+ [13] = {
+ ["id"] = 1510,
+ ["name"] = "Volley",
+ ["rank"] = 1,
+ ["cost"] = 18000,
+ ["texture"] = "Interface/ICONS/ability_marksmanship"
+ },
+ },
+ [42] = {
+ [1] = {
+ ["id"] = 20909,
+ ["name"] = "Counterattack",
+ ["rank"] = 2,
+ ["cost"] = 1200,
+ ["texture"] = "Interface/ICONS/ability_warrior_challange",
+ ["talent"] = true
+ },
+ [2] = {
+ ["id"] = 4201,
+ ["name"] = "Great Stamina",
+ ["rank"] = 7,
+ ["cost"] = 4800,
+ ["texture"] = "Interface/ICONS/spell_nature_unyeildingstamina"
+ },
+ [3] = {
+ ["id"] = 14289,
+ ["name"] = "Multi-Shot",
+ ["rank"] = 3,
+ ["cost"] = 24000,
+ ["texture"] = "Interface/ICONS/ability_upgrademoonglaive"
+ },
+ [4] = {
+ ["id"] = 24561,
+ ["name"] = "Natural Armor",
+ ["rank"] = 7,
+ ["cost"] = 4800,
+ ["texture"] = "Interface/ICONS/spell_nature_spiritarmor"
+ },
+ [5] = {
+ ["id"] = 13553,
+ ["name"] = "Serpent Sting",
+ ["rank"] = 6,
+ ["cost"] = 24000,
+ ["texture"] = "Interface/ICONS/ability_hunter_quickshot"
+ },
+ },
+ [44] = {
+ [1] = {
+ ["id"] = 20902,
+ ["name"] = "Aimed Shot",
+ ["rank"] = 4,
+ ["cost"] = 1300,
+ ["texture"] = "Interface/ICONS/inv_spear_07",
+ ["talent"] = true
+ },
+ [2] = {
+ ["id"] = 14285,
+ ["name"] = "Arcane Shot",
+ ["rank"] = 6,
+ ["cost"] = 26000,
+ ["texture"] = "Interface/ICONS/ability_impalingbolt"
+ },
+ [3] = {
+ ["id"] = 14316,
+ ["name"] = "Explosive Trap",
+ ["rank"] = 2,
+ ["cost"] = 26000,
+ ["texture"] = "Interface/ICONS/spell_fire_selfdestruct"
+ },
+ [4] = {
+ ["id"] = 13542,
+ ["name"] = "Mend Pet",
+ ["rank"] = 5,
+ ["cost"] = 26000,
+ ["texture"] = "Interface/ICONS/ability_hunter_mendpet"
+ },
+ [5] = {
+ ["id"] = 14270,
+ ["name"] = "Mongoose Bite",
+ ["rank"] = 3,
+ ["cost"] = 26000,
+ ["texture"] = "Interface/ICONS/ability_hunter_swiftstrike"
+ },
+ },
+ [46] = {
+ [1] = {
+ ["id"] = 20043,
+ ["name"] = "Aspect of the Wild",
+ ["rank"] = 1,
+ ["cost"] = 28000,
+ ["texture"] = "Interface/ICONS/spell_nature_protectionformnature"
+ },
+ [2] = {
+ ["id"] = 14304,
+ ["name"] = "Immolation Trap",
+ ["rank"] = 4,
+ ["cost"] = 28000,
+ ["texture"] = "Interface/ICONS/spell_fire_flameshock"
+ },
+ [3] = {
+ ["id"] = 14327,
+ ["name"] = "Scare Beast",
+ ["rank"] = 3,
+ ["cost"] = 28000,
+ ["texture"] = "Interface/ICONS/ability_druid_cower"
+ },
+ [4] = {
+ ["id"] = 14279,
+ ["name"] = "Viper Sting",
+ ["rank"] = 2,
+ ["cost"] = 28000,
+ ["texture"] = "Interface/ICONS/ability_hunter_aimedshot"
+ },
+ },
+ [48] = {
+ [1] = {
+ ["id"] = 14321,
+ ["name"] = "Aspect of the Hawk",
+ ["rank"] = 5,
+ ["cost"] = 32000,
+ ["texture"] = "Interface/ICONS/spell_nature_ravenform"
+ },
+ [2] = {
+ ["id"] = 14273,
+ ["name"] = "Disengage",
+ ["rank"] = 3,
+ ["cost"] = 32000,
+ ["texture"] = "Interface/ICONS/ability_rogue_feint"
+ },
+ [3] = {
+ ["id"] = 4202,
+ ["name"] = "Great Stamina",
+ ["rank"] = 8,
+ ["cost"] = 6400,
+ ["texture"] = "Interface/ICONS/spell_nature_unyeildingstamina"
+ },
+ [4] = {
+ ["id"] = 24562,
+ ["name"] = "Natural Armor",
+ ["rank"] = 8,
+ ["cost"] = 6400,
+ ["texture"] = "Interface/ICONS/spell_nature_spiritarmor"
+ },
+ [5] = {
+ ["id"] = 14265,
+ ["name"] = "Raptor Strike",
+ ["rank"] = 7,
+ ["cost"] = 32000,
+ ["texture"] = "Interface/ICONS/ability_meleedamage"
+ },
+ },
+ [50] = {
+ [1] = {
+ ["id"] = 20905,
+ ["name"] = "Trueshot Aura",
+ ["rank"] = 2,
+ ["cost"] = 1800,
+ ["texture"] = "Interface/ICONS/ability_trueshot",
+ ["talent"] = true
+ },
+ [2] = {
+ ["id"] = 24132,
+ ["name"] = "Wyvern Sting",
+ ["rank"] = 2,
+ ["cost"] = 1800,
+ ["texture"] = "Interface/ICONS/inv_spear_02",
+ ["talent"] = true
+ },
+ [3] = {
+ ["id"] = 24510,
+ ["name"] = "Arcane Resistance",
+ ["rank"] = 4,
+ ["cost"] = 7200,
+ ["texture"] = "Interface/ICONS/spell_nature_starfall"
+ },
+ [4] = {
+ ["id"] = 15631,
+ ["name"] = "Distracting Shot",
+ ["rank"] = 5,
+ ["cost"] = 36000,
+ ["texture"] = "Interface/ICONS/spell_arcane_blink"
+ },
+ [5] = {
+ ["id"] = 24464,
+ ["name"] = "Fire Resistance",
+ ["rank"] = 4,
+ ["cost"] = 7200,
+ ["texture"] = "Interface/ICONS/spell_fire_firearmor"
+ },
+ [6] = {
+ ["id"] = 24478,
+ ["name"] = "Frost Resistance",
+ ["rank"] = 4,
+ ["cost"] = 7200,
+ ["texture"] = "Interface/ICONS/spell_frost_frostward"
+ },
+ [7] = {
+ ["id"] = 14926,
+ ["name"] = "Growl",
+ ["rank"] = 6,
+ ["cost"] = 7200,
+ ["texture"] = "Interface/ICONS/ability_physical_taunt"
+ },
+ [8] = {
+ ["id"] = 24513,
+ ["name"] = "Nature Resistance",
+ ["rank"] = 4,
+ ["cost"] = 7200,
+ ["texture"] = "Interface/ICONS/spell_nature_resistnature"
+ },
+ [9] = {
+ ["id"] = 13554,
+ ["name"] = "Serpent Sting",
+ ["rank"] = 7,
+ ["cost"] = 36000,
+ ["texture"] = "Interface/ICONS/ability_hunter_quickshot"
+ },
+ [10] = {
+ ["id"] = 24516,
+ ["name"] = "Shadow Resistance",
+ ["rank"] = 4,
+ ["cost"] = 7200,
+ ["texture"] = "Interface/ICONS/spell_shadow_antishadow"
+ },
+ [11] = {
+ ["id"] = 19879,
+ ["name"] = "Track Dragonkin",
+ ["rank"] = 0,
+ ["cost"] = 36000,
+ ["texture"] = "Interface/ICONS/inv_misc_head_dragon_01"
+ },
+ [12] = {
+ ["id"] = 14294,
+ ["name"] = "Volley",
+ ["rank"] = 2,
+ ["cost"] = 36000,
+ ["texture"] = "Interface/ICONS/ability_marksmanship"
+ },
+ },
+ [52] = {
+ [1] = {
+ ["id"] = 20903,
+ ["name"] = "Aimed Shot",
+ ["rank"] = 5,
+ ["cost"] = 2000,
+ ["texture"] = "Interface/ICONS/inv_spear_07",
+ ["talent"] = true
+ },
+ [2] = {
+ ["id"] = 14286,
+ ["name"] = "Arcane Shot",
+ ["rank"] = 7,
+ ["cost"] = 40000,
+ ["texture"] = "Interface/ICONS/ability_impalingbolt"
+ },
+ [3] = {
+ ["id"] = 13543,
+ ["name"] = "Mend Pet",
+ ["rank"] = 6,
+ ["cost"] = 40000,
+ ["texture"] = "Interface/ICONS/ability_hunter_mendpet"
+ },
+ },
+ [54] = {
+ [1] = {
+ ["id"] = 20910,
+ ["name"] = "Counterattack",
+ ["rank"] = 3,
+ ["cost"] = 2100,
+ ["texture"] = "Interface/ICONS/ability_warrior_challange",
+ ["talent"] = true
+ },
+ [2] = {
+ ["id"] = 14317,
+ ["name"] = "Explosive Trap",
+ ["rank"] = 3,
+ ["cost"] = 42000,
+ ["texture"] = "Interface/ICONS/spell_fire_selfdestruct"
+ },
+ [3] = {
+ ["id"] = 5048,
+ ["name"] = "Great Stamina",
+ ["rank"] = 9,
+ ["cost"] = 8400,
+ ["texture"] = "Interface/ICONS/spell_nature_unyeildingstamina"
+ },
+ [4] = {
+ ["id"] = 14290,
+ ["name"] = "Multi-Shot",
+ ["rank"] = 4,
+ ["cost"] = 42000,
+ ["texture"] = "Interface/ICONS/ability_upgrademoonglaive"
+ },
+ [5] = {
+ ["id"] = 24631,
+ ["name"] = "Natural Armor",
+ ["rank"] = 9,
+ ["cost"] = 8400,
+ ["texture"] = "Interface/ICONS/spell_nature_spiritarmor"
+ },
+ },
+ [56] = {
+ [1] = {
+ ["id"] = 20190,
+ ["name"] = "Aspect of the Wild",
+ ["rank"] = 2,
+ ["cost"] = 46000,
+ ["texture"] = "Interface/ICONS/spell_nature_protectionformnature"
+ },
+ [2] = {
+ ["id"] = 14305,
+ ["name"] = "Immolation Trap",
+ ["rank"] = 5,
+ ["cost"] = 46000,
+ ["texture"] = "Interface/ICONS/spell_fire_flameshock"
+ },
+ [3] = {
+ ["id"] = 14266,
+ ["name"] = "Raptor Strike",
+ ["rank"] = 8,
+ ["cost"] = 46000,
+ ["texture"] = "Interface/ICONS/ability_meleedamage"
+ },
+ [4] = {
+ ["id"] = 14280,
+ ["name"] = "Viper Sting",
+ ["rank"] = 3,
+ ["cost"] = 46000,
+ ["texture"] = "Interface/ICONS/ability_hunter_aimedshot"
+ },
+ },
+ [58] = {
+ [1] = {
+ ["id"] = 14322,
+ ["name"] = "Aspect of the Hawk",
+ ["rank"] = 6,
+ ["cost"] = 48000,
+ ["texture"] = "Interface/ICONS/spell_nature_ravenform"
+ },
+ [2] = {
+ ["id"] = 14325,
+ ["name"] = "Hunter's Mark",
+ ["rank"] = 4,
+ ["cost"] = 48000,
+ ["texture"] = "Interface/ICONS/ability_hunter_snipershot"
+ },
+ [3] = {
+ ["id"] = 14271,
+ ["name"] = "Mongoose Bite",
+ ["rank"] = 4,
+ ["cost"] = 48000,
+ ["texture"] = "Interface/ICONS/ability_hunter_swiftstrike"
+ },
+ [4] = {
+ ["id"] = 13555,
+ ["name"] = "Serpent Sting",
+ ["rank"] = 8,
+ ["cost"] = 48000,
+ ["texture"] = "Interface/ICONS/ability_hunter_quickshot"
+ },
+ [5] = {
+ ["id"] = 14295,
+ ["name"] = "Volley",
+ ["rank"] = 3,
+ ["cost"] = 48000,
+ ["texture"] = "Interface/ICONS/ability_marksmanship"
+ },
+ },
+ [60] = {
+ [1] = {
+ ["id"] = 20904,
+ ["name"] = "Aimed Shot",
+ ["rank"] = 6,
+ ["cost"] = 2500,
+ ["texture"] = "Interface/ICONS/inv_spear_07",
+ ["talent"] = true
+ },
+ [2] = {
+ ["id"] = 20906,
+ ["name"] = "Trueshot Aura",
+ ["rank"] = 3,
+ ["cost"] = 2500,
+ ["texture"] = "Interface/ICONS/ability_trueshot",
+ ["talent"] = true
+ },
+ [3] = {
+ ["id"] = 24133,
+ ["name"] = "Wyvern Sting",
+ ["rank"] = 3,
+ ["cost"] = 2500,
+ ["texture"] = "Interface/ICONS/inv_spear_02",
+ ["talent"] = true
+ },
+ [4] = {
+ ["id"] = 14287,
+ ["name"] = "Arcane Shot",
+ ["rank"] = 8,
+ ["cost"] = 50000,
+ ["texture"] = "Interface/ICONS/ability_impalingbolt"
+ },
+ [5] = {
+ ["id"] = 25296,
+ ["name"] = "Aspect of the Hawk",
+ ["rank"] = 7,
+ ["cost"] = 50000,
+ ["texture"] = "Interface/ICONS/spell_nature_ravenform"
+ },
+ [6] = {
+ ["id"] = 15632,
+ ["name"] = "Distracting Shot",
+ ["rank"] = 6,
+ ["cost"] = 50000,
+ ["texture"] = "Interface/ICONS/spell_arcane_blink"
+ },
+ [7] = {
+ ["id"] = 14311,
+ ["name"] = "Freezing Trap",
+ ["rank"] = 3,
+ ["cost"] = 50000,
+ ["texture"] = "Interface/ICONS/spell_frost_chainsofice"
+ },
+ [8] = {
+ ["id"] = 5049,
+ ["name"] = "Great Stamina",
+ ["rank"] = 10,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/spell_nature_unyeildingstamina"
+ },
+ [9] = {
+ ["id"] = 14927,
+ ["name"] = "Growl",
+ ["rank"] = 7,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/ability_physical_taunt"
+ },
+ [10] = {
+ ["id"] = 13544,
+ ["name"] = "Mend Pet",
+ ["rank"] = 7,
+ ["cost"] = 50000,
+ ["texture"] = "Interface/ICONS/ability_hunter_mendpet"
+ },
+ [11] = {
+ ["id"] = 25294,
+ ["name"] = "Multi-Shot",
+ ["rank"] = 5,
+ ["cost"] = 50000,
+ ["texture"] = "Interface/ICONS/ability_upgrademoonglaive"
+ },
+ [12] = {
+ ["id"] = 24632,
+ ["name"] = "Natural Armor",
+ ["rank"] = 10,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/spell_nature_spiritarmor"
+ },
+ [13] = {
+ ["id"] = 25295,
+ ["name"] = "Serpent Sting",
+ ["rank"] = 9,
+ ["cost"] = 50000,
+ ["texture"] = "Interface/ICONS/ability_hunter_quickshot"
+ },
+ [14] = {
+ ["id"] = 19801,
+ ["name"] = "Tranquilizing Shot",
+ ["rank"] = 0,
+ ["cost"] = 50000,
+ ["texture"] = "Interface/ICONS/spell_nature_drowsy"
+ },
+ [15] = {
+ ["id"] = 14268,
+ ["name"] = "Wing Clip",
+ ["rank"] = 3,
+ ["cost"] = 50000,
+ ["texture"] = "Interface/ICONS/ability_rogue_trip"
+ },
+ },
+ [61] = {
+ [1] = {
+ ["id"] = 27025,
+ ["name"] = "Explosive Trap",
+ ["rank"] = 4,
+ ["cost"] = 68000,
+ ["texture"] = "Interface/ICONS/spell_fire_selfdestruct"
+ },
+ },
+ [62] = {
+ [1] = {
+ ["id"] = 27015,
+ ["name"] = "Disengage",
+ ["rank"] = 4,
+ ["cost"] = 77000,
+ ["texture"] = "Interface/ICONS/ability_rogue_feint"
+ },
+ [2] = {
+ ["id"] = 34120,
+ ["name"] = "Steady Shot",
+ ["rank"] = 1,
+ ["cost"] = 77000,
+ ["texture"] = "Interface/ICONS/ability_hunter_steadyshot"
+ },
+ },
+ [63] = {
+ [1] = {
+ ["id"] = 27014,
+ ["name"] = "Raptor Strike",
+ ["rank"] = 9,
+ ["cost"] = 87000,
+ ["texture"] = "Interface/ICONS/ability_meleedamage"
+ },
+ },
+ [64] = {
+ [1] = {
+ ["id"] = 34074,
+ ["name"] = "Aspect of the Viper",
+ ["rank"] = 0,
+ ["cost"] = 100000,
+ ["texture"] = "Interface/ICONS/ability_hunter_aspectoftheviper"
+ },
+ },
+ [65] = {
+ [1] = {
+ ["id"] = 27023,
+ ["name"] = "Immolation Trap",
+ ["rank"] = 6,
+ ["cost"] = 110000,
+ ["texture"] = "Interface/ICONS/spell_fire_flameshock"
+ },
+ },
+ [66] = {
+ [1] = {
+ ["id"] = 27067,
+ ["name"] = "Counterattack",
+ ["rank"] = 4,
+ ["cost"] = 2500,
+ ["texture"] = "Interface/ICONS/ability_warrior_challange",
+ ["talent"] = true
+ },
+ [2] = {
+ ["id"] = 34026,
+ ["name"] = "Kill Command",
+ ["rank"] = 1,
+ ["cost"] = 120000,
+ ["texture"] = "Interface/ICONS/ability_hunter_killcommand"
+ },
+ [3] = {
+ ["id"] = 27018,
+ ["name"] = "Viper Sting",
+ ["rank"] = 4,
+ ["cost"] = 120000,
+ ["texture"] = "Interface/ICONS/ability_hunter_aimedshot"
+ },
+ },
+ [67] = {
+ [1] = {
+ ["id"] = 27021,
+ ["name"] = "Multi-Shot",
+ ["rank"] = 6,
+ ["cost"] = 140000,
+ ["texture"] = "Interface/ICONS/ability_upgrademoonglaive"
+ },
+ [2] = {
+ ["id"] = 27016,
+ ["name"] = "Serpent Sting",
+ ["rank"] = 10,
+ ["cost"] = 140000,
+ ["texture"] = "Interface/ICONS/ability_hunter_quickshot"
+ },
+ [3] = {
+ ["id"] = 27022,
+ ["name"] = "Volley",
+ ["rank"] = 4,
+ ["cost"] = 140000,
+ ["texture"] = "Interface/ICONS/ability_marksmanship"
+ },
+ },
+ [68] = {
+ [1] = {
+ ["id"] = 27044,
+ ["name"] = "Aspect of the Hawk",
+ ["rank"] = 8,
+ ["cost"] = 150000,
+ ["texture"] = "Interface/ICONS/spell_nature_ravenform"
+ },
+ [2] = {
+ ["id"] = 27045,
+ ["name"] = "Aspect of the Wild",
+ ["rank"] = 3,
+ ["cost"] = 150000,
+ ["texture"] = "Interface/ICONS/spell_nature_protectionformnature"
+ },
+ [3] = {
+ ["id"] = 27046,
+ ["name"] = "Mend Pet",
+ ["rank"] = 8,
+ ["cost"] = 150000,
+ ["texture"] = "Interface/ICONS/ability_hunter_mendpet"
+ },
+ [4] = {
+ ["id"] = 34600,
+ ["name"] = "Snake Trap",
+ ["rank"] = 0,
+ ["cost"] = 150000,
+ ["texture"] = "Interface/ICONS/ability_hunter_snaketrap"
+ },
+ },
+ [69] = {
+ [1] = {
+ ["id"] = 27019,
+ ["name"] = "Arcane Shot",
+ ["rank"] = 9,
+ ["cost"] = 170000,
+ ["texture"] = "Interface/ICONS/ability_impalingbolt"
+ },
+ [2] = {
+ ["id"] = 27020,
+ ["name"] = "Distracting Shot",
+ ["rank"] = 7,
+ ["cost"] = 170000,
+ ["texture"] = "Interface/ICONS/spell_arcane_blink"
+ },
+ },
+ [70] = {
+ [1] = {
+ ["id"] = 27065,
+ ["name"] = "Aimed Shot",
+ ["rank"] = 7,
+ ["cost"] = 2700,
+ ["texture"] = "Interface/ICONS/inv_spear_07",
+ ["talent"] = true
+ },
+ [2] = {
+ ["id"] = 27066,
+ ["name"] = "Trueshot Aura",
+ ["rank"] = 4,
+ ["cost"] = 2700,
+ ["texture"] = "Interface/ICONS/ability_trueshot",
+ ["talent"] = true
+ },
+ [3] = {
+ ["id"] = 27068,
+ ["name"] = "Wyvern Sting",
+ ["rank"] = 4,
+ ["cost"] = 2700,
+ ["texture"] = "Interface/ICONS/inv_spear_02",
+ ["talent"] = true
+ },
+ [4] = {
+ ["id"] = 34477,
+ ["name"] = "Misdirection",
+ ["rank"] = 0,
+ ["cost"] = 190000,
+ ["texture"] = "Interface/ICONS/ability_hunter_misdirection"
+ },
+ [5] = {
+ ["id"] = 36916,
+ ["name"] = "Mongoose Bite",
+ ["rank"] = 5,
+ ["cost"] = 190000,
+ ["texture"] = "Interface/ICONS/ability_hunter_swiftstrike"
+ },
+ },
+}
diff --git a/Database/classes/HunterPets.lua b/Database/classes/HunterPets.lua
new file mode 100644
index 0000000..e049370
--- /dev/null
+++ b/Database/classes/HunterPets.lua
@@ -0,0 +1,1026 @@
+local _, FieldGuide = ...
+
+FieldGuide.HUNTER_PETS = {
+ [1] = {
+ [1] = {
+ ["id"] = 2649,
+ ["name"] = "Growl",
+ ["rank"] = 1,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_physical_taunt"
+ },
+ [2] = {
+ ["id"] = 17253,
+ ["name"] = "Bite",
+ ["rank"] = 1,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_racial_cannibalize"
+ },
+ [3] = {
+ ["id"] = 35290,
+ ["name"] = "Gore",
+ ["rank"] = 1,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_weapon_shortblade_28"
+ },
+ [4] = {
+ ["id"] = 34889,
+ ["name"] = "Fire Breath",
+ ["rank"] = 1,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_fire_burnout"
+ },
+ [5] = {
+ ["id"] = 7371,
+ ["name"] = "Charge",
+ ["rank"] = 1,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_hunter_pet_boar"
+ },
+ [6] = {
+ ["id"] = 16827,
+ ["name"] = "Claw",
+ ["rank"] = 1,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_druid_rake"
+ },
+ [7] = {
+ ["id"] = 24545,
+ ["name"] = "Natural Armor",
+ ["rank"] = 1,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_spiritarmor"
+ },
+ [8] = {
+ ["id"] = 4187,
+ ["name"] = "Great Stamina",
+ ["rank"] = 1,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_unyeildingstamina"
+ },
+ [9] = {
+ ["id"] = 24844,
+ ["name"] = "Lightning Breath",
+ ["rank"] = 1,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_lightning"
+ },
+ },
+ [5] = {
+ [1] = {
+ ["id"] = 1742,
+ ["name"] = "Cower",
+ ["rank"] = 1,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_druid_cower"
+ },
+ },
+ [8] = {
+ [1] = {
+ ["id"] = 24423,
+ ["name"] = "Screech",
+ ["rank"] = 1,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_hunter_pet_bat"
+ },
+ [2] = {
+ ["id"] = 17255,
+ ["name"] = "Bite",
+ ["rank"] = 2,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_racial_cannibalize"
+ },
+ [3] = {
+ ["id"] = 24640,
+ ["name"] = "Scorpid Poison",
+ ["rank"] = 1,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_poisonsting"
+ },
+ [4] = {
+ ["id"] = 16828,
+ ["name"] = "Claw",
+ ["rank"] = 2,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_druid_rake"
+ },
+ [5] = {
+ ["id"] = 35291,
+ ["name"] = "Gore",
+ ["rank"] = 2,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_weapon_shortblade_28"
+ },
+ },
+ [10] = {
+ [1] = {
+ ["id"] = 14916,
+ ["name"] = "Growl",
+ ["rank"] = 2,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_physical_taunt"
+ },
+ [2] = {
+ ["id"] = 24604,
+ ["name"] = "Furious Howl",
+ ["rank"] = 1,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_hunter_pet_wolf"
+ },
+ },
+ [12] = {
+ [1] = {
+ ["id"] = 26177,
+ ["name"] = "Charge",
+ ["rank"] = 2,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_hunter_pet_boar"
+ },
+ [2] = {
+ ["id"] = 4188,
+ ["name"] = "Great Stamina",
+ ["rank"] = 2,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_unyeildingstamina"
+ },
+ [3] = {
+ ["id"] = 24549,
+ ["name"] = "Natural Armor",
+ ["rank"] = 2,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_spiritarmor"
+ },
+ [4] = {
+ ["id"] = 25008,
+ ["name"] = "Lightning Breath",
+ ["rank"] = 2,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_lightning"
+ },
+ },
+ [15] = {
+ [1] = {
+ ["id"] = 1753,
+ ["name"] = "Cower",
+ ["rank"] = 2,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_druid_cower"
+ },
+ [2] = {
+ ["id"] = 35387,
+ ["name"] = "Poison Spit",
+ ["rank"] = 1,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_corrosivebreath"
+ },
+ },
+ [16] = {
+ [1] = {
+ ["id"] = 35292,
+ ["name"] = "Gore",
+ ["rank"] = 3,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_weapon_shortblade_28"
+ },
+ [2] = {
+ ["id"] = 17256,
+ ["name"] = "Bite",
+ ["rank"] = 3,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_racial_cannibalize"
+ },
+ [3] = {
+ ["id"] = 16829,
+ ["name"] = "Claw",
+ ["rank"] = 3,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_druid_rake"
+ },
+ },
+ [18] = {
+ [1] = {
+ ["id"] = 4189,
+ ["name"] = "Great Stamina",
+ ["rank"] = 3,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_unyeildingstamina"
+ },
+ [2] = {
+ ["id"] = 24550,
+ ["name"] = "Natural Armor",
+ ["rank"] = 3,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_spiritarmor"
+ },
+ },
+ [20] = {
+ [1] = {
+ ["id"] = 24493,
+ ["name"] = "Arcane Resistance",
+ ["rank"] = 1,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_starfall"
+ },
+ [2] = {
+ ["id"] = 26064,
+ ["name"] = "Shell Shield",
+ ["rank"] = 1,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_hunter_pet_turtle"
+ },
+ [3] = {
+ ["id"] = 14917,
+ ["name"] = "Growl",
+ ["rank"] = 3,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_physical_taunt"
+ },
+ [4] = {
+ ["id"] = 24488,
+ ["name"] = "Shadow Resistance",
+ ["rank"] = 1,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_antishadow"
+ },
+ [5] = {
+ ["id"] = 23992,
+ ["name"] = "Fire Resistance",
+ ["rank"] = 1,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_fire_firearmor"
+ },
+ [6] = {
+ ["id"] = 24446,
+ ["name"] = "Frost Resistance",
+ ["rank"] = 1,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_frost_frostward"
+ },
+ [7] = {
+ ["id"] = 24492,
+ ["name"] = "Nature Resistance",
+ ["rank"] = 1,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_resistnature"
+ },
+ },
+ [24] = {
+ [1] = {
+ ["id"] = 16830,
+ ["name"] = "Claw",
+ ["rank"] = 4,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_druid_rake"
+ },
+ [2] = {
+ ["id"] = 35293,
+ ["name"] = "Gore",
+ ["rank"] = 4,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_weapon_shortblade_28"
+ },
+ [3] = {
+ ["id"] = 17257,
+ ["name"] = "Bite",
+ ["rank"] = 4,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_racial_cannibalize"
+ },
+ [4] = {
+ ["id"] = 25009,
+ ["name"] = "Lightning Breath",
+ ["rank"] = 3,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_lightning"
+ },
+ [5] = {
+ ["id"] = 4190,
+ ["name"] = "Great Stamina",
+ ["rank"] = 4,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_unyeildingstamina"
+ },
+ [6] = {
+ ["id"] = 26178,
+ ["name"] = "Charge",
+ ["rank"] = 3,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_hunter_pet_boar"
+ },
+ [7] = {
+ ["id"] = 24605,
+ ["name"] = "Furious Howl",
+ ["rank"] = 2,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_hunter_pet_wolf"
+ },
+ [8] = {
+ ["id"] = 24583,
+ ["name"] = "Scorpid Poison",
+ ["rank"] = 2,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_poisonsting"
+ },
+ [9] = {
+ ["id"] = 24577,
+ ["name"] = "Screech",
+ ["rank"] = 2,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_hunter_pet_bat"
+ },
+ [10] = {
+ ["id"] = 24551,
+ ["name"] = "Natural Armor",
+ ["rank"] = 4,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_spiritarmor"
+ },
+ },
+ [25] = {
+ [1] = {
+ ["id"] = 1754,
+ ["name"] = "Cower",
+ ["rank"] = 3,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_druid_cower"
+ },
+ },
+ [30] = {
+ [1] = {
+ ["id"] = 25076,
+ ["name"] = "Cobra Reflexes",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_guardianward"
+ },
+ [2] = {
+ ["id"] = 23099,
+ ["name"] = "Dash",
+ ["rank"] = 1,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_druid_dash"
+ },
+ [3] = {
+ ["id"] = 23145,
+ ["name"] = "Dive",
+ ["rank"] = 1,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_burningspirit"
+ },
+ [4] = {
+ ["id"] = 35694,
+ ["name"] = "Avoidance",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_magic_lesserinvisibilty"
+ },
+ [5] = {
+ ["id"] = 24450,
+ ["name"] = "Prowl",
+ ["rank"] = 1,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_druid_supriseattack"
+ },
+ [6] = {
+ ["id"] = 4191,
+ ["name"] = "Great Stamina",
+ ["rank"] = 5,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_unyeildingstamina"
+ },
+ [7] = {
+ ["id"] = 14918,
+ ["name"] = "Growl",
+ ["rank"] = 4,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_physical_taunt"
+ },
+ [8] = {
+ ["id"] = 26090,
+ ["name"] = "Thunderstomp",
+ ["rank"] = 1,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_hunter_pet_gorilla"
+ },
+ [9] = {
+ ["id"] = 24505,
+ ["name"] = "Shadow Resistance",
+ ["rank"] = 2,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_antishadow"
+ },
+ [10] = {
+ ["id"] = 24447,
+ ["name"] = "Frost Resistance",
+ ["rank"] = 2,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_frost_frostward"
+ },
+ [11] = {
+ ["id"] = 24552,
+ ["name"] = "Natural Armor",
+ ["rank"] = 5,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_spiritarmor"
+ },
+ [12] = {
+ ["id"] = 24502,
+ ["name"] = "Nature Resistance",
+ ["rank"] = 2,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_resistnature"
+ },
+ [13] = {
+ ["id"] = 24439,
+ ["name"] = "Fire Resistance",
+ ["rank"] = 2,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_fire_firearmor"
+ },
+ [14] = {
+ ["id"] = 24497,
+ ["name"] = "Arcane Resistance",
+ ["rank"] = 2,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_starfall"
+ },
+ },
+ [32] = {
+ [1] = {
+ ["id"] = 17258,
+ ["name"] = "Bite",
+ ["rank"] = 5,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_racial_cannibalize"
+ },
+ [2] = {
+ ["id"] = 16831,
+ ["name"] = "Claw",
+ ["rank"] = 5,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_druid_rake"
+ },
+ [3] = {
+ ["id"] = 35294,
+ ["name"] = "Gore",
+ ["rank"] = 5,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_weapon_shortblade_28"
+ },
+ },
+ [35] = {
+ [1] = {
+ ["id"] = 1755,
+ ["name"] = "Cower",
+ ["rank"] = 4,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_druid_cower"
+ },
+ },
+ [36] = {
+ [1] = {
+ ["id"] = 4192,
+ ["name"] = "Great Stamina",
+ ["rank"] = 6,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_unyeildingstamina"
+ },
+ [2] = {
+ ["id"] = 24553,
+ ["name"] = "Natural Armor",
+ ["rank"] = 6,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_spiritarmor"
+ },
+ [3] = {
+ ["id"] = 25010,
+ ["name"] = "Lightning Breath",
+ ["rank"] = 4,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_lightning"
+ },
+ [4] = {
+ ["id"] = 26179,
+ ["name"] = "Charge",
+ ["rank"] = 4,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_hunter_pet_boar"
+ },
+ },
+ [40] = {
+ [1] = {
+ ["id"] = 23109,
+ ["name"] = "Dash",
+ ["rank"] = 2,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_druid_dash"
+ },
+ [2] = {
+ ["id"] = 35295,
+ ["name"] = "Gore",
+ ["rank"] = 6,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_weapon_shortblade_28"
+ },
+ [3] = {
+ ["id"] = 14919,
+ ["name"] = "Growl",
+ ["rank"] = 5,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_physical_taunt"
+ },
+ [4] = {
+ ["id"] = 23147,
+ ["name"] = "Dive",
+ ["rank"] = 2,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_burningspirit"
+ },
+ [5] = {
+ ["id"] = 17259,
+ ["name"] = "Bite",
+ ["rank"] = 6,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_racial_cannibalize"
+ },
+ [6] = {
+ ["id"] = 16832,
+ ["name"] = "Claw",
+ ["rank"] = 6,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_druid_rake"
+ },
+ [7] = {
+ ["id"] = 24444,
+ ["name"] = "Fire Resistance",
+ ["rank"] = 3,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_fire_firearmor"
+ },
+ [8] = {
+ ["id"] = 24506,
+ ["name"] = "Shadow Resistance",
+ ["rank"] = 3,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_antishadow"
+ },
+ [9] = {
+ ["id"] = 24603,
+ ["name"] = "Furious Howl",
+ ["rank"] = 3,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_hunter_pet_wolf"
+ },
+ [10] = {
+ ["id"] = 26187,
+ ["name"] = "Thunderstomp",
+ ["rank"] = 2,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_hunter_pet_gorilla"
+ },
+ [11] = {
+ ["id"] = 24452,
+ ["name"] = "Prowl",
+ ["rank"] = 2,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_druid_supriseattack"
+ },
+ [12] = {
+ ["id"] = 24503,
+ ["name"] = "Nature Resistance",
+ ["rank"] = 3,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_resistnature"
+ },
+ [13] = {
+ ["id"] = 24500,
+ ["name"] = "Arcane Resistance",
+ ["rank"] = 3,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_starfall"
+ },
+ [14] = {
+ ["id"] = 24448,
+ ["name"] = "Frost Resistance",
+ ["rank"] = 3,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_frost_frostward"
+ },
+ [15] = {
+ ["id"] = 24586,
+ ["name"] = "Scorpid Poison",
+ ["rank"] = 3,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_poisonsting"
+ },
+ },
+ [42] = {
+ [1] = {
+ ["id"] = 4193,
+ ["name"] = "Great Stamina",
+ ["rank"] = 7,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_unyeildingstamina"
+ },
+ [2] = {
+ ["id"] = 24554,
+ ["name"] = "Natural Armor",
+ ["rank"] = 7,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_spiritarmor"
+ },
+ },
+ [45] = {
+ [1] = {
+ ["id"] = 1756,
+ ["name"] = "Cower",
+ ["rank"] = 5,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_druid_cower"
+ },
+ [2] = {
+ ["id"] = 35389,
+ ["name"] = "Poison Spit",
+ ["rank"] = 2,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_corrosivebreath"
+ },
+ },
+ [48] = {
+ [1] = {
+ ["id"] = 17260,
+ ["name"] = "Bite",
+ ["rank"] = 7,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_racial_cannibalize"
+ },
+ [2] = {
+ ["id"] = 3010,
+ ["name"] = "Claw",
+ ["rank"] = 7,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_druid_rake"
+ },
+ [3] = {
+ ["id"] = 35296,
+ ["name"] = "Gore",
+ ["rank"] = 7,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_weapon_shortblade_28"
+ },
+ [4] = {
+ ["id"] = 4194,
+ ["name"] = "Great Stamina",
+ ["rank"] = 8,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_unyeildingstamina"
+ },
+ [5] = {
+ ["id"] = 24578,
+ ["name"] = "Screech",
+ ["rank"] = 3,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_hunter_pet_bat"
+ },
+ [6] = {
+ ["id"] = 24555,
+ ["name"] = "Natural Armor",
+ ["rank"] = 8,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_spiritarmor"
+ },
+ [7] = {
+ ["id"] = 25011,
+ ["name"] = "Lightning Breath",
+ ["rank"] = 5,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_lightning"
+ },
+ [8] = {
+ ["id"] = 26201,
+ ["name"] = "Charge",
+ ["rank"] = 5,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_hunter_pet_boar"
+ },
+ },
+ [50] = {
+ [1] = {
+ ["id"] = 23110,
+ ["name"] = "Dash",
+ ["rank"] = 3,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_druid_dash"
+ },
+ [2] = {
+ ["id"] = 23148,
+ ["name"] = "Dive",
+ ["rank"] = 3,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_burningspirit"
+ },
+ [3] = {
+ ["id"] = 24453,
+ ["name"] = "Prowl",
+ ["rank"] = 3,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_druid_supriseattack"
+ },
+ [4] = {
+ ["id"] = 26188,
+ ["name"] = "Thunderstomp",
+ ["rank"] = 3,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_hunter_pet_gorilla"
+ },
+ [5] = {
+ ["id"] = 14920,
+ ["name"] = "Growl",
+ ["rank"] = 6,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_physical_taunt"
+ },
+ [6] = {
+ ["id"] = 24501,
+ ["name"] = "Arcane Resistance",
+ ["rank"] = 4,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_starfall"
+ },
+ [7] = {
+ ["id"] = 24504,
+ ["name"] = "Nature Resistance",
+ ["rank"] = 4,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_resistnature"
+ },
+ [8] = {
+ ["id"] = 24507,
+ ["name"] = "Shadow Resistance",
+ ["rank"] = 4,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_antishadow"
+ },
+ [9] = {
+ ["id"] = 24445,
+ ["name"] = "Fire Resistance",
+ ["rank"] = 4,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_fire_firearmor"
+ },
+ [10] = {
+ ["id"] = 24449,
+ ["name"] = "Frost Resistance",
+ ["rank"] = 4,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_frost_frostward"
+ },
+ },
+ [54] = {
+ [1] = {
+ ["id"] = 5041,
+ ["name"] = "Great Stamina",
+ ["rank"] = 9,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_unyeildingstamina"
+ },
+ [2] = {
+ ["id"] = 24629,
+ ["name"] = "Natural Armor",
+ ["rank"] = 9,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_spiritarmor"
+ },
+ },
+ [55] = {
+ [1] = {
+ ["id"] = 16697,
+ ["name"] = "Cower",
+ ["rank"] = 6,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_druid_cower"
+ },
+ },
+ [56] = {
+ [1] = {
+ ["id"] = 24597,
+ ["name"] = "Furious Howl",
+ ["rank"] = 4,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_hunter_pet_wolf"
+ },
+ [2] = {
+ ["id"] = 24579,
+ ["name"] = "Screech",
+ ["rank"] = 4,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_hunter_pet_bat"
+ },
+ [3] = {
+ ["id"] = 17261,
+ ["name"] = "Bite",
+ ["rank"] = 8,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_racial_cannibalize"
+ },
+ [4] = {
+ ["id"] = 35297,
+ ["name"] = "Gore",
+ ["rank"] = 8,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_weapon_shortblade_28"
+ },
+ [5] = {
+ ["id"] = 3009,
+ ["name"] = "Claw",
+ ["rank"] = 8,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_druid_rake"
+ },
+ [6] = {
+ ["id"] = 24587,
+ ["name"] = "Scorpid Poison",
+ ["rank"] = 4,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_poisonsting"
+ },
+ },
+ [60] = {
+ [1] = {
+ ["id"] = 25012,
+ ["name"] = "Lightning Breath",
+ ["rank"] = 6,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_lightning"
+ },
+ [2] = {
+ ["id"] = 27685,
+ ["name"] = "Charge",
+ ["rank"] = 6,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_hunter_pet_boar"
+ },
+ [3] = {
+ ["id"] = 14921,
+ ["name"] = "Growl",
+ ["rank"] = 7,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_physical_taunt"
+ },
+ [4] = {
+ ["id"] = 35323,
+ ["name"] = "Fire Breath",
+ ["rank"] = 2,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_fire_burnout"
+ },
+ [5] = {
+ ["id"] = 27063,
+ ["name"] = "Thunderstomp",
+ ["rank"] = 4,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_hunter_pet_gorilla"
+ },
+ [6] = {
+ ["id"] = 35698,
+ ["name"] = "Avoidance",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_magic_lesserinvisibilty"
+ },
+ [7] = {
+ ["id"] = 5042,
+ ["name"] = "Great Stamina",
+ ["rank"] = 10,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_unyeildingstamina"
+ },
+ [8] = {
+ ["id"] = 27054,
+ ["name"] = "Frost Resistance",
+ ["rank"] = 5,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_frost_frostward"
+ },
+ [9] = {
+ ["id"] = 27052,
+ ["name"] = "Arcane Resistance",
+ ["rank"] = 5,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_starfall"
+ },
+ [10] = {
+ ["id"] = 35392,
+ ["name"] = "Poison Spit",
+ ["rank"] = 3,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_corrosivebreath"
+ },
+ [11] = {
+ ["id"] = 27055,
+ ["name"] = "Nature Resistance",
+ ["rank"] = 5,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_resistnature"
+ },
+ [12] = {
+ ["id"] = 24630,
+ ["name"] = "Natural Armor",
+ ["rank"] = 10,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_spiritarmor"
+ },
+ [13] = {
+ ["id"] = 27053,
+ ["name"] = "Fire Resistance",
+ ["rank"] = 5,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_fire_firearmor"
+ },
+ [14] = {
+ ["id"] = 35346,
+ ["name"] = "Warp",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_arcane_arcane04"
+ },
+ [15] = {
+ ["id"] = 27056,
+ ["name"] = "Shadow Resistance",
+ ["rank"] = 5,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_antishadow"
+ },
+ },
+ [63] = {
+ [1] = {
+ ["id"] = 35298,
+ ["name"] = "Gore",
+ ["rank"] = 9,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_weapon_shortblade_28"
+ },
+ },
+ [64] = {
+ [1] = {
+ ["id"] = 27050,
+ ["name"] = "Bite",
+ ["rank"] = 9,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_racial_cannibalize"
+ },
+ [2] = {
+ ["id"] = 27049,
+ ["name"] = "Claw",
+ ["rank"] = 9,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_druid_rake"
+ },
+ [3] = {
+ ["id"] = 27051,
+ ["name"] = "Screech",
+ ["rank"] = 5,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_hunter_pet_bat"
+ },
+ [4] = {
+ ["id"] = 27060,
+ ["name"] = "Scorpid Poison",
+ ["rank"] = 5,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_poisonsting"
+ },
+ },
+ [65] = {
+ [1] = {
+ ["id"] = 27048,
+ ["name"] = "Cower",
+ ["rank"] = 7,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_druid_cower"
+ },
+ },
+ [70] = {
+ [1] = {
+ ["id"] = 27047,
+ ["name"] = "Growl",
+ ["rank"] = 8,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_physical_taunt"
+ },
+ [2] = {
+ ["id"] = 27061,
+ ["name"] = "Natural Armor",
+ ["rank"] = 11,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_spiritarmor"
+ },
+ [3] = {
+ ["id"] = 27062,
+ ["name"] = "Great Stamina",
+ ["rank"] = 11,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_unyeildingstamina"
+ },
+ },
+}
diff --git a/Database/Mage.lua b/Database/classes/Mage.lua
similarity index 54%
rename from Database/Mage.lua
rename to Database/classes/Mage.lua
index d503afb..637ebc6 100644
--- a/Database/Mage.lua
+++ b/Database/classes/Mage.lua
@@ -1,1197 +1,1736 @@
local _, FieldGuide = ...
FieldGuide.MAGE = {
- [2] = {
+ [1] = {
[1] = {
+ ["id"] = 5019,
+ ["name"] = "Shoot",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_shootwand"
+ },
+ [2] = {
+ ["id"] = 1459,
["name"] = "Arcane Intellect",
["rank"] = 1,
["cost"] = 10,
- ["texture"] = "Interface/ICONS/spell_holy_magicalsentry",
- ["id"] = 1459
+ ["texture"] = "Interface/ICONS/spell_holy_magicalsentry"
+ },
+ [3] = {
+ ["id"] = 133,
+ ["name"] = "Fireball",
+ ["rank"] = 1,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_fire_flamebolt"
+ },
+ [4] = {
+ ["id"] = 168,
+ ["name"] = "Frost Armor",
+ ["rank"] = 1,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_frost_frostarmor02"
},
},
[4] = {
[1] = {
+ ["id"] = 5504,
["name"] = "Conjure Water",
["rank"] = 1,
["cost"] = 100,
- ["texture"] = "Interface/ICONS/inv_drink_06",
- ["id"] = 5504
+ ["texture"] = "Interface/ICONS/inv_drink_06"
},
[2] = {
+ ["id"] = 116,
["name"] = "Frostbolt",
["rank"] = 1,
["cost"] = 100,
- ["texture"] = "Interface/ICONS/spell_frost_frostbolt02",
- ["id"] = 116
+ ["texture"] = "Interface/ICONS/spell_frost_frostbolt02"
},
},
[6] = {
[1] = {
+ ["id"] = 587,
["name"] = "Conjure Food",
["rank"] = 1,
["cost"] = 100,
- ["texture"] = "Interface/ICONS/inv_misc_food_10",
- ["id"] = 587
+ ["texture"] = "Interface/ICONS/inv_misc_food_10"
},
[2] = {
+ ["id"] = 2136,
["name"] = "Fire Blast",
["rank"] = 1,
["cost"] = 100,
- ["texture"] = "Interface/ICONS/spell_fire_fireball",
- ["id"] = 2136
+ ["texture"] = "Interface/ICONS/spell_fire_fireball"
},
[3] = {
+ ["id"] = 143,
["name"] = "Fireball",
["rank"] = 2,
["cost"] = 100,
- ["texture"] = "Interface/ICONS/spell_fire_flamebolt",
- ["id"] = 143
+ ["texture"] = "Interface/ICONS/spell_fire_flamebolt"
},
},
[8] = {
[1] = {
+ ["id"] = 5143,
["name"] = "Arcane Missiles",
["rank"] = 1,
["cost"] = 200,
- ["texture"] = "Interface/ICONS/spell_nature_starfall",
- ["id"] = 5143
+ ["texture"] = "Interface/ICONS/spell_nature_starfall"
},
[2] = {
- ["name"] = "Polymorph",
- ["rank"] = 1,
+ ["id"] = 205,
+ ["name"] = "Frostbolt",
+ ["rank"] = 2,
["cost"] = 200,
- ["texture"] = "Interface/ICONS/spell_nature_polymorph",
- ["id"] = 118
+ ["texture"] = "Interface/ICONS/spell_frost_frostbolt02"
},
[3] = {
- ["name"] = "Frostbolt",
- ["rank"] = 2,
+ ["id"] = 118,
+ ["name"] = "Polymorph",
+ ["rank"] = 1,
["cost"] = 200,
- ["texture"] = "Interface/ICONS/spell_frost_frostbolt02",
- ["id"] = 205
+ ["texture"] = "Interface/ICONS/spell_nature_polymorph"
},
},
[10] = {
[1] = {
+ ["id"] = 5505,
["name"] = "Conjure Water",
["rank"] = 2,
["cost"] = 400,
- ["texture"] = "Interface/ICONS/inv_drink_07",
- ["id"] = 5505
+ ["texture"] = "Interface/ICONS/inv_drink_07"
},
[2] = {
- ["name"] = "Frost Nova",
- ["rank"] = 1,
+ ["id"] = 7300,
+ ["name"] = "Frost Armor",
+ ["rank"] = 2,
["cost"] = 400,
- ["texture"] = "Interface/ICONS/spell_frost_frostnova",
- ["id"] = 122
+ ["texture"] = "Interface/ICONS/spell_frost_frostarmor02"
},
[3] = {
- ["name"] = "Frost Armor",
- ["rank"] = 2,
+ ["id"] = 122,
+ ["name"] = "Frost Nova",
+ ["rank"] = 1,
["cost"] = 400,
- ["texture"] = "Interface/ICONS/spell_frost_frostarmor02",
- ["id"] = 7300
+ ["texture"] = "Interface/ICONS/spell_frost_frostnova"
},
},
[12] = {
[1] = {
- ["name"] = "Dampen Magic",
- ["rank"] = 1,
+ ["id"] = 597,
+ ["name"] = "Conjure Food",
+ ["rank"] = 2,
["cost"] = 600,
- ["texture"] = "Interface/ICONS/spell_nature_abolishmagic",
- ["id"] = 604
+ ["texture"] = "Interface/ICONS/inv_misc_food_09"
},
[2] = {
- ["name"] = "Slow Fall",
+ ["id"] = 604,
+ ["name"] = "Dampen Magic",
["rank"] = 1,
["cost"] = 600,
- ["texture"] = "Interface/ICONS/spell_magic_featherfall",
- ["id"] = 130
+ ["texture"] = "Interface/ICONS/spell_nature_abolishmagic"
},
[3] = {
- ["name"] = "Conjure Food",
- ["rank"] = 2,
+ ["id"] = 145,
+ ["name"] = "Fireball",
+ ["rank"] = 3,
["cost"] = 600,
- ["texture"] = "Interface/ICONS/inv_misc_food_09",
- ["id"] = 597
+ ["texture"] = "Interface/ICONS/spell_fire_flamebolt"
},
[4] = {
- ["name"] = "Fireball",
- ["rank"] = 3,
+ ["id"] = 130,
+ ["name"] = "Slow Fall",
+ ["rank"] = 0,
["cost"] = 600,
- ["texture"] = "Interface/ICONS/spell_fire_flamebolt",
- ["id"] = 145
+ ["texture"] = "Interface/ICONS/spell_magic_featherfall"
},
},
[14] = {
[1] = {
+ ["id"] = 1449,
["name"] = "Arcane Explosion",
["rank"] = 1,
["cost"] = 900,
- ["texture"] = "Interface/ICONS/spell_nature_wispsplode",
- ["id"] = 1449
+ ["texture"] = "Interface/ICONS/spell_nature_wispsplode"
},
[2] = {
+ ["id"] = 1460,
["name"] = "Arcane Intellect",
["rank"] = 2,
["cost"] = 900,
- ["texture"] = "Interface/ICONS/spell_holy_magicalsentry",
- ["id"] = 1460
+ ["texture"] = "Interface/ICONS/spell_holy_magicalsentry"
},
[3] = {
+ ["id"] = 2137,
["name"] = "Fire Blast",
["rank"] = 2,
["cost"] = 900,
- ["texture"] = "Interface/ICONS/spell_fire_fireball",
- ["id"] = 2137
+ ["texture"] = "Interface/ICONS/spell_fire_fireball"
},
[4] = {
+ ["id"] = 837,
["name"] = "Frostbolt",
["rank"] = 3,
["cost"] = 900,
- ["texture"] = "Interface/ICONS/spell_frost_frostbolt02",
- ["id"] = 837
+ ["texture"] = "Interface/ICONS/spell_frost_frostbolt02"
},
},
[16] = {
[1] = {
- ["name"] = "Detect Magic",
- ["rank"] = 1,
- ["cost"] = 1500,
- ["texture"] = "Interface/ICONS/spell_holy_dizzy",
- ["id"] = 2855
- },
- [2] = {
+ ["id"] = 5144,
["name"] = "Arcane Missiles",
["rank"] = 2,
["cost"] = 1500,
- ["texture"] = "Interface/ICONS/spell_nature_starfall",
- ["id"] = 5144
+ ["texture"] = "Interface/ICONS/spell_nature_starfall"
},
- [3] = {
+ [2] = {
+ ["id"] = 2120,
["name"] = "Flamestrike",
["rank"] = 1,
["cost"] = 1500,
- ["texture"] = "Interface/ICONS/spell_fire_selfdestruct",
- ["id"] = 2120
+ ["texture"] = "Interface/ICONS/spell_fire_selfdestruct"
},
},
[18] = {
[1] = {
+ ["id"] = 1008,
["name"] = "Amplify Magic",
["rank"] = 1,
["cost"] = 1800,
- ["texture"] = "Interface/ICONS/spell_holy_flashheal",
- ["id"] = 1008
+ ["texture"] = "Interface/ICONS/spell_holy_flashheal"
},
[2] = {
- ["name"] = "Remove Lesser Curse",
- ["rank"] = 1,
+ ["id"] = 3140,
+ ["name"] = "Fireball",
+ ["rank"] = 4,
["cost"] = 1800,
- ["texture"] = "Interface/ICONS/spell_nature_removecurse",
- ["id"] = 475
+ ["texture"] = "Interface/ICONS/spell_fire_flamebolt"
},
[3] = {
- ["name"] = "Fireball",
- ["rank"] = 4,
+ ["id"] = 475,
+ ["name"] = "Remove Lesser Curse",
+ ["rank"] = 0,
["cost"] = 1800,
- ["texture"] = "Interface/ICONS/spell_fire_flamebolt",
- ["id"] = 3140
+ ["texture"] = "Interface/ICONS/spell_nature_removecurse"
},
},
[20] = {
[1] = {
- ["name"] = "Teleport: Ironforge",
- ["rank"] = 1,
+ ["id"] = 1953,
+ ["name"] = "Blink",
+ ["rank"] = 0,
["cost"] = 2000,
- ["texture"] = "Interface/ICONS/spell_arcane_teleportironforge",
- ["id"] = 3562,
- ["faction"] = 1
+ ["texture"] = "Interface/ICONS/spell_arcane_blink"
},
[2] = {
- ["name"] = "Teleport: Stormwind",
+ ["id"] = 10,
+ ["name"] = "Blizzard",
["rank"] = 1,
["cost"] = 2000,
- ["texture"] = "Interface/ICONS/spell_arcane_teleportstormwind",
- ["id"] = 3561,
- ["faction"] = 1
+ ["texture"] = "Interface/ICONS/spell_frost_icestorm"
},
[3] = {
- ["name"] = "Teleport: Orgrimmar",
- ["rank"] = 1,
+ ["id"] = 5506,
+ ["name"] = "Conjure Water",
+ ["rank"] = 3,
["cost"] = 2000,
- ["texture"] = "Interface/ICONS/spell_arcane_teleportorgrimmar",
- ["id"] = 3567,
- ["faction"] = 2
+ ["texture"] = "Interface/ICONS/inv_drink_milk_02"
},
[4] = {
- ["name"] = "Teleport: Undercity",
- ["rank"] = 1,
+ ["id"] = 12051,
+ ["name"] = "Evocation",
+ ["rank"] = 0,
["cost"] = 2000,
- ["texture"] = "Interface/ICONS/spell_arcane_teleportundercity",
- ["id"] = 3563,
- ["faction"] = 2
+ ["texture"] = "Interface/ICONS/spell_nature_purge"
},
[5] = {
- ["name"] = "Blink",
+ ["id"] = 543,
+ ["name"] = "Fire Ward",
["rank"] = 1,
["cost"] = 2000,
- ["texture"] = "Interface/ICONS/spell_arcane_blink",
- ["id"] = 1953
+ ["texture"] = "Interface/ICONS/spell_fire_firearmor"
},
[6] = {
- ["name"] = "Evocation",
- ["rank"] = 1,
+ ["id"] = 7301,
+ ["name"] = "Frost Armor",
+ ["rank"] = 3,
["cost"] = 2000,
- ["texture"] = "Interface/ICONS/spell_nature_purge",
- ["id"] = 12051
+ ["texture"] = "Interface/ICONS/spell_frost_frostarmor02"
},
[7] = {
- ["name"] = "Mana Shield",
- ["rank"] = 1,
+ ["id"] = 7322,
+ ["name"] = "Frostbolt",
+ ["rank"] = 4,
["cost"] = 2000,
- ["texture"] = "Interface/ICONS/spell_shadow_detectlesserinvisibility",
- ["id"] = 1463
+ ["texture"] = "Interface/ICONS/spell_frost_frostbolt02"
},
[8] = {
- ["name"] = "Polymorph",
- ["rank"] = 2,
+ ["id"] = 1463,
+ ["name"] = "Mana Shield",
+ ["rank"] = 1,
["cost"] = 2000,
- ["texture"] = "Interface/ICONS/spell_nature_polymorph",
- ["id"] = 12824
+ ["texture"] = "Interface/ICONS/spell_shadow_detectlesserinvisibility"
},
[9] = {
- ["name"] = "Conjure Water",
- ["rank"] = 3,
+ ["id"] = 12824,
+ ["name"] = "Polymorph",
+ ["rank"] = 2,
["cost"] = 2000,
- ["texture"] = "Interface/ICONS/inv_drink_milk_02",
- ["id"] = 5506
+ ["texture"] = "Interface/ICONS/spell_nature_polymorph"
},
[10] = {
- ["name"] = "Fire Ward",
- ["rank"] = 1,
- ["cost"] = 2000,
- ["texture"] = "Interface/ICONS/spell_fire_firearmor",
- ["id"] = 543
+ ["id"] = 32271,
+ ["name"] = "Teleport: Exodar",
+ ["rank"] = 0,
+ ["cost"] = 1900,
+ ["texture"] = "Interface/ICONS/spell_arcane_teleportexodar",
+ ["faction"] = "Alliance"
},
[11] = {
- ["name"] = "Blizzard",
- ["rank"] = 1,
+ ["id"] = 3562,
+ ["name"] = "Teleport: Ironforge",
+ ["rank"] = 0,
["cost"] = 2000,
- ["texture"] = "Interface/ICONS/spell_frost_icestorm",
- ["id"] = 10
+ ["texture"] = "Interface/ICONS/spell_arcane_teleportironforge",
+ ["faction"] = "Alliance"
},
[12] = {
- ["name"] = "Frost Armor",
- ["rank"] = 3,
+ ["id"] = 3567,
+ ["name"] = "Teleport: Orgrimmar",
+ ["rank"] = 0,
["cost"] = 2000,
- ["texture"] = "Interface/ICONS/spell_frost_frostarmor02",
- ["id"] = 7301
+ ["texture"] = "Interface/ICONS/spell_arcane_teleportorgrimmar",
+ ["faction"] = "Horde"
},
[13] = {
- ["name"] = "Frostbolt",
- ["rank"] = 4,
+ ["id"] = 32272,
+ ["name"] = "Teleport: Silvermoon",
+ ["rank"] = 0,
+ ["cost"] = 2000,
+ ["texture"] = "Interface/ICONS/spell_arcane_teleportsilvermoon",
+ ["faction"] = "Horde"
+ },
+ [14] = {
+ ["id"] = 3561,
+ ["name"] = "Teleport: Stormwind",
+ ["rank"] = 0,
+ ["cost"] = 2000,
+ ["texture"] = "Interface/ICONS/spell_arcane_teleportstormwind",
+ ["faction"] = "Alliance"
+ },
+ [15] = {
+ ["id"] = 3563,
+ ["name"] = "Teleport: Undercity",
+ ["rank"] = 0,
["cost"] = 2000,
- ["texture"] = "Interface/ICONS/spell_frost_frostbolt02",
- ["id"] = 7322
+ ["texture"] = "Interface/ICONS/spell_arcane_teleportundercity",
+ ["faction"] = "Horde"
},
},
[22] = {
[1] = {
+ ["id"] = 8437,
["name"] = "Arcane Explosion",
["rank"] = 2,
["cost"] = 3000,
- ["texture"] = "Interface/ICONS/spell_nature_wispsplode",
- ["id"] = 8437
+ ["texture"] = "Interface/ICONS/spell_nature_wispsplode"
},
[2] = {
+ ["id"] = 990,
["name"] = "Conjure Food",
["rank"] = 3,
["cost"] = 3000,
- ["texture"] = "Interface/ICONS/inv_misc_food_12",
- ["id"] = 990
+ ["texture"] = "Interface/ICONS/inv_misc_food_12"
},
[3] = {
- ["name"] = "Scorch",
- ["rank"] = 1,
+ ["id"] = 2138,
+ ["name"] = "Fire Blast",
+ ["rank"] = 3,
["cost"] = 3000,
- ["texture"] = "Interface/ICONS/spell_fire_soulburn",
- ["id"] = 2948
+ ["texture"] = "Interface/ICONS/spell_fire_fireball"
},
[4] = {
- ["name"] = "Fire Blast",
- ["rank"] = 3,
+ ["id"] = 6143,
+ ["name"] = "Frost Ward",
+ ["rank"] = 1,
["cost"] = 3000,
- ["texture"] = "Interface/ICONS/spell_fire_fireball",
- ["id"] = 2138
+ ["texture"] = "Interface/ICONS/spell_frost_frostward"
},
[5] = {
- ["name"] = "Frost Ward",
+ ["id"] = 2948,
+ ["name"] = "Scorch",
["rank"] = 1,
["cost"] = 3000,
- ["texture"] = "Interface/ICONS/spell_frost_frostward",
- ["id"] = 6143
+ ["texture"] = "Interface/ICONS/spell_fire_soulburn"
},
-
},
[24] = {
[1] = {
- ["name"] = "Counterspell",
- ["rank"] = 1,
- ["cost"] = 4000,
- ["texture"] = "Interface/ICONS/spell_frost_iceshock",
- ["id"] = 2139
+ ["id"] = 12505,
+ ["name"] = "Pyroblast",
+ ["rank"] = 2,
+ ["cost"] = 200,
+ ["texture"] = "Interface/ICONS/spell_fire_fireball02",
+ ["talent"] = true
},
[2] = {
- ["name"] = "Dampen Magic",
- ["rank"] = 2,
+ ["id"] = 5145,
+ ["name"] = "Arcane Missiles",
+ ["rank"] = 3,
["cost"] = 4000,
- ["texture"] = "Interface/ICONS/spell_nature_abolishmagic",
- ["id"] = 8450
+ ["texture"] = "Interface/ICONS/spell_nature_starfall"
},
[3] = {
- ["name"] = "Arcane Missiles",
- ["rank"] = 3,
+ ["id"] = 2139,
+ ["name"] = "Counterspell",
+ ["rank"] = 0,
["cost"] = 4000,
- ["texture"] = "Interface/ICONS/spell_nature_starfall",
- ["id"] = 5145
+ ["texture"] = "Interface/ICONS/spell_frost_iceshock"
},
[4] = {
- ["name"] = "Flamestrike",
+ ["id"] = 8450,
+ ["name"] = "Dampen Magic",
["rank"] = 2,
["cost"] = 4000,
- ["texture"] = "Interface/ICONS/spell_fire_selfdestruct",
- ["id"] = 2121
+ ["texture"] = "Interface/ICONS/spell_nature_abolishmagic"
},
[5] = {
- ["name"] = "Pyroblast",
- ["rank"] = 2,
- ["cost"] = 200,
- ["texture"] = "Interface/ICONS/spell_fire_fireball02",
- ["id"] = 12505,
- ["talent"] = true
- },
- [6] = {
+ ["id"] = 8400,
["name"] = "Fireball",
["rank"] = 5,
["cost"] = 4000,
- ["texture"] = "Interface/ICONS/spell_fire_flamebolt",
- ["id"] = 8400
+ ["texture"] = "Interface/ICONS/spell_fire_flamebolt"
+ },
+ [6] = {
+ ["id"] = 2121,
+ ["name"] = "Flamestrike",
+ ["rank"] = 2,
+ ["cost"] = 4000,
+ ["texture"] = "Interface/ICONS/spell_fire_selfdestruct"
},
},
[26] = {
[1] = {
+ ["id"] = 120,
["name"] = "Cone of Cold",
["rank"] = 1,
["cost"] = 5000,
- ["texture"] = "Interface/ICONS/spell_frost_glacier",
- ["id"] = 120
+ ["texture"] = "Interface/ICONS/spell_frost_glacier"
},
[2] = {
+ ["id"] = 865,
["name"] = "Frost Nova",
["rank"] = 2,
["cost"] = 5000,
- ["texture"] = "Interface/ICONS/spell_frost_frostnova",
- ["id"] = 865
+ ["texture"] = "Interface/ICONS/spell_frost_frostnova"
},
[3] = {
+ ["id"] = 8406,
["name"] = "Frostbolt",
["rank"] = 5,
["cost"] = 5000,
- ["texture"] = "Interface/ICONS/spell_frost_frostbolt02",
- ["id"] = 8406
+ ["texture"] = "Interface/ICONS/spell_frost_frostbolt02"
},
},
[28] = {
[1] = {
- ["name"] = "Conjure Mana Agate",
- ["rank"] = 1,
+ ["id"] = 1461,
+ ["name"] = "Arcane Intellect",
+ ["rank"] = 3,
["cost"] = 7000,
- ["texture"] = "Interface/ICONS/inv_misc_gem_emerald_01",
- ["id"] = 759
+ ["texture"] = "Interface/ICONS/spell_holy_magicalsentry"
},
[2] = {
- ["name"] = "Mana Shield",
+ ["id"] = 6141,
+ ["name"] = "Blizzard",
["rank"] = 2,
["cost"] = 7000,
- ["texture"] = "Interface/ICONS/spell_shadow_detectlesserinvisibility",
- ["id"] = 8494
+ ["texture"] = "Interface/ICONS/spell_frost_icestorm"
},
[3] = {
- ["name"] = "Arcane Intellect",
- ["rank"] = 3,
+ ["id"] = 759,
+ ["name"] = "Conjure Mana Agate",
+ ["rank"] = 0,
["cost"] = 7000,
- ["texture"] = "Interface/ICONS/spell_holy_magicalsentry",
- ["id"] = 1461
+ ["texture"] = "Interface/ICONS/inv_misc_gem_emerald_01"
},
[4] = {
- ["name"] = "Scorch",
+ ["id"] = 8494,
+ ["name"] = "Mana Shield",
["rank"] = 2,
["cost"] = 7000,
- ["texture"] = "Interface/ICONS/spell_fire_soulburn",
- ["id"] = 8444
+ ["texture"] = "Interface/ICONS/spell_shadow_detectlesserinvisibility"
},
[5] = {
- ["name"] = "Blizzard",
+ ["id"] = 8444,
+ ["name"] = "Scorch",
["rank"] = 2,
["cost"] = 7000,
- ["texture"] = "Interface/ICONS/spell_frost_icestorm",
- ["id"] = 6141
+ ["texture"] = "Interface/ICONS/spell_fire_soulburn"
},
},
[30] = {
[1] = {
- ["name"] = "Teleport: Darnassus",
- ["rank"] = 1,
- ["cost"] = 8000,
- ["texture"] = "Interface/ICONS/spell_arcane_teleportdarnassus",
- ["id"] = 3565,
- ["faction"] = 1
+ ["id"] = 12522,
+ ["name"] = "Pyroblast",
+ ["rank"] = 3,
+ ["cost"] = 400,
+ ["texture"] = "Interface/ICONS/spell_fire_fireball02",
+ ["talent"] = true
},
[2] = {
- ["name"] = "Teleport: Thunder Bluff",
- ["rank"] = 1,
- ["cost"] = 8000,
- ["texture"] = "Interface/ICONS/spell_arcane_teleportthunderbluff",
- ["id"] = 3566,
- ["faction"] = 2
- },
- [3] = {
+ ["id"] = 8455,
["name"] = "Amplify Magic",
["rank"] = 2,
["cost"] = 8000,
- ["texture"] = "Interface/ICONS/spell_holy_flashheal",
- ["id"] = 8455
+ ["texture"] = "Interface/ICONS/spell_holy_flashheal"
},
- [4] = {
+ [3] = {
+ ["id"] = 8438,
["name"] = "Arcane Explosion",
["rank"] = 3,
["cost"] = 8000,
- ["texture"] = "Interface/ICONS/spell_nature_wispsplode",
- ["id"] = 8438
+ ["texture"] = "Interface/ICONS/spell_nature_wispsplode"
},
- [5] = {
+ [4] = {
+ ["id"] = 6127,
["name"] = "Conjure Water",
["rank"] = 4,
["cost"] = 8000,
- ["texture"] = "Interface/ICONS/inv_drink_10",
- ["id"] = 6127
+ ["texture"] = "Interface/ICONS/inv_drink_10"
+ },
+ [5] = {
+ ["id"] = 8412,
+ ["name"] = "Fire Blast",
+ ["rank"] = 4,
+ ["cost"] = 8000,
+ ["texture"] = "Interface/ICONS/spell_fire_fireball"
},
[6] = {
+ ["id"] = 8457,
["name"] = "Fire Ward",
["rank"] = 2,
["cost"] = 8000,
- ["texture"] = "Interface/ICONS/spell_fire_firearmor",
- ["id"] = 8457
+ ["texture"] = "Interface/ICONS/spell_fire_firearmor"
},
[7] = {
- ["name"] = "Pyroblast",
- ["rank"] = 3,
- ["cost"] = 400,
- ["texture"] = "Interface/ICONS/spell_fire_fireball02",
- ["id"] = 12522,
- ["talent"] = true
+ ["id"] = 8401,
+ ["name"] = "Fireball",
+ ["rank"] = 6,
+ ["cost"] = 8000,
+ ["texture"] = "Interface/ICONS/spell_fire_flamebolt"
},
[8] = {
- ["name"] = "Fire Blast",
- ["rank"] = 4,
+ ["id"] = 7302,
+ ["name"] = "Ice Armor",
+ ["rank"] = 1,
["cost"] = 8000,
- ["texture"] = "Interface/ICONS/spell_fire_fireball",
- ["id"] = 8412
+ ["texture"] = "Interface/ICONS/spell_frost_frostarmor02"
},
[9] = {
- ["name"] = "Fireball",
- ["rank"] = 6,
+ ["id"] = 45438,
+ ["name"] = "Ice Block",
+ ["rank"] = 0,
["cost"] = 8000,
- ["texture"] = "Interface/ICONS/spell_fire_flamebolt",
- ["id"] = 8401
+ ["texture"] = "Interface/ICONS/spell_frost_frost"
},
[10] = {
- ["name"] = "Ice Armor",
- ["rank"] = 1,
+ ["id"] = 3565,
+ ["name"] = "Teleport: Darnassus",
+ ["rank"] = 0,
["cost"] = 8000,
- ["texture"] = "Interface/ICONS/spell_frost_frostarmor02",
- ["id"] = 7302
+ ["texture"] = "Interface/ICONS/spell_arcane_teleportdarnassus",
+ ["faction"] = "Alliance"
+ },
+ [11] = {
+ ["id"] = 3566,
+ ["name"] = "Teleport: Thunder Bluff",
+ ["rank"] = 0,
+ ["cost"] = 8000,
+ ["texture"] = "Interface/ICONS/spell_arcane_teleportthunderbluff",
+ ["faction"] = "Horde"
},
},
[32] = {
[1] = {
+ ["id"] = 8416,
["name"] = "Arcane Missiles",
["rank"] = 4,
["cost"] = 10000,
- ["texture"] = "Interface/ICONS/spell_nature_starfall",
- ["id"] = 8416
+ ["texture"] = "Interface/ICONS/spell_nature_starfall"
},
[2] = {
+ ["id"] = 6129,
["name"] = "Conjure Food",
["rank"] = 4,
["cost"] = 10000,
- ["texture"] = "Interface/ICONS/inv_misc_food_08",
- ["id"] = 6129
+ ["texture"] = "Interface/ICONS/inv_misc_food_08"
},
[3] = {
+ ["id"] = 8422,
["name"] = "Flamestrike",
["rank"] = 3,
["cost"] = 10000,
- ["texture"] = "Interface/ICONS/spell_fire_selfdestruct",
- ["id"] = 8422
+ ["texture"] = "Interface/ICONS/spell_fire_selfdestruct"
},
[4] = {
+ ["id"] = 8461,
["name"] = "Frost Ward",
["rank"] = 2,
["cost"] = 10000,
- ["texture"] = "Interface/ICONS/spell_frost_frostward",
- ["id"] = 8461
+ ["texture"] = "Interface/ICONS/spell_frost_frostward"
},
[5] = {
+ ["id"] = 8407,
["name"] = "Frostbolt",
["rank"] = 6,
["cost"] = 10000,
- ["texture"] = "Interface/ICONS/spell_frost_frostbolt02",
- ["id"] = 8407
+ ["texture"] = "Interface/ICONS/spell_frost_frostbolt02"
},
},
[34] = {
[1] = {
+ ["id"] = 8492,
+ ["name"] = "Cone of Cold",
+ ["rank"] = 2,
+ ["cost"] = 12000,
+ ["texture"] = "Interface/ICONS/spell_frost_glacier"
+ },
+ [2] = {
+ ["id"] = 6117,
["name"] = "Mage Armor",
["rank"] = 1,
["cost"] = 13000,
- ["texture"] = "Interface/ICONS/spell_magearmor",
- ["id"] = 6117
+ ["texture"] = "Interface/ICONS/spell_magearmor"
},
- [2] = {
+ [3] = {
+ ["id"] = 8445,
["name"] = "Scorch",
["rank"] = 3,
["cost"] = 12000,
- ["texture"] = "Interface/ICONS/spell_fire_soulburn",
- ["id"] = 8445
- },
- [3] = {
- ["name"] = "Cone of Cold",
- ["rank"] = 2,
- ["cost"] = 12000,
- ["texture"] = "Interface/ICONS/spell_frost_glacier",
- ["id"] = 8492
+ ["texture"] = "Interface/ICONS/spell_fire_soulburn"
},
},
- [36] = {
+ [35] = {
[1] = {
- ["name"] = "Dampen Magic",
- ["rank"] = 3,
- ["cost"] = 13000,
- ["texture"] = "Interface/ICONS/spell_nature_abolishmagic",
- ["id"] = 8451
+ ["id"] = 49361,
+ ["name"] = "Portal: Stonard",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/spell_arcane_portalstonard",
+ ["faction"] = "Horde"
},
[2] = {
- ["name"] = "Mana Shield",
- ["rank"] = 3,
- ["cost"] = 13000,
- ["texture"] = "Interface/ICONS/spell_shadow_detectlesserinvisibility",
- ["id"] = 8495
+ ["id"] = 49360,
+ ["name"] = "Portal: Theramore",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/spell_arcane_portaltheramore",
+ ["faction"] = "Alliance"
},
[3] = {
+ ["id"] = 49358,
+ ["name"] = "Teleport: Stonard",
+ ["rank"] = 0,
+ ["cost"] = 2000,
+ ["texture"] = "Interface/ICONS/spell_arcane_teleportstonard",
+ ["faction"] = "Horde"
+ },
+ [4] = {
+ ["id"] = 49359,
+ ["name"] = "Teleport: Theramore",
+ ["rank"] = 0,
+ ["cost"] = 2000,
+ ["texture"] = "Interface/ICONS/spell_arcane_teleporttheramore",
+ ["faction"] = "Alliance"
+ },
+ },
+ [36] = {
+ [1] = {
+ ["id"] = 13018,
["name"] = "Blast Wave",
["rank"] = 2,
["cost"] = 650,
["texture"] = "Interface/ICONS/spell_holy_excorcism_02",
- ["id"] = 13018,
["talent"] = true
},
- [4] = {
- ["name"] = "Pyroblast",
+ [2] = {
+ ["id"] = 12523,
+ ["name"] = "Pyroblast",
["rank"] = 4,
["cost"] = 650,
["texture"] = "Interface/ICONS/spell_fire_fireball02",
- ["id"] = 12523,
["talent"] = true
},
+ [3] = {
+ ["id"] = 8427,
+ ["name"] = "Blizzard",
+ ["rank"] = 3,
+ ["cost"] = 13000,
+ ["texture"] = "Interface/ICONS/spell_frost_icestorm"
+ },
+ [4] = {
+ ["id"] = 8451,
+ ["name"] = "Dampen Magic",
+ ["rank"] = 3,
+ ["cost"] = 13000,
+ ["texture"] = "Interface/ICONS/spell_nature_abolishmagic"
+ },
[5] = {
+ ["id"] = 8402,
["name"] = "Fireball",
["rank"] = 7,
["cost"] = 13000,
- ["texture"] = "Interface/ICONS/spell_fire_flamebolt",
- ["id"] = 8402
+ ["texture"] = "Interface/ICONS/spell_fire_flamebolt"
},
[6] = {
- ["name"] = "Blizzard",
+ ["id"] = 8495,
+ ["name"] = "Mana Shield",
["rank"] = 3,
["cost"] = 13000,
- ["texture"] = "Interface/ICONS/spell_frost_icestorm",
- ["id"] = 8427
+ ["texture"] = "Interface/ICONS/spell_shadow_detectlesserinvisibility"
},
},
[38] = {
[1] = {
- ["name"] = "Conjure Mana Jade",
- ["rank"] = 1,
+ ["id"] = 8439,
+ ["name"] = "Arcane Explosion",
+ ["rank"] = 4,
["cost"] = 14000,
- ["texture"] = "Interface/ICONS/inv_misc_gem_emerald_02",
- ["id"] = 3552
+ ["texture"] = "Interface/ICONS/spell_nature_wispsplode"
},
[2] = {
- ["name"] = "Arcane Explosion",
- ["rank"] = 4,
+ ["id"] = 3552,
+ ["name"] = "Conjure Mana Jade",
+ ["rank"] = 0,
["cost"] = 14000,
- ["texture"] = "Interface/ICONS/spell_nature_wispsplode",
- ["id"] = 8439
+ ["texture"] = "Interface/ICONS/inv_misc_gem_emerald_02"
},
[3] = {
+ ["id"] = 8413,
["name"] = "Fire Blast",
["rank"] = 5,
["cost"] = 14000,
- ["texture"] = "Interface/ICONS/spell_fire_fireball",
- ["id"] = 8413
+ ["texture"] = "Interface/ICONS/spell_fire_fireball"
},
[4] = {
+ ["id"] = 8408,
["name"] = "Frostbolt",
["rank"] = 7,
["cost"] = 14000,
- ["texture"] = "Interface/ICONS/spell_frost_frostbolt02",
- ["id"] = 8408
+ ["texture"] = "Interface/ICONS/spell_frost_frostbolt02"
},
},
[40] = {
[1] = {
- ["name"] = "Portal: Ironforge",
- ["rank"] = 1,
+ ["id"] = 8417,
+ ["name"] = "Arcane Missiles",
+ ["rank"] = 5,
["cost"] = 15000,
- ["texture"] = "Interface/ICONS/spell_arcane_portalironforge",
- ["id"] = 11416,
- ["faction"] = 1
+ ["texture"] = "Interface/ICONS/spell_nature_starfall"
},
[2] = {
- ["name"] = "Portal: Stormwind",
- ["rank"] = 1,
+ ["id"] = 10138,
+ ["name"] = "Conjure Water",
+ ["rank"] = 5,
["cost"] = 15000,
- ["texture"] = "Interface/ICONS/spell_arcane_portalstormwind",
- ["id"] = 10059,
- ["faction"] = 1
+ ["texture"] = "Interface/ICONS/inv_drink_09"
},
[3] = {
- ["name"] = "Portal: Orgrimmar",
- ["rank"] = 1,
+ ["id"] = 8458,
+ ["name"] = "Fire Ward",
+ ["rank"] = 3,
["cost"] = 15000,
- ["texture"] = "Interface/ICONS/spell_arcane_portalorgrimmar",
- ["id"] = 11417,
- ["faction"] = 2
+ ["texture"] = "Interface/ICONS/spell_fire_firearmor"
},
[4] = {
- ["name"] = "Portal: Undercity",
- ["rank"] = 1,
+ ["id"] = 8423,
+ ["name"] = "Flamestrike",
+ ["rank"] = 4,
["cost"] = 15000,
- ["texture"] = "Interface/ICONS/spell_arcane_portalundercity",
- ["id"] = 11418,
- ["faction"] = 2
+ ["texture"] = "Interface/ICONS/spell_fire_selfdestruct"
},
[5] = {
- ["name"] = "Polymorph",
+ ["id"] = 6131,
+ ["name"] = "Frost Nova",
["rank"] = 3,
["cost"] = 15000,
- ["texture"] = "Interface/ICONS/spell_nature_polymorph",
- ["id"] = 12825
+ ["texture"] = "Interface/ICONS/spell_frost_frostnova"
},
[6] = {
- ["name"] = "Arcane Missiles",
- ["rank"] = 5,
+ ["id"] = 7320,
+ ["name"] = "Ice Armor",
+ ["rank"] = 2,
["cost"] = 15000,
- ["texture"] = "Interface/ICONS/spell_nature_starfall",
- ["id"] = 8417
+ ["texture"] = "Interface/ICONS/spell_frost_frostarmor02"
},
[7] = {
- ["name"] = "Conjure Water",
- ["rank"] = 5,
+ ["id"] = 12825,
+ ["name"] = "Polymorph",
+ ["rank"] = 3,
["cost"] = 15000,
- ["texture"] = "Interface/ICONS/inv_drink_09",
- ["id"] = 10138
+ ["texture"] = "Interface/ICONS/spell_nature_polymorph"
},
[8] = {
- ["name"] = "Fire Ward",
- ["rank"] = 3,
- ["cost"] = 15000,
- ["texture"] = "Interface/ICONS/spell_fire_firearmor",
- ["id"] = 8458
+ ["id"] = 32266,
+ ["name"] = "Portal: Exodar",
+ ["rank"] = 0,
+ ["cost"] = 14250,
+ ["texture"] = "Interface/ICONS/spell_arcane_portalexodar",
+ ["faction"] = "Alliance"
},
[9] = {
- ["name"] = "Flamestrike",
- ["rank"] = 4,
+ ["id"] = 11416,
+ ["name"] = "Portal: Ironforge",
+ ["rank"] = 0,
["cost"] = 15000,
- ["texture"] = "Interface/ICONS/spell_fire_selfdestruct",
- ["id"] = 8423
+ ["texture"] = "Interface/ICONS/spell_arcane_portalironforge",
+ ["faction"] = "Alliance"
},
[10] = {
- ["name"] = "Scorch",
- ["rank"] = 4,
+ ["id"] = 11417,
+ ["name"] = "Portal: Orgrimmar",
+ ["rank"] = 0,
["cost"] = 15000,
- ["texture"] = "Interface/ICONS/spell_fire_soulburn",
- ["id"] = 8446
+ ["texture"] = "Interface/ICONS/spell_arcane_portalorgrimmar",
+ ["faction"] = "Horde"
},
[11] = {
- ["name"] = "Ice Armor",
- ["rank"] = 2,
+ ["id"] = 32267,
+ ["name"] = "Portal: Silvermoon",
+ ["rank"] = 0,
["cost"] = 15000,
- ["texture"] = "Interface/ICONS/spell_frost_frostarmor02",
- ["id"] = 7320
+ ["texture"] = "Interface/ICONS/spell_arcane_portalsilvermoon",
+ ["faction"] = "Horde"
},
[12] = {
- ["name"] = "Frost Nova",
- ["rank"] = 3,
+ ["id"] = 10059,
+ ["name"] = "Portal: Stormwind",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/spell_arcane_portalstormwind",
+ ["faction"] = "Alliance"
+ },
+ [13] = {
+ ["id"] = 11418,
+ ["name"] = "Portal: Undercity",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/spell_arcane_portalundercity",
+ ["faction"] = "Horde"
+ },
+ [14] = {
+ ["id"] = 8446,
+ ["name"] = "Scorch",
+ ["rank"] = 4,
["cost"] = 15000,
- ["texture"] = "Interface/ICONS/spell_frost_frostnova",
- ["id"] = 6131
+ ["texture"] = "Interface/ICONS/spell_fire_soulburn"
},
},
[42] = {
[1] = {
+ ["id"] = 12524,
+ ["name"] = "Pyroblast",
+ ["rank"] = 5,
+ ["cost"] = 900,
+ ["texture"] = "Interface/ICONS/spell_fire_fireball02",
+ ["talent"] = true
+ },
+ [2] = {
+ ["id"] = 10169,
["name"] = "Amplify Magic",
["rank"] = 3,
["cost"] = 18000,
- ["texture"] = "Interface/ICONS/spell_holy_flashheal",
- ["id"] = 10169
+ ["texture"] = "Interface/ICONS/spell_holy_flashheal"
},
- [2] = {
+ [3] = {
+ ["id"] = 10156,
["name"] = "Arcane Intellect",
["rank"] = 4,
["cost"] = 18000,
- ["texture"] = "Interface/ICONS/spell_holy_magicalsentry",
- ["id"] = 10156
- },
- [3] = {
- ["name"] = "Conjure Food",
- ["rank"] = 5,
- ["cost"] = 18000,
- ["texture"] = "Interface/ICONS/inv_misc_food_11",
- ["id"] = 10144
+ ["texture"] = "Interface/ICONS/spell_holy_magicalsentry"
},
[4] = {
- ["name"] = "Pyroblast",
- ["rank"] = 5,
- ["cost"] = 900,
- ["texture"] = "Interface/ICONS/spell_fire_fireball02",
- ["id"] = 12524,
- ["talent"] = true
+ ["id"] = 10159,
+ ["name"] = "Cone of Cold",
+ ["rank"] = 3,
+ ["cost"] = 18000,
+ ["texture"] = "Interface/ICONS/spell_frost_glacier"
},
[5] = {
- ["name"] = "Fireball",
- ["rank"] = 8,
+ ["id"] = 10144,
+ ["name"] = "Conjure Food",
+ ["rank"] = 5,
["cost"] = 18000,
- ["texture"] = "Interface/ICONS/spell_fire_flamebolt",
- ["id"] = 10148
+ ["texture"] = "Interface/ICONS/inv_misc_food_11"
},
[6] = {
- ["name"] = "Cone of Cold",
- ["rank"] = 3,
+ ["id"] = 10148,
+ ["name"] = "Fireball",
+ ["rank"] = 8,
["cost"] = 18000,
- ["texture"] = "Interface/ICONS/spell_frost_glacier",
- ["id"] = 10159
+ ["texture"] = "Interface/ICONS/spell_fire_flamebolt"
},
[7] = {
+ ["id"] = 8462,
["name"] = "Frost Ward",
["rank"] = 3,
["cost"] = 18000,
- ["texture"] = "Interface/ICONS/spell_frost_frostward",
- ["id"] = 8462
+ ["texture"] = "Interface/ICONS/spell_frost_frostward"
},
},
[44] = {
[1] = {
- ["name"] = "Mana Shield",
- ["rank"] = 4,
- ["cost"] = 23000,
- ["texture"] = "Interface/ICONS/spell_shadow_detectlesserinvisibility",
- ["id"] = 10191
- },
- [2] = {
+ ["id"] = 13019,
["name"] = "Blast Wave",
["rank"] = 3,
["cost"] = 1150,
["texture"] = "Interface/ICONS/spell_holy_excorcism_02",
- ["id"] = 13019,
["talent"] = true
},
- [3] = {
+ [2] = {
+ ["id"] = 10185,
["name"] = "Blizzard",
["rank"] = 4,
["cost"] = 23000,
- ["texture"] = "Interface/ICONS/spell_frost_icestorm",
- ["id"] = 10185
+ ["texture"] = "Interface/ICONS/spell_frost_icestorm"
},
- [4] = {
+ [3] = {
+ ["id"] = 10179,
["name"] = "Frostbolt",
["rank"] = 8,
["cost"] = 23000,
- ["texture"] = "Interface/ICONS/spell_frost_frostbolt02",
- ["id"] = 10179
+ ["texture"] = "Interface/ICONS/spell_frost_frostbolt02"
+ },
+ [4] = {
+ ["id"] = 10191,
+ ["name"] = "Mana Shield",
+ ["rank"] = 4,
+ ["cost"] = 23000,
+ ["texture"] = "Interface/ICONS/spell_shadow_detectlesserinvisibility"
},
},
[46] = {
[1] = {
- ["name"] = "Mage Armor",
+ ["id"] = 13031,
+ ["name"] = "Ice Barrier",
["rank"] = 2,
- ["cost"] = 28000,
- ["texture"] = "Interface/ICONS/spell_magearmor",
- ["id"] = 22782
+ ["cost"] = 1300,
+ ["texture"] = "Interface/ICONS/spell_ice_lament",
+ ["talent"] = true
},
[2] = {
+ ["id"] = 10201,
["name"] = "Arcane Explosion",
["rank"] = 5,
["cost"] = 26000,
- ["texture"] = "Interface/ICONS/spell_nature_wispsplode",
- ["id"] = 10201
+ ["texture"] = "Interface/ICONS/spell_nature_wispsplode"
},
[3] = {
- ["name"] = "Scorch",
- ["rank"] = 5,
- ["cost"] = 26000,
- ["texture"] = "Interface/ICONS/spell_fire_soulburn",
- ["id"] = 10205
- },
- [4] = {
+ ["id"] = 10197,
["name"] = "Fire Blast",
["rank"] = 6,
["cost"] = 26000,
- ["texture"] = "Interface/ICONS/spell_fire_fireball",
- ["id"] = 10197
+ ["texture"] = "Interface/ICONS/spell_fire_fireball"
},
- [5] = {
- ["name"] = "Ice Barrier",
+ [4] = {
+ ["id"] = 22782,
+ ["name"] = "Mage Armor",
["rank"] = 2,
- ["cost"] = 1170,
- ["texture"] = "Interface/ICONS/spell_ice_lament",
- ["id"] = 13031,
- ["talent"] = true
+ ["cost"] = 28000,
+ ["texture"] = "Interface/ICONS/spell_magearmor"
+ },
+ [5] = {
+ ["id"] = 10205,
+ ["name"] = "Scorch",
+ ["rank"] = 5,
+ ["cost"] = 26000,
+ ["texture"] = "Interface/ICONS/spell_fire_soulburn"
},
},
[48] = {
[1] = {
- ["name"] = "Conjure Mana Citrine",
- ["rank"] = 1,
- ["cost"] = 28000,
- ["texture"] = "Interface/ICONS/inv_misc_gem_opal_01",
- ["id"] = 10053
+ ["id"] = 12525,
+ ["name"] = "Pyroblast",
+ ["rank"] = 6,
+ ["cost"] = 1400,
+ ["texture"] = "Interface/ICONS/spell_fire_fireball02",
+ ["talent"] = true
},
[2] = {
- ["name"] = "Dampen Magic",
- ["rank"] = 4,
+ ["id"] = 10211,
+ ["name"] = "Arcane Missiles",
+ ["rank"] = 6,
["cost"] = 28000,
- ["texture"] = "Interface/ICONS/spell_nature_abolishmagic",
- ["id"] = 10173
+ ["texture"] = "Interface/ICONS/spell_nature_starfall"
},
[3] = {
- ["name"] = "Arcane Missiles",
- ["rank"] = 6,
+ ["id"] = 10053,
+ ["name"] = "Conjure Mana Citrine",
+ ["rank"] = 0,
["cost"] = 28000,
- ["texture"] = "Interface/ICONS/spell_nature_starfall",
- ["id"] = 10211
+ ["texture"] = "Interface/ICONS/inv_misc_gem_opal_01"
},
[4] = {
- ["name"] = "Flamestrike",
- ["rank"] = 5,
+ ["id"] = 10173,
+ ["name"] = "Dampen Magic",
+ ["rank"] = 4,
["cost"] = 28000,
- ["texture"] = "Interface/ICONS/spell_fire_selfdestruct",
- ["id"] = 10215
+ ["texture"] = "Interface/ICONS/spell_nature_abolishmagic"
},
[5] = {
- ["name"] = "Pyroblast",
- ["rank"] = 6,
- ["cost"] = 14000,
- ["texture"] = "Interface/ICONS/spell_fire_fireball02",
- ["id"] = 12525,
- ["talent"] = true
- },
- [6] = {
+ ["id"] = 10149,
["name"] = "Fireball",
["rank"] = 9,
["cost"] = 28000,
- ["texture"] = "Interface/ICONS/spell_fire_flamebolt",
- ["id"] = 10149
+ ["texture"] = "Interface/ICONS/spell_fire_flamebolt"
+ },
+ [6] = {
+ ["id"] = 10215,
+ ["name"] = "Flamestrike",
+ ["rank"] = 5,
+ ["cost"] = 28000,
+ ["texture"] = "Interface/ICONS/spell_fire_selfdestruct"
},
},
[50] = {
[1] = {
- ["name"] = "Portal: Darnassus",
- ["rank"] = 1,
- ["cost"] = 28800,
- ["texture"] = "Interface/ICONS/spell_arcane_portaldarnassus",
- ["id"] = 11419,
- ["faction"] = 1
+ ["id"] = 10160,
+ ["name"] = "Cone of Cold",
+ ["rank"] = 4,
+ ["cost"] = 32000,
+ ["texture"] = "Interface/ICONS/spell_frost_glacier"
},
[2] = {
- ["name"] = "Portal: Thunder Bluff",
- ["rank"] = 1,
- ["cost"] = 28800,
- ["texture"] = "Interface/ICONS/spell_arcane_portalthunderbluff",
- ["id"] = 11420,
- ["faction"] = 2
- },
- [3] = {
+ ["id"] = 10139,
["name"] = "Conjure Water",
["rank"] = 6,
["cost"] = 32000,
- ["texture"] = "Interface/ICONS/inv_drink_11",
- ["id"] = 10139
+ ["texture"] = "Interface/ICONS/inv_drink_11"
},
- [4] = {
+ [3] = {
+ ["id"] = 10223,
["name"] = "Fire Ward",
["rank"] = 4,
["cost"] = 32000,
- ["texture"] = "Interface/ICONS/spell_fire_firearmor",
- ["id"] = 10223
+ ["texture"] = "Interface/ICONS/spell_fire_firearmor"
+ },
+ [4] = {
+ ["id"] = 10180,
+ ["name"] = "Frostbolt",
+ ["rank"] = 9,
+ ["cost"] = 32000,
+ ["texture"] = "Interface/ICONS/spell_frost_frostbolt02"
},
[5] = {
+ ["id"] = 10219,
["name"] = "Ice Armor",
["rank"] = 3,
["cost"] = 32000,
- ["texture"] = "Interface/ICONS/spell_frost_frostarmor02",
- ["id"] = 10219
+ ["texture"] = "Interface/ICONS/spell_frost_frostarmor02"
},
[6] = {
- ["name"] = "Cone of Cold",
- ["rank"] = 4,
+ ["id"] = 11419,
+ ["name"] = "Portal: Darnassus",
+ ["rank"] = 0,
["cost"] = 32000,
- ["texture"] = "Interface/ICONS/spell_frost_glacier",
- ["id"] = 10160
+ ["texture"] = "Interface/ICONS/spell_arcane_portaldarnassus",
+ ["faction"] = "Alliance"
},
[7] = {
- ["name"] = "Frostbolt",
- ["rank"] = 9,
+ ["id"] = 11420,
+ ["name"] = "Portal: Thunder Bluff",
+ ["rank"] = 0,
["cost"] = 32000,
- ["texture"] = "Interface/ICONS/spell_frost_frostbolt02",
- ["id"] = 10180
+ ["texture"] = "Interface/ICONS/spell_arcane_portalthunderbluff",
+ ["faction"] = "Horde"
},
},
[52] = {
[1] = {
- ["name"] = "Mana Shield",
- ["rank"] = 5,
- ["cost"] = 35000,
- ["texture"] = "Interface/ICONS/spell_shadow_detectlesserinvisibility",
- ["id"] = 10192
- },
- [2] = {
- ["name"] = "Conjure Food",
- ["rank"] = 6,
- ["cost"] = 35000,
- ["texture"] = "Interface/ICONS/inv_misc_food_33",
- ["id"] = 10145
- },
- [3] = {
+ ["id"] = 13020,
["name"] = "Blast Wave",
["rank"] = 4,
["cost"] = 1750,
["texture"] = "Interface/ICONS/spell_holy_excorcism_02",
- ["id"] = 13020,
["talent"] = true
},
- [4] = {
- ["name"] = "Scorch",
- ["rank"] = 6,
- ["cost"] = 35000,
- ["texture"] = "Interface/ICONS/spell_fire_soulburn",
- ["id"] = 10206
- },
- [5] = {
+ [2] = {
+ ["id"] = 13032,
["name"] = "Ice Barrier",
["rank"] = 3,
["cost"] = 1750,
["texture"] = "Interface/ICONS/spell_ice_lament",
- ["id"] = 13032,
["talent"] = true
},
- [6] = {
- ["name"] = "Frost Ward",
- ["rank"] = 4,
- ["cost"] = 35000,
- ["texture"] = "Interface/ICONS/spell_frost_frostward",
- ["id"] = 10177
- },
- [7] = {
+ [3] = {
+ ["id"] = 10186,
["name"] = "Blizzard",
["rank"] = 5,
["cost"] = 35000,
- ["texture"] = "Interface/ICONS/spell_frost_icestorm",
- ["id"] = 10186
- },
- },
- [54] = {
- [1] = {
- ["name"] = "Amplify Magic",
- ["rank"] = 4,
- ["cost"] = 36000,
- ["texture"] = "Interface/ICONS/spell_holy_flashheal",
- ["id"] = 10170
+ ["texture"] = "Interface/ICONS/spell_frost_icestorm"
},
- [2] = {
- ["name"] = "Arcane Explosion",
+ [4] = {
+ ["id"] = 10145,
+ ["name"] = "Conjure Food",
["rank"] = 6,
- ["cost"] = 36000,
- ["texture"] = "Interface/ICONS/spell_nature_wispsplode",
- ["id"] = 10202
+ ["cost"] = 35000,
+ ["texture"] = "Interface/ICONS/inv_misc_food_33"
},
- [3] = {
- ["name"] = "Fire Blast",
- ["rank"] = 7,
- ["cost"] = 36000,
- ["texture"] = "Interface/ICONS/spell_fire_fireball",
- ["id"] = 10199
+ [5] = {
+ ["id"] = 10177,
+ ["name"] = "Frost Ward",
+ ["rank"] = 4,
+ ["cost"] = 35000,
+ ["texture"] = "Interface/ICONS/spell_frost_frostward"
},
- [4] = {
+ [6] = {
+ ["id"] = 10192,
+ ["name"] = "Mana Shield",
+ ["rank"] = 5,
+ ["cost"] = 35000,
+ ["texture"] = "Interface/ICONS/spell_shadow_detectlesserinvisibility"
+ },
+ [7] = {
+ ["id"] = 10206,
+ ["name"] = "Scorch",
+ ["rank"] = 6,
+ ["cost"] = 35000,
+ ["texture"] = "Interface/ICONS/spell_fire_soulburn"
+ },
+ },
+ [54] = {
+ [1] = {
+ ["id"] = 12526,
["name"] = "Pyroblast",
["rank"] = 7,
["cost"] = 1800,
["texture"] = "Interface/ICONS/spell_fire_fireball02",
- ["id"] = 12526,
["talent"] = true
},
+ [2] = {
+ ["id"] = 10170,
+ ["name"] = "Amplify Magic",
+ ["rank"] = 4,
+ ["cost"] = 36000,
+ ["texture"] = "Interface/ICONS/spell_holy_flashheal"
+ },
+ [3] = {
+ ["id"] = 10202,
+ ["name"] = "Arcane Explosion",
+ ["rank"] = 6,
+ ["cost"] = 36000,
+ ["texture"] = "Interface/ICONS/spell_nature_wispsplode"
+ },
+ [4] = {
+ ["id"] = 10199,
+ ["name"] = "Fire Blast",
+ ["rank"] = 7,
+ ["cost"] = 36000,
+ ["texture"] = "Interface/ICONS/spell_fire_fireball"
+ },
[5] = {
+ ["id"] = 10150,
["name"] = "Fireball",
["rank"] = 10,
["cost"] = 36000,
- ["texture"] = "Interface/ICONS/spell_fire_flamebolt",
- ["id"] = 10150
+ ["texture"] = "Interface/ICONS/spell_fire_flamebolt"
},
[6] = {
+ ["id"] = 10230,
["name"] = "Frost Nova",
["rank"] = 4,
["cost"] = 36000,
- ["texture"] = "Interface/ICONS/spell_frost_frostnova",
- ["id"] = 10230
+ ["texture"] = "Interface/ICONS/spell_frost_frostnova"
},
},
[56] = {
[1] = {
+ ["id"] = 33041,
+ ["name"] = "Dragon's Breath",
+ ["rank"] = 2,
+ ["cost"] = 1900,
+ ["texture"] = "Interface/ICONS/inv_misc_head_dragon_01",
+ ["talent"] = true
+ },
+ [2] = {
+ ["id"] = 23028,
+ ["name"] = "Arcane Brilliance",
+ ["rank"] = 1,
+ ["cost"] = 38000,
+ ["texture"] = "Interface/ICONS/spell_holy_arcaneintellect"
+ },
+ [3] = {
+ ["id"] = 10157,
["name"] = "Arcane Intellect",
["rank"] = 5,
["cost"] = 38000,
- ["texture"] = "Interface/ICONS/spell_holy_magicalsentry",
- ["id"] = 10157
+ ["texture"] = "Interface/ICONS/spell_holy_magicalsentry"
},
- [2] = {
+ [4] = {
+ ["id"] = 10212,
["name"] = "Arcane Missiles",
["rank"] = 7,
["cost"] = 38000,
- ["texture"] = "Interface/ICONS/spell_nature_starfall",
- ["id"] = 10212
+ ["texture"] = "Interface/ICONS/spell_nature_starfall"
},
- [3] = {
+ [5] = {
+ ["id"] = 10216,
["name"] = "Flamestrike",
["rank"] = 6,
["cost"] = 38000,
- ["texture"] = "Interface/ICONS/spell_fire_selfdestruct",
- ["id"] = 10216
+ ["texture"] = "Interface/ICONS/spell_fire_selfdestruct"
},
- [4] = {
+ [6] = {
+ ["id"] = 10181,
["name"] = "Frostbolt",
["rank"] = 10,
["cost"] = 38000,
- ["texture"] = "Interface/ICONS/spell_frost_frostbolt02",
- ["id"] = 10181
+ ["texture"] = "Interface/ICONS/spell_frost_frostbolt02"
},
},
[58] = {
[1] = {
- ["name"] = "Conjure Mana Ruby",
- ["rank"] = 1,
- ["cost"] = 40000,
- ["texture"] = "Interface/ICONS/inv_misc_gem_ruby_01",
- ["id"] = 10054
+ ["id"] = 13033,
+ ["name"] = "Ice Barrier",
+ ["rank"] = 4,
+ ["cost"] = 2000,
+ ["texture"] = "Interface/ICONS/spell_ice_lament",
+ ["talent"] = true
},
[2] = {
- ["name"] = "Mage Armor",
- ["rank"] = 3,
+ ["id"] = 10161,
+ ["name"] = "Cone of Cold",
+ ["rank"] = 5,
["cost"] = 40000,
- ["texture"] = "Interface/ICONS/spell_magearmor",
- ["id"] = 22783
+ ["texture"] = "Interface/ICONS/spell_frost_glacier"
},
[3] = {
- ["name"] = "Scorch",
- ["rank"] = 7,
+ ["id"] = 10054,
+ ["name"] = "Conjure Mana Ruby",
+ ["rank"] = 0,
["cost"] = 40000,
- ["texture"] = "Interface/ICONS/spell_fire_soulburn",
- ["id"] = 10207
+ ["texture"] = "Interface/ICONS/inv_misc_gem_ruby_01"
},
[4] = {
- ["name"] = "Ice Barrier",
- ["rank"] = 4,
- ["cost"] = 2000,
- ["texture"] = "Interface/ICONS/spell_ice_lament",
- ["id"] = 13033,
- ["talent"] = true
+ ["id"] = 22783,
+ ["name"] = "Mage Armor",
+ ["rank"] = 3,
+ ["cost"] = 40000,
+ ["texture"] = "Interface/ICONS/spell_magearmor"
},
[5] = {
- ["name"] = "Cone of Cold",
- ["rank"] = 5,
+ ["id"] = 10207,
+ ["name"] = "Scorch",
+ ["rank"] = 7,
["cost"] = 40000,
- ["texture"] = "Interface/ICONS/spell_frost_glacier",
- ["id"] = 10161
+ ["texture"] = "Interface/ICONS/spell_fire_soulburn"
},
},
[60] = {
[1] = {
- ["name"] = "Polymorph",
- ["rank"] = 4,
- ["cost"] = 42000,
- ["texture"] = "Interface/ICONS/spell_nature_polymorph",
- ["id"] = 12826
+ ["id"] = 13021,
+ ["name"] = "Blast Wave",
+ ["rank"] = 5,
+ ["cost"] = 2100,
+ ["texture"] = "Interface/ICONS/spell_holy_excorcism_02",
+ ["talent"] = true
},
[2] = {
+ ["id"] = 18809,
+ ["name"] = "Pyroblast",
+ ["rank"] = 8,
+ ["cost"] = 2100,
+ ["texture"] = "Interface/ICONS/spell_fire_fireball02",
+ ["talent"] = true
+ },
+ [3] = {
+ ["id"] = 25345,
+ ["name"] = "Arcane Missiles",
+ ["rank"] = 8,
+ ["cost"] = 42000,
+ ["texture"] = "Interface/ICONS/spell_nature_starfall"
+ },
+ [4] = {
+ ["id"] = 10187,
+ ["name"] = "Blizzard",
+ ["rank"] = 6,
+ ["cost"] = 42000,
+ ["texture"] = "Interface/ICONS/spell_frost_icestorm"
+ },
+ [5] = {
+ ["id"] = 28612,
+ ["name"] = "Conjure Food",
+ ["rank"] = 7,
+ ["cost"] = 42000,
+ ["texture"] = "Interface/ICONS/inv_misc_food_73cinnamonroll"
+ },
+ [6] = {
+ ["id"] = 10140,
+ ["name"] = "Conjure Water",
+ ["rank"] = 7,
+ ["cost"] = 42000,
+ ["texture"] = "Interface/ICONS/inv_drink_18"
+ },
+ [7] = {
+ ["id"] = 10174,
["name"] = "Dampen Magic",
["rank"] = 5,
["cost"] = 42000,
- ["texture"] = "Interface/ICONS/spell_nature_abolishmagic",
- ["id"] = 10174
+ ["texture"] = "Interface/ICONS/spell_nature_abolishmagic"
},
- [3] = {
+ [8] = {
+ ["id"] = 10225,
+ ["name"] = "Fire Ward",
+ ["rank"] = 5,
+ ["cost"] = 42000,
+ ["texture"] = "Interface/ICONS/spell_fire_firearmor"
+ },
+ [9] = {
+ ["id"] = 10151,
+ ["name"] = "Fireball",
+ ["rank"] = 11,
+ ["cost"] = 42000,
+ ["texture"] = "Interface/ICONS/spell_fire_flamebolt"
+ },
+ [10] = {
+ ["id"] = 25306,
+ ["name"] = "Fireball",
+ ["rank"] = 12,
+ ["cost"] = 42000,
+ ["texture"] = "Interface/ICONS/spell_fire_flamebolt"
+ },
+ [11] = {
+ ["id"] = 28609,
+ ["name"] = "Frost Ward",
+ ["rank"] = 5,
+ ["cost"] = 42000,
+ ["texture"] = "Interface/ICONS/spell_frost_frostward"
+ },
+ [12] = {
+ ["id"] = 25304,
+ ["name"] = "Frostbolt",
+ ["rank"] = 11,
+ ["cost"] = 42000,
+ ["texture"] = "Interface/ICONS/spell_frost_frostbolt02"
+ },
+ [13] = {
+ ["id"] = 10220,
+ ["name"] = "Ice Armor",
+ ["rank"] = 4,
+ ["cost"] = 42000,
+ ["texture"] = "Interface/ICONS/spell_frost_frostarmor02"
+ },
+ [14] = {
+ ["id"] = 10193,
["name"] = "Mana Shield",
["rank"] = 6,
["cost"] = 42000,
- ["texture"] = "Interface/ICONS/spell_shadow_detectlesserinvisibility",
- ["id"] = 10193
+ ["texture"] = "Interface/ICONS/spell_shadow_detectlesserinvisibility"
+ },
+ [15] = {
+ ["id"] = 12826,
+ ["name"] = "Polymorph",
+ ["rank"] = 4,
+ ["cost"] = 42000,
+ ["texture"] = "Interface/ICONS/spell_nature_polymorph"
+ },
+ [16] = {
+ ["id"] = 28271,
+ ["name"] = "Polymorph",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_hunter_pet_turtle"
+ },
+ [17] = {
+ ["id"] = 28272,
+ ["name"] = "Polymorph",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_magic_polymorphpig"
+ },
+ [18] = {
+ ["id"] = 33690,
+ ["name"] = "Teleport: Shattrath",
+ ["rank"] = 0,
+ ["cost"] = 20000,
+ ["texture"] = "Interface/ICONS/spell_arcane_teleportshattrath",
+ ["faction"] = "Alliance"
+ },
+ [19] = {
+ ["id"] = 35715,
+ ["name"] = "Teleport: Shattrath",
+ ["rank"] = 0,
+ ["cost"] = 20000,
+ ["texture"] = "Interface/ICONS/spell_arcane_teleportshattrath",
+ ["faction"] = "Horde"
+ },
+ },
+ [61] = {
+ [1] = {
+ ["id"] = 27078,
+ ["name"] = "Fire Blast",
+ ["rank"] = 8,
+ ["cost"] = 46000,
+ ["texture"] = "Interface/ICONS/spell_fire_fireball"
+ },
+ },
+ [62] = {
+ [1] = {
+ ["id"] = 27080,
+ ["name"] = "Arcane Explosion",
+ ["rank"] = 7,
+ ["cost"] = 51000,
+ ["texture"] = "Interface/ICONS/spell_nature_wispsplode"
+ },
+ [2] = {
+ ["id"] = 30482,
+ ["name"] = "Molten Armor",
+ ["rank"] = 1,
+ ["cost"] = 51000,
+ ["texture"] = "Interface/ICONS/ability_mage_moltenarmor"
+ },
+ },
+ [63] = {
+ [1] = {
+ ["id"] = 27130,
+ ["name"] = "Amplify Magic",
+ ["rank"] = 5,
+ ["cost"] = 57000,
+ ["texture"] = "Interface/ICONS/spell_holy_flashheal"
+ },
+ [2] = {
+ ["id"] = 27075,
+ ["name"] = "Arcane Missiles",
+ ["rank"] = 9,
+ ["cost"] = 57000,
+ ["texture"] = "Interface/ICONS/spell_nature_starfall"
+ },
+ [3] = {
+ ["id"] = 27071,
+ ["name"] = "Frostbolt",
+ ["rank"] = 12,
+ ["cost"] = 57000,
+ ["texture"] = "Interface/ICONS/spell_frost_frostbolt02"
+ },
+ },
+ [64] = {
+ [1] = {
+ ["id"] = 33042,
+ ["name"] = "Dragon's Breath",
+ ["rank"] = 3,
+ ["cost"] = 2200,
+ ["texture"] = "Interface/ICONS/inv_misc_head_dragon_01",
+ ["talent"] = true
+ },
+ [2] = {
+ ["id"] = 27134,
+ ["name"] = "Ice Barrier",
+ ["rank"] = 5,
+ ["cost"] = 2500,
+ ["texture"] = "Interface/ICONS/spell_ice_lament",
+ ["talent"] = true
+ },
+ [3] = {
+ ["id"] = 30451,
+ ["name"] = "Arcane Blast",
+ ["rank"] = 1,
+ ["cost"] = 63000,
+ ["texture"] = "Interface/ICONS/spell_arcane_blast"
},
[4] = {
+ ["id"] = 27086,
+ ["name"] = "Flamestrike",
+ ["rank"] = 7,
+ ["cost"] = 63000,
+ ["texture"] = "Interface/ICONS/spell_fire_selfdestruct"
+ },
+ },
+ [65] = {
+ [1] = {
+ ["id"] = 27133,
["name"] = "Blast Wave",
- ["rank"] = 5,
- ["cost"] = 2100,
+ ["rank"] = 6,
+ ["cost"] = 10500,
["texture"] = "Interface/ICONS/spell_holy_excorcism_02",
- ["id"] = 13021,
["talent"] = true
},
+ [2] = {
+ ["id"] = 27087,
+ ["name"] = "Cone of Cold",
+ ["rank"] = 6,
+ ["cost"] = 70000,
+ ["texture"] = "Interface/ICONS/spell_frost_glacier"
+ },
+ [3] = {
+ ["id"] = 37420,
+ ["name"] = "Conjure Water",
+ ["rank"] = 8,
+ ["cost"] = 70000,
+ ["texture"] = "Interface/ICONS/inv_drink_waterskin_11"
+ },
+ [4] = {
+ ["id"] = 33691,
+ ["name"] = "Portal: Shattrath",
+ ["rank"] = 0,
+ ["cost"] = 150000,
+ ["texture"] = "Interface/ICONS/spell_arcane_portalshattrath",
+ ["faction"] = "Alliance"
+ },
[5] = {
+ ["id"] = 35717,
+ ["name"] = "Portal: Shattrath",
+ ["rank"] = 0,
+ ["cost"] = 150000,
+ ["texture"] = "Interface/ICONS/spell_arcane_portalshattrath",
+ ["faction"] = "Horde"
+ },
+ [6] = {
+ ["id"] = 27073,
+ ["name"] = "Scorch",
+ ["rank"] = 8,
+ ["cost"] = 70000,
+ ["texture"] = "Interface/ICONS/spell_fire_soulburn"
+ },
+ },
+ [66] = {
+ [1] = {
+ ["id"] = 27132,
+ ["name"] = "Pyroblast",
+ ["rank"] = 9,
+ ["cost"] = 10500,
+ ["texture"] = "Interface/ICONS/spell_fire_fireball02",
+ ["talent"] = true
+ },
+ [2] = {
+ ["id"] = 27070,
+ ["name"] = "Fireball",
+ ["rank"] = 13,
+ ["cost"] = 78000,
+ ["texture"] = "Interface/ICONS/spell_fire_flamebolt"
+ },
+ [3] = {
+ ["id"] = 30455,
+ ["name"] = "Ice Lance",
+ ["rank"] = 1,
+ ["cost"] = 78000,
+ ["texture"] = "Interface/ICONS/spell_frost_frostblast"
+ },
+ },
+ [67] = {
+ [1] = {
+ ["id"] = 33944,
+ ["name"] = "Dampen Magic",
+ ["rank"] = 6,
+ ["cost"] = 87000,
+ ["texture"] = "Interface/ICONS/spell_nature_abolishmagic"
+ },
+ [2] = {
+ ["id"] = 27088,
+ ["name"] = "Frost Nova",
+ ["rank"] = 5,
+ ["cost"] = 87000,
+ ["texture"] = "Interface/ICONS/spell_frost_frostnova"
+ },
+ },
+ [68] = {
+ [1] = {
+ ["id"] = 27085,
+ ["name"] = "Blizzard",
+ ["rank"] = 7,
+ ["cost"] = 96000,
+ ["texture"] = "Interface/ICONS/spell_frost_icestorm"
+ },
+ [2] = {
+ ["id"] = 27101,
+ ["name"] = "Conjure Mana Emerald",
+ ["rank"] = 0,
+ ["cost"] = 96000,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_stone_01"
+ },
+ [3] = {
+ ["id"] = 66,
+ ["name"] = "Invisibility",
+ ["rank"] = 0,
+ ["cost"] = 96000,
+ ["texture"] = "Interface/ICONS/ability_mage_invisibility"
+ },
+ [4] = {
+ ["id"] = 27131,
+ ["name"] = "Mana Shield",
+ ["rank"] = 7,
+ ["cost"] = 96000,
+ ["texture"] = "Interface/ICONS/spell_shadow_detectlesserinvisibility"
+ },
+ },
+ [69] = {
+ [1] = {
+ ["id"] = 33946,
+ ["name"] = "Amplify Magic",
+ ["rank"] = 6,
+ ["cost"] = 110000,
+ ["texture"] = "Interface/ICONS/spell_holy_flashheal"
+ },
+ [2] = {
+ ["id"] = 38699,
+ ["name"] = "Arcane Missiles",
+ ["rank"] = 10,
+ ["cost"] = 87000,
+ ["texture"] = "Interface/ICONS/spell_nature_starfall"
+ },
+ [3] = {
+ ["id"] = 27128,
["name"] = "Fire Ward",
+ ["rank"] = 6,
+ ["cost"] = 110000,
+ ["texture"] = "Interface/ICONS/spell_fire_firearmor"
+ },
+ [4] = {
+ ["id"] = 27072,
+ ["name"] = "Frostbolt",
+ ["rank"] = 13,
+ ["cost"] = 110000,
+ ["texture"] = "Interface/ICONS/spell_frost_frostbolt02"
+ },
+ [5] = {
+ ["id"] = 27124,
+ ["name"] = "Ice Armor",
["rank"] = 5,
- ["cost"] = 42000,
- ["texture"] = "Interface/ICONS/spell_fire_firearmor",
- ["id"] = 10225
+ ["cost"] = 110000,
+ ["texture"] = "Interface/ICONS/spell_frost_frostarmor02"
},
[6] = {
+ ["id"] = 27125,
+ ["name"] = "Mage Armor",
+ ["rank"] = 4,
+ ["cost"] = 110000,
+ ["texture"] = "Interface/ICONS/spell_magearmor"
+ },
+ },
+ [70] = {
+ [1] = {
+ ["id"] = 33933,
+ ["name"] = "Blast Wave",
+ ["rank"] = 7,
+ ["cost"] = 12500,
+ ["texture"] = "Interface/ICONS/spell_holy_excorcism_02",
+ ["talent"] = true
+ },
+ [2] = {
+ ["id"] = 33043,
+ ["name"] = "Dragon's Breath",
+ ["rank"] = 4,
+ ["cost"] = 2500,
+ ["texture"] = "Interface/ICONS/inv_misc_head_dragon_01",
+ ["talent"] = true
+ },
+ [3] = {
+ ["id"] = 33405,
+ ["name"] = "Ice Barrier",
+ ["rank"] = 6,
+ ["cost"] = 10500,
+ ["texture"] = "Interface/ICONS/spell_ice_lament",
+ ["talent"] = true
+ },
+ [4] = {
+ ["id"] = 33938,
["name"] = "Pyroblast",
- ["rank"] = 8,
- ["cost"] = 1890,
+ ["rank"] = 10,
+ ["cost"] = 10500,
["texture"] = "Interface/ICONS/spell_fire_fireball02",
- ["id"] = 18809,
["talent"] = true
},
+ [5] = {
+ ["id"] = 27127,
+ ["name"] = "Arcane Brilliance",
+ ["rank"] = 2,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_arcaneintellect"
+ },
+ [6] = {
+ ["id"] = 27082,
+ ["name"] = "Arcane Explosion",
+ ["rank"] = 8,
+ ["cost"] = 120000,
+ ["texture"] = "Interface/ICONS/spell_nature_wispsplode"
+ },
[7] = {
- ["name"] = "Fireball",
- ["rank"] = 11,
- ["cost"] = 42000,
- ["texture"] = "Interface/ICONS/spell_fire_flamebolt",
- ["id"] = 10151
+ ["id"] = 27126,
+ ["name"] = "Arcane Intellect",
+ ["rank"] = 6,
+ ["cost"] = 120000,
+ ["texture"] = "Interface/ICONS/spell_holy_magicalsentry"
},
[8] = {
- ["name"] = "Ice Armor",
- ["rank"] = 4,
- ["cost"] = 42000,
- ["texture"] = "Interface/ICONS/spell_frost_frostarmor02",
- ["id"] = 10220
+ ["id"] = 38704,
+ ["name"] = "Arcane Missiles",
+ ["rank"] = 11,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_starfall"
},
[9] = {
- ["name"] = "Blizzard",
+ ["id"] = 33717,
+ ["name"] = "Conjure Food",
+ ["rank"] = 8,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_32"
+ },
+ [10] = {
+ ["id"] = 27090,
+ ["name"] = "Conjure Water",
+ ["rank"] = 9,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_drink_16"
+ },
+ [11] = {
+ ["id"] = 27079,
+ ["name"] = "Fire Blast",
+ ["rank"] = 9,
+ ["cost"] = 120000,
+ ["texture"] = "Interface/ICONS/spell_fire_fireball"
+ },
+ [12] = {
+ ["id"] = 38692,
+ ["name"] = "Fireball",
+ ["rank"] = 14,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_fire_flamebolt"
+ },
+ [13] = {
+ ["id"] = 32796,
+ ["name"] = "Frost Ward",
["rank"] = 6,
- ["cost"] = 42000,
- ["texture"] = "Interface/ICONS/spell_frost_icestorm",
- ["id"] = 10187
+ ["cost"] = 120000,
+ ["texture"] = "Interface/ICONS/spell_frost_frostward"
+ },
+ [14] = {
+ ["id"] = 38697,
+ ["name"] = "Frostbolt",
+ ["rank"] = 14,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_frost_frostbolt02"
+ },
+ [15] = {
+ ["id"] = 43987,
+ ["name"] = "Ritual of Refreshment",
+ ["rank"] = 1,
+ ["cost"] = 120000,
+ ["texture"] = "Interface/ICONS/spell_arcane_massdispel"
+ },
+ [16] = {
+ ["id"] = 27074,
+ ["name"] = "Scorch",
+ ["rank"] = 9,
+ ["cost"] = 120000,
+ ["texture"] = "Interface/ICONS/spell_fire_soulburn"
+ },
+ [17] = {
+ ["id"] = 30449,
+ ["name"] = "Spellsteal",
+ ["rank"] = 0,
+ ["cost"] = 120000,
+ ["texture"] = "Interface/ICONS/spell_arcane_arcane02"
},
},
}
diff --git a/Database/Paladin.lua b/Database/classes/Paladin.lua
similarity index 58%
rename from Database/Paladin.lua
rename to Database/classes/Paladin.lua
index ac121ca..7ef9d92 100644
--- a/Database/Paladin.lua
+++ b/Database/classes/Paladin.lua
@@ -1,1047 +1,1467 @@
local _, FieldGuide = ...
FieldGuide.PALADIN = {
- [2] = {
+ [1] = {
[1] = {
+ ["id"] = 107,
+ ["name"] = "Block",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_defend"
+ },
+ [2] = {
+ ["id"] = 3127,
+ ["name"] = "Parry",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_parry"
+ },
+ [3] = {
+ ["id"] = 465,
["name"] = "Devotion Aura",
["rank"] = 1,
["cost"] = 10,
- ["texture"] = "Interface/ICONS/spell_holy_devotionaura",
- ["id"] = 465
+ ["texture"] = "Interface/ICONS/spell_holy_devotionaura"
+ },
+ [4] = {
+ ["id"] = 635,
+ ["name"] = "Holy Light",
+ ["rank"] = 1,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_holybolt"
+ },
+ [5] = {
+ ["id"] = 20154,
+ ["name"] = "Seal of Righteousness",
+ ["rank"] = 1,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_thunderbolt"
+ },
+ [6] = {
+ ["id"] = 21084,
+ ["name"] = "Seal of Righteousness",
+ ["rank"] = 1,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_thunderbolt"
},
},
[4] = {
[1] = {
+ ["id"] = 19740,
["name"] = "Blessing of Might",
["rank"] = 1,
["cost"] = 100,
- ["texture"] = "Interface/ICONS/spell_holy_fistofjustice",
- ["id"] = 19740
+ ["texture"] = "Interface/ICONS/spell_holy_fistofjustice"
},
[2] = {
+ ["id"] = 20271,
["name"] = "Judgement",
- ["rank"] = 1,
+ ["rank"] = 0,
["cost"] = 100,
- ["texture"] = "Interface/ICONS/spell_holy_righteousfury",
- ["id"] = 20271
+ ["texture"] = "Interface/ICONS/spell_holy_righteousfury"
},
},
[6] = {
[1] = {
- ["name"] = "Holy Light",
- ["rank"] = 2,
+ ["id"] = 498,
+ ["name"] = "Divine Protection",
+ ["rank"] = 1,
["cost"] = 100,
- ["texture"] = "Interface/ICONS/spell_holy_holybolt",
- ["id"] = 639
+ ["texture"] = "Interface/ICONS/spell_holy_restoration"
},
[2] = {
- ["name"] = "Divine Protection",
- ["rank"] = 1,
+ ["id"] = 639,
+ ["name"] = "Holy Light",
+ ["rank"] = 2,
["cost"] = 100,
- ["texture"] = "Interface/ICONS/spell_holy_restoration",
- ["id"] = 498
+ ["texture"] = "Interface/ICONS/spell_holy_holybolt"
},
[3] = {
+ ["id"] = 21183,
+ ["name"] = "Judgement of the Crusader",
+ ["rank"] = 1,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_holysmite"
+ },
+ [4] = {
+ ["id"] = 21082,
["name"] = "Seal of the Crusader",
["rank"] = 1,
["cost"] = 100,
- ["texture"] = "Interface/ICONS/spell_holy_holysmite",
- ["id"] = 21082
+ ["texture"] = "Interface/ICONS/spell_holy_holysmite"
},
},
[8] = {
[1] = {
- ["name"] = "Parry",
+ ["id"] = 853,
+ ["name"] = "Hammer of Justice",
["rank"] = 1,
["cost"] = 100,
- ["texture"] = "Interface/ICONS/ability_parry",
- ["id"] = 3127
+ ["texture"] = "Interface/ICONS/spell_holy_sealofmight"
},
[2] = {
+ ["id"] = 1152,
["name"] = "Purify",
- ["rank"] = 1,
- ["cost"] = 100,
- ["texture"] = "Interface/ICONS/spell_holy_purify",
- ["id"] = 1152
- },
- [3] = {
- ["name"] = "Hammer of Justice",
- ["rank"] = 1,
+ ["rank"] = 0,
["cost"] = 100,
- ["texture"] = "Interface/ICONS/spell_holy_sealofmight",
- ["id"] = 853
+ ["texture"] = "Interface/ICONS/spell_holy_purify"
},
},
[10] = {
[1] = {
- ["name"] = "Lay on Hands",
+ ["id"] = 1022,
+ ["name"] = "Blessing of Protection",
["rank"] = 1,
["cost"] = 300,
- ["texture"] = "Interface/ICONS/spell_holy_layonhands",
- ["id"] = 633
+ ["texture"] = "Interface/ICONS/spell_holy_sealofprotection"
},
[2] = {
- ["name"] = "Seal of Righteousness",
+ ["id"] = 10290,
+ ["name"] = "Devotion Aura",
["rank"] = 2,
["cost"] = 300,
- ["texture"] = "Interface/ICONS/ability_thunderbolt",
- ["id"] = 20287
+ ["texture"] = "Interface/ICONS/spell_holy_devotionaura"
},
[3] = {
- ["name"] = "Blessing of Protection",
+ ["id"] = 633,
+ ["name"] = "Lay on Hands",
["rank"] = 1,
["cost"] = 300,
- ["texture"] = "Interface/ICONS/spell_holy_sealofprotection",
- ["id"] = 1022
+ ["texture"] = "Interface/ICONS/spell_holy_layonhands"
},
[4] = {
- ["name"] = "Devotion Aura",
+ ["id"] = 20287,
+ ["name"] = "Seal of Righteousness",
["rank"] = 2,
["cost"] = 300,
- ["texture"] = "Interface/ICONS/spell_holy_devotionaura",
- ["id"] = 10290
+ ["texture"] = "Interface/ICONS/ability_thunderbolt"
},
},
[12] = {
[1] = {
- ["name"] = "Redemption",
- ["rank"] = 1,
- ["cost"] = 0,
- ["texture"] = "Interface/ICONS/spell_holy_resurrection",
- ["id"] = 7328
- },
- [2] = {
+ ["id"] = 19834,
["name"] = "Blessing of Might",
["rank"] = 2,
["cost"] = 1000,
- ["texture"] = "Interface/ICONS/spell_holy_fistofjustice",
- ["id"] = 19834
+ ["texture"] = "Interface/ICONS/spell_holy_fistofjustice"
+ },
+ [2] = {
+ ["id"] = 7328,
+ ["name"] = "Redemption",
+ ["rank"] = 1,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_resurrection"
},
[3] = {
+ ["id"] = 20162,
["name"] = "Seal of the Crusader",
["rank"] = 2,
["cost"] = 1000,
- ["texture"] = "Interface/ICONS/spell_holy_holysmite",
- ["id"] = 20162
+ ["texture"] = "Interface/ICONS/spell_holy_holysmite"
},
},
[14] = {
[1] = {
+ ["id"] = 19742,
["name"] = "Blessing of Wisdom",
["rank"] = 1,
["cost"] = 2000,
- ["texture"] = "Interface/ICONS/spell_holy_sealofwisdom",
- ["id"] = 19742
+ ["texture"] = "Interface/ICONS/spell_holy_sealofwisdom"
},
[2] = {
+ ["id"] = 647,
["name"] = "Holy Light",
["rank"] = 3,
["cost"] = 2000,
- ["texture"] = "Interface/ICONS/spell_holy_holybolt",
- ["id"] = 647
+ ["texture"] = "Interface/ICONS/spell_holy_holybolt"
+ },
+ [3] = {
+ ["id"] = 31789,
+ ["name"] = "Righteous Defense",
+ ["rank"] = 0,
+ ["cost"] = 4000,
+ ["texture"] = "Interface/ICONS/inv_shoulder_37"
},
},
[16] = {
[1] = {
- ["name"] = "Righteous Fury",
+ ["id"] = 7294,
+ ["name"] = "Retribution Aura",
["rank"] = 1,
["cost"] = 3000,
- ["texture"] = "Interface/ICONS/spell_holy_sealoffury",
- ["id"] = 25780
+ ["texture"] = "Interface/ICONS/spell_holy_auraoflight"
},
[2] = {
- ["name"] = "Retribution Aura",
- ["rank"] = 1,
+ ["id"] = 25780,
+ ["name"] = "Righteous Fury",
+ ["rank"] = 0,
["cost"] = 3000,
- ["texture"] = "Interface/ICONS/spell_holy_auraoflight",
- ["id"] = 7294
+ ["texture"] = "Interface/ICONS/spell_holy_sealoffury"
},
},
[18] = {
[1] = {
- ["name"] = "Seal of Righteousness",
- ["rank"] = 3,
+ ["id"] = 1044,
+ ["name"] = "Blessing of Freedom",
+ ["rank"] = 0,
["cost"] = 3500,
- ["texture"] = "Interface/ICONS/ability_thunderbolt",
- ["id"] = 20288
+ ["texture"] = "Interface/ICONS/spell_holy_sealofvalor"
},
[2] = {
- ["name"] = "Blessing of Freedom",
- ["rank"] = 1,
+ ["id"] = 5573,
+ ["name"] = "Divine Protection",
+ ["rank"] = 2,
["cost"] = 3500,
- ["texture"] = "Interface/ICONS/spell_holy_sealofvalor",
- ["id"] = 1044
+ ["texture"] = "Interface/ICONS/spell_holy_restoration"
},
[3] = {
- ["name"] = "Divine Protection",
- ["rank"] = 2,
+ ["id"] = 20288,
+ ["name"] = "Seal of Righteousness",
+ ["rank"] = 3,
["cost"] = 3500,
- ["texture"] = "Interface/ICONS/spell_holy_restoration",
- ["id"] = 5573
+ ["texture"] = "Interface/ICONS/ability_thunderbolt"
+ },
+ [4] = {
+ ["id"] = 31785,
+ ["name"] = "Spiritual Attunement",
+ ["rank"] = 1,
+ ["cost"] = 3500,
+ ["texture"] = "Interface/ICONS/spell_holy_revivechampion"
},
},
[20] = {
[1] = {
- ["name"] = "Exorcism",
+ ["id"] = 26573,
+ ["name"] = "Consecration",
["rank"] = 1,
["cost"] = 4000,
- ["texture"] = "Interface/ICONS/spell_holy_excorcism_02",
- ["id"] = 879
+ ["texture"] = "Interface/ICONS/spell_holy_innerfire"
},
[2] = {
- ["name"] = "Flash of Light",
- ["rank"] = 1,
+ ["id"] = 643,
+ ["name"] = "Devotion Aura",
+ ["rank"] = 3,
["cost"] = 4000,
- ["texture"] = "Interface/ICONS/spell_holy_flashheal",
- ["id"] = 19750
+ ["texture"] = "Interface/ICONS/spell_holy_devotionaura"
},
[3] = {
- ["name"] = "Sense Undead",
+ ["id"] = 879,
+ ["name"] = "Exorcism",
["rank"] = 1,
- ["cost"] = 0,
- ["texture"] = "Interface/ICONS/spell_holy_senseundead",
- ["id"] = 5502
+ ["cost"] = 4000,
+ ["texture"] = "Interface/ICONS/spell_holy_excorcism_02"
},
[4] = {
- ["name"] = "Devotion Aura",
- ["rank"] = 3,
+ ["id"] = 19750,
+ ["name"] = "Flash of Light",
+ ["rank"] = 1,
["cost"] = 4000,
- ["texture"] = "Interface/ICONS/spell_holy_devotionaura",
- ["id"] = 643
+ ["texture"] = "Interface/ICONS/spell_holy_flashheal"
+ },
+ [5] = {
+ ["id"] = 5502,
+ ["name"] = "Sense Undead",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_senseundead"
},
},
[22] = {
[1] = {
- ["name"] = "Holy Light",
- ["rank"] = 4,
+ ["id"] = 19835,
+ ["name"] = "Blessing of Might",
+ ["rank"] = 3,
["cost"] = 4000,
- ["texture"] = "Interface/ICONS/spell_holy_holybolt",
- ["id"] = 1026
+ ["texture"] = "Interface/ICONS/spell_holy_fistofjustice"
},
[2] = {
+ ["id"] = 19746,
["name"] = "Concentration Aura",
- ["rank"] = 1,
+ ["rank"] = 0,
["cost"] = 4000,
- ["texture"] = "Interface/ICONS/spell_holy_mindsooth",
- ["id"] = 19746
+ ["texture"] = "Interface/ICONS/spell_holy_mindsooth"
},
[3] = {
- ["name"] = "Seal of Justice",
- ["rank"] = 1,
+ ["id"] = 1026,
+ ["name"] = "Holy Light",
+ ["rank"] = 4,
["cost"] = 4000,
- ["texture"] = "Interface/ICONS/spell_holy_sealofwrath",
- ["id"] = 20164
+ ["texture"] = "Interface/ICONS/spell_holy_holybolt"
},
[4] = {
- ["name"] = "Blessing of Might",
- ["rank"] = 3,
+ ["id"] = 20164,
+ ["name"] = "Seal of Justice",
+ ["rank"] = 1,
["cost"] = 4000,
- ["texture"] = "Interface/ICONS/spell_holy_fistofjustice",
- ["id"] = 19835
+ ["texture"] = "Interface/ICONS/spell_holy_sealofwrath"
},
[5] = {
+ ["id"] = 20305,
["name"] = "Seal of the Crusader",
["rank"] = 3,
["cost"] = 4000,
- ["texture"] = "Interface/ICONS/spell_holy_holysmite",
- ["id"] = 20305
+ ["texture"] = "Interface/ICONS/spell_holy_holysmite"
},
},
[24] = {
[1] = {
- ["name"] = "Blessing of Wisdom",
+ ["id"] = 5599,
+ ["name"] = "Blessing of Protection",
["rank"] = 2,
["cost"] = 5000,
- ["texture"] = "Interface/ICONS/spell_holy_sealofwisdom",
- ["id"] = 19850
+ ["texture"] = "Interface/ICONS/spell_holy_sealofprotection"
},
[2] = {
- ["name"] = "Redemption",
+ ["id"] = 19850,
+ ["name"] = "Blessing of Wisdom",
["rank"] = 2,
["cost"] = 5000,
- ["texture"] = "Interface/ICONS/spell_holy_resurrection",
- ["id"] = 10322
+ ["texture"] = "Interface/ICONS/spell_holy_sealofwisdom"
},
[3] = {
- ["name"] = "Turn Undead",
- ["rank"] = 1,
+ ["id"] = 5588,
+ ["name"] = "Hammer of Justice",
+ ["rank"] = 2,
["cost"] = 5000,
- ["texture"] = "Interface/ICONS/spell_holy_turnundead",
- ["id"] = 2878
+ ["texture"] = "Interface/ICONS/spell_holy_sealofmight"
},
[4] = {
- ["name"] = "Blessing of Protection",
+ ["id"] = 10322,
+ ["name"] = "Redemption",
["rank"] = 2,
["cost"] = 5000,
- ["texture"] = "Interface/ICONS/spell_holy_sealofprotection",
- ["id"] = 5599
+ ["texture"] = "Interface/ICONS/spell_holy_resurrection"
},
[5] = {
- ["name"] = "Hammer of Justice",
- ["rank"] = 2,
+ ["id"] = 2878,
+ ["name"] = "Turn Undead",
+ ["rank"] = 1,
["cost"] = 5000,
- ["texture"] = "Interface/ICONS/spell_holy_sealofmight",
- ["id"] = 5588
+ ["texture"] = "Interface/ICONS/spell_holy_turnundead"
},
},
[26] = {
[1] = {
- ["name"] = "Flash of Light",
- ["rank"] = 2,
+ ["id"] = 1038,
+ ["name"] = "Blessing of Salvation",
+ ["rank"] = 0,
["cost"] = 6000,
- ["texture"] = "Interface/ICONS/spell_holy_flashheal",
- ["id"] = 19939
+ ["texture"] = "Interface/ICONS/spell_holy_sealofsalvation"
},
[2] = {
- ["name"] = "Seal of Righteousness",
- ["rank"] = 4,
+ ["id"] = 19939,
+ ["name"] = "Flash of Light",
+ ["rank"] = 2,
["cost"] = 6000,
- ["texture"] = "Interface/ICONS/ability_thunderbolt",
- ["id"] = 20289
+ ["texture"] = "Interface/ICONS/spell_holy_flashheal"
},
[3] = {
- ["name"] = "Blessing of Salvation",
- ["rank"] = 1,
+ ["id"] = 10298,
+ ["name"] = "Retribution Aura",
+ ["rank"] = 2,
["cost"] = 6000,
- ["texture"] = "Interface/ICONS/spell_holy_sealofsalvation",
- ["id"] = 1038
+ ["texture"] = "Interface/ICONS/spell_holy_auraoflight"
},
[4] = {
- ["name"] = "Retribution Aura",
- ["rank"] = 2,
+ ["id"] = 20289,
+ ["name"] = "Seal of Righteousness",
+ ["rank"] = 4,
["cost"] = 6000,
- ["texture"] = "Interface/ICONS/spell_holy_auraoflight",
- ["id"] = 10298
+ ["texture"] = "Interface/ICONS/ability_thunderbolt"
},
},
[28] = {
[1] = {
+ ["id"] = 5614,
["name"] = "Exorcism",
["rank"] = 2,
["cost"] = 9000,
- ["texture"] = "Interface/ICONS/spell_holy_excorcism_02",
- ["id"] = 5614
+ ["texture"] = "Interface/ICONS/spell_holy_excorcism_02"
},
[2] = {
+ ["id"] = 19876,
["name"] = "Shadow Resistance Aura",
["rank"] = 1,
["cost"] = 9000,
- ["texture"] = "Interface/ICONS/spell_shadow_sealofkings",
- ["id"] = 19876
+ ["texture"] = "Interface/ICONS/spell_shadow_sealofkings"
},
},
[30] = {
[1] = {
- ["name"] = "Consecration",
+ ["id"] = 20915,
+ ["name"] = "Seal of Command",
["rank"] = 2,
- ["cost"] = 200,
- ["texture"] = "Interface/ICONS/spell_holy_innerfire",
- ["id"] = 20116,
+ ["cost"] = 550,
+ ["texture"] = "Interface/ICONS/ability_warrior_innerrage",
["talent"] = true
},
[2] = {
- ["name"] = "Holy Light",
- ["rank"] = 5,
- ["cost"] = 11000,
- ["texture"] = "Interface/ICONS/spell_holy_holybolt",
- ["id"] = 1042
+ ["id"] = 20116,
+ ["name"] = "Consecration",
+ ["rank"] = 2,
+ ["cost"] = 200,
+ ["texture"] = "Interface/ICONS/spell_holy_innerfire"
},
[3] = {
- ["name"] = "Lay on Hands",
- ["rank"] = 2,
+ ["id"] = 10291,
+ ["name"] = "Devotion Aura",
+ ["rank"] = 4,
["cost"] = 11000,
- ["texture"] = "Interface/ICONS/spell_holy_layonhands",
- ["id"] = 2800
+ ["texture"] = "Interface/ICONS/spell_holy_devotionaura"
},
[4] = {
- ["name"] = "Seal of Light",
- ["rank"] = 1,
+ ["id"] = 19752,
+ ["name"] = "Divine Intervention",
+ ["rank"] = 0,
["cost"] = 11000,
- ["texture"] = "Interface/ICONS/spell_holy_healingaura",
- ["id"] = 20165
+ ["texture"] = "Interface/ICONS/spell_nature_timestop"
},
[5] = {
- ["name"] = "Devotion Aura",
- ["rank"] = 4,
+ ["id"] = 1042,
+ ["name"] = "Holy Light",
+ ["rank"] = 5,
["cost"] = 11000,
- ["texture"] = "Interface/ICONS/spell_holy_devotionaura",
- ["id"] = 10291
+ ["texture"] = "Interface/ICONS/spell_holy_holybolt"
},
[6] = {
- ["name"] = "Divine Intervention",
- ["rank"] = 1,
+ ["id"] = 2800,
+ ["name"] = "Lay on Hands",
+ ["rank"] = 2,
["cost"] = 11000,
- ["texture"] = "Interface/ICONS/spell_nature_timestop",
- ["id"] = 19752
+ ["texture"] = "Interface/ICONS/spell_holy_layonhands"
},
[7] = {
- ["name"] = "Seal of Command",
- ["rank"] = 2,
- ["cost"] = 200,
- ["texture"] = "Interface/ICONS/ability_warrior_innerrage",
- ["id"] = 20915,
- ["talent"] = true
+ ["id"] = 20165,
+ ["name"] = "Seal of Light",
+ ["rank"] = 1,
+ ["cost"] = 11000,
+ ["texture"] = "Interface/ICONS/spell_holy_healingaura"
+ },
+ [8] = {
+ ["id"] = 13819,
+ ["name"] = "Draenei",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/spell_nature_swiftness"
+ },
+ [9] = {
+ ["id"] = 34769,
+ ["name"] = "Blood Elf",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/spell_nature_swiftness"
},
},
[32] = {
[1] = {
- ["name"] = "Frost Resistance Aura",
- ["rank"] = 1,
+ ["id"] = 19836,
+ ["name"] = "Blessing of Might",
+ ["rank"] = 4,
["cost"] = 12000,
- ["texture"] = "Interface/ICONS/spell_frost_wizardmark",
- ["id"] = 19888
+ ["texture"] = "Interface/ICONS/spell_holy_fistofjustice"
},
[2] = {
- ["name"] = "Blessing of Might",
- ["rank"] = 4,
+ ["id"] = 19888,
+ ["name"] = "Frost Resistance Aura",
+ ["rank"] = 1,
["cost"] = 12000,
- ["texture"] = "Interface/ICONS/spell_holy_fistofjustice",
- ["id"] = 19836
+ ["texture"] = "Interface/ICONS/spell_frost_wizardmark"
},
[3] = {
+ ["id"] = 20306,
["name"] = "Seal of the Crusader",
["rank"] = 4,
["cost"] = 12000,
- ["texture"] = "Interface/ICONS/spell_holy_holysmite",
- ["id"] = 20306
+ ["texture"] = "Interface/ICONS/spell_holy_holysmite"
},
},
[34] = {
[1] = {
+ ["id"] = 19852,
["name"] = "Blessing of Wisdom",
["rank"] = 3,
["cost"] = 13000,
- ["texture"] = "Interface/ICONS/spell_holy_sealofwisdom",
- ["id"] = 19852
+ ["texture"] = "Interface/ICONS/spell_holy_sealofwisdom"
},
[2] = {
- ["name"] = "Flash of Light",
- ["rank"] = 3,
+ ["id"] = 642,
+ ["name"] = "Divine Shield",
+ ["rank"] = 1,
["cost"] = 13000,
- ["texture"] = "Interface/ICONS/spell_holy_flashheal",
- ["id"] = 19940
+ ["texture"] = "Interface/ICONS/spell_holy_divineintervention"
},
[3] = {
- ["name"] = "Seal of Righteousness",
- ["rank"] = 5,
+ ["id"] = 19940,
+ ["name"] = "Flash of Light",
+ ["rank"] = 3,
["cost"] = 13000,
- ["texture"] = "Interface/ICONS/ability_thunderbolt",
- ["id"] = 20290
+ ["texture"] = "Interface/ICONS/spell_holy_flashheal"
},
[4] = {
- ["name"] = "Divine Shield",
- ["rank"] = 1,
+ ["id"] = 20290,
+ ["name"] = "Seal of Righteousness",
+ ["rank"] = 5,
["cost"] = 13000,
- ["texture"] = "Interface/ICONS/spell_holy_divineintervention",
- ["id"] = 642
+ ["texture"] = "Interface/ICONS/ability_thunderbolt"
},
},
[36] = {
[1] = {
+ ["id"] = 5615,
["name"] = "Exorcism",
["rank"] = 3,
["cost"] = 14000,
- ["texture"] = "Interface/ICONS/spell_holy_excorcism_02",
- ["id"] = 5615
+ ["texture"] = "Interface/ICONS/spell_holy_excorcism_02"
},
[2] = {
- ["name"] = "Redemption",
- ["rank"] = 3,
+ ["id"] = 19891,
+ ["name"] = "Fire Resistance Aura",
+ ["rank"] = 1,
["cost"] = 14000,
- ["texture"] = "Interface/ICONS/spell_holy_resurrection",
- ["id"] = 10324
+ ["texture"] = "Interface/ICONS/spell_fire_sealoffire"
},
[3] = {
- ["name"] = "Fire Resistance Aura",
- ["rank"] = 1,
+ ["id"] = 10324,
+ ["name"] = "Redemption",
+ ["rank"] = 3,
["cost"] = 14000,
- ["texture"] = "Interface/ICONS/spell_fire_sealoffire",
- ["id"] = 19891
+ ["texture"] = "Interface/ICONS/spell_holy_resurrection"
},
[4] = {
+ ["id"] = 10299,
["name"] = "Retribution Aura",
["rank"] = 3,
["cost"] = 14000,
- ["texture"] = "Interface/ICONS/spell_holy_auraoflight",
- ["id"] = 10299
+ ["texture"] = "Interface/ICONS/spell_holy_auraoflight"
},
},
[38] = {
[1] = {
+ ["id"] = 10278,
+ ["name"] = "Blessing of Protection",
+ ["rank"] = 3,
+ ["cost"] = 16000,
+ ["texture"] = "Interface/ICONS/spell_holy_sealofprotection"
+ },
+ [2] = {
+ ["id"] = 3472,
["name"] = "Holy Light",
["rank"] = 6,
["cost"] = 16000,
- ["texture"] = "Interface/ICONS/spell_holy_holybolt",
- ["id"] = 3472
+ ["texture"] = "Interface/ICONS/spell_holy_holybolt"
},
- [2] = {
+ [3] = {
+ ["id"] = 20166,
["name"] = "Seal of Wisdom",
["rank"] = 1,
["cost"] = 16000,
- ["texture"] = "Interface/ICONS/spell_holy_righteousnessaura",
- ["id"] = 20166
+ ["texture"] = "Interface/ICONS/spell_holy_righteousnessaura"
},
- [3] = {
+ [4] = {
+ ["id"] = 5627,
["name"] = "Turn Undead",
["rank"] = 2,
["cost"] = 16000,
- ["texture"] = "Interface/ICONS/spell_holy_turnundead",
- ["id"] = 5627
- },
- [4] = {
- ["name"] = "Blessing of Protection",
- ["rank"] = 3,
- ["cost"] = 16000,
- ["texture"] = "Interface/ICONS/spell_holy_sealofprotection",
- ["id"] = 10278
+ ["texture"] = "Interface/ICONS/spell_holy_turnundead"
},
},
[40] = {
[1] = {
- ["name"] = "Plate Mail",
- ["rank"] = 1,
- ["cost"] = 20000,
- ["texture"] = "Interface/ICONS/inv_chest_plate01",
- ["id"] = 750
+ ["id"] = 20912,
+ ["name"] = "Blessing of Sanctuary",
+ ["rank"] = 2,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/spell_nature_lightningshield",
+ ["talent"] = true
},
[2] = {
+ ["id"] = 20918,
+ ["name"] = "Seal of Command",
+ ["rank"] = 3,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/ability_warrior_innerrage",
+ ["talent"] = true
+ },
+ [3] = {
+ ["id"] = 19977,
["name"] = "Blessing of Light",
["rank"] = 1,
["cost"] = 20000,
- ["texture"] = "Interface/ICONS/spell_holy_prayerofhealing02",
- ["id"] = 19977
+ ["texture"] = "Interface/ICONS/spell_holy_prayerofhealing02"
},
- [3] = {
+ [4] = {
+ ["id"] = 20922,
["name"] = "Consecration",
["rank"] = 3,
["cost"] = 1000,
- ["texture"] = "Interface/ICONS/spell_holy_innerfire",
- ["id"] = 20922,
- ["talent"] = true
+ ["texture"] = "Interface/ICONS/spell_holy_innerfire"
},
- [4] = {
- ["name"] = "Seal of Light",
- ["rank"] = 2,
+ [5] = {
+ ["id"] = 1032,
+ ["name"] = "Devotion Aura",
+ ["rank"] = 5,
["cost"] = 20000,
- ["texture"] = "Interface/ICONS/spell_holy_healingaura",
- ["id"] = 20347
- },
- [5] = {
- ["name"] = "Summon Warhorse",
- ["rank"] = 1,
- ["cost"] = 0,
- ["texture"] = "Interface/ICONS/spell_nature_swiftness",
- ["id"] = 13819
+ ["texture"] = "Interface/ICONS/spell_holy_devotionaura"
},
[6] = {
- ["name"] = "Blessing of Sanctuary",
- ["rank"] = 2,
- ["cost"] = 900,
- ["texture"] = "Interface/ICONS/spell_nature_lightningshield",
- ["id"] = 20912,
- ["talent"] = true
+ ["id"] = 5589,
+ ["name"] = "Hammer of Justice",
+ ["rank"] = 3,
+ ["cost"] = 20000,
+ ["texture"] = "Interface/ICONS/spell_holy_sealofmight"
},
[7] = {
- ["name"] = "Devotion Aura",
- ["rank"] = 5,
+ ["id"] = 20347,
+ ["name"] = "Seal of Light",
+ ["rank"] = 2,
["cost"] = 20000,
- ["texture"] = "Interface/ICONS/spell_holy_devotionaura",
- ["id"] = 1032
+ ["texture"] = "Interface/ICONS/spell_holy_healingaura"
},
[8] = {
- ["name"] = "Hammer of Justice",
- ["rank"] = 3,
- ["cost"] = 20000,
- ["texture"] = "Interface/ICONS/spell_holy_sealofmight",
- ["id"] = 5589
- },
- [9] = {
+ ["id"] = 19895,
["name"] = "Shadow Resistance Aura",
["rank"] = 2,
["cost"] = 20000,
- ["texture"] = "Interface/ICONS/spell_shadow_sealofkings",
- ["id"] = 19895
- },
- [10] = {
- ["name"] = "Seal of Command",
- ["rank"] = 3,
- ["cost"] = 1000,
- ["texture"] = "Interface/ICONS/ability_warrior_innerrage",
- ["id"] = 20918,
- ["talent"] = true
+ ["texture"] = "Interface/ICONS/spell_shadow_sealofkings"
},
},
[42] = {
[1] = {
- ["name"] = "Cleanse",
- ["rank"] = 1,
+ ["id"] = 19837,
+ ["name"] = "Blessing of Might",
+ ["rank"] = 5,
["cost"] = 21000,
- ["texture"] = "Interface/ICONS/spell_holy_renew",
- ["id"] = 4987
+ ["texture"] = "Interface/ICONS/spell_holy_fistofjustice"
},
[2] = {
- ["name"] = "Flash of Light",
- ["rank"] = 4,
+ ["id"] = 4987,
+ ["name"] = "Cleanse",
+ ["rank"] = 0,
["cost"] = 21000,
- ["texture"] = "Interface/ICONS/spell_holy_flashheal",
- ["id"] = 19941
+ ["texture"] = "Interface/ICONS/spell_holy_renew"
},
[3] = {
- ["name"] = "Seal of Righteousness",
- ["rank"] = 6,
+ ["id"] = 19941,
+ ["name"] = "Flash of Light",
+ ["rank"] = 4,
["cost"] = 21000,
- ["texture"] = "Interface/ICONS/ability_thunderbolt",
- ["id"] = 20291
+ ["texture"] = "Interface/ICONS/spell_holy_flashheal"
},
[4] = {
- ["name"] = "Blessing of Might",
- ["rank"] = 5,
+ ["id"] = 20291,
+ ["name"] = "Seal of Righteousness",
+ ["rank"] = 6,
["cost"] = 21000,
- ["texture"] = "Interface/ICONS/spell_holy_fistofjustice",
- ["id"] = 19837
+ ["texture"] = "Interface/ICONS/ability_thunderbolt"
},
[5] = {
+ ["id"] = 20307,
["name"] = "Seal of the Crusader",
["rank"] = 5,
["cost"] = 21000,
- ["texture"] = "Interface/ICONS/spell_holy_holysmite",
- ["id"] = 20307
+ ["texture"] = "Interface/ICONS/spell_holy_holysmite"
},
},
[44] = {
[1] = {
+ ["id"] = 19853,
["name"] = "Blessing of Wisdom",
["rank"] = 4,
["cost"] = 22000,
- ["texture"] = "Interface/ICONS/spell_holy_sealofwisdom",
- ["id"] = 19853
+ ["texture"] = "Interface/ICONS/spell_holy_sealofwisdom"
},
[2] = {
+ ["id"] = 10312,
["name"] = "Exorcism",
["rank"] = 4,
["cost"] = 22000,
- ["texture"] = "Interface/ICONS/spell_holy_excorcism_02",
- ["id"] = 10312
+ ["texture"] = "Interface/ICONS/spell_holy_excorcism_02"
},
[3] = {
- ["name"] = "Hammer of Wrath",
- ["rank"] = 1,
+ ["id"] = 19897,
+ ["name"] = "Frost Resistance Aura",
+ ["rank"] = 2,
["cost"] = 22000,
- ["texture"] = "Interface/ICONS/ability_thunderclap",
- ["id"] = 24275
+ ["texture"] = "Interface/ICONS/spell_frost_wizardmark"
},
[4] = {
- ["name"] = "Frost Resistance Aura",
- ["rank"] = 2,
+ ["id"] = 24275,
+ ["name"] = "Hammer of Wrath",
+ ["rank"] = 1,
["cost"] = 22000,
- ["texture"] = "Interface/ICONS/spell_frost_wizardmark",
- ["id"] = 19897
+ ["texture"] = "Interface/ICONS/ability_thunderclap"
},
},
[46] = {
[1] = {
- ["name"] = "Holy Light",
- ["rank"] = 7,
+ ["id"] = 6940,
+ ["name"] = "Blessing of Sacrifice",
+ ["rank"] = 1,
["cost"] = 24000,
- ["texture"] = "Interface/ICONS/spell_holy_holybolt",
- ["id"] = 10328
+ ["texture"] = "Interface/ICONS/spell_holy_sealofsacrifice"
},
[2] = {
- ["name"] = "Blessing of Sacrifice",
- ["rank"] = 1,
+ ["id"] = 10328,
+ ["name"] = "Holy Light",
+ ["rank"] = 7,
["cost"] = 24000,
- ["texture"] = "Interface/ICONS/spell_holy_sealofsacrifice",
- ["id"] = 6940
+ ["texture"] = "Interface/ICONS/spell_holy_holybolt"
},
[3] = {
+ ["id"] = 10300,
["name"] = "Retribution Aura",
["rank"] = 4,
["cost"] = 24000,
- ["texture"] = "Interface/ICONS/spell_holy_auraoflight",
- ["id"] = 10300
+ ["texture"] = "Interface/ICONS/spell_holy_auraoflight"
},
},
[48] = {
[1] = {
+ ["id"] = 20929,
["name"] = "Holy Shock",
["rank"] = 2,
- ["cost"] = 1170,
+ ["cost"] = 1300,
["texture"] = "Interface/ICONS/spell_holy_searinglight",
- ["id"] = 20929,
["talent"] = true
},
[2] = {
+ ["id"] = 19899,
+ ["name"] = "Fire Resistance Aura",
+ ["rank"] = 2,
+ ["cost"] = 26000,
+ ["texture"] = "Interface/ICONS/spell_fire_sealoffire"
+ },
+ [3] = {
+ ["id"] = 20772,
["name"] = "Redemption",
["rank"] = 4,
["cost"] = 26000,
- ["texture"] = "Interface/ICONS/spell_holy_resurrection",
- ["id"] = 20772
+ ["texture"] = "Interface/ICONS/spell_holy_resurrection"
},
- [3] = {
- ["name"] = "Seal of Wisdom",
+ [4] = {
+ ["id"] = 31895,
+ ["name"] = "Seal of Justice",
["rank"] = 2,
["cost"] = 26000,
- ["texture"] = "Interface/ICONS/spell_holy_righteousnessaura",
- ["id"] = 20356
+ ["texture"] = "Interface/ICONS/spell_holy_sealofwrath"
},
- [4] = {
- ["name"] = "Fire Resistance Aura",
+ [5] = {
+ ["id"] = 20356,
+ ["name"] = "Seal of Wisdom",
["rank"] = 2,
["cost"] = 26000,
- ["texture"] = "Interface/ICONS/spell_fire_sealoffire",
- ["id"] = 19899
+ ["texture"] = "Interface/ICONS/spell_holy_righteousnessaura"
},
},
[50] = {
[1] = {
- ["name"] = "Blessing of Light",
- ["rank"] = 2,
- ["cost"] = 28000,
- ["texture"] = "Interface/ICONS/spell_holy_prayerofhealing02",
- ["id"] = 19978
+ ["id"] = 20913,
+ ["name"] = "Blessing of Sanctuary",
+ ["rank"] = 3,
+ ["cost"] = 1400,
+ ["texture"] = "Interface/ICONS/spell_nature_lightningshield",
+ ["talent"] = true
},
[2] = {
- ["name"] = "Consecration",
- ["rank"] = 4,
+ ["id"] = 20927,
+ ["name"] = "Holy Shield",
+ ["rank"] = 2,
["cost"] = 1400,
- ["texture"] = "Interface/ICONS/spell_holy_innerfire",
- ["id"] = 20923,
+ ["texture"] = "Interface/ICONS/spell_holy_blessingofprotection",
["talent"] = true
},
[3] = {
- ["name"] = "Flash of Light",
- ["rank"] = 5,
- ["cost"] = 28000,
- ["texture"] = "Interface/ICONS/spell_holy_flashheal",
- ["id"] = 19942
+ ["id"] = 20919,
+ ["name"] = "Seal of Command",
+ ["rank"] = 4,
+ ["cost"] = 1400,
+ ["texture"] = "Interface/ICONS/ability_warrior_innerrage",
+ ["talent"] = true
},
[4] = {
- ["name"] = "Holy Wrath",
- ["rank"] = 1,
+ ["id"] = 19978,
+ ["name"] = "Blessing of Light",
+ ["rank"] = 2,
["cost"] = 28000,
- ["texture"] = "Interface/ICONS/spell_holy_excorcism",
- ["id"] = 2812
+ ["texture"] = "Interface/ICONS/spell_holy_prayerofhealing02"
},
[5] = {
- ["name"] = "Lay on Hands",
- ["rank"] = 3,
- ["cost"] = 28000,
- ["texture"] = "Interface/ICONS/spell_holy_layonhands",
- ["id"] = 10310
+ ["id"] = 20923,
+ ["name"] = "Consecration",
+ ["rank"] = 4,
+ ["cost"] = 1400,
+ ["texture"] = "Interface/ICONS/spell_holy_innerfire"
},
[6] = {
- ["name"] = "Seal of Light",
- ["rank"] = 3,
+ ["id"] = 10292,
+ ["name"] = "Devotion Aura",
+ ["rank"] = 6,
["cost"] = 28000,
- ["texture"] = "Interface/ICONS/spell_holy_healingaura",
- ["id"] = 20348
+ ["texture"] = "Interface/ICONS/spell_holy_devotionaura"
},
[7] = {
- ["name"] = "Seal of Righteousness",
- ["rank"] = 7,
+ ["id"] = 1020,
+ ["name"] = "Divine Shield",
+ ["rank"] = 2,
["cost"] = 28000,
- ["texture"] = "Interface/ICONS/ability_thunderbolt",
- ["id"] = 20292
+ ["texture"] = "Interface/ICONS/spell_holy_divineintervention"
},
[8] = {
- ["name"] = "Blessing of Sanctuary",
- ["rank"] = 3,
- ["cost"] = 1260,
- ["texture"] = "Interface/ICONS/spell_nature_lightningshield",
- ["id"] = 20913,
- ["talent"] = true
+ ["id"] = 19942,
+ ["name"] = "Flash of Light",
+ ["rank"] = 5,
+ ["cost"] = 28000,
+ ["texture"] = "Interface/ICONS/spell_holy_flashheal"
},
[9] = {
- ["name"] = "Devotion Aura",
- ["rank"] = 6,
+ ["id"] = 2812,
+ ["name"] = "Holy Wrath",
+ ["rank"] = 1,
["cost"] = 28000,
- ["texture"] = "Interface/ICONS/spell_holy_devotionaura",
- ["id"] = 10292
+ ["texture"] = "Interface/ICONS/spell_holy_excorcism"
},
[10] = {
- ["name"] = "Divine Shield",
- ["rank"] = 2,
+ ["id"] = 10310,
+ ["name"] = "Lay on Hands",
+ ["rank"] = 3,
["cost"] = 28000,
- ["texture"] = "Interface/ICONS/spell_holy_divineintervention",
- ["id"] = 1020
+ ["texture"] = "Interface/ICONS/spell_holy_layonhands"
},
[11] = {
- ["name"] = "Holy Shield",
- ["rank"] = 2,
- ["cost"] = 1260,
- ["texture"] = "Interface/ICONS/spell_holy_blessingofprotection",
- ["id"] = 20927,
- ["talent"] = true
+ ["id"] = 20348,
+ ["name"] = "Seal of Light",
+ ["rank"] = 3,
+ ["cost"] = 28000,
+ ["texture"] = "Interface/ICONS/spell_holy_healingaura"
},
[12] = {
- ["name"] = "Seal of Command",
- ["rank"] = 4,
- ["cost"] = 1260,
- ["texture"] = "Interface/ICONS/ability_warrior_innerrage",
- ["id"] = 20919,
- ["talent"] = true
+ ["id"] = 20292,
+ ["name"] = "Seal of Righteousness",
+ ["rank"] = 7,
+ ["cost"] = 28000,
+ ["texture"] = "Interface/ICONS/ability_thunderbolt"
},
},
[52] = {
[1] = {
- ["name"] = "Exorcism",
- ["rank"] = 5,
+ ["id"] = 19838,
+ ["name"] = "Blessing of Might",
+ ["rank"] = 6,
["cost"] = 34000,
- ["texture"] = "Interface/ICONS/spell_holy_excorcism_02",
- ["id"] = 10313
+ ["texture"] = "Interface/ICONS/spell_holy_fistofjustice"
},
[2] = {
- ["name"] = "Hammer of Wrath",
- ["rank"] = 2,
+ ["id"] = 10313,
+ ["name"] = "Exorcism",
+ ["rank"] = 5,
["cost"] = 34000,
- ["texture"] = "Interface/ICONS/ability_thunderclap",
- ["id"] = 24274
+ ["texture"] = "Interface/ICONS/spell_holy_excorcism_02"
},
[3] = {
- ["name"] = "Turn Undead",
- ["rank"] = 3,
- ["cost"] = 34000,
- ["texture"] = "Interface/ICONS/spell_holy_turnundead",
- ["id"] = 10326
+ ["id"] = 25782,
+ ["name"] = "Greater Blessing of Might",
+ ["rank"] = 1,
+ ["cost"] = 46000,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterblessingofkings"
},
[4] = {
- ["name"] = "Shadow Resistance Aura",
- ["rank"] = 3,
+ ["id"] = 24274,
+ ["name"] = "Hammer of Wrath",
+ ["rank"] = 2,
["cost"] = 34000,
- ["texture"] = "Interface/ICONS/spell_shadow_sealofkings",
- ["id"] = 19896
+ ["texture"] = "Interface/ICONS/ability_thunderclap"
},
[5] = {
- ["name"] = "Blessing of Might",
+ ["id"] = 20308,
+ ["name"] = "Seal of the Crusader",
["rank"] = 6,
["cost"] = 34000,
- ["texture"] = "Interface/ICONS/spell_holy_fistofjustice",
- ["id"] = 19838
+ ["texture"] = "Interface/ICONS/spell_holy_holysmite"
},
[6] = {
- ["name"] = "Greater Blessing of Might",
- ["rank"] = 1,
- ["cost"] = 46000,
- ["texture"] = "Interface/ICONS/spell_holy_greaterblessingofkings",
- ["id"] = 25782
+ ["id"] = 19896,
+ ["name"] = "Shadow Resistance Aura",
+ ["rank"] = 3,
+ ["cost"] = 34000,
+ ["texture"] = "Interface/ICONS/spell_shadow_sealofkings"
},
[7] = {
- ["name"] = "Seal of the Crusader",
- ["rank"] = 6,
+ ["id"] = 10326,
+ ["name"] = "Turn Evil",
+ ["rank"] = 1,
["cost"] = 34000,
- ["texture"] = "Interface/ICONS/spell_holy_holysmite",
- ["id"] = 20308
+ ["texture"] = "Interface/ICONS/spell_holy_turnundead"
},
},
[54] = {
[1] = {
- ["name"] = "Blessing of Wisdom",
- ["rank"] = 5,
+ ["id"] = 20729,
+ ["name"] = "Blessing of Sacrifice",
+ ["rank"] = 2,
["cost"] = 40000,
- ["texture"] = "Interface/ICONS/spell_holy_sealofwisdom",
- ["id"] = 19854
+ ["texture"] = "Interface/ICONS/spell_holy_sealofsacrifice"
},
[2] = {
- ["name"] = "Greater Blessing of Wisdom",
- ["rank"] = 1,
+ ["id"] = 19854,
+ ["name"] = "Blessing of Wisdom",
+ ["rank"] = 5,
["cost"] = 40000,
- ["texture"] = "Interface/ICONS/spell_holy_greaterblessingofwisdom",
- ["id"] = 25894
+ ["texture"] = "Interface/ICONS/spell_holy_sealofwisdom"
},
[3] = {
- ["name"] = "Holy Light",
- ["rank"] = 8,
- ["cost"] = 40000,
- ["texture"] = "Interface/ICONS/spell_holy_holybolt",
- ["id"] = 10329
+ ["id"] = 25894,
+ ["name"] = "Greater Blessing of Wisdom",
+ ["rank"] = 1,
+ ["cost"] = 46000,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterblessingofwisdom"
},
[4] = {
- ["name"] = "Blessing of Sacrifice",
- ["rank"] = 2,
+ ["id"] = 10308,
+ ["name"] = "Hammer of Justice",
+ ["rank"] = 4,
["cost"] = 40000,
- ["texture"] = "Interface/ICONS/spell_holy_sealofsacrifice",
- ["id"] = 20729
+ ["texture"] = "Interface/ICONS/spell_holy_sealofmight"
},
[5] = {
- ["name"] = "Hammer of Justice",
- ["rank"] = 4,
+ ["id"] = 10329,
+ ["name"] = "Holy Light",
+ ["rank"] = 8,
["cost"] = 40000,
- ["texture"] = "Interface/ICONS/spell_holy_sealofmight",
- ["id"] = 10308
+ ["texture"] = "Interface/ICONS/spell_holy_holybolt"
},
},
[56] = {
[1] = {
+ ["id"] = 20930,
["name"] = "Holy Shock",
["rank"] = 3,
["cost"] = 2100,
["texture"] = "Interface/ICONS/spell_holy_searinglight",
- ["id"] = 20930,
["talent"] = true
},
[2] = {
+ ["id"] = 19898,
["name"] = "Frost Resistance Aura",
["rank"] = 3,
["cost"] = 42000,
- ["texture"] = "Interface/ICONS/spell_frost_wizardmark",
- ["id"] = 19898
+ ["texture"] = "Interface/ICONS/spell_frost_wizardmark"
},
[3] = {
+ ["id"] = 10301,
["name"] = "Retribution Aura",
["rank"] = 5,
["cost"] = 42000,
- ["texture"] = "Interface/ICONS/spell_holy_auraoflight",
- ["id"] = 10301
+ ["texture"] = "Interface/ICONS/spell_holy_auraoflight"
},
},
[58] = {
[1] = {
+ ["id"] = 19943,
["name"] = "Flash of Light",
["rank"] = 6,
["cost"] = 44000,
- ["texture"] = "Interface/ICONS/spell_holy_flashheal",
- ["id"] = 19943
+ ["texture"] = "Interface/ICONS/spell_holy_flashheal"
},
[2] = {
+ ["id"] = 20293,
["name"] = "Seal of Righteousness",
["rank"] = 8,
["cost"] = 44000,
- ["texture"] = "Interface/ICONS/ability_thunderbolt",
- ["id"] = 20293
+ ["texture"] = "Interface/ICONS/ability_thunderbolt"
},
[3] = {
+ ["id"] = 20357,
["name"] = "Seal of Wisdom",
["rank"] = 3,
["cost"] = 44000,
- ["texture"] = "Interface/ICONS/spell_holy_righteousnessaura",
- ["id"] = 20357
+ ["texture"] = "Interface/ICONS/spell_holy_righteousnessaura"
},
},
[60] = {
[1] = {
+ ["id"] = 32699,
+ ["name"] = "Avenger's Shield",
+ ["rank"] = 2,
+ ["cost"] = 2300,
+ ["texture"] = "Interface/ICONS/spell_holy_avengersshield",
+ ["talent"] = true
+ },
+ [2] = {
+ ["id"] = 20914,
+ ["name"] = "Blessing of Sanctuary",
+ ["rank"] = 4,
+ ["cost"] = 2300,
+ ["texture"] = "Interface/ICONS/spell_nature_lightningshield",
+ ["talent"] = true
+ },
+ [3] = {
+ ["id"] = 20928,
+ ["name"] = "Holy Shield",
+ ["rank"] = 3,
+ ["cost"] = 2300,
+ ["texture"] = "Interface/ICONS/spell_holy_blessingofprotection",
+ ["talent"] = true
+ },
+ [4] = {
+ ["id"] = 20920,
+ ["name"] = "Seal of Command",
+ ["rank"] = 5,
+ ["cost"] = 2300,
+ ["texture"] = "Interface/ICONS/ability_warrior_innerrage",
+ ["talent"] = true
+ },
+ [5] = {
+ ["id"] = 19979,
["name"] = "Blessing of Light",
["rank"] = 3,
["cost"] = 46000,
- ["texture"] = "Interface/ICONS/spell_holy_prayerofhealing02",
- ["id"] = 19979
+ ["texture"] = "Interface/ICONS/spell_holy_prayerofhealing02"
},
- [2] = {
+ [6] = {
+ ["id"] = 25291,
+ ["name"] = "Blessing of Might",
+ ["rank"] = 7,
+ ["cost"] = 50000,
+ ["texture"] = "Interface/ICONS/spell_holy_fistofjustice"
+ },
+ [7] = {
+ ["id"] = 25290,
+ ["name"] = "Blessing of Wisdom",
+ ["rank"] = 6,
+ ["cost"] = 50000,
+ ["texture"] = "Interface/ICONS/spell_holy_sealofwisdom"
+ },
+ [8] = {
+ ["id"] = 20924,
["name"] = "Consecration",
["rank"] = 5,
["cost"] = 2300,
- ["texture"] = "Interface/ICONS/spell_holy_innerfire",
- ["id"] = 20924,
- ["talent"] = true
+ ["texture"] = "Interface/ICONS/spell_holy_innerfire"
},
- [3] = {
+ [9] = {
+ ["id"] = 10293,
+ ["name"] = "Devotion Aura",
+ ["rank"] = 7,
+ ["cost"] = 46000,
+ ["texture"] = "Interface/ICONS/spell_holy_devotionaura"
+ },
+ [10] = {
+ ["id"] = 10314,
["name"] = "Exorcism",
["rank"] = 6,
["cost"] = 46000,
- ["texture"] = "Interface/ICONS/spell_holy_excorcism_02",
- ["id"] = 10314
+ ["texture"] = "Interface/ICONS/spell_holy_excorcism_02"
},
- [4] = {
+ [11] = {
+ ["id"] = 19900,
+ ["name"] = "Fire Resistance Aura",
+ ["rank"] = 3,
+ ["cost"] = 46000,
+ ["texture"] = "Interface/ICONS/spell_fire_sealoffire"
+ },
+ [12] = {
+ ["id"] = 25898,
+ ["name"] = "Greater Blessing of Kings",
+ ["rank"] = 0,
+ ["cost"] = 2300,
+ ["texture"] = "Interface/ICONS/spell_magic_greaterblessingofkings"
+ },
+ [13] = {
+ ["id"] = 25890,
["name"] = "Greater Blessing of Light",
["rank"] = 1,
["cost"] = 46000,
- ["texture"] = "Interface/ICONS/spell_holy_greaterblessingoflight",
- ["id"] = 25890
+ ["texture"] = "Interface/ICONS/spell_holy_greaterblessingoflight"
},
- [5] = {
+ [14] = {
+ ["id"] = 25916,
+ ["name"] = "Greater Blessing of Might",
+ ["rank"] = 2,
+ ["cost"] = 46000,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterblessingofkings"
+ },
+ [15] = {
+ ["id"] = 25895,
+ ["name"] = "Greater Blessing of Salvation",
+ ["rank"] = 0,
+ ["cost"] = 46000,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterblessingofsalvation"
+ },
+ [16] = {
+ ["id"] = 25899,
+ ["name"] = "Greater Blessing of Sanctuary",
+ ["rank"] = 1,
+ ["cost"] = 2300,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterblessingofsanctuary"
+ },
+ [17] = {
+ ["id"] = 25918,
+ ["name"] = "Greater Blessing of Wisdom",
+ ["rank"] = 2,
+ ["cost"] = 46000,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterblessingofwisdom"
+ },
+ [18] = {
+ ["id"] = 24239,
["name"] = "Hammer of Wrath",
["rank"] = 3,
["cost"] = 46000,
- ["texture"] = "Interface/ICONS/ability_thunderclap",
- ["id"] = 24239
+ ["texture"] = "Interface/ICONS/ability_thunderclap"
},
- [6] = {
+ [19] = {
+ ["id"] = 25292,
+ ["name"] = "Holy Light",
+ ["rank"] = 9,
+ ["cost"] = 46000,
+ ["texture"] = "Interface/ICONS/spell_holy_holybolt"
+ },
+ [20] = {
+ ["id"] = 10318,
["name"] = "Holy Wrath",
["rank"] = 2,
["cost"] = 46000,
- ["texture"] = "Interface/ICONS/spell_holy_excorcism",
- ["id"] = 10318
+ ["texture"] = "Interface/ICONS/spell_holy_excorcism"
},
- [7] = {
+ [21] = {
+ ["id"] = 20773,
["name"] = "Redemption",
["rank"] = 5,
["cost"] = 46000,
- ["texture"] = "Interface/ICONS/spell_holy_resurrection",
- ["id"] = 20773
+ ["texture"] = "Interface/ICONS/spell_holy_resurrection"
},
- [8] = {
+ [22] = {
+ ["id"] = 20349,
["name"] = "Seal of Light",
["rank"] = 4,
["cost"] = 46000,
- ["texture"] = "Interface/ICONS/spell_holy_healingaura",
- ["id"] = 20349
+ ["texture"] = "Interface/ICONS/spell_holy_healingaura"
},
- [9] = {
- ["name"] = "Summon Charger",
- ["rank"] = 1,
+ [23] = {
+ ["id"] = 23214,
+ ["name"] = "Draenei",
+ ["rank"] = 0,
["cost"] = 0,
- ["texture"] = "Interface/ICONS/ability_mount_charger",
- ["id"] = 23214
+ ["texture"] = "Interface/ICONS/ability_mount_charger"
},
- [10] = {
- ["name"] = "Blessing of Sanctuary",
- ["rank"] = 4,
- ["cost"] = 2070,
- ["texture"] = "Interface/ICONS/spell_nature_lightningshield",
- ["id"] = 20914,
- ["talent"] = true
+ [24] = {
+ ["id"] = 34767,
+ ["name"] = "Blood Elf",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_mount_charger"
},
- [11] = {
- ["name"] = "Devotion Aura",
+ },
+ [61] = {
+ [1] = {
+ ["id"] = 27158,
+ ["name"] = "Seal of the Crusader",
["rank"] = 7,
- ["cost"] = 46000,
- ["texture"] = "Interface/ICONS/spell_holy_devotionaura",
- ["id"] = 10293
+ ["cost"] = 50000,
+ ["texture"] = "Interface/ICONS/spell_holy_holysmite"
},
- [12] = {
- ["name"] = "Fire Resistance Aura",
+ },
+ [62] = {
+ [1] = {
+ ["id"] = 27147,
+ ["name"] = "Blessing of Sacrifice",
["rank"] = 3,
- ["cost"] = 46000,
- ["texture"] = "Interface/ICONS/spell_fire_sealoffire",
- ["id"] = 19900
+ ["cost"] = 55000,
+ ["texture"] = "Interface/ICONS/spell_holy_sealofsacrifice"
},
- [13] = {
- ["name"] = "Greater Blessing of Kings",
- ["rank"] = 1,
- ["cost"] = 2070,
- ["texture"] = "Interface/ICONS/spell_magic_greaterblessingofkings",
- ["id"] = 25898,
+ [2] = {
+ ["id"] = 32223,
+ ["name"] = "Crusader Aura",
+ ["rank"] = 0,
+ ["cost"] = 55000,
+ ["texture"] = "Interface/ICONS/spell_holy_crusaderaura"
+ },
+ [3] = {
+ ["id"] = 27135,
+ ["name"] = "Holy Light",
+ ["rank"] = 10,
+ ["cost"] = 55000,
+ ["texture"] = "Interface/ICONS/spell_holy_holybolt"
+ },
+ },
+ [63] = {
+ [1] = {
+ ["id"] = 27151,
+ ["name"] = "Shadow Resistance Aura",
+ ["rank"] = 4,
+ ["cost"] = 61000,
+ ["texture"] = "Interface/ICONS/spell_shadow_sealofkings"
+ },
+ },
+ [64] = {
+ [1] = {
+ ["id"] = 27174,
+ ["name"] = "Holy Shock",
+ ["rank"] = 4,
+ ["cost"] = 3350,
+ ["texture"] = "Interface/ICONS/spell_holy_searinglight",
["talent"] = true
},
- [14] = {
- ["name"] = "Greater Blessing of Salvation",
+ [2] = {
+ ["id"] = 356110,
+ ["name"] = "Blood Elf",
["rank"] = 1,
- ["cost"] = 46000,
- ["texture"] = "Interface/ICONS/spell_holy_greaterblessingofsalvation",
- ["id"] = 25895
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_sealofvengeance"
},
- [15] = {
- ["name"] = "Greater Blessing of Sanctuary",
+ [3] = {
+ ["id"] = 356112,
+ ["name"] = "Blood Elf",
["rank"] = 1,
- ["cost"] = 2070,
- ["texture"] = "Interface/ICONS/spell_holy_greaterblessingofsanctuary",
- ["id"] = 25899,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_sealofvengeance"
+ },
+ [4] = {
+ ["id"] = 31892,
+ ["name"] = "Blood Elf",
+ ["rank"] = 1,
+ ["cost"] = 67000,
+ ["texture"] = "Interface/ICONS/spell_holy_sealofblood"
+ },
+ [5] = {
+ ["id"] = 31801,
+ ["name"] = "Draenei",
+ ["rank"] = 1,
+ ["cost"] = 67000,
+ ["texture"] = "Interface/ICONS/spell_holy_sealofvengeance"
+ },
+ },
+ [65] = {
+ [1] = {
+ ["id"] = 27142,
+ ["name"] = "Blessing of Wisdom",
+ ["rank"] = 7,
+ ["cost"] = 75000,
+ ["texture"] = "Interface/ICONS/spell_holy_sealofwisdom"
+ },
+ [2] = {
+ ["id"] = 27143,
+ ["name"] = "Greater Blessing of Wisdom",
+ ["rank"] = 3,
+ ["cost"] = 75000,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterblessingofwisdom"
+ },
+ },
+ [66] = {
+ [1] = {
+ ["id"] = 27137,
+ ["name"] = "Flash of Light",
+ ["rank"] = 7,
+ ["cost"] = 83000,
+ ["texture"] = "Interface/ICONS/spell_holy_flashheal"
+ },
+ [2] = {
+ ["id"] = 27150,
+ ["name"] = "Retribution Aura",
+ ["rank"] = 6,
+ ["cost"] = 83000,
+ ["texture"] = "Interface/ICONS/spell_holy_auraoflight"
+ },
+ [3] = {
+ ["id"] = 27155,
+ ["name"] = "Seal of Righteousness",
+ ["rank"] = 9,
+ ["cost"] = 83000,
+ ["texture"] = "Interface/ICONS/ability_thunderbolt"
+ },
+ [4] = {
+ ["id"] = 33776,
+ ["name"] = "Spiritual Attunement",
+ ["rank"] = 2,
+ ["cost"] = 83000,
+ ["texture"] = "Interface/ICONS/spell_holy_revivechampion"
+ },
+ },
+ [67] = {
+ [1] = {
+ ["id"] = 27166,
+ ["name"] = "Seal of Wisdom",
+ ["rank"] = 4,
+ ["cost"] = 92000,
+ ["texture"] = "Interface/ICONS/spell_holy_righteousnessaura"
+ },
+ },
+ [68] = {
+ [1] = {
+ ["id"] = 27138,
+ ["name"] = "Exorcism",
+ ["rank"] = 7,
+ ["cost"] = 100000,
+ ["texture"] = "Interface/ICONS/spell_holy_excorcism_02"
+ },
+ [2] = {
+ ["id"] = 27152,
+ ["name"] = "Frost Resistance Aura",
+ ["rank"] = 4,
+ ["cost"] = 100000,
+ ["texture"] = "Interface/ICONS/spell_frost_wizardmark"
+ },
+ [3] = {
+ ["id"] = 27180,
+ ["name"] = "Hammer of Wrath",
+ ["rank"] = 4,
+ ["cost"] = 100000,
+ ["texture"] = "Interface/ICONS/ability_thunderclap"
+ },
+ },
+ [69] = {
+ [1] = {
+ ["id"] = 27144,
+ ["name"] = "Blessing of Light",
+ ["rank"] = 4,
+ ["cost"] = 110000,
+ ["texture"] = "Interface/ICONS/spell_holy_prayerofhealing02"
+ },
+ [2] = {
+ ["id"] = 27145,
+ ["name"] = "Greater Blessing of Light",
+ ["rank"] = 2,
+ ["cost"] = 110000,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterblessingoflight"
+ },
+ [3] = {
+ ["id"] = 27139,
+ ["name"] = "Holy Wrath",
+ ["rank"] = 3,
+ ["cost"] = 110000,
+ ["texture"] = "Interface/ICONS/spell_holy_excorcism"
+ },
+ [4] = {
+ ["id"] = 27154,
+ ["name"] = "Lay on Hands",
+ ["rank"] = 4,
+ ["cost"] = 110000,
+ ["texture"] = "Interface/ICONS/spell_holy_layonhands"
+ },
+ [5] = {
+ ["id"] = 27160,
+ ["name"] = "Seal of Light",
+ ["rank"] = 5,
+ ["cost"] = 110000,
+ ["texture"] = "Interface/ICONS/spell_holy_healingaura"
+ },
+ },
+ [70] = {
+ [1] = {
+ ["id"] = 32700,
+ ["name"] = "Avenger's Shield",
+ ["rank"] = 3,
+ ["cost"] = 2300,
+ ["texture"] = "Interface/ICONS/spell_holy_avengersshield",
["talent"] = true
},
- [16] = {
+ [2] = {
+ ["id"] = 27168,
+ ["name"] = "Blessing of Sanctuary",
+ ["rank"] = 5,
+ ["cost"] = 2300,
+ ["texture"] = "Interface/ICONS/spell_nature_lightningshield",
+ ["talent"] = true
+ },
+ [3] = {
+ ["id"] = 27179,
["name"] = "Holy Shield",
- ["rank"] = 3,
- ["cost"] = 2070,
+ ["rank"] = 4,
+ ["cost"] = 2300,
["texture"] = "Interface/ICONS/spell_holy_blessingofprotection",
- ["id"] = 20928,
["talent"] = true
},
- [17] = {
- ["name"] = "Seal of Command",
+ [4] = {
+ ["id"] = 33072,
+ ["name"] = "Holy Shock",
["rank"] = 5,
- ["cost"] = 2070,
+ ["cost"] = 6500,
+ ["texture"] = "Interface/ICONS/spell_holy_searinglight",
+ ["talent"] = true
+ },
+ [5] = {
+ ["id"] = 27170,
+ ["name"] = "Seal of Command",
+ ["rank"] = 6,
+ ["cost"] = 2300,
["texture"] = "Interface/ICONS/ability_warrior_innerrage",
- ["id"] = 20920,
["talent"] = true
},
+ [6] = {
+ ["id"] = 31884,
+ ["name"] = "Avenging Wrath",
+ ["rank"] = 0,
+ ["cost"] = 130000,
+ ["texture"] = "Interface/ICONS/spell_holy_avenginewrath"
+ },
+ [7] = {
+ ["id"] = 27140,
+ ["name"] = "Blessing of Might",
+ ["rank"] = 8,
+ ["cost"] = 50000,
+ ["texture"] = "Interface/ICONS/spell_holy_fistofjustice"
+ },
+ [8] = {
+ ["id"] = 27148,
+ ["name"] = "Blessing of Sacrifice",
+ ["rank"] = 4,
+ ["cost"] = 130000,
+ ["texture"] = "Interface/ICONS/spell_holy_sealofsacrifice"
+ },
+ [9] = {
+ ["id"] = 27173,
+ ["name"] = "Consecration",
+ ["rank"] = 6,
+ ["cost"] = 130000,
+ ["texture"] = "Interface/ICONS/spell_holy_innerfire"
+ },
+ [10] = {
+ ["id"] = 27149,
+ ["name"] = "Devotion Aura",
+ ["rank"] = 8,
+ ["cost"] = 130000,
+ ["texture"] = "Interface/ICONS/spell_holy_devotionaura"
+ },
+ [11] = {
+ ["id"] = 27153,
+ ["name"] = "Fire Resistance Aura",
+ ["rank"] = 4,
+ ["cost"] = 130000,
+ ["texture"] = "Interface/ICONS/spell_fire_sealoffire"
+ },
+ [12] = {
+ ["id"] = 27141,
+ ["name"] = "Greater Blessing of Might",
+ ["rank"] = 3,
+ ["cost"] = 46000,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterblessingofkings"
+ },
+ [13] = {
+ ["id"] = 27169,
+ ["name"] = "Greater Blessing of Sanctuary",
+ ["rank"] = 2,
+ ["cost"] = 2300,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterblessingofsanctuary"
+ },
+ [14] = {
+ ["id"] = 27136,
+ ["name"] = "Holy Light",
+ ["rank"] = 11,
+ ["cost"] = 130000,
+ ["texture"] = "Interface/ICONS/spell_holy_holybolt"
+ },
+ [15] = {
+ ["id"] = 348704,
+ ["name"] = "Blood Elf",
+ ["rank"] = 1,
+ ["cost"] = 67000,
+ ["texture"] = "Interface/ICONS/spell_holy_sealofvengeance"
+ },
+ [16] = {
+ ["id"] = 348700,
+ ["name"] = "Draenei",
+ ["rank"] = 1,
+ ["cost"] = 67000,
+ ["texture"] = "Interface/ICONS/spell_holy_sealofblood"
+ },
},
}
diff --git a/Database/classes/Priest.lua b/Database/classes/Priest.lua
new file mode 100644
index 0000000..d368bc2
--- /dev/null
+++ b/Database/classes/Priest.lua
@@ -0,0 +1,1866 @@
+local _, FieldGuide = ...
+
+FieldGuide.PRIEST = {
+ [1] = {
+ [1] = {
+ ["id"] = 5019,
+ ["name"] = "Shoot",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_shootwand"
+ },
+ [2] = {
+ ["id"] = 2050,
+ ["name"] = "Lesser Heal",
+ ["rank"] = 1,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_lesserheal"
+ },
+ [3] = {
+ ["id"] = 1243,
+ ["name"] = "Power Word: Fortitude",
+ ["rank"] = 1,
+ ["cost"] = 10,
+ ["texture"] = "Interface/ICONS/spell_holy_wordfortitude"
+ },
+ [4] = {
+ ["id"] = 585,
+ ["name"] = "Smite",
+ ["rank"] = 1,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_holysmite"
+ },
+ },
+ [4] = {
+ [1] = {
+ ["id"] = 2052,
+ ["name"] = "Lesser Heal",
+ ["rank"] = 2,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/spell_holy_lesserheal"
+ },
+ [2] = {
+ ["id"] = 589,
+ ["name"] = "Shadow Word: Pain",
+ ["rank"] = 1,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/spell_shadow_shadowwordpain"
+ },
+ },
+ [6] = {
+ [1] = {
+ ["id"] = 17,
+ ["name"] = "Power Word: Shield",
+ ["rank"] = 1,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/spell_holy_powerwordshield"
+ },
+ [2] = {
+ ["id"] = 591,
+ ["name"] = "Smite",
+ ["rank"] = 2,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/spell_holy_holysmite"
+ },
+ },
+ [8] = {
+ [1] = {
+ ["id"] = 586,
+ ["name"] = "Fade",
+ ["rank"] = 1,
+ ["cost"] = 200,
+ ["texture"] = "Interface/ICONS/spell_magic_lesserinvisibilty"
+ },
+ [2] = {
+ ["id"] = 139,
+ ["name"] = "Renew",
+ ["rank"] = 1,
+ ["cost"] = 200,
+ ["texture"] = "Interface/ICONS/spell_holy_renew"
+ },
+ },
+ [10] = {
+ [1] = {
+ ["id"] = 13908,
+ ["name"] = "Dwarf",
+ ["rank"] = 1,
+ ["cost"] = 76,
+ ["texture"] = "Interface/ICONS/spell_holy_restoration"
+ },
+ [2] = {
+ ["id"] = 9035,
+ ["name"] = "Troll",
+ ["rank"] = 1,
+ ["cost"] = 90,
+ ["texture"] = "Interface/ICONS/spell_shadow_fingerofdeath"
+ },
+ [3] = {
+ ["id"] = 2053,
+ ["name"] = "Lesser Heal",
+ ["rank"] = 3,
+ ["cost"] = 300,
+ ["texture"] = "Interface/ICONS/spell_holy_lesserheal"
+ },
+ [4] = {
+ ["id"] = 8092,
+ ["name"] = "Mind Blast",
+ ["rank"] = 1,
+ ["cost"] = 300,
+ ["texture"] = "Interface/ICONS/spell_shadow_unholyfrenzy"
+ },
+ [5] = {
+ ["id"] = 2006,
+ ["name"] = "Resurrection",
+ ["rank"] = 1,
+ ["cost"] = 300,
+ ["texture"] = "Interface/ICONS/spell_holy_resurrection"
+ },
+ [6] = {
+ ["id"] = 594,
+ ["name"] = "Shadow Word: Pain",
+ ["rank"] = 2,
+ ["cost"] = 300,
+ ["texture"] = "Interface/ICONS/spell_shadow_shadowwordpain"
+ },
+ [7] = {
+ ["id"] = 10797,
+ ["name"] = "Night Elf",
+ ["rank"] = 1,
+ ["cost"] = 90,
+ ["texture"] = "Interface/ICONS/spell_arcane_starfire"
+ },
+ [8] = {
+ ["id"] = 32548,
+ ["name"] = "Draenei",
+ ["rank"] = 0,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/spell_holy_symbolofhope"
+ },
+ [9] = {
+ ["id"] = 2652,
+ ["name"] = "Blood Elf",
+ ["rank"] = 1,
+ ["cost"] = 90,
+ ["texture"] = "Interface/ICONS/spell_shadow_deadofnight"
+ },
+ },
+ [12] = {
+ [1] = {
+ ["id"] = 588,
+ ["name"] = "Inner Fire",
+ ["rank"] = 1,
+ ["cost"] = 800,
+ ["texture"] = "Interface/ICONS/spell_holy_innerfire"
+ },
+ [2] = {
+ ["id"] = 1244,
+ ["name"] = "Power Word: Fortitude",
+ ["rank"] = 2,
+ ["cost"] = 800,
+ ["texture"] = "Interface/ICONS/spell_holy_wordfortitude"
+ },
+ [3] = {
+ ["id"] = 592,
+ ["name"] = "Power Word: Shield",
+ ["rank"] = 2,
+ ["cost"] = 800,
+ ["texture"] = "Interface/ICONS/spell_holy_powerwordshield"
+ },
+ },
+ [14] = {
+ [1] = {
+ ["id"] = 528,
+ ["name"] = "Cure Disease",
+ ["rank"] = 0,
+ ["cost"] = 1200,
+ ["texture"] = "Interface/ICONS/spell_holy_nullifydisease"
+ },
+ [2] = {
+ ["id"] = 8122,
+ ["name"] = "Psychic Scream",
+ ["rank"] = 1,
+ ["cost"] = 1200,
+ ["texture"] = "Interface/ICONS/spell_shadow_psychicscream"
+ },
+ [3] = {
+ ["id"] = 6074,
+ ["name"] = "Renew",
+ ["rank"] = 2,
+ ["cost"] = 1200,
+ ["texture"] = "Interface/ICONS/spell_holy_renew"
+ },
+ [4] = {
+ ["id"] = 598,
+ ["name"] = "Smite",
+ ["rank"] = 3,
+ ["cost"] = 1200,
+ ["texture"] = "Interface/ICONS/spell_holy_holysmite"
+ },
+ },
+ [16] = {
+ [1] = {
+ ["id"] = 2054,
+ ["name"] = "Heal",
+ ["rank"] = 1,
+ ["cost"] = 1600,
+ ["texture"] = "Interface/ICONS/spell_holy_heal"
+ },
+ [2] = {
+ ["id"] = 8102,
+ ["name"] = "Mind Blast",
+ ["rank"] = 2,
+ ["cost"] = 1600,
+ ["texture"] = "Interface/ICONS/spell_shadow_unholyfrenzy"
+ },
+ },
+ [18] = {
+ [1] = {
+ ["id"] = 19236,
+ ["name"] = "Dwarf",
+ ["rank"] = 2,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/spell_holy_restoration"
+ },
+ [2] = {
+ ["id"] = 527,
+ ["name"] = "Dispel Magic",
+ ["rank"] = 1,
+ ["cost"] = 2000,
+ ["texture"] = "Interface/ICONS/spell_holy_dispelmagic"
+ },
+ [3] = {
+ ["id"] = 600,
+ ["name"] = "Power Word: Shield",
+ ["rank"] = 3,
+ ["cost"] = 2000,
+ ["texture"] = "Interface/ICONS/spell_holy_powerwordshield"
+ },
+ [4] = {
+ ["id"] = 970,
+ ["name"] = "Shadow Word: Pain",
+ ["rank"] = 3,
+ ["cost"] = 2000,
+ ["texture"] = "Interface/ICONS/spell_shadow_shadowwordpain"
+ },
+ [5] = {
+ ["id"] = 19296,
+ ["name"] = "Night Elf",
+ ["rank"] = 2,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/spell_arcane_starfire"
+ },
+ },
+ [20] = {
+ [1] = {
+ ["id"] = 44041,
+ ["name"] = "Draenei",
+ ["rank"] = 1,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/spell_holy_chastise"
+ },
+ [2] = {
+ ["id"] = 32676,
+ ["name"] = "Blood Elf",
+ ["rank"] = 0,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/spell_arcane_studentofmagic"
+ },
+ [3] = {
+ ["id"] = 2944,
+ ["name"] = "Undead",
+ ["rank"] = 1,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/spell_shadow_blackplague"
+ },
+ [4] = {
+ ["id"] = 2651,
+ ["name"] = "Night Elf",
+ ["rank"] = 0,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/spell_holy_elunesgrace"
+ },
+ [5] = {
+ ["id"] = 9578,
+ ["name"] = "Fade",
+ ["rank"] = 2,
+ ["cost"] = 3000,
+ ["texture"] = "Interface/ICONS/spell_magic_lesserinvisibilty"
+ },
+ [6] = {
+ ["id"] = 6346,
+ ["name"] = "Fear Ward",
+ ["rank"] = 0,
+ ["cost"] = 800,
+ ["texture"] = "Interface/ICONS/spell_holy_excorcism"
+ },
+ [7] = {
+ ["id"] = 13896,
+ ["name"] = "Human",
+ ["rank"] = 1,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/spell_shadow_ritualofsacrifice"
+ },
+ [8] = {
+ ["id"] = 2061,
+ ["name"] = "Flash Heal",
+ ["rank"] = 1,
+ ["cost"] = 3000,
+ ["texture"] = "Interface/ICONS/spell_holy_flashheal"
+ },
+ [9] = {
+ ["id"] = 19281,
+ ["name"] = "Troll",
+ ["rank"] = 2,
+ ["cost"] = 150,
+ ["texture"] = "Interface/ICONS/spell_shadow_fingerofdeath"
+ },
+ [10] = {
+ ["id"] = 14914,
+ ["name"] = "Holy Fire",
+ ["rank"] = 1,
+ ["cost"] = 3000,
+ ["texture"] = "Interface/ICONS/spell_holy_searinglight"
+ },
+ [11] = {
+ ["id"] = 7128,
+ ["name"] = "Inner Fire",
+ ["rank"] = 2,
+ ["cost"] = 3000,
+ ["texture"] = "Interface/ICONS/spell_holy_innerfire"
+ },
+ [12] = {
+ ["id"] = 453,
+ ["name"] = "Mind Soothe",
+ ["rank"] = 1,
+ ["cost"] = 3000,
+ ["texture"] = "Interface/ICONS/spell_holy_mindsooth"
+ },
+ [13] = {
+ ["id"] = 6075,
+ ["name"] = "Renew",
+ ["rank"] = 3,
+ ["cost"] = 3000,
+ ["texture"] = "Interface/ICONS/spell_holy_renew"
+ },
+ [14] = {
+ ["id"] = 9484,
+ ["name"] = "Shackle Undead",
+ ["rank"] = 1,
+ ["cost"] = 3000,
+ ["texture"] = "Interface/ICONS/spell_nature_slow"
+ },
+ [15] = {
+ ["id"] = 18137,
+ ["name"] = "Troll",
+ ["rank"] = 1,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/spell_nature_lightningshield"
+ },
+ [16] = {
+ ["id"] = 19261,
+ ["name"] = "Blood Elf",
+ ["rank"] = 2,
+ ["cost"] = 150,
+ ["texture"] = "Interface/ICONS/spell_shadow_deadofnight"
+ },
+ },
+ [22] = {
+ [1] = {
+ ["id"] = 2055,
+ ["name"] = "Heal",
+ ["rank"] = 2,
+ ["cost"] = 4000,
+ ["texture"] = "Interface/ICONS/spell_holy_heal"
+ },
+ [2] = {
+ ["id"] = 8103,
+ ["name"] = "Mind Blast",
+ ["rank"] = 3,
+ ["cost"] = 4000,
+ ["texture"] = "Interface/ICONS/spell_shadow_unholyfrenzy"
+ },
+ [3] = {
+ ["id"] = 2096,
+ ["name"] = "Mind Vision",
+ ["rank"] = 1,
+ ["cost"] = 4000,
+ ["texture"] = "Interface/ICONS/spell_holy_mindvision"
+ },
+ [4] = {
+ ["id"] = 2010,
+ ["name"] = "Resurrection",
+ ["rank"] = 2,
+ ["cost"] = 4000,
+ ["texture"] = "Interface/ICONS/spell_holy_resurrection"
+ },
+ [5] = {
+ ["id"] = 984,
+ ["name"] = "Smite",
+ ["rank"] = 4,
+ ["cost"] = 4000,
+ ["texture"] = "Interface/ICONS/spell_holy_holysmite"
+ },
+ },
+ [24] = {
+ [1] = {
+ ["id"] = 15262,
+ ["name"] = "Holy Fire",
+ ["rank"] = 2,
+ ["cost"] = 5000,
+ ["texture"] = "Interface/ICONS/spell_holy_searinglight"
+ },
+ [2] = {
+ ["id"] = 8129,
+ ["name"] = "Mana Burn",
+ ["rank"] = 1,
+ ["cost"] = 5000,
+ ["texture"] = "Interface/ICONS/spell_shadow_manaburn"
+ },
+ [3] = {
+ ["id"] = 1245,
+ ["name"] = "Power Word: Fortitude",
+ ["rank"] = 3,
+ ["cost"] = 5000,
+ ["texture"] = "Interface/ICONS/spell_holy_wordfortitude"
+ },
+ [4] = {
+ ["id"] = 3747,
+ ["name"] = "Power Word: Shield",
+ ["rank"] = 4,
+ ["cost"] = 5000,
+ ["texture"] = "Interface/ICONS/spell_holy_powerwordshield"
+ },
+ },
+ [26] = {
+ [1] = {
+ ["id"] = 19238,
+ ["name"] = "Dwarf",
+ ["rank"] = 3,
+ ["cost"] = 300,
+ ["texture"] = "Interface/ICONS/spell_holy_restoration"
+ },
+ [2] = {
+ ["id"] = 9472,
+ ["name"] = "Flash Heal",
+ ["rank"] = 2,
+ ["cost"] = 6000,
+ ["texture"] = "Interface/ICONS/spell_holy_flashheal"
+ },
+ [3] = {
+ ["id"] = 6076,
+ ["name"] = "Renew",
+ ["rank"] = 4,
+ ["cost"] = 6000,
+ ["texture"] = "Interface/ICONS/spell_holy_renew"
+ },
+ [4] = {
+ ["id"] = 992,
+ ["name"] = "Shadow Word: Pain",
+ ["rank"] = 4,
+ ["cost"] = 6000,
+ ["texture"] = "Interface/ICONS/spell_shadow_shadowwordpain"
+ },
+ [5] = {
+ ["id"] = 19299,
+ ["name"] = "Night Elf",
+ ["rank"] = 3,
+ ["cost"] = 300,
+ ["texture"] = "Interface/ICONS/spell_arcane_starfire"
+ },
+ },
+ [28] = {
+ [1] = {
+ ["id"] = 15430,
+ ["name"] = "Holy Nova",
+ ["rank"] = 2,
+ ["cost"] = 400,
+ ["texture"] = "Interface/ICONS/spell_holy_holynova",
+ ["talent"] = true
+ },
+ [2] = {
+ ["id"] = 17311,
+ ["name"] = "Mind Flay",
+ ["rank"] = 2,
+ ["cost"] = 400,
+ ["texture"] = "Interface/ICONS/spell_shadow_siphonmana",
+ ["talent"] = true
+ },
+ [3] = {
+ ["id"] = 19276,
+ ["name"] = "Undead",
+ ["rank"] = 2,
+ ["cost"] = 400,
+ ["texture"] = "Interface/ICONS/spell_shadow_blackplague"
+ },
+ [4] = {
+ ["id"] = 6063,
+ ["name"] = "Heal",
+ ["rank"] = 3,
+ ["cost"] = 8000,
+ ["texture"] = "Interface/ICONS/spell_holy_heal02"
+ },
+ [5] = {
+ ["id"] = 8104,
+ ["name"] = "Mind Blast",
+ ["rank"] = 4,
+ ["cost"] = 8000,
+ ["texture"] = "Interface/ICONS/spell_shadow_unholyfrenzy"
+ },
+ [6] = {
+ ["id"] = 8124,
+ ["name"] = "Psychic Scream",
+ ["rank"] = 2,
+ ["cost"] = 8000,
+ ["texture"] = "Interface/ICONS/spell_shadow_psychicscream"
+ },
+ [7] = {
+ ["id"] = 19308,
+ ["name"] = "Troll",
+ ["rank"] = 2,
+ ["cost"] = 400,
+ ["texture"] = "Interface/ICONS/spell_nature_lightningshield"
+ },
+ },
+ [30] = {
+ [1] = {
+ ["id"] = 44043,
+ ["name"] = "Draenei",
+ ["rank"] = 2,
+ ["cost"] = 500,
+ ["texture"] = "Interface/ICONS/spell_holy_chastise"
+ },
+ [2] = {
+ ["id"] = 9579,
+ ["name"] = "Fade",
+ ["rank"] = 3,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/spell_magic_lesserinvisibilty"
+ },
+ [3] = {
+ ["id"] = 19271,
+ ["name"] = "Human",
+ ["rank"] = 2,
+ ["cost"] = 500,
+ ["texture"] = "Interface/ICONS/spell_shadow_ritualofsacrifice"
+ },
+ [4] = {
+ ["id"] = 19282,
+ ["name"] = "Troll",
+ ["rank"] = 3,
+ ["cost"] = 500,
+ ["texture"] = "Interface/ICONS/spell_shadow_fingerofdeath"
+ },
+ [5] = {
+ ["id"] = 15263,
+ ["name"] = "Holy Fire",
+ ["rank"] = 3,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/spell_holy_searinglight"
+ },
+ [6] = {
+ ["id"] = 602,
+ ["name"] = "Inner Fire",
+ ["rank"] = 3,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/spell_holy_innerfire"
+ },
+ [7] = {
+ ["id"] = 605,
+ ["name"] = "Mind Control",
+ ["rank"] = 1,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/spell_shadow_shadowworddominate"
+ },
+ [8] = {
+ ["id"] = 6065,
+ ["name"] = "Power Word: Shield",
+ ["rank"] = 5,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/spell_holy_powerwordshield"
+ },
+ [9] = {
+ ["id"] = 596,
+ ["name"] = "Prayer of Healing",
+ ["rank"] = 1,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/spell_holy_prayerofhealing02"
+ },
+ [10] = {
+ ["id"] = 976,
+ ["name"] = "Shadow Protection",
+ ["rank"] = 1,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/spell_shadow_antishadow"
+ },
+ [11] = {
+ ["id"] = 1004,
+ ["name"] = "Smite",
+ ["rank"] = 5,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/spell_holy_holysmite"
+ },
+ [12] = {
+ ["id"] = 19262,
+ ["name"] = "Blood Elf",
+ ["rank"] = 3,
+ ["cost"] = 500,
+ ["texture"] = "Interface/ICONS/spell_shadow_deadofnight"
+ },
+ },
+ [32] = {
+ [1] = {
+ ["id"] = 552,
+ ["name"] = "Abolish Disease",
+ ["rank"] = 0,
+ ["cost"] = 11000,
+ ["texture"] = "Interface/ICONS/spell_nature_nullifydisease"
+ },
+ [2] = {
+ ["id"] = 9473,
+ ["name"] = "Flash Heal",
+ ["rank"] = 3,
+ ["cost"] = 11000,
+ ["texture"] = "Interface/ICONS/spell_holy_flashheal"
+ },
+ [3] = {
+ ["id"] = 8131,
+ ["name"] = "Mana Burn",
+ ["rank"] = 2,
+ ["cost"] = 11000,
+ ["texture"] = "Interface/ICONS/spell_shadow_manaburn"
+ },
+ [4] = {
+ ["id"] = 6077,
+ ["name"] = "Renew",
+ ["rank"] = 5,
+ ["cost"] = 11000,
+ ["texture"] = "Interface/ICONS/spell_holy_renew"
+ },
+ },
+ [34] = {
+ [1] = {
+ ["id"] = 19240,
+ ["name"] = "Dwarf",
+ ["rank"] = 4,
+ ["cost"] = 600,
+ ["texture"] = "Interface/ICONS/spell_holy_restoration"
+ },
+ [2] = {
+ ["id"] = 6064,
+ ["name"] = "Heal",
+ ["rank"] = 4,
+ ["cost"] = 12000,
+ ["texture"] = "Interface/ICONS/spell_holy_heal02"
+ },
+ [3] = {
+ ["id"] = 1706,
+ ["name"] = "Levitate",
+ ["rank"] = 0,
+ ["cost"] = 12000,
+ ["texture"] = "Interface/ICONS/spell_holy_layonhands"
+ },
+ [4] = {
+ ["id"] = 8105,
+ ["name"] = "Mind Blast",
+ ["rank"] = 5,
+ ["cost"] = 12000,
+ ["texture"] = "Interface/ICONS/spell_shadow_unholyfrenzy"
+ },
+ [5] = {
+ ["id"] = 10880,
+ ["name"] = "Resurrection",
+ ["rank"] = 3,
+ ["cost"] = 12000,
+ ["texture"] = "Interface/ICONS/spell_holy_resurrection"
+ },
+ [6] = {
+ ["id"] = 2767,
+ ["name"] = "Shadow Word: Pain",
+ ["rank"] = 5,
+ ["cost"] = 12000,
+ ["texture"] = "Interface/ICONS/spell_shadow_shadowwordpain"
+ },
+ [7] = {
+ ["id"] = 19302,
+ ["name"] = "Night Elf",
+ ["rank"] = 4,
+ ["cost"] = 600,
+ ["texture"] = "Interface/ICONS/spell_arcane_starfire"
+ },
+ },
+ [36] = {
+ [1] = {
+ ["id"] = 15431,
+ ["name"] = "Holy Nova",
+ ["rank"] = 3,
+ ["cost"] = 700,
+ ["texture"] = "Interface/ICONS/spell_holy_holynova",
+ ["talent"] = true
+ },
+ [2] = {
+ ["id"] = 17312,
+ ["name"] = "Mind Flay",
+ ["rank"] = 3,
+ ["cost"] = 700,
+ ["texture"] = "Interface/ICONS/spell_shadow_siphonmana",
+ ["talent"] = true
+ },
+ [3] = {
+ ["id"] = 19277,
+ ["name"] = "Undead",
+ ["rank"] = 3,
+ ["cost"] = 700,
+ ["texture"] = "Interface/ICONS/spell_shadow_blackplague"
+ },
+ [4] = {
+ ["id"] = 988,
+ ["name"] = "Dispel Magic",
+ ["rank"] = 2,
+ ["cost"] = 14000,
+ ["texture"] = "Interface/ICONS/spell_holy_dispelmagic"
+ },
+ [5] = {
+ ["id"] = 15264,
+ ["name"] = "Holy Fire",
+ ["rank"] = 4,
+ ["cost"] = 14000,
+ ["texture"] = "Interface/ICONS/spell_holy_searinglight"
+ },
+ [6] = {
+ ["id"] = 8192,
+ ["name"] = "Mind Soothe",
+ ["rank"] = 2,
+ ["cost"] = 14000,
+ ["texture"] = "Interface/ICONS/spell_holy_mindsooth"
+ },
+ [7] = {
+ ["id"] = 2791,
+ ["name"] = "Power Word: Fortitude",
+ ["rank"] = 4,
+ ["cost"] = 14000,
+ ["texture"] = "Interface/ICONS/spell_holy_wordfortitude"
+ },
+ [8] = {
+ ["id"] = 6066,
+ ["name"] = "Power Word: Shield",
+ ["rank"] = 6,
+ ["cost"] = 14000,
+ ["texture"] = "Interface/ICONS/spell_holy_powerwordshield"
+ },
+ [9] = {
+ ["id"] = 19309,
+ ["name"] = "Troll",
+ ["rank"] = 3,
+ ["cost"] = 700,
+ ["texture"] = "Interface/ICONS/spell_nature_lightningshield"
+ },
+ },
+ [38] = {
+ [1] = {
+ ["id"] = 9474,
+ ["name"] = "Flash Heal",
+ ["rank"] = 4,
+ ["cost"] = 16000,
+ ["texture"] = "Interface/ICONS/spell_holy_flashheal"
+ },
+ [2] = {
+ ["id"] = 6078,
+ ["name"] = "Renew",
+ ["rank"] = 6,
+ ["cost"] = 16000,
+ ["texture"] = "Interface/ICONS/spell_holy_renew"
+ },
+ [3] = {
+ ["id"] = 6060,
+ ["name"] = "Smite",
+ ["rank"] = 6,
+ ["cost"] = 16000,
+ ["texture"] = "Interface/ICONS/spell_holy_holysmite"
+ },
+ },
+ [40] = {
+ [1] = {
+ ["id"] = 14818,
+ ["name"] = "Divine Spirit",
+ ["rank"] = 2,
+ ["cost"] = 900,
+ ["texture"] = "Interface/ICONS/spell_holy_divinespirit",
+ ["talent"] = true
+ },
+ [2] = {
+ ["id"] = 44044,
+ ["name"] = "Draenei",
+ ["rank"] = 3,
+ ["cost"] = 900,
+ ["texture"] = "Interface/ICONS/spell_holy_chastise"
+ },
+ [3] = {
+ ["id"] = 9592,
+ ["name"] = "Fade",
+ ["rank"] = 4,
+ ["cost"] = 18000,
+ ["texture"] = "Interface/ICONS/spell_magic_lesserinvisibilty"
+ },
+ [4] = {
+ ["id"] = 19273,
+ ["name"] = "Human",
+ ["rank"] = 3,
+ ["cost"] = 900,
+ ["texture"] = "Interface/ICONS/spell_shadow_ritualofsacrifice"
+ },
+ [5] = {
+ ["id"] = 2060,
+ ["name"] = "Greater Heal",
+ ["rank"] = 1,
+ ["cost"] = 18000,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal"
+ },
+ [6] = {
+ ["id"] = 19283,
+ ["name"] = "Troll",
+ ["rank"] = 4,
+ ["cost"] = 900,
+ ["texture"] = "Interface/ICONS/spell_shadow_fingerofdeath"
+ },
+ [7] = {
+ ["id"] = 1006,
+ ["name"] = "Inner Fire",
+ ["rank"] = 4,
+ ["cost"] = 18000,
+ ["texture"] = "Interface/ICONS/spell_holy_innerfire"
+ },
+ [8] = {
+ ["id"] = 10874,
+ ["name"] = "Mana Burn",
+ ["rank"] = 3,
+ ["cost"] = 18000,
+ ["texture"] = "Interface/ICONS/spell_shadow_manaburn"
+ },
+ [9] = {
+ ["id"] = 8106,
+ ["name"] = "Mind Blast",
+ ["rank"] = 6,
+ ["cost"] = 18000,
+ ["texture"] = "Interface/ICONS/spell_shadow_unholyfrenzy"
+ },
+ [10] = {
+ ["id"] = 996,
+ ["name"] = "Prayer of Healing",
+ ["rank"] = 2,
+ ["cost"] = 18000,
+ ["texture"] = "Interface/ICONS/spell_holy_prayerofhealing02"
+ },
+ [11] = {
+ ["id"] = 9485,
+ ["name"] = "Shackle Undead",
+ ["rank"] = 2,
+ ["cost"] = 18000,
+ ["texture"] = "Interface/ICONS/spell_nature_slow"
+ },
+ [12] = {
+ ["id"] = 19264,
+ ["name"] = "Blood Elf",
+ ["rank"] = 4,
+ ["cost"] = 900,
+ ["texture"] = "Interface/ICONS/spell_shadow_deadofnight"
+ },
+ },
+ [42] = {
+ [1] = {
+ ["id"] = 19241,
+ ["name"] = "Dwarf",
+ ["rank"] = 5,
+ ["cost"] = 1100,
+ ["texture"] = "Interface/ICONS/spell_holy_restoration"
+ },
+ [2] = {
+ ["id"] = 15265,
+ ["name"] = "Holy Fire",
+ ["rank"] = 5,
+ ["cost"] = 22000,
+ ["texture"] = "Interface/ICONS/spell_holy_searinglight"
+ },
+ [3] = {
+ ["id"] = 10898,
+ ["name"] = "Power Word: Shield",
+ ["rank"] = 7,
+ ["cost"] = 22000,
+ ["texture"] = "Interface/ICONS/spell_holy_powerwordshield"
+ },
+ [4] = {
+ ["id"] = 10888,
+ ["name"] = "Psychic Scream",
+ ["rank"] = 3,
+ ["cost"] = 22000,
+ ["texture"] = "Interface/ICONS/spell_shadow_psychicscream"
+ },
+ [5] = {
+ ["id"] = 10957,
+ ["name"] = "Shadow Protection",
+ ["rank"] = 2,
+ ["cost"] = 22000,
+ ["texture"] = "Interface/ICONS/spell_shadow_antishadow"
+ },
+ [6] = {
+ ["id"] = 10892,
+ ["name"] = "Shadow Word: Pain",
+ ["rank"] = 6,
+ ["cost"] = 22000,
+ ["texture"] = "Interface/ICONS/spell_shadow_shadowwordpain"
+ },
+ [7] = {
+ ["id"] = 19303,
+ ["name"] = "Night Elf",
+ ["rank"] = 5,
+ ["cost"] = 1100,
+ ["texture"] = "Interface/ICONS/spell_arcane_starfire"
+ },
+ },
+ [44] = {
+ [1] = {
+ ["id"] = 27799,
+ ["name"] = "Holy Nova",
+ ["rank"] = 4,
+ ["cost"] = 1200,
+ ["texture"] = "Interface/ICONS/spell_holy_holynova",
+ ["talent"] = true
+ },
+ [2] = {
+ ["id"] = 17313,
+ ["name"] = "Mind Flay",
+ ["rank"] = 4,
+ ["cost"] = 1200,
+ ["texture"] = "Interface/ICONS/spell_shadow_siphonmana",
+ ["talent"] = true
+ },
+ [3] = {
+ ["id"] = 19278,
+ ["name"] = "Undead",
+ ["rank"] = 4,
+ ["cost"] = 1200,
+ ["texture"] = "Interface/ICONS/spell_shadow_blackplague"
+ },
+ [4] = {
+ ["id"] = 10915,
+ ["name"] = "Flash Heal",
+ ["rank"] = 5,
+ ["cost"] = 24000,
+ ["texture"] = "Interface/ICONS/spell_holy_flashheal"
+ },
+ [5] = {
+ ["id"] = 10911,
+ ["name"] = "Mind Control",
+ ["rank"] = 2,
+ ["cost"] = 24000,
+ ["texture"] = "Interface/ICONS/spell_shadow_shadowworddominate"
+ },
+ [6] = {
+ ["id"] = 10909,
+ ["name"] = "Mind Vision",
+ ["rank"] = 2,
+ ["cost"] = 24000,
+ ["texture"] = "Interface/ICONS/spell_holy_mindvision"
+ },
+ [7] = {
+ ["id"] = 10927,
+ ["name"] = "Renew",
+ ["rank"] = 7,
+ ["cost"] = 24000,
+ ["texture"] = "Interface/ICONS/spell_holy_renew"
+ },
+ [8] = {
+ ["id"] = 19310,
+ ["name"] = "Troll",
+ ["rank"] = 4,
+ ["cost"] = 1200,
+ ["texture"] = "Interface/ICONS/spell_nature_lightningshield"
+ },
+ },
+ [46] = {
+ [1] = {
+ ["id"] = 10963,
+ ["name"] = "Greater Heal",
+ ["rank"] = 2,
+ ["cost"] = 26000,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal"
+ },
+ [2] = {
+ ["id"] = 10945,
+ ["name"] = "Mind Blast",
+ ["rank"] = 7,
+ ["cost"] = 26000,
+ ["texture"] = "Interface/ICONS/spell_shadow_unholyfrenzy"
+ },
+ [3] = {
+ ["id"] = 10881,
+ ["name"] = "Resurrection",
+ ["rank"] = 4,
+ ["cost"] = 26000,
+ ["texture"] = "Interface/ICONS/spell_holy_resurrection"
+ },
+ [4] = {
+ ["id"] = 10933,
+ ["name"] = "Smite",
+ ["rank"] = 7,
+ ["cost"] = 26000,
+ ["texture"] = "Interface/ICONS/spell_holy_holysmite"
+ },
+ },
+ [48] = {
+ [1] = {
+ ["id"] = 15266,
+ ["name"] = "Holy Fire",
+ ["rank"] = 6,
+ ["cost"] = 28000,
+ ["texture"] = "Interface/ICONS/spell_holy_searinglight"
+ },
+ [2] = {
+ ["id"] = 10875,
+ ["name"] = "Mana Burn",
+ ["rank"] = 4,
+ ["cost"] = 28000,
+ ["texture"] = "Interface/ICONS/spell_shadow_manaburn"
+ },
+ [3] = {
+ ["id"] = 10937,
+ ["name"] = "Power Word: Fortitude",
+ ["rank"] = 5,
+ ["cost"] = 28000,
+ ["texture"] = "Interface/ICONS/spell_holy_wordfortitude"
+ },
+ [4] = {
+ ["id"] = 10899,
+ ["name"] = "Power Word: Shield",
+ ["rank"] = 8,
+ ["cost"] = 28000,
+ ["texture"] = "Interface/ICONS/spell_holy_powerwordshield"
+ },
+ [5] = {
+ ["id"] = 21562,
+ ["name"] = "Prayer of Fortitude",
+ ["rank"] = 1,
+ ["cost"] = 28000,
+ ["texture"] = "Interface/ICONS/spell_holy_prayeroffortitude"
+ },
+ },
+ [50] = {
+ [1] = {
+ ["id"] = 14819,
+ ["name"] = "Divine Spirit",
+ ["rank"] = 3,
+ ["cost"] = 1500,
+ ["texture"] = "Interface/ICONS/spell_holy_divinespirit",
+ ["talent"] = true
+ },
+ [2] = {
+ ["id"] = 27870,
+ ["name"] = "Lightwell",
+ ["rank"] = 2,
+ ["cost"] = 1200,
+ ["texture"] = "Interface/ICONS/spell_holy_summonlightwell",
+ ["talent"] = true
+ },
+ [3] = {
+ ["id"] = 44045,
+ ["name"] = "Draenei",
+ ["rank"] = 4,
+ ["cost"] = 1500,
+ ["texture"] = "Interface/ICONS/spell_holy_chastise"
+ },
+ [4] = {
+ ["id"] = 19242,
+ ["name"] = "Dwarf",
+ ["rank"] = 6,
+ ["cost"] = 1500,
+ ["texture"] = "Interface/ICONS/spell_holy_restoration"
+ },
+ [5] = {
+ ["id"] = 10941,
+ ["name"] = "Fade",
+ ["rank"] = 5,
+ ["cost"] = 30000,
+ ["texture"] = "Interface/ICONS/spell_magic_lesserinvisibilty"
+ },
+ [6] = {
+ ["id"] = 19274,
+ ["name"] = "Human",
+ ["rank"] = 4,
+ ["cost"] = 1500,
+ ["texture"] = "Interface/ICONS/spell_shadow_ritualofsacrifice"
+ },
+ [7] = {
+ ["id"] = 10916,
+ ["name"] = "Flash Heal",
+ ["rank"] = 6,
+ ["cost"] = 30000,
+ ["texture"] = "Interface/ICONS/spell_holy_flashheal"
+ },
+ [8] = {
+ ["id"] = 19284,
+ ["name"] = "Troll",
+ ["rank"] = 5,
+ ["cost"] = 1500,
+ ["texture"] = "Interface/ICONS/spell_shadow_fingerofdeath"
+ },
+ [9] = {
+ ["id"] = 10951,
+ ["name"] = "Inner Fire",
+ ["rank"] = 5,
+ ["cost"] = 30000,
+ ["texture"] = "Interface/ICONS/spell_holy_innerfire"
+ },
+ [10] = {
+ ["id"] = 10960,
+ ["name"] = "Prayer of Healing",
+ ["rank"] = 3,
+ ["cost"] = 30000,
+ ["texture"] = "Interface/ICONS/spell_holy_prayerofhealing02"
+ },
+ [11] = {
+ ["id"] = 10928,
+ ["name"] = "Renew",
+ ["rank"] = 8,
+ ["cost"] = 30000,
+ ["texture"] = "Interface/ICONS/spell_holy_renew"
+ },
+ [12] = {
+ ["id"] = 10893,
+ ["name"] = "Shadow Word: Pain",
+ ["rank"] = 7,
+ ["cost"] = 30000,
+ ["texture"] = "Interface/ICONS/spell_shadow_shadowwordpain"
+ },
+ [13] = {
+ ["id"] = 19304,
+ ["name"] = "Night Elf",
+ ["rank"] = 6,
+ ["cost"] = 1500,
+ ["texture"] = "Interface/ICONS/spell_arcane_starfire"
+ },
+ [14] = {
+ ["id"] = 19265,
+ ["name"] = "Blood Elf",
+ ["rank"] = 5,
+ ["cost"] = 1500,
+ ["texture"] = "Interface/ICONS/spell_shadow_deadofnight"
+ },
+ },
+ [52] = {
+ [1] = {
+ ["id"] = 27800,
+ ["name"] = "Holy Nova",
+ ["rank"] = 5,
+ ["cost"] = 1900,
+ ["texture"] = "Interface/ICONS/spell_holy_holynova",
+ ["talent"] = true
+ },
+ [2] = {
+ ["id"] = 17314,
+ ["name"] = "Mind Flay",
+ ["rank"] = 5,
+ ["cost"] = 1900,
+ ["texture"] = "Interface/ICONS/spell_shadow_siphonmana",
+ ["talent"] = true
+ },
+ [3] = {
+ ["id"] = 19279,
+ ["name"] = "Undead",
+ ["rank"] = 5,
+ ["cost"] = 1900,
+ ["texture"] = "Interface/ICONS/spell_shadow_blackplague"
+ },
+ [4] = {
+ ["id"] = 10964,
+ ["name"] = "Greater Heal",
+ ["rank"] = 3,
+ ["cost"] = 38000,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal"
+ },
+ [5] = {
+ ["id"] = 10946,
+ ["name"] = "Mind Blast",
+ ["rank"] = 8,
+ ["cost"] = 38000,
+ ["texture"] = "Interface/ICONS/spell_shadow_unholyfrenzy"
+ },
+ [6] = {
+ ["id"] = 10953,
+ ["name"] = "Mind Soothe",
+ ["rank"] = 3,
+ ["cost"] = 38000,
+ ["texture"] = "Interface/ICONS/spell_holy_mindsooth"
+ },
+ [7] = {
+ ["id"] = 19311,
+ ["name"] = "Troll",
+ ["rank"] = 5,
+ ["cost"] = 1900,
+ ["texture"] = "Interface/ICONS/spell_nature_lightningshield"
+ },
+ },
+ [54] = {
+ [1] = {
+ ["id"] = 15267,
+ ["name"] = "Holy Fire",
+ ["rank"] = 7,
+ ["cost"] = 40000,
+ ["texture"] = "Interface/ICONS/spell_holy_searinglight"
+ },
+ [2] = {
+ ["id"] = 10900,
+ ["name"] = "Power Word: Shield",
+ ["rank"] = 9,
+ ["cost"] = 40000,
+ ["texture"] = "Interface/ICONS/spell_holy_powerwordshield"
+ },
+ [3] = {
+ ["id"] = 10934,
+ ["name"] = "Smite",
+ ["rank"] = 8,
+ ["cost"] = 40000,
+ ["texture"] = "Interface/ICONS/spell_holy_holysmite"
+ },
+ },
+ [56] = {
+ [1] = {
+ ["id"] = 34863,
+ ["name"] = "Circle of Healing",
+ ["rank"] = 2,
+ ["cost"] = 2100,
+ ["texture"] = "Interface/ICONS/spell_holy_circleofrenewal",
+ ["talent"] = true
+ },
+ [2] = {
+ ["id"] = 10917,
+ ["name"] = "Flash Heal",
+ ["rank"] = 7,
+ ["cost"] = 42000,
+ ["texture"] = "Interface/ICONS/spell_holy_flashheal"
+ },
+ [3] = {
+ ["id"] = 10876,
+ ["name"] = "Mana Burn",
+ ["rank"] = 5,
+ ["cost"] = 42000,
+ ["texture"] = "Interface/ICONS/spell_shadow_manaburn"
+ },
+ [4] = {
+ ["id"] = 27683,
+ ["name"] = "Prayer of Shadow Protection",
+ ["rank"] = 1,
+ ["cost"] = 42000,
+ ["texture"] = "Interface/ICONS/spell_holy_prayerofshadowprotection"
+ },
+ [5] = {
+ ["id"] = 10890,
+ ["name"] = "Psychic Scream",
+ ["rank"] = 4,
+ ["cost"] = 42000,
+ ["texture"] = "Interface/ICONS/spell_shadow_psychicscream"
+ },
+ [6] = {
+ ["id"] = 10929,
+ ["name"] = "Renew",
+ ["rank"] = 9,
+ ["cost"] = 42000,
+ ["texture"] = "Interface/ICONS/spell_holy_renew"
+ },
+ [7] = {
+ ["id"] = 10958,
+ ["name"] = "Shadow Protection",
+ ["rank"] = 3,
+ ["cost"] = 42000,
+ ["texture"] = "Interface/ICONS/spell_shadow_antishadow"
+ },
+ },
+ [58] = {
+ [1] = {
+ ["id"] = 19243,
+ ["name"] = "Dwarf",
+ ["rank"] = 7,
+ ["cost"] = 2200,
+ ["texture"] = "Interface/ICONS/spell_holy_restoration"
+ },
+ [2] = {
+ ["id"] = 10965,
+ ["name"] = "Greater Heal",
+ ["rank"] = 4,
+ ["cost"] = 44000,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal"
+ },
+ [3] = {
+ ["id"] = 10947,
+ ["name"] = "Mind Blast",
+ ["rank"] = 9,
+ ["cost"] = 44000,
+ ["texture"] = "Interface/ICONS/spell_shadow_unholyfrenzy"
+ },
+ [4] = {
+ ["id"] = 10912,
+ ["name"] = "Mind Control",
+ ["rank"] = 3,
+ ["cost"] = 44000,
+ ["texture"] = "Interface/ICONS/spell_shadow_shadowworddominate"
+ },
+ [5] = {
+ ["id"] = 20770,
+ ["name"] = "Resurrection",
+ ["rank"] = 5,
+ ["cost"] = 44000,
+ ["texture"] = "Interface/ICONS/spell_holy_resurrection"
+ },
+ [6] = {
+ ["id"] = 10894,
+ ["name"] = "Shadow Word: Pain",
+ ["rank"] = 8,
+ ["cost"] = 44000,
+ ["texture"] = "Interface/ICONS/spell_shadow_shadowwordpain"
+ },
+ [7] = {
+ ["id"] = 19305,
+ ["name"] = "Night Elf",
+ ["rank"] = 7,
+ ["cost"] = 2200,
+ ["texture"] = "Interface/ICONS/spell_arcane_starfire"
+ },
+ },
+ [60] = {
+ [1] = {
+ ["id"] = 34864,
+ ["name"] = "Circle of Healing",
+ ["rank"] = 3,
+ ["cost"] = 2300,
+ ["texture"] = "Interface/ICONS/spell_holy_circleofrenewal",
+ ["talent"] = true
+ },
+ [2] = {
+ ["id"] = 27841,
+ ["name"] = "Divine Spirit",
+ ["rank"] = 4,
+ ["cost"] = 2300,
+ ["texture"] = "Interface/ICONS/spell_holy_divinespirit",
+ ["talent"] = true
+ },
+ [3] = {
+ ["id"] = 27801,
+ ["name"] = "Holy Nova",
+ ["rank"] = 6,
+ ["cost"] = 2300,
+ ["texture"] = "Interface/ICONS/spell_holy_holynova",
+ ["talent"] = true
+ },
+ [4] = {
+ ["id"] = 27871,
+ ["name"] = "Lightwell",
+ ["rank"] = 3,
+ ["cost"] = 1500,
+ ["texture"] = "Interface/ICONS/spell_holy_summonlightwell",
+ ["talent"] = true
+ },
+ [5] = {
+ ["id"] = 18807,
+ ["name"] = "Mind Flay",
+ ["rank"] = 6,
+ ["cost"] = 2300,
+ ["texture"] = "Interface/ICONS/spell_shadow_siphonmana",
+ ["talent"] = true
+ },
+ [6] = {
+ ["id"] = 34916,
+ ["name"] = "Vampiric Touch",
+ ["rank"] = 2,
+ ["cost"] = 2300,
+ ["texture"] = "Interface/ICONS/spell_holy_stoicism",
+ ["talent"] = true
+ },
+ [7] = {
+ ["id"] = 44046,
+ ["name"] = "Draenei",
+ ["rank"] = 5,
+ ["cost"] = 2300,
+ ["texture"] = "Interface/ICONS/spell_holy_chastise"
+ },
+ [8] = {
+ ["id"] = 19280,
+ ["name"] = "Undead",
+ ["rank"] = 6,
+ ["cost"] = 2300,
+ ["texture"] = "Interface/ICONS/spell_shadow_blackplague"
+ },
+ [9] = {
+ ["id"] = 10942,
+ ["name"] = "Fade",
+ ["rank"] = 6,
+ ["cost"] = 46000,
+ ["texture"] = "Interface/ICONS/spell_magic_lesserinvisibilty"
+ },
+ [10] = {
+ ["id"] = 19275,
+ ["name"] = "Human",
+ ["rank"] = 5,
+ ["cost"] = 2300,
+ ["texture"] = "Interface/ICONS/spell_shadow_ritualofsacrifice"
+ },
+ [11] = {
+ ["id"] = 25314,
+ ["name"] = "Greater Heal",
+ ["rank"] = 5,
+ ["cost"] = 65000,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal"
+ },
+ [12] = {
+ ["id"] = 19285,
+ ["name"] = "Troll",
+ ["rank"] = 6,
+ ["cost"] = 2300,
+ ["texture"] = "Interface/ICONS/spell_shadow_fingerofdeath"
+ },
+ [13] = {
+ ["id"] = 15261,
+ ["name"] = "Holy Fire",
+ ["rank"] = 8,
+ ["cost"] = 46000,
+ ["texture"] = "Interface/ICONS/spell_holy_searinglight"
+ },
+ [14] = {
+ ["id"] = 10952,
+ ["name"] = "Inner Fire",
+ ["rank"] = 6,
+ ["cost"] = 46000,
+ ["texture"] = "Interface/ICONS/spell_holy_innerfire"
+ },
+ [15] = {
+ ["id"] = 10938,
+ ["name"] = "Power Word: Fortitude",
+ ["rank"] = 6,
+ ["cost"] = 46000,
+ ["texture"] = "Interface/ICONS/spell_holy_wordfortitude"
+ },
+ [16] = {
+ ["id"] = 10901,
+ ["name"] = "Power Word: Shield",
+ ["rank"] = 10,
+ ["cost"] = 46000,
+ ["texture"] = "Interface/ICONS/spell_holy_powerwordshield"
+ },
+ [17] = {
+ ["id"] = 21564,
+ ["name"] = "Prayer of Fortitude",
+ ["rank"] = 2,
+ ["cost"] = 46000,
+ ["texture"] = "Interface/ICONS/spell_holy_prayeroffortitude"
+ },
+ [18] = {
+ ["id"] = 10961,
+ ["name"] = "Prayer of Healing",
+ ["rank"] = 4,
+ ["cost"] = 46000,
+ ["texture"] = "Interface/ICONS/spell_holy_prayerofhealing02"
+ },
+ [19] = {
+ ["id"] = 25316,
+ ["name"] = "Prayer of Healing",
+ ["rank"] = 5,
+ ["cost"] = 6500,
+ ["texture"] = "Interface/ICONS/spell_holy_prayerofhealing02"
+ },
+ [20] = {
+ ["id"] = 27681,
+ ["name"] = "Prayer of Spirit",
+ ["rank"] = 1,
+ ["cost"] = 2300,
+ ["texture"] = "Interface/ICONS/spell_holy_prayerofspirit"
+ },
+ [21] = {
+ ["id"] = 25315,
+ ["name"] = "Renew",
+ ["rank"] = 10,
+ ["cost"] = 6500,
+ ["texture"] = "Interface/ICONS/spell_holy_renew"
+ },
+ [22] = {
+ ["id"] = 10955,
+ ["name"] = "Shackle Undead",
+ ["rank"] = 3,
+ ["cost"] = 46000,
+ ["texture"] = "Interface/ICONS/spell_nature_slow"
+ },
+ [23] = {
+ ["id"] = 19312,
+ ["name"] = "Troll",
+ ["rank"] = 6,
+ ["cost"] = 2300,
+ ["texture"] = "Interface/ICONS/spell_nature_lightningshield"
+ },
+ [24] = {
+ ["id"] = 19266,
+ ["name"] = "Blood Elf",
+ ["rank"] = 6,
+ ["cost"] = 2300,
+ ["texture"] = "Interface/ICONS/spell_shadow_deadofnight"
+ },
+ },
+ [61] = {
+ [1] = {
+ ["id"] = 25233,
+ ["name"] = "Flash Heal",
+ ["rank"] = 8,
+ ["cost"] = 53000,
+ ["texture"] = "Interface/ICONS/spell_holy_flashheal"
+ },
+ [2] = {
+ ["id"] = 25363,
+ ["name"] = "Smite",
+ ["rank"] = 9,
+ ["cost"] = 53000,
+ ["texture"] = "Interface/ICONS/spell_holy_holysmite"
+ },
+ },
+ [62] = {
+ [1] = {
+ ["id"] = 32379,
+ ["name"] = "Shadow Word: Death",
+ ["rank"] = 1,
+ ["cost"] = 59000,
+ ["texture"] = "Interface/ICONS/spell_shadow_demonicfortitude"
+ },
+ },
+ [63] = {
+ [1] = {
+ ["id"] = 25210,
+ ["name"] = "Greater Heal",
+ ["rank"] = 6,
+ ["cost"] = 65000,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal"
+ },
+ [2] = {
+ ["id"] = 25379,
+ ["name"] = "Mana Burn",
+ ["rank"] = 6,
+ ["cost"] = 65000,
+ ["texture"] = "Interface/ICONS/spell_shadow_manaburn"
+ },
+ [3] = {
+ ["id"] = 25372,
+ ["name"] = "Mind Blast",
+ ["rank"] = 10,
+ ["cost"] = 65000,
+ ["texture"] = "Interface/ICONS/spell_shadow_unholyfrenzy"
+ },
+ },
+ [64] = {
+ [1] = {
+ ["id"] = 32546,
+ ["name"] = "Binding Heal",
+ ["rank"] = 1,
+ ["cost"] = 72000,
+ ["texture"] = "Interface/ICONS/spell_holy_blindingheal"
+ },
+ },
+ [65] = {
+ [1] = {
+ ["id"] = 34865,
+ ["name"] = "Circle of Healing",
+ ["rank"] = 4,
+ ["cost"] = 2300,
+ ["texture"] = "Interface/ICONS/spell_holy_circleofrenewal",
+ ["talent"] = true
+ },
+ [2] = {
+ ["id"] = 25217,
+ ["name"] = "Power Word: Shield",
+ ["rank"] = 11,
+ ["cost"] = 80000,
+ ["texture"] = "Interface/ICONS/spell_holy_powerwordshield"
+ },
+ [3] = {
+ ["id"] = 25221,
+ ["name"] = "Renew",
+ ["rank"] = 11,
+ ["cost"] = 80000,
+ ["texture"] = "Interface/ICONS/spell_holy_renew"
+ },
+ [4] = {
+ ["id"] = 25367,
+ ["name"] = "Shadow Word: Pain",
+ ["rank"] = 9,
+ ["cost"] = 80000,
+ ["texture"] = "Interface/ICONS/spell_shadow_shadowwordpain"
+ },
+ },
+ [66] = {
+ [1] = {
+ ["id"] = 25437,
+ ["name"] = "Dwarf",
+ ["rank"] = 8,
+ ["cost"] = 6500,
+ ["texture"] = "Interface/ICONS/spell_holy_restoration"
+ },
+ [2] = {
+ ["id"] = 25429,
+ ["name"] = "Fade",
+ ["rank"] = 7,
+ ["cost"] = 89000,
+ ["texture"] = "Interface/ICONS/spell_magic_lesserinvisibilty"
+ },
+ [3] = {
+ ["id"] = 25384,
+ ["name"] = "Holy Fire",
+ ["rank"] = 9,
+ ["cost"] = 65000,
+ ["texture"] = "Interface/ICONS/spell_holy_searinglight"
+ },
+ [4] = {
+ ["id"] = 34433,
+ ["name"] = "Shadowfiend",
+ ["rank"] = 1,
+ ["cost"] = 89000,
+ ["texture"] = "Interface/ICONS/spell_shadow_shadowfiend"
+ },
+ [5] = {
+ ["id"] = 25446,
+ ["name"] = "Night Elf",
+ ["rank"] = 8,
+ ["cost"] = 6500,
+ ["texture"] = "Interface/ICONS/spell_arcane_starfire"
+ },
+ },
+ [67] = {
+ [1] = {
+ ["id"] = 25235,
+ ["name"] = "Flash Heal",
+ ["rank"] = 9,
+ ["cost"] = 99000,
+ ["texture"] = "Interface/ICONS/spell_holy_flashheal"
+ },
+ [2] = {
+ ["id"] = 25596,
+ ["name"] = "Mind Soothe",
+ ["rank"] = 4,
+ ["cost"] = 99000,
+ ["texture"] = "Interface/ICONS/spell_holy_mindsooth"
+ },
+ },
+ [68] = {
+ [1] = {
+ ["id"] = 25331,
+ ["name"] = "Holy Nova",
+ ["rank"] = 7,
+ ["cost"] = 3250,
+ ["texture"] = "Interface/ICONS/spell_holy_holynova",
+ ["talent"] = true
+ },
+ [2] = {
+ ["id"] = 25387,
+ ["name"] = "Mind Flay",
+ ["rank"] = 7,
+ ["cost"] = 6500,
+ ["texture"] = "Interface/ICONS/spell_shadow_siphonmana",
+ ["talent"] = true
+ },
+ [3] = {
+ ["id"] = 25467,
+ ["name"] = "Undead",
+ ["rank"] = 7,
+ ["cost"] = 6500,
+ ["texture"] = "Interface/ICONS/spell_shadow_blackplague"
+ },
+ [4] = {
+ ["id"] = 25213,
+ ["name"] = "Greater Heal",
+ ["rank"] = 7,
+ ["cost"] = 110000,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal"
+ },
+ [5] = {
+ ["id"] = 25308,
+ ["name"] = "Prayer of Healing",
+ ["rank"] = 6,
+ ["cost"] = 110000,
+ ["texture"] = "Interface/ICONS/spell_holy_prayerofhealing02"
+ },
+ [6] = {
+ ["id"] = 33076,
+ ["name"] = "Prayer of Mending",
+ ["rank"] = 1,
+ ["cost"] = 110000,
+ ["texture"] = "Interface/ICONS/spell_holy_prayerofmendingtga"
+ },
+ [7] = {
+ ["id"] = 25435,
+ ["name"] = "Resurrection",
+ ["rank"] = 6,
+ ["cost"] = 110000,
+ ["texture"] = "Interface/ICONS/spell_holy_resurrection"
+ },
+ [8] = {
+ ["id"] = 25433,
+ ["name"] = "Shadow Protection",
+ ["rank"] = 4,
+ ["cost"] = 110000,
+ ["texture"] = "Interface/ICONS/spell_shadow_antishadow"
+ },
+ [9] = {
+ ["id"] = 25477,
+ ["name"] = "Troll",
+ ["rank"] = 7,
+ ["cost"] = 6500,
+ ["texture"] = "Interface/ICONS/spell_nature_lightningshield"
+ },
+ },
+ [69] = {
+ [1] = {
+ ["id"] = 25431,
+ ["name"] = "Inner Fire",
+ ["rank"] = 7,
+ ["cost"] = 65000,
+ ["texture"] = "Interface/ICONS/spell_holy_innerfire"
+ },
+ [2] = {
+ ["id"] = 25375,
+ ["name"] = "Mind Blast",
+ ["rank"] = 11,
+ ["cost"] = 65000,
+ ["texture"] = "Interface/ICONS/spell_shadow_unholyfrenzy"
+ },
+ [3] = {
+ ["id"] = 25364,
+ ["name"] = "Smite",
+ ["rank"] = 10,
+ ["cost"] = 65000,
+ ["texture"] = "Interface/ICONS/spell_holy_holysmite"
+ },
+ },
+ [70] = {
+ [1] = {
+ ["id"] = 34866,
+ ["name"] = "Circle of Healing",
+ ["rank"] = 5,
+ ["cost"] = 2300,
+ ["texture"] = "Interface/ICONS/spell_holy_circleofrenewal",
+ ["talent"] = true
+ },
+ [2] = {
+ ["id"] = 25312,
+ ["name"] = "Divine Spirit",
+ ["rank"] = 5,
+ ["cost"] = 2300,
+ ["texture"] = "Interface/ICONS/spell_holy_divinespirit",
+ ["talent"] = true
+ },
+ [3] = {
+ ["id"] = 28275,
+ ["name"] = "Lightwell",
+ ["rank"] = 4,
+ ["cost"] = 1500,
+ ["texture"] = "Interface/ICONS/spell_holy_summonlightwell",
+ ["talent"] = true
+ },
+ [4] = {
+ ["id"] = 34917,
+ ["name"] = "Vampiric Touch",
+ ["rank"] = 3,
+ ["cost"] = 2300,
+ ["texture"] = "Interface/ICONS/spell_holy_stoicism",
+ ["talent"] = true
+ },
+ [5] = {
+ ["id"] = 44047,
+ ["name"] = "Draenei",
+ ["rank"] = 6,
+ ["cost"] = 2762,
+ ["texture"] = "Interface/ICONS/spell_holy_chastise"
+ },
+ [6] = {
+ ["id"] = 25441,
+ ["name"] = "Human",
+ ["rank"] = 6,
+ ["cost"] = 6500,
+ ["texture"] = "Interface/ICONS/spell_shadow_ritualofsacrifice"
+ },
+ [7] = {
+ ["id"] = 25470,
+ ["name"] = "Troll",
+ ["rank"] = 7,
+ ["cost"] = 6500,
+ ["texture"] = "Interface/ICONS/spell_shadow_fingerofdeath"
+ },
+ [8] = {
+ ["id"] = 25380,
+ ["name"] = "Mana Burn",
+ ["rank"] = 7,
+ ["cost"] = 110000,
+ ["texture"] = "Interface/ICONS/spell_shadow_manaburn"
+ },
+ [9] = {
+ ["id"] = 32375,
+ ["name"] = "Mass Dispel",
+ ["rank"] = 0,
+ ["cost"] = 110000,
+ ["texture"] = "Interface/ICONS/spell_arcane_massdispel"
+ },
+ [10] = {
+ ["id"] = 25389,
+ ["name"] = "Power Word: Fortitude",
+ ["rank"] = 7,
+ ["cost"] = 65000,
+ ["texture"] = "Interface/ICONS/spell_holy_wordfortitude"
+ },
+ [11] = {
+ ["id"] = 25218,
+ ["name"] = "Power Word: Shield",
+ ["rank"] = 12,
+ ["cost"] = 140000,
+ ["texture"] = "Interface/ICONS/spell_holy_powerwordshield"
+ },
+ [12] = {
+ ["id"] = 25392,
+ ["name"] = "Prayer of Fortitude",
+ ["rank"] = 3,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_prayeroffortitude"
+ },
+ [13] = {
+ ["id"] = 39374,
+ ["name"] = "Prayer of Shadow Protection",
+ ["rank"] = 2,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_prayerofshadowprotection"
+ },
+ [14] = {
+ ["id"] = 32999,
+ ["name"] = "Prayer of Spirit",
+ ["rank"] = 2,
+ ["cost"] = 3400,
+ ["texture"] = "Interface/ICONS/spell_holy_prayerofspirit"
+ },
+ [15] = {
+ ["id"] = 25222,
+ ["name"] = "Renew",
+ ["rank"] = 12,
+ ["cost"] = 140000,
+ ["texture"] = "Interface/ICONS/spell_holy_renew"
+ },
+ [16] = {
+ ["id"] = 32996,
+ ["name"] = "Shadow Word: Death",
+ ["rank"] = 2,
+ ["cost"] = 110000,
+ ["texture"] = "Interface/ICONS/spell_shadow_demonicfortitude"
+ },
+ [17] = {
+ ["id"] = 25368,
+ ["name"] = "Shadow Word: Pain",
+ ["rank"] = 10,
+ ["cost"] = 140000,
+ ["texture"] = "Interface/ICONS/spell_shadow_shadowwordpain"
+ },
+ [18] = {
+ ["id"] = 25461,
+ ["name"] = "Blood Elf",
+ ["rank"] = 7,
+ ["cost"] = 6500,
+ ["texture"] = "Interface/ICONS/spell_shadow_deadofnight"
+ },
+ },
+}
diff --git a/Database/Rogue.lua b/Database/classes/Rogue.lua
similarity index 55%
rename from Database/Rogue.lua
rename to Database/classes/Rogue.lua
index 14d9518..6787539 100644
--- a/Database/Rogue.lua
+++ b/Database/classes/Rogue.lua
@@ -1,822 +1,1077 @@
local _, FieldGuide = ...
FieldGuide.ROGUE = {
- [2] = {
+ [1] = {
[1] = {
+ ["id"] = 3018,
+ ["name"] = "Shoot",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_marksmanship"
+ },
+ [2] = {
+ ["id"] = 2764,
+ ["name"] = "Throw",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_throw"
+ },
+ [3] = {
+ ["id"] = 2098,
+ ["name"] = "Eviscerate",
+ ["rank"] = 1,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_rogue_eviscerate"
+ },
+ [4] = {
+ ["id"] = 1752,
+ ["name"] = "Sinister Strike",
+ ["rank"] = 1,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_ritualofsacrifice"
+ },
+ [5] = {
+ ["id"] = 1784,
["name"] = "Stealth",
["rank"] = 1,
["cost"] = 10,
- ["texture"] = "Interface/ICONS/ability_stealth",
- ["id"] = 1784
+ ["texture"] = "Interface/ICONS/ability_stealth"
},
},
[4] = {
[1] = {
+ ["id"] = 53,
["name"] = "Backstab",
["rank"] = 1,
["cost"] = 100,
- ["texture"] = "Interface/ICONS/ability_backstab",
- ["id"] = 53
+ ["texture"] = "Interface/ICONS/ability_backstab"
},
[2] = {
+ ["id"] = 921,
["name"] = "Pick Pocket",
- ["rank"] = 1,
+ ["rank"] = 0,
["cost"] = 100,
- ["texture"] = "Interface/ICONS/inv_misc_bag_11",
- ["id"] = 921
+ ["texture"] = "Interface/ICONS/inv_misc_bag_11"
},
},
[6] = {
[1] = {
+ ["id"] = 1776,
["name"] = "Gouge",
["rank"] = 1,
["cost"] = 100,
- ["texture"] = "Interface/ICONS/ability_gouge",
- ["id"] = 1776
+ ["texture"] = "Interface/ICONS/ability_gouge"
},
[2] = {
+ ["id"] = 1757,
["name"] = "Sinister Strike",
["rank"] = 2,
["cost"] = 100,
- ["texture"] = "Interface/ICONS/spell_shadow_ritualofsacrifice",
- ["id"] = 1757
+ ["texture"] = "Interface/ICONS/spell_shadow_ritualofsacrifice"
},
},
[8] = {
[1] = {
- ["name"] = "Eviscerate",
- ["rank"] = 2,
+ ["id"] = 5277,
+ ["name"] = "Evasion",
+ ["rank"] = 1,
["cost"] = 200,
- ["texture"] = "Interface/ICONS/ability_rogue_eviscerate",
- ["id"] = 6760
+ ["texture"] = "Interface/ICONS/spell_shadow_shadowward"
},
[2] = {
- ["name"] = "Evasion",
- ["rank"] = 1,
+ ["id"] = 6760,
+ ["name"] = "Eviscerate",
+ ["rank"] = 2,
["cost"] = 200,
- ["texture"] = "Interface/ICONS/spell_shadow_shadowward",
- ["id"] = 5277
+ ["texture"] = "Interface/ICONS/ability_rogue_eviscerate"
},
},
[10] = {
[1] = {
- ["name"] = "Dual Wield",
+ ["id"] = 6770,
+ ["name"] = "Sap",
["rank"] = 1,
["cost"] = 300,
- ["texture"] = "Interface/ICONS/ability_dualwield",
- ["id"] = 674
+ ["texture"] = "Interface/ICONS/ability_sap"
},
[2] = {
+ ["id"] = 5171,
["name"] = "Slice and Dice",
["rank"] = 1,
["cost"] = 300,
- ["texture"] = "Interface/ICONS/ability_rogue_slicedice",
- ["id"] = 5171
+ ["texture"] = "Interface/ICONS/ability_rogue_slicedice"
},
[3] = {
+ ["id"] = 2983,
["name"] = "Sprint",
["rank"] = 1,
["cost"] = 300,
- ["texture"] = "Interface/ICONS/ability_rogue_sprint",
- ["id"] = 2983
- },
- [4] = {
- ["name"] = "Sap",
- ["rank"] = 1,
- ["cost"] = 300,
- ["texture"] = "Interface/ICONS/ability_sap",
- ["id"] = 6770
+ ["texture"] = "Interface/ICONS/ability_rogue_sprint"
},
},
[12] = {
[1] = {
- ["name"] = "Parry",
- ["rank"] = 1,
- ["cost"] = 800,
- ["texture"] = "Interface/ICONS/ability_parry",
- ["id"] = 3127
- },
- [2] = {
+ ["id"] = 2589,
["name"] = "Backstab",
["rank"] = 2,
["cost"] = 800,
- ["texture"] = "Interface/ICONS/ability_backstab",
- ["id"] = 2589
+ ["texture"] = "Interface/ICONS/ability_backstab"
},
- [3] = {
+ [2] = {
+ ["id"] = 1766,
["name"] = "Kick",
["rank"] = 1,
["cost"] = 800,
- ["texture"] = "Interface/ICONS/ability_kick",
- ["id"] = 1766
+ ["texture"] = "Interface/ICONS/ability_kick"
+ },
+ [3] = {
+ ["id"] = 3127,
+ ["name"] = "Parry",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_parry"
},
},
[14] = {
[1] = {
+ ["id"] = 8647,
["name"] = "Expose Armor",
["rank"] = 1,
["cost"] = 1200,
- ["texture"] = "Interface/ICONS/ability_warrior_riposte",
- ["id"] = 8647
+ ["texture"] = "Interface/ICONS/ability_warrior_riposte"
},
[2] = {
+ ["id"] = 703,
["name"] = "Garrote",
["rank"] = 1,
["cost"] = 1200,
- ["texture"] = "Interface/ICONS/ability_rogue_garrote",
- ["id"] = 703
+ ["texture"] = "Interface/ICONS/ability_rogue_garrote"
},
[3] = {
+ ["id"] = 1758,
["name"] = "Sinister Strike",
["rank"] = 3,
["cost"] = 1200,
- ["texture"] = "Interface/ICONS/spell_shadow_ritualofsacrifice",
- ["id"] = 1758
+ ["texture"] = "Interface/ICONS/spell_shadow_ritualofsacrifice"
},
},
[16] = {
[1] = {
- ["name"] = "Pick Lock",
- ["rank"] = 1,
- ["cost"] = 1800,
- ["texture"] = "Interface/ICONS/spell_nature_moonkey",
- ["id"] = 1804
- },
- [2] = {
+ ["id"] = 6761,
["name"] = "Eviscerate",
["rank"] = 3,
["cost"] = 1800,
- ["texture"] = "Interface/ICONS/ability_rogue_eviscerate",
- ["id"] = 6761
+ ["texture"] = "Interface/ICONS/ability_rogue_eviscerate"
},
- [3] = {
+ [2] = {
+ ["id"] = 1966,
["name"] = "Feint",
["rank"] = 1,
["cost"] = 1800,
- ["texture"] = "Interface/ICONS/ability_rogue_feint",
- ["id"] = 1966
+ ["texture"] = "Interface/ICONS/ability_rogue_feint"
+ },
+ [3] = {
+ ["id"] = 1804,
+ ["name"] = "Pick Lock",
+ ["rank"] = 0,
+ ["cost"] = 1800,
+ ["texture"] = "Interface/ICONS/spell_nature_moonkey"
},
},
[18] = {
[1] = {
+ ["id"] = 8676,
["name"] = "Ambush",
["rank"] = 1,
["cost"] = 2900,
- ["texture"] = "Interface/ICONS/ability_rogue_ambush",
- ["id"] = 8676
+ ["texture"] = "Interface/ICONS/ability_rogue_ambush"
},
[2] = {
+ ["id"] = 1777,
["name"] = "Gouge",
["rank"] = 2,
["cost"] = 2900,
- ["texture"] = "Interface/ICONS/ability_gouge",
- ["id"] = 1777
+ ["texture"] = "Interface/ICONS/ability_gouge"
},
},
[20] = {
[1] = {
- ["name"] = "Poisons",
- ["rank"] = 1,
- ["cost"] = 0,
- ["texture"] = "Interface/ICONS/trade_brewpoison",
- ["id"] = 2842
+ ["id"] = 2590,
+ ["name"] = "Backstab",
+ ["rank"] = 3,
+ ["cost"] = 3000,
+ ["texture"] = "Interface/ICONS/ability_backstab"
},
[2] = {
+ ["id"] = 3420,
["name"] = "Crippling Poison",
["rank"] = 1,
["cost"] = 3000,
- ["texture"] = "Interface/ICONS/ability_poisonsting",
- ["id"] = 3420
+ ["texture"] = "Interface/ICONS/ability_poisonsting"
},
[3] = {
+ ["id"] = 8681,
["name"] = "Instant Poison",
["rank"] = 1,
["cost"] = 0,
- ["texture"] = "Interface/ICONS/ability_poisons",
- ["id"] = 8681
+ ["texture"] = "Interface/ICONS/ability_poisons"
},
[4] = {
- ["name"] = "Rupture",
- ["rank"] = 1,
- ["cost"] = 3000,
- ["texture"] = "Interface/ICONS/ability_rogue_rupture",
- ["id"] = 1943
+ ["id"] = 2842,
+ ["name"] = "Poisons",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/trade_brewpoison"
},
[5] = {
- ["name"] = "Backstab",
- ["rank"] = 3,
+ ["id"] = 1943,
+ ["name"] = "Rupture",
+ ["rank"] = 1,
["cost"] = 3000,
- ["texture"] = "Interface/ICONS/ability_backstab",
- ["id"] = 2590
+ ["texture"] = "Interface/ICONS/ability_rogue_rupture"
},
[6] = {
+ ["id"] = 1785,
["name"] = "Stealth",
["rank"] = 2,
["cost"] = 3000,
- ["texture"] = "Interface/ICONS/ability_stealth",
- ["id"] = 1785
+ ["texture"] = "Interface/ICONS/ability_stealth"
},
},
[22] = {
[1] = {
- ["name"] = "Garrote",
- ["rank"] = 2,
+ ["id"] = 1725,
+ ["name"] = "Distract",
+ ["rank"] = 0,
["cost"] = 4000,
- ["texture"] = "Interface/ICONS/ability_rogue_garrote",
- ["id"] = 8631
+ ["texture"] = "Interface/ICONS/ability_rogue_distract"
},
[2] = {
- ["name"] = "Sinister Strike",
- ["rank"] = 4,
+ ["id"] = 8631,
+ ["name"] = "Garrote",
+ ["rank"] = 2,
["cost"] = 4000,
- ["texture"] = "Interface/ICONS/spell_shadow_ritualofsacrifice",
- ["id"] = 1759
+ ["texture"] = "Interface/ICONS/ability_rogue_garrote"
},
[3] = {
- ["name"] = "Distract",
- ["rank"] = 1,
+ ["id"] = 1759,
+ ["name"] = "Sinister Strike",
+ ["rank"] = 4,
["cost"] = 4000,
- ["texture"] = "Interface/ICONS/ability_rogue_distract",
- ["id"] = 1725
+ ["texture"] = "Interface/ICONS/spell_shadow_ritualofsacrifice"
},
[4] = {
+ ["id"] = 1856,
["name"] = "Vanish",
["rank"] = 1,
["cost"] = 4000,
- ["texture"] = "Interface/ICONS/ability_vanish",
- ["id"] = 1856
+ ["texture"] = "Interface/ICONS/ability_vanish"
},
},
[24] = {
[1] = {
- ["name"] = "Mind-numbing Poison",
- ["rank"] = 1,
+ ["id"] = 2836,
+ ["name"] = "Detect Traps",
+ ["rank"] = 0,
["cost"] = 5000,
- ["texture"] = "Interface/ICONS/spell_nature_nullifydisease",
- ["id"] = 5763
+ ["texture"] = "Interface/ICONS/ability_spy"
},
[2] = {
+ ["id"] = 6762,
["name"] = "Eviscerate",
["rank"] = 4,
["cost"] = 5000,
- ["texture"] = "Interface/ICONS/ability_rogue_eviscerate",
- ["id"] = 6762
+ ["texture"] = "Interface/ICONS/ability_rogue_eviscerate"
},
[3] = {
- ["name"] = "Detect Traps",
+ ["id"] = 5763,
+ ["name"] = "Mind-numbing Poison",
["rank"] = 1,
["cost"] = 5000,
- ["texture"] = "Interface/ICONS/ability_spy",
- ["id"] = 2836
+ ["texture"] = "Interface/ICONS/spell_nature_nullifydisease"
},
},
[26] = {
[1] = {
+ ["id"] = 8724,
["name"] = "Ambush",
["rank"] = 2,
["cost"] = 6000,
- ["texture"] = "Interface/ICONS/ability_rogue_ambush",
- ["id"] = 8724
+ ["texture"] = "Interface/ICONS/ability_rogue_ambush"
},
[2] = {
+ ["id"] = 1833,
["name"] = "Cheap Shot",
- ["rank"] = 1,
+ ["rank"] = 0,
["cost"] = 6000,
- ["texture"] = "Interface/ICONS/ability_cheapshot",
- ["id"] = 1833
+ ["texture"] = "Interface/ICONS/ability_cheapshot"
},
[3] = {
+ ["id"] = 8649,
["name"] = "Expose Armor",
["rank"] = 2,
["cost"] = 6000,
- ["texture"] = "Interface/ICONS/ability_warrior_riposte",
- ["id"] = 8649
+ ["texture"] = "Interface/ICONS/ability_warrior_riposte"
},
[4] = {
+ ["id"] = 1767,
["name"] = "Kick",
["rank"] = 2,
["cost"] = 6000,
- ["texture"] = "Interface/ICONS/ability_kick",
- ["id"] = 1767
+ ["texture"] = "Interface/ICONS/ability_kick"
},
},
[28] = {
[1] = {
- ["name"] = "Instant Poison II",
- ["rank"] = 2,
+ ["id"] = 2591,
+ ["name"] = "Backstab",
+ ["rank"] = 4,
["cost"] = 8000,
- ["texture"] = "Interface/ICONS/ability_poisons",
- ["id"] = 8687
+ ["texture"] = "Interface/ICONS/ability_backstab"
},
[2] = {
- ["name"] = "Rupture",
+ ["id"] = 6768,
+ ["name"] = "Feint",
["rank"] = 2,
["cost"] = 8000,
- ["texture"] = "Interface/ICONS/ability_rogue_rupture",
- ["id"] = 8639
+ ["texture"] = "Interface/ICONS/ability_rogue_feint"
},
[3] = {
- ["name"] = "Backstab",
- ["rank"] = 4,
+ ["id"] = 8687,
+ ["name"] = "Instant Poison II",
+ ["rank"] = 2,
["cost"] = 8000,
- ["texture"] = "Interface/ICONS/ability_backstab",
- ["id"] = 2591
+ ["texture"] = "Interface/ICONS/ability_poisons"
},
[4] = {
- ["name"] = "Feint",
+ ["id"] = 8639,
+ ["name"] = "Rupture",
["rank"] = 2,
["cost"] = 8000,
- ["texture"] = "Interface/ICONS/ability_rogue_feint",
- ["id"] = 6768
+ ["texture"] = "Interface/ICONS/ability_rogue_rupture"
},
[5] = {
+ ["id"] = 2070,
["name"] = "Sap",
["rank"] = 2,
["cost"] = 8000,
- ["texture"] = "Interface/ICONS/ability_sap",
- ["id"] = 2070
+ ["texture"] = "Interface/ICONS/ability_sap"
},
},
[30] = {
[1] = {
+ ["id"] = 2835,
["name"] = "Deadly Poison",
["rank"] = 1,
["cost"] = 10000,
- ["texture"] = "Interface/ICONS/ability_rogue_dualweild",
- ["id"] = 2835
+ ["texture"] = "Interface/ICONS/ability_rogue_dualweild"
},
[2] = {
+ ["id"] = 1842,
+ ["name"] = "Disarm Trap",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/spell_shadow_grimward"
+ },
+ [3] = {
+ ["id"] = 8632,
["name"] = "Garrote",
["rank"] = 3,
["cost"] = 10000,
- ["texture"] = "Interface/ICONS/ability_rogue_garrote",
- ["id"] = 8632
+ ["texture"] = "Interface/ICONS/ability_rogue_garrote"
},
- [3] = {
+ [4] = {
+ ["id"] = 408,
["name"] = "Kidney Shot",
["rank"] = 1,
["cost"] = 10000,
- ["texture"] = "Interface/ICONS/ability_rogue_kidneyshot",
- ["id"] = 408
+ ["texture"] = "Interface/ICONS/ability_rogue_kidneyshot"
},
- [4] = {
+ [5] = {
+ ["id"] = 1760,
["name"] = "Sinister Strike",
["rank"] = 5,
["cost"] = 10000,
- ["texture"] = "Interface/ICONS/spell_shadow_ritualofsacrifice",
- ["id"] = 1760
- },
- [5] = {
- ["name"] = "Disarm Trap",
- ["rank"] = 1,
- ["cost"] = 10000,
- ["texture"] = "Interface/ICONS/spell_shadow_grimward",
- ["id"] = 1842
+ ["texture"] = "Interface/ICONS/spell_shadow_ritualofsacrifice"
},
},
[32] = {
[1] = {
- ["name"] = "Wound Poison",
- ["rank"] = 1,
- ["cost"] = 12000,
- ["texture"] = "Interface/ICONS/ability_poisonsting",
- ["id"] = 13220
- },
- [2] = {
+ ["id"] = 8623,
["name"] = "Eviscerate",
["rank"] = 5,
["cost"] = 12000,
- ["texture"] = "Interface/ICONS/ability_rogue_eviscerate",
- ["id"] = 8623
+ ["texture"] = "Interface/ICONS/ability_rogue_eviscerate"
},
- [3] = {
+ [2] = {
+ ["id"] = 8629,
["name"] = "Gouge",
["rank"] = 3,
["cost"] = 12000,
- ["texture"] = "Interface/ICONS/ability_gouge",
- ["id"] = 8629
+ ["texture"] = "Interface/ICONS/ability_gouge"
+ },
+ [3] = {
+ ["id"] = 13220,
+ ["name"] = "Wound Poison",
+ ["rank"] = 1,
+ ["cost"] = 12000,
+ ["texture"] = "Interface/ICONS/inv_misc_herb_16"
},
},
[34] = {
[1] = {
- ["name"] = "Blinding Powder",
- ["rank"] = 1,
+ ["id"] = 8725,
+ ["name"] = "Ambush",
+ ["rank"] = 3,
["cost"] = 14000,
- ["texture"] = "Interface/ICONS/inv_misc_ammo_gunpowder_01",
- ["id"] = 6510
+ ["texture"] = "Interface/ICONS/ability_rogue_ambush"
},
[2] = {
- ["name"] = "Ambush",
- ["rank"] = 3,
+ ["id"] = 2094,
+ ["name"] = "Blind",
+ ["rank"] = 0,
["cost"] = 14000,
- ["texture"] = "Interface/ICONS/ability_rogue_ambush",
- ["id"] = 8725
+ ["texture"] = "Interface/ICONS/spell_shadow_mindsteal"
},
[3] = {
+ ["id"] = 8696,
["name"] = "Sprint",
["rank"] = 2,
["cost"] = 14000,
- ["texture"] = "Interface/ICONS/ability_rogue_sprint",
- ["id"] = 8696
- },
- [4] = {
- ["name"] = "Blind",
- ["rank"] = 1,
- ["cost"] = 14000,
- ["texture"] = "Interface/ICONS/spell_shadow_mindsteal",
- ["id"] = 2094
+ ["texture"] = "Interface/ICONS/ability_rogue_sprint"
},
},
[36] = {
[1] = {
- ["name"] = "Instant Poison III",
- ["rank"] = 3,
+ ["id"] = 8721,
+ ["name"] = "Backstab",
+ ["rank"] = 5,
["cost"] = 16000,
- ["texture"] = "Interface/ICONS/ability_poisons",
- ["id"] = 8691
+ ["texture"] = "Interface/ICONS/ability_backstab"
},
[2] = {
+ ["id"] = 8650,
["name"] = "Expose Armor",
["rank"] = 3,
["cost"] = 16000,
- ["texture"] = "Interface/ICONS/ability_warrior_riposte",
- ["id"] = 8650
+ ["texture"] = "Interface/ICONS/ability_warrior_riposte"
},
[3] = {
- ["name"] = "Rupture",
+ ["id"] = 8691,
+ ["name"] = "Instant Poison III",
["rank"] = 3,
["cost"] = 16000,
- ["texture"] = "Interface/ICONS/ability_rogue_rupture",
- ["id"] = 8640
+ ["texture"] = "Interface/ICONS/ability_poisons"
},
[4] = {
- ["name"] = "Backstab",
- ["rank"] = 5,
+ ["id"] = 8640,
+ ["name"] = "Rupture",
+ ["rank"] = 3,
["cost"] = 16000,
- ["texture"] = "Interface/ICONS/ability_backstab",
- ["id"] = 8721
+ ["texture"] = "Interface/ICONS/ability_rogue_rupture"
},
},
[38] = {
[1] = {
- ["name"] = "Mind-numbing Poison II",
+ ["id"] = 2837,
+ ["name"] = "Deadly Poison II",
["rank"] = 2,
["cost"] = 18000,
- ["texture"] = "Interface/ICONS/spell_nature_nullifydisease",
- ["id"] = 8694
+ ["texture"] = "Interface/ICONS/ability_rogue_dualweild"
},
[2] = {
- ["name"] = "Deadly Poison II",
- ["rank"] = 2,
+ ["id"] = 8633,
+ ["name"] = "Garrote",
+ ["rank"] = 4,
["cost"] = 18000,
- ["texture"] = "Interface/ICONS/ability_rogue_dualweild",
- ["id"] = 2837
+ ["texture"] = "Interface/ICONS/ability_rogue_garrote"
},
[3] = {
- ["name"] = "Garrote",
- ["rank"] = 4,
+ ["id"] = 8694,
+ ["name"] = "Mind-numbing Poison II",
+ ["rank"] = 2,
["cost"] = 18000,
- ["texture"] = "Interface/ICONS/ability_rogue_garrote",
- ["id"] = 8633
+ ["texture"] = "Interface/ICONS/spell_nature_nullifydisease"
},
[4] = {
+ ["id"] = 8621,
["name"] = "Sinister Strike",
["rank"] = 6,
["cost"] = 18000,
- ["texture"] = "Interface/ICONS/spell_shadow_ritualofsacrifice",
- ["id"] = 8621
+ ["texture"] = "Interface/ICONS/spell_shadow_ritualofsacrifice"
},
},
[40] = {
[1] = {
- ["name"] = "Wound Poison II",
- ["rank"] = 2,
- ["cost"] = 20000,
- ["texture"] = "Interface/ICONS/ability_poisonsting",
- ["id"] = 13228
- },
- [2] = {
+ ["id"] = 8624,
["name"] = "Eviscerate",
["rank"] = 6,
["cost"] = 20000,
- ["texture"] = "Interface/ICONS/ability_rogue_eviscerate",
- ["id"] = 8624
+ ["texture"] = "Interface/ICONS/ability_rogue_eviscerate"
},
- [3] = {
+ [2] = {
+ ["id"] = 8637,
["name"] = "Feint",
["rank"] = 3,
["cost"] = 20000,
- ["texture"] = "Interface/ICONS/ability_rogue_feint",
- ["id"] = 8637
+ ["texture"] = "Interface/ICONS/ability_rogue_feint"
},
- [4] = {
+ [3] = {
+ ["id"] = 1860,
["name"] = "Safe Fall",
- ["rank"] = 1,
- ["cost"] = 0,
- ["texture"] = "Interface/ICONS/inv_feather_01",
- ["id"] = 1860
+ ["rank"] = 0,
+ ["cost"] = 20000,
+ ["texture"] = "Interface/ICONS/inv_feather_01"
},
- [5] = {
+ [4] = {
+ ["id"] = 1786,
["name"] = "Stealth",
["rank"] = 3,
["cost"] = 20000,
- ["texture"] = "Interface/ICONS/ability_stealth",
- ["id"] = 1786
+ ["texture"] = "Interface/ICONS/ability_stealth"
+ },
+ [5] = {
+ ["id"] = 13228,
+ ["name"] = "Wound Poison II",
+ ["rank"] = 2,
+ ["cost"] = 20000,
+ ["texture"] = "Interface/ICONS/inv_misc_herb_16"
},
},
[42] = {
[1] = {
+ ["id"] = 11267,
["name"] = "Ambush",
["rank"] = 4,
["cost"] = 27000,
- ["texture"] = "Interface/ICONS/ability_rogue_ambush",
- ["id"] = 11267
+ ["texture"] = "Interface/ICONS/ability_rogue_ambush"
},
[2] = {
- ["name"] = "Slice and Dice",
- ["rank"] = 2,
+ ["id"] = 1768,
+ ["name"] = "Kick",
+ ["rank"] = 3,
["cost"] = 27000,
- ["texture"] = "Interface/ICONS/ability_rogue_slicedice",
- ["id"] = 6774
+ ["texture"] = "Interface/ICONS/ability_kick"
},
[3] = {
- ["name"] = "Kick",
- ["rank"] = 3,
+ ["id"] = 6774,
+ ["name"] = "Slice and Dice",
+ ["rank"] = 2,
["cost"] = 27000,
- ["texture"] = "Interface/ICONS/ability_kick",
- ["id"] = 1768
+ ["texture"] = "Interface/ICONS/ability_rogue_slicedice"
},
[4] = {
+ ["id"] = 1857,
["name"] = "Vanish",
["rank"] = 2,
["cost"] = 27000,
- ["texture"] = "Interface/ICONS/ability_vanish",
- ["id"] = 1857
+ ["texture"] = "Interface/ICONS/ability_vanish"
},
},
[44] = {
[1] = {
- ["name"] = "Instant Poison IV",
- ["rank"] = 4,
+ ["id"] = 11279,
+ ["name"] = "Backstab",
+ ["rank"] = 6,
["cost"] = 29000,
- ["texture"] = "Interface/ICONS/ability_poisons",
- ["id"] = 11341
+ ["texture"] = "Interface/ICONS/ability_backstab"
},
[2] = {
- ["name"] = "Rupture",
+ ["id"] = 11341,
+ ["name"] = "Instant Poison IV",
["rank"] = 4,
["cost"] = 29000,
- ["texture"] = "Interface/ICONS/ability_rogue_rupture",
- ["id"] = 11273
+ ["texture"] = "Interface/ICONS/ability_poisons"
},
[3] = {
- ["name"] = "Backstab",
- ["rank"] = 6,
+ ["id"] = 11273,
+ ["name"] = "Rupture",
+ ["rank"] = 4,
["cost"] = 29000,
- ["texture"] = "Interface/ICONS/ability_backstab",
- ["id"] = 11279
+ ["texture"] = "Interface/ICONS/ability_rogue_rupture"
},
},
[46] = {
[1] = {
+ ["id"] = 17347,
+ ["name"] = "Hemorrhage",
+ ["rank"] = 2,
+ ["cost"] = 7750,
+ ["texture"] = "Interface/ICONS/spell_shadow_lifedrain",
+ ["talent"] = true
+ },
+ [2] = {
+ ["id"] = 11357,
["name"] = "Deadly Poison III",
["rank"] = 3,
["cost"] = 31000,
- ["texture"] = "Interface/ICONS/ability_rogue_dualweild",
- ["id"] = 11357
+ ["texture"] = "Interface/ICONS/ability_rogue_dualweild"
},
- [2] = {
+ [3] = {
+ ["id"] = 11197,
["name"] = "Expose Armor",
["rank"] = 4,
["cost"] = 31000,
- ["texture"] = "Interface/ICONS/ability_warrior_riposte",
- ["id"] = 11197
+ ["texture"] = "Interface/ICONS/ability_warrior_riposte"
},
- [3] = {
+ [4] = {
+ ["id"] = 11289,
["name"] = "Garrote",
["rank"] = 5,
["cost"] = 31000,
- ["texture"] = "Interface/ICONS/ability_rogue_garrote",
- ["id"] = 11289
+ ["texture"] = "Interface/ICONS/ability_rogue_garrote"
},
- [4] = {
+ [5] = {
+ ["id"] = 11285,
["name"] = "Gouge",
["rank"] = 4,
["cost"] = 31000,
- ["texture"] = "Interface/ICONS/ability_gouge",
- ["id"] = 11285
+ ["texture"] = "Interface/ICONS/ability_gouge"
},
- [5] = {
+ [6] = {
+ ["id"] = 11293,
["name"] = "Sinister Strike",
["rank"] = 7,
["cost"] = 31000,
- ["texture"] = "Interface/ICONS/spell_shadow_ritualofsacrifice",
- ["id"] = 11293
- },
- [6] = {
- ["name"] = "Hemorrhage",
- ["rank"] = 2,
- ["cost"] = 7750,
- ["texture"] = "Interface/ICONS/spell_shadow_lifedrain",
- ["id"] = 17347,
- ["talent"] = true
+ ["texture"] = "Interface/ICONS/spell_shadow_ritualofsacrifice"
},
},
[48] = {
[1] = {
- ["name"] = "Wound Poison III",
- ["rank"] = 3,
+ ["id"] = 11299,
+ ["name"] = "Eviscerate",
+ ["rank"] = 7,
["cost"] = 33000,
- ["texture"] = "Interface/ICONS/ability_poisonsting",
- ["id"] = 13229
+ ["texture"] = "Interface/ICONS/ability_rogue_eviscerate"
},
[2] = {
- ["name"] = "Eviscerate",
- ["rank"] = 7,
+ ["id"] = 11297,
+ ["name"] = "Sap",
+ ["rank"] = 3,
["cost"] = 33000,
- ["texture"] = "Interface/ICONS/ability_rogue_eviscerate",
- ["id"] = 11299
+ ["texture"] = "Interface/ICONS/ability_sap"
},
[3] = {
- ["name"] = "Sap",
+ ["id"] = 13229,
+ ["name"] = "Wound Poison III",
["rank"] = 3,
["cost"] = 33000,
- ["texture"] = "Interface/ICONS/ability_sap",
- ["id"] = 11297
+ ["texture"] = "Interface/ICONS/inv_misc_herb_16"
},
},
[50] = {
[1] = {
- ["name"] = "Crippling Poison II",
- ["rank"] = 2,
+ ["id"] = 11268,
+ ["name"] = "Ambush",
+ ["rank"] = 5,
["cost"] = 35000,
- ["texture"] = "Interface/ICONS/inv_potion_19",
- ["id"] = 3421
+ ["texture"] = "Interface/ICONS/ability_rogue_ambush"
},
[2] = {
- ["name"] = "Ambush",
- ["rank"] = 5,
+ ["id"] = 3421,
+ ["name"] = "Crippling Poison II",
+ ["rank"] = 2,
["cost"] = 35000,
- ["texture"] = "Interface/ICONS/ability_rogue_ambush",
- ["id"] = 11268
+ ["texture"] = "Interface/ICONS/ability_poisonsting"
},
[3] = {
+ ["id"] = 26669,
+ ["name"] = "Evasion",
+ ["rank"] = 2,
+ ["cost"] = 35000,
+ ["texture"] = "Interface/ICONS/spell_shadow_shadowward"
+ },
+ [4] = {
+ ["id"] = 8643,
["name"] = "Kidney Shot",
["rank"] = 2,
["cost"] = 35000,
- ["texture"] = "Interface/ICONS/ability_rogue_kidneyshot",
- ["id"] = 8643
+ ["texture"] = "Interface/ICONS/ability_rogue_kidneyshot"
+ },
+ [5] = {
+ ["id"] = 34411,
+ ["name"] = "Mutilate",
+ ["rank"] = 2,
+ ["cost"] = 5500,
+ ["texture"] = "Interface/ICONS/ability_rogue_shadowstrikes"
},
},
[52] = {
[1] = {
- ["name"] = "Mind-numbing Poison III",
- ["rank"] = 3,
+ ["id"] = 11280,
+ ["name"] = "Backstab",
+ ["rank"] = 7,
["cost"] = 46000,
- ["texture"] = "Interface/ICONS/spell_nature_nullifydisease",
- ["id"] = 11400
+ ["texture"] = "Interface/ICONS/ability_backstab"
},
[2] = {
- ["name"] = "Instant Poison V",
- ["rank"] = 5,
+ ["id"] = 11303,
+ ["name"] = "Feint",
+ ["rank"] = 4,
["cost"] = 46000,
- ["texture"] = "Interface/ICONS/ability_poisons",
- ["id"] = 11342
+ ["texture"] = "Interface/ICONS/ability_rogue_feint"
},
[3] = {
- ["name"] = "Rupture",
+ ["id"] = 11342,
+ ["name"] = "Instant Poison V",
["rank"] = 5,
["cost"] = 46000,
- ["texture"] = "Interface/ICONS/ability_rogue_rupture",
- ["id"] = 11274
+ ["texture"] = "Interface/ICONS/ability_poisons"
},
[4] = {
- ["name"] = "Backstab",
- ["rank"] = 7,
+ ["id"] = 11400,
+ ["name"] = "Mind-numbing Poison III",
+ ["rank"] = 3,
["cost"] = 46000,
- ["texture"] = "Interface/ICONS/ability_backstab",
- ["id"] = 11280
+ ["texture"] = "Interface/ICONS/spell_nature_nullifydisease"
},
[5] = {
- ["name"] = "Feint",
- ["rank"] = 4,
+ ["id"] = 11274,
+ ["name"] = "Rupture",
+ ["rank"] = 5,
["cost"] = 46000,
- ["texture"] = "Interface/ICONS/ability_rogue_feint",
- ["id"] = 11303
+ ["texture"] = "Interface/ICONS/ability_rogue_rupture"
},
},
[54] = {
[1] = {
+ ["id"] = 11358,
["name"] = "Deadly Poison IV",
["rank"] = 4,
["cost"] = 48000,
- ["texture"] = "Interface/ICONS/ability_rogue_dualweild",
- ["id"] = 11358
+ ["texture"] = "Interface/ICONS/ability_rogue_dualweild"
},
[2] = {
+ ["id"] = 11290,
["name"] = "Garrote",
["rank"] = 6,
["cost"] = 48000,
- ["texture"] = "Interface/ICONS/ability_rogue_garrote",
- ["id"] = 11290
+ ["texture"] = "Interface/ICONS/ability_rogue_garrote"
},
[3] = {
+ ["id"] = 11294,
["name"] = "Sinister Strike",
["rank"] = 8,
["cost"] = 48000,
- ["texture"] = "Interface/ICONS/spell_shadow_ritualofsacrifice",
- ["id"] = 11294
+ ["texture"] = "Interface/ICONS/spell_shadow_ritualofsacrifice"
},
},
[56] = {
[1] = {
- ["name"] = "Wound Poison IV",
- ["rank"] = 4,
- ["cost"] = 50000,
- ["texture"] = "Interface/ICONS/ability_poisonsting",
- ["id"] = 13230
- },
- [2] = {
+ ["id"] = 11300,
["name"] = "Eviscerate",
["rank"] = 8,
["cost"] = 50000,
- ["texture"] = "Interface/ICONS/ability_rogue_eviscerate",
- ["id"] = 11300
+ ["texture"] = "Interface/ICONS/ability_rogue_eviscerate"
},
- [3] = {
+ [2] = {
+ ["id"] = 11198,
["name"] = "Expose Armor",
["rank"] = 5,
["cost"] = 50000,
- ["texture"] = "Interface/ICONS/ability_warrior_riposte",
- ["id"] = 11198
+ ["texture"] = "Interface/ICONS/ability_warrior_riposte"
+ },
+ [3] = {
+ ["id"] = 13230,
+ ["name"] = "Wound Poison IV",
+ ["rank"] = 4,
+ ["cost"] = 50000,
+ ["texture"] = "Interface/ICONS/inv_misc_herb_16"
},
},
[58] = {
[1] = {
+ ["id"] = 17348,
+ ["name"] = "Hemorrhage",
+ ["rank"] = 3,
+ ["cost"] = 13000,
+ ["texture"] = "Interface/ICONS/spell_shadow_lifedrain",
+ ["talent"] = true
+ },
+ [2] = {
+ ["id"] = 11269,
["name"] = "Ambush",
["rank"] = 6,
["cost"] = 52000,
- ["texture"] = "Interface/ICONS/ability_rogue_ambush",
- ["id"] = 11269
+ ["texture"] = "Interface/ICONS/ability_rogue_ambush"
},
- [2] = {
+ [3] = {
+ ["id"] = 1769,
["name"] = "Kick",
["rank"] = 4,
["cost"] = 52000,
- ["texture"] = "Interface/ICONS/ability_kick",
- ["id"] = 1769
+ ["texture"] = "Interface/ICONS/ability_kick"
},
- [3] = {
+ [4] = {
+ ["id"] = 11305,
["name"] = "Sprint",
["rank"] = 3,
["cost"] = 52000,
- ["texture"] = "Interface/ICONS/ability_rogue_sprint",
- ["id"] = 11305
- },
- [4] = {
- ["name"] = "Hemorrhage",
- ["rank"] = 3,
- ["cost"] = 13000,
- ["texture"] = "Interface/ICONS/spell_shadow_lifedrain",
- ["id"] = 17348,
- ["talent"] = true
+ ["texture"] = "Interface/ICONS/ability_rogue_sprint"
},
},
[60] = {
[1] = {
- ["name"] = "Instant Poison VI",
- ["rank"] = 6,
+ ["id"] = 11281,
+ ["name"] = "Backstab",
+ ["rank"] = 8,
["cost"] = 54000,
- ["texture"] = "Interface/ICONS/ability_poisons",
- ["id"] = 11343
+ ["texture"] = "Interface/ICONS/ability_backstab"
},
[2] = {
- ["name"] = "Rupture",
- ["rank"] = 6,
+ ["id"] = 25300,
+ ["name"] = "Backstab",
+ ["rank"] = 9,
["cost"] = 54000,
- ["texture"] = "Interface/ICONS/ability_rogue_rupture",
- ["id"] = 11275
+ ["texture"] = "Interface/ICONS/ability_backstab"
},
[3] = {
- ["name"] = "Backstab",
- ["rank"] = 8,
+ ["id"] = 25347,
+ ["name"] = "Deadly Poison V",
+ ["rank"] = 5,
["cost"] = 54000,
- ["texture"] = "Interface/ICONS/ability_backstab",
- ["id"] = 11281
+ ["texture"] = "Interface/ICONS/ability_rogue_dualweild"
},
[4] = {
+ ["id"] = 31016,
+ ["name"] = "Eviscerate",
+ ["rank"] = 9,
+ ["cost"] = 65000,
+ ["texture"] = "Interface/ICONS/ability_rogue_eviscerate"
+ },
+ [5] = {
+ ["id"] = 25302,
+ ["name"] = "Feint",
+ ["rank"] = 5,
+ ["cost"] = 50000,
+ ["texture"] = "Interface/ICONS/ability_rogue_feint"
+ },
+ [6] = {
+ ["id"] = 11286,
["name"] = "Gouge",
["rank"] = 5,
["cost"] = 54000,
- ["texture"] = "Interface/ICONS/ability_gouge",
- ["id"] = 11286
+ ["texture"] = "Interface/ICONS/ability_gouge"
},
- [5] = {
+ [7] = {
+ ["id"] = 11343,
+ ["name"] = "Instant Poison VI",
+ ["rank"] = 6,
+ ["cost"] = 54000,
+ ["texture"] = "Interface/ICONS/ability_poisons"
+ },
+ [8] = {
+ ["id"] = 34412,
+ ["name"] = "Mutilate",
+ ["rank"] = 3,
+ ["cost"] = 6500,
+ ["texture"] = "Interface/ICONS/ability_rogue_shadowstrikes"
+ },
+ [9] = {
+ ["id"] = 11275,
+ ["name"] = "Rupture",
+ ["rank"] = 6,
+ ["cost"] = 54000,
+ ["texture"] = "Interface/ICONS/ability_rogue_rupture"
+ },
+ [10] = {
+ ["id"] = 1787,
["name"] = "Stealth",
["rank"] = 4,
["cost"] = 54000,
- ["texture"] = "Interface/ICONS/ability_stealth",
- ["id"] = 1787
+ ["texture"] = "Interface/ICONS/ability_stealth"
+ },
+ },
+ [61] = {
+ [1] = {
+ ["id"] = 26839,
+ ["name"] = "Garrote",
+ ["rank"] = 7,
+ ["cost"] = 50000,
+ ["texture"] = "Interface/ICONS/ability_rogue_garrote"
+ },
+ },
+ [62] = {
+ [1] = {
+ ["id"] = 26969,
+ ["name"] = "Deadly Poison VI",
+ ["rank"] = 6,
+ ["cost"] = 65000,
+ ["texture"] = "Interface/ICONS/ability_rogue_dualweild"
+ },
+ [2] = {
+ ["id"] = 32645,
+ ["name"] = "Envenom",
+ ["rank"] = 1,
+ ["cost"] = 59000,
+ ["texture"] = "Interface/ICONS/ability_rogue_disembowel"
+ },
+ [3] = {
+ ["id"] = 26861,
+ ["name"] = "Sinister Strike",
+ ["rank"] = 9,
+ ["cost"] = 50000,
+ ["texture"] = "Interface/ICONS/spell_shadow_ritualofsacrifice"
+ },
+ [4] = {
+ ["id"] = 26889,
+ ["name"] = "Vanish",
+ ["rank"] = 3,
+ ["cost"] = 59000,
+ ["texture"] = "Interface/ICONS/ability_vanish"
+ },
+ },
+ [64] = {
+ [1] = {
+ ["id"] = 26679,
+ ["name"] = "Deadly Throw",
+ ["rank"] = 1,
+ ["cost"] = 72000,
+ ["texture"] = "Interface/ICONS/inv_throwingknife_06"
+ },
+ [2] = {
+ ["id"] = 26865,
+ ["name"] = "Eviscerate",
+ ["rank"] = 10,
+ ["cost"] = 140000,
+ ["texture"] = "Interface/ICONS/ability_rogue_eviscerate"
+ },
+ [3] = {
+ ["id"] = 27448,
+ ["name"] = "Feint",
+ ["rank"] = 6,
+ ["cost"] = 72000,
+ ["texture"] = "Interface/ICONS/ability_rogue_feint"
+ },
+ [4] = {
+ ["id"] = 27283,
+ ["name"] = "Wound Poison V",
+ ["rank"] = 5,
+ ["cost"] = 80000,
+ ["texture"] = "Interface/ICONS/inv_misc_herb_16"
+ },
+ },
+ [66] = {
+ [1] = {
+ ["id"] = 27441,
+ ["name"] = "Ambush",
+ ["rank"] = 7,
+ ["cost"] = 80000,
+ ["texture"] = "Interface/ICONS/ability_rogue_ambush"
+ },
+ [2] = {
+ ["id"] = 31224,
+ ["name"] = "Cloak of Shadows",
+ ["rank"] = 0,
+ ["cost"] = 89000,
+ ["texture"] = "Interface/ICONS/spell_shadow_nethercloak"
+ },
+ [3] = {
+ ["id"] = 26866,
+ ["name"] = "Expose Armor",
+ ["rank"] = 6,
+ ["cost"] = 99000,
+ ["texture"] = "Interface/ICONS/ability_warrior_riposte"
+ },
+ },
+ [67] = {
+ [1] = {
+ ["id"] = 38764,
+ ["name"] = "Gouge",
+ ["rank"] = 6,
+ ["cost"] = 99000,
+ ["texture"] = "Interface/ICONS/ability_gouge"
+ },
+ },
+ [68] = {
+ [1] = {
+ ["id"] = 26786,
+ ["name"] = "Anesthetic Poison",
+ ["rank"] = 1,
+ ["cost"] = 110000,
+ ["texture"] = "Interface/ICONS/spell_nature_slowpoison"
+ },
+ [2] = {
+ ["id"] = 26863,
+ ["name"] = "Backstab",
+ ["rank"] = 10,
+ ["cost"] = 110000,
+ ["texture"] = "Interface/ICONS/ability_backstab"
+ },
+ [3] = {
+ ["id"] = 26892,
+ ["name"] = "Instant Poison VII",
+ ["rank"] = 7,
+ ["cost"] = 110000,
+ ["texture"] = "Interface/ICONS/ability_poisons"
+ },
+ [4] = {
+ ["id"] = 26867,
+ ["name"] = "Rupture",
+ ["rank"] = 7,
+ ["cost"] = 120000,
+ ["texture"] = "Interface/ICONS/ability_rogue_rupture"
+ },
+ },
+ [69] = {
+ [1] = {
+ ["id"] = 32684,
+ ["name"] = "Envenom",
+ ["rank"] = 2,
+ ["cost"] = 120000,
+ ["texture"] = "Interface/ICONS/ability_rogue_disembowel"
+ },
+ [2] = {
+ ["id"] = 38768,
+ ["name"] = "Kick",
+ ["rank"] = 5,
+ ["cost"] = 120000,
+ ["texture"] = "Interface/ICONS/ability_kick"
+ },
+ },
+ [70] = {
+ [1] = {
+ ["id"] = 26864,
+ ["name"] = "Hemorrhage",
+ ["rank"] = 4,
+ ["cost"] = 2700,
+ ["texture"] = "Interface/ICONS/spell_shadow_lifedrain",
+ ["talent"] = true
+ },
+ [2] = {
+ ["id"] = 27282,
+ ["name"] = "Deadly Poison VII",
+ ["rank"] = 7,
+ ["cost"] = 140000,
+ ["texture"] = "Interface/ICONS/ability_rogue_dualweild"
+ },
+ [3] = {
+ ["id"] = 26884,
+ ["name"] = "Garrote",
+ ["rank"] = 8,
+ ["cost"] = 140000,
+ ["texture"] = "Interface/ICONS/ability_rogue_garrote"
+ },
+ [4] = {
+ ["id"] = 34413,
+ ["name"] = "Mutilate",
+ ["rank"] = 4,
+ ["cost"] = 7500,
+ ["texture"] = "Interface/ICONS/ability_rogue_shadowstrikes"
+ },
+ [5] = {
+ ["id"] = 5938,
+ ["name"] = "Shiv",
+ ["rank"] = 1,
+ ["cost"] = 140000,
+ ["texture"] = "Interface/ICONS/inv_throwingknife_04"
+ },
+ [6] = {
+ ["id"] = 26862,
+ ["name"] = "Sinister Strike",
+ ["rank"] = 10,
+ ["cost"] = 140000,
+ ["texture"] = "Interface/ICONS/spell_shadow_ritualofsacrifice"
},
},
}
diff --git a/Database/classes/Shaman.lua b/Database/classes/Shaman.lua
new file mode 100644
index 0000000..d6f10e2
--- /dev/null
+++ b/Database/classes/Shaman.lua
@@ -0,0 +1,1565 @@
+local _, FieldGuide = ...
+
+FieldGuide.SHAMAN = {
+ [1] = {
+ [1] = {
+ ["id"] = 107,
+ ["name"] = "Block",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_defend"
+ },
+ [2] = {
+ ["id"] = 331,
+ ["name"] = "Healing Wave",
+ ["rank"] = 1,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_magicimmunity"
+ },
+ [3] = {
+ ["id"] = 403,
+ ["name"] = "Lightning Bolt",
+ ["rank"] = 1,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_lightning"
+ },
+ [4] = {
+ ["id"] = 8017,
+ ["name"] = "Rockbiter Weapon",
+ ["rank"] = 1,
+ ["cost"] = 10,
+ ["texture"] = "Interface/ICONS/spell_nature_rockbiter"
+ },
+ },
+ [4] = {
+ [1] = {
+ ["id"] = 8042,
+ ["name"] = "Earth Shock",
+ ["rank"] = 1,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/spell_nature_earthshock"
+ },
+ [2] = {
+ ["id"] = 8071,
+ ["name"] = "Stoneskin Totem",
+ ["rank"] = 1,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_stoneskintotem"
+ },
+ },
+ [6] = {
+ [1] = {
+ ["id"] = 2484,
+ ["name"] = "Earthbind Totem",
+ ["rank"] = 0,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/spell_nature_strengthofearthtotem02"
+ },
+ [2] = {
+ ["id"] = 332,
+ ["name"] = "Healing Wave",
+ ["rank"] = 2,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/spell_nature_magicimmunity"
+ },
+ },
+ [8] = {
+ [1] = {
+ ["id"] = 8044,
+ ["name"] = "Earth Shock",
+ ["rank"] = 2,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/spell_nature_earthshock"
+ },
+ [2] = {
+ ["id"] = 529,
+ ["name"] = "Lightning Bolt",
+ ["rank"] = 2,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/spell_nature_lightning"
+ },
+ [3] = {
+ ["id"] = 324,
+ ["name"] = "Lightning Shield",
+ ["rank"] = 1,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/spell_nature_lightningshield"
+ },
+ [4] = {
+ ["id"] = 8018,
+ ["name"] = "Rockbiter Weapon",
+ ["rank"] = 2,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/spell_nature_rockbiter"
+ },
+ [5] = {
+ ["id"] = 5730,
+ ["name"] = "Stoneclaw Totem",
+ ["rank"] = 1,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/spell_nature_stoneclawtotem"
+ },
+ },
+ [10] = {
+ [1] = {
+ ["id"] = 8050,
+ ["name"] = "Flame Shock",
+ ["rank"] = 1,
+ ["cost"] = 400,
+ ["texture"] = "Interface/ICONS/spell_fire_flameshock"
+ },
+ [2] = {
+ ["id"] = 8024,
+ ["name"] = "Flametongue Weapon",
+ ["rank"] = 1,
+ ["cost"] = 400,
+ ["texture"] = "Interface/ICONS/spell_fire_flametounge"
+ },
+ [3] = {
+ ["id"] = 3599,
+ ["name"] = "Searing Totem",
+ ["rank"] = 1,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_fire_searingtotem"
+ },
+ [4] = {
+ ["id"] = 8075,
+ ["name"] = "Strength of Earth Totem",
+ ["rank"] = 1,
+ ["cost"] = 400,
+ ["texture"] = "Interface/ICONS/spell_nature_earthbindtotem"
+ },
+ },
+ [12] = {
+ [1] = {
+ ["id"] = 2008,
+ ["name"] = "Ancestral Spirit",
+ ["rank"] = 1,
+ ["cost"] = 800,
+ ["texture"] = "Interface/ICONS/spell_nature_regenerate"
+ },
+ [2] = {
+ ["id"] = 1535,
+ ["name"] = "Fire Nova Totem",
+ ["rank"] = 1,
+ ["cost"] = 800,
+ ["texture"] = "Interface/ICONS/spell_fire_sealoffire"
+ },
+ [3] = {
+ ["id"] = 547,
+ ["name"] = "Healing Wave",
+ ["rank"] = 3,
+ ["cost"] = 800,
+ ["texture"] = "Interface/ICONS/spell_nature_magicimmunity"
+ },
+ [4] = {
+ ["id"] = 370,
+ ["name"] = "Purge",
+ ["rank"] = 1,
+ ["cost"] = 800,
+ ["texture"] = "Interface/ICONS/spell_nature_purge"
+ },
+ },
+ [14] = {
+ [1] = {
+ ["id"] = 8045,
+ ["name"] = "Earth Shock",
+ ["rank"] = 3,
+ ["cost"] = 900,
+ ["texture"] = "Interface/ICONS/spell_nature_earthshock"
+ },
+ [2] = {
+ ["id"] = 548,
+ ["name"] = "Lightning Bolt",
+ ["rank"] = 3,
+ ["cost"] = 900,
+ ["texture"] = "Interface/ICONS/spell_nature_lightning"
+ },
+ [3] = {
+ ["id"] = 8154,
+ ["name"] = "Stoneskin Totem",
+ ["rank"] = 2,
+ ["cost"] = 900,
+ ["texture"] = "Interface/ICONS/spell_nature_stoneskintotem"
+ },
+ },
+ [16] = {
+ [1] = {
+ ["id"] = 526,
+ ["name"] = "Cure Poison",
+ ["rank"] = 0,
+ ["cost"] = 1800,
+ ["texture"] = "Interface/ICONS/spell_nature_nullifypoison"
+ },
+ [2] = {
+ ["id"] = 325,
+ ["name"] = "Lightning Shield",
+ ["rank"] = 2,
+ ["cost"] = 1800,
+ ["texture"] = "Interface/ICONS/spell_nature_lightningshield"
+ },
+ [3] = {
+ ["id"] = 8019,
+ ["name"] = "Rockbiter Weapon",
+ ["rank"] = 3,
+ ["cost"] = 1800,
+ ["texture"] = "Interface/ICONS/spell_nature_rockbiter"
+ },
+ },
+ [18] = {
+ [1] = {
+ ["id"] = 8052,
+ ["name"] = "Flame Shock",
+ ["rank"] = 2,
+ ["cost"] = 2000,
+ ["texture"] = "Interface/ICONS/spell_fire_flameshock"
+ },
+ [2] = {
+ ["id"] = 8027,
+ ["name"] = "Flametongue Weapon",
+ ["rank"] = 2,
+ ["cost"] = 2000,
+ ["texture"] = "Interface/ICONS/spell_fire_flametounge"
+ },
+ [3] = {
+ ["id"] = 913,
+ ["name"] = "Healing Wave",
+ ["rank"] = 4,
+ ["cost"] = 2000,
+ ["texture"] = "Interface/ICONS/spell_nature_magicimmunity"
+ },
+ [4] = {
+ ["id"] = 6390,
+ ["name"] = "Stoneclaw Totem",
+ ["rank"] = 2,
+ ["cost"] = 2000,
+ ["texture"] = "Interface/ICONS/spell_nature_stoneclawtotem"
+ },
+ [5] = {
+ ["id"] = 8143,
+ ["name"] = "Tremor Totem",
+ ["rank"] = 0,
+ ["cost"] = 2000,
+ ["texture"] = "Interface/ICONS/spell_nature_tremortotem"
+ },
+ },
+ [20] = {
+ [1] = {
+ ["id"] = 8056,
+ ["name"] = "Frost Shock",
+ ["rank"] = 1,
+ ["cost"] = 2200,
+ ["texture"] = "Interface/ICONS/spell_frost_frostshock"
+ },
+ [2] = {
+ ["id"] = 8033,
+ ["name"] = "Frostbrand Weapon",
+ ["rank"] = 1,
+ ["cost"] = 2200,
+ ["texture"] = "Interface/ICONS/spell_frost_frostbrand"
+ },
+ [3] = {
+ ["id"] = 2645,
+ ["name"] = "Ghost Wolf",
+ ["rank"] = 0,
+ ["cost"] = 2200,
+ ["texture"] = "Interface/ICONS/spell_nature_spiritwolf"
+ },
+ [4] = {
+ ["id"] = 5394,
+ ["name"] = "Healing Stream Totem",
+ ["rank"] = 1,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_spear_04"
+ },
+ [5] = {
+ ["id"] = 8004,
+ ["name"] = "Lesser Healing Wave",
+ ["rank"] = 1,
+ ["cost"] = 2200,
+ ["texture"] = "Interface/ICONS/spell_nature_healingwavelesser"
+ },
+ [6] = {
+ ["id"] = 915,
+ ["name"] = "Lightning Bolt",
+ ["rank"] = 4,
+ ["cost"] = 2200,
+ ["texture"] = "Interface/ICONS/spell_nature_lightning"
+ },
+ [7] = {
+ ["id"] = 6363,
+ ["name"] = "Searing Totem",
+ ["rank"] = 2,
+ ["cost"] = 2200,
+ ["texture"] = "Interface/ICONS/spell_fire_searingtotem"
+ },
+ },
+ [22] = {
+ [1] = {
+ ["id"] = 2870,
+ ["name"] = "Cure Disease",
+ ["rank"] = 0,
+ ["cost"] = 3000,
+ ["texture"] = "Interface/ICONS/spell_nature_removedisease"
+ },
+ [2] = {
+ ["id"] = 8498,
+ ["name"] = "Fire Nova Totem",
+ ["rank"] = 2,
+ ["cost"] = 3000,
+ ["texture"] = "Interface/ICONS/spell_fire_sealoffire"
+ },
+ [3] = {
+ ["id"] = 8166,
+ ["name"] = "Poison Cleansing Totem",
+ ["rank"] = 0,
+ ["cost"] = 3000,
+ ["texture"] = "Interface/ICONS/spell_nature_poisoncleansingtotem"
+ },
+ [4] = {
+ ["id"] = 131,
+ ["name"] = "Water Breathing",
+ ["rank"] = 0,
+ ["cost"] = 3000,
+ ["texture"] = "Interface/ICONS/spell_shadow_demonbreath"
+ },
+ },
+ [24] = {
+ [1] = {
+ ["id"] = 20609,
+ ["name"] = "Ancestral Spirit",
+ ["rank"] = 2,
+ ["cost"] = 3500,
+ ["texture"] = "Interface/ICONS/spell_nature_regenerate"
+ },
+ [2] = {
+ ["id"] = 8046,
+ ["name"] = "Earth Shock",
+ ["rank"] = 4,
+ ["cost"] = 3500,
+ ["texture"] = "Interface/ICONS/spell_nature_earthshock"
+ },
+ [3] = {
+ ["id"] = 8181,
+ ["name"] = "Frost Resistance Totem",
+ ["rank"] = 1,
+ ["cost"] = 3500,
+ ["texture"] = "Interface/ICONS/spell_frostresistancetotem_01"
+ },
+ [4] = {
+ ["id"] = 939,
+ ["name"] = "Healing Wave",
+ ["rank"] = 5,
+ ["cost"] = 3500,
+ ["texture"] = "Interface/ICONS/spell_nature_magicimmunity"
+ },
+ [5] = {
+ ["id"] = 905,
+ ["name"] = "Lightning Shield",
+ ["rank"] = 3,
+ ["cost"] = 3500,
+ ["texture"] = "Interface/ICONS/spell_nature_lightningshield"
+ },
+ [6] = {
+ ["id"] = 10399,
+ ["name"] = "Rockbiter Weapon",
+ ["rank"] = 4,
+ ["cost"] = 3500,
+ ["texture"] = "Interface/ICONS/spell_nature_rockbiter"
+ },
+ [7] = {
+ ["id"] = 8155,
+ ["name"] = "Stoneskin Totem",
+ ["rank"] = 3,
+ ["cost"] = 3500,
+ ["texture"] = "Interface/ICONS/spell_nature_stoneskintotem"
+ },
+ [8] = {
+ ["id"] = 8160,
+ ["name"] = "Strength of Earth Totem",
+ ["rank"] = 2,
+ ["cost"] = 3500,
+ ["texture"] = "Interface/ICONS/spell_nature_earthbindtotem"
+ },
+ },
+ [26] = {
+ [1] = {
+ ["id"] = 6196,
+ ["name"] = "Far Sight",
+ ["rank"] = 0,
+ ["cost"] = 4000,
+ ["texture"] = "Interface/ICONS/spell_nature_farsight"
+ },
+ [2] = {
+ ["id"] = 8030,
+ ["name"] = "Flametongue Weapon",
+ ["rank"] = 3,
+ ["cost"] = 4000,
+ ["texture"] = "Interface/ICONS/spell_fire_flametounge"
+ },
+ [3] = {
+ ["id"] = 943,
+ ["name"] = "Lightning Bolt",
+ ["rank"] = 5,
+ ["cost"] = 4000,
+ ["texture"] = "Interface/ICONS/spell_nature_lightning"
+ },
+ [4] = {
+ ["id"] = 8190,
+ ["name"] = "Magma Totem",
+ ["rank"] = 1,
+ ["cost"] = 4000,
+ ["texture"] = "Interface/ICONS/spell_fire_selfdestruct"
+ },
+ [5] = {
+ ["id"] = 5675,
+ ["name"] = "Mana Spring Totem",
+ ["rank"] = 1,
+ ["cost"] = 4000,
+ ["texture"] = "Interface/ICONS/spell_nature_manaregentotem"
+ },
+ },
+ [28] = {
+ [1] = {
+ ["id"] = 8184,
+ ["name"] = "Fire Resistance Totem",
+ ["rank"] = 1,
+ ["cost"] = 6000,
+ ["texture"] = "Interface/ICONS/spell_fireresistancetotem_01"
+ },
+ [2] = {
+ ["id"] = 8053,
+ ["name"] = "Flame Shock",
+ ["rank"] = 3,
+ ["cost"] = 6000,
+ ["texture"] = "Interface/ICONS/spell_fire_flameshock"
+ },
+ [3] = {
+ ["id"] = 8227,
+ ["name"] = "Flametongue Totem",
+ ["rank"] = 1,
+ ["cost"] = 6000,
+ ["texture"] = "Interface/ICONS/spell_nature_guardianward"
+ },
+ [4] = {
+ ["id"] = 8038,
+ ["name"] = "Frostbrand Weapon",
+ ["rank"] = 2,
+ ["cost"] = 6000,
+ ["texture"] = "Interface/ICONS/spell_frost_frostbrand"
+ },
+ [5] = {
+ ["id"] = 8008,
+ ["name"] = "Lesser Healing Wave",
+ ["rank"] = 2,
+ ["cost"] = 6000,
+ ["texture"] = "Interface/ICONS/spell_nature_healingwavelesser"
+ },
+ [6] = {
+ ["id"] = 6391,
+ ["name"] = "Stoneclaw Totem",
+ ["rank"] = 3,
+ ["cost"] = 6000,
+ ["texture"] = "Interface/ICONS/spell_nature_stoneclawtotem"
+ },
+ [7] = {
+ ["id"] = 546,
+ ["name"] = "Water Walking",
+ ["rank"] = 0,
+ ["cost"] = 6000,
+ ["texture"] = "Interface/ICONS/spell_frost_windwalkon"
+ },
+ },
+ [30] = {
+ [1] = {
+ ["id"] = 556,
+ ["name"] = "Astral Recall",
+ ["rank"] = 0,
+ ["cost"] = 7000,
+ ["texture"] = "Interface/ICONS/spell_nature_astralrecal"
+ },
+ [2] = {
+ ["id"] = 8177,
+ ["name"] = "Grounding Totem",
+ ["rank"] = 0,
+ ["cost"] = 7000,
+ ["texture"] = "Interface/ICONS/spell_nature_groundingtotem"
+ },
+ [3] = {
+ ["id"] = 6375,
+ ["name"] = "Healing Stream Totem",
+ ["rank"] = 2,
+ ["cost"] = 7000,
+ ["texture"] = "Interface/ICONS/inv_spear_04"
+ },
+ [4] = {
+ ["id"] = 10595,
+ ["name"] = "Nature Resistance Totem",
+ ["rank"] = 1,
+ ["cost"] = 7000,
+ ["texture"] = "Interface/ICONS/spell_nature_natureresistancetotem"
+ },
+ [5] = {
+ ["id"] = 20608,
+ ["name"] = "Reincarnation",
+ ["rank"] = 0,
+ ["cost"] = 7000,
+ ["texture"] = "Interface/ICONS/spell_nature_reincarnation"
+ },
+ [6] = {
+ ["id"] = 6364,
+ ["name"] = "Searing Totem",
+ ["rank"] = 3,
+ ["cost"] = 7000,
+ ["texture"] = "Interface/ICONS/spell_fire_searingtotem"
+ },
+ [7] = {
+ ["id"] = 36936,
+ ["name"] = "Totemic Call",
+ ["rank"] = 0,
+ ["cost"] = 7000,
+ ["texture"] = "Interface/ICONS/spell_unused"
+ },
+ [8] = {
+ ["id"] = 8232,
+ ["name"] = "Windfury Weapon",
+ ["rank"] = 1,
+ ["cost"] = 7000,
+ ["texture"] = "Interface/ICONS/spell_nature_cyclone"
+ },
+ },
+ [32] = {
+ [1] = {
+ ["id"] = 421,
+ ["name"] = "Chain Lightning",
+ ["rank"] = 1,
+ ["cost"] = 8000,
+ ["texture"] = "Interface/ICONS/spell_nature_chainlightning"
+ },
+ [2] = {
+ ["id"] = 8499,
+ ["name"] = "Fire Nova Totem",
+ ["rank"] = 3,
+ ["cost"] = 8000,
+ ["texture"] = "Interface/ICONS/spell_fire_sealoffire"
+ },
+ [3] = {
+ ["id"] = 959,
+ ["name"] = "Healing Wave",
+ ["rank"] = 6,
+ ["cost"] = 8000,
+ ["texture"] = "Interface/ICONS/spell_nature_magicimmunity"
+ },
+ [4] = {
+ ["id"] = 6041,
+ ["name"] = "Lightning Bolt",
+ ["rank"] = 6,
+ ["cost"] = 8000,
+ ["texture"] = "Interface/ICONS/spell_nature_lightning"
+ },
+ [5] = {
+ ["id"] = 945,
+ ["name"] = "Lightning Shield",
+ ["rank"] = 4,
+ ["cost"] = 8000,
+ ["texture"] = "Interface/ICONS/spell_nature_lightningshield"
+ },
+ [6] = {
+ ["id"] = 8012,
+ ["name"] = "Purge",
+ ["rank"] = 2,
+ ["cost"] = 8000,
+ ["texture"] = "Interface/ICONS/spell_nature_purge"
+ },
+ [7] = {
+ ["id"] = 8512,
+ ["name"] = "Windfury Totem",
+ ["rank"] = 1,
+ ["cost"] = 8000,
+ ["texture"] = "Interface/ICONS/spell_nature_windfury"
+ },
+ },
+ [34] = {
+ [1] = {
+ ["id"] = 8058,
+ ["name"] = "Frost Shock",
+ ["rank"] = 2,
+ ["cost"] = 9000,
+ ["texture"] = "Interface/ICONS/spell_frost_frostshock"
+ },
+ [2] = {
+ ["id"] = 16314,
+ ["name"] = "Rockbiter Weapon",
+ ["rank"] = 5,
+ ["cost"] = 9000,
+ ["texture"] = "Interface/ICONS/spell_nature_rockbiter"
+ },
+ [3] = {
+ ["id"] = 6495,
+ ["name"] = "Sentry Totem",
+ ["rank"] = 0,
+ ["cost"] = 9000,
+ ["texture"] = "Interface/ICONS/spell_nature_removecurse"
+ },
+ [4] = {
+ ["id"] = 10406,
+ ["name"] = "Stoneskin Totem",
+ ["rank"] = 4,
+ ["cost"] = 9000,
+ ["texture"] = "Interface/ICONS/spell_nature_stoneskintotem"
+ },
+ },
+ [36] = {
+ [1] = {
+ ["id"] = 20610,
+ ["name"] = "Ancestral Spirit",
+ ["rank"] = 3,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/spell_nature_regenerate"
+ },
+ [2] = {
+ ["id"] = 10412,
+ ["name"] = "Earth Shock",
+ ["rank"] = 5,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/spell_nature_earthshock"
+ },
+ [3] = {
+ ["id"] = 16339,
+ ["name"] = "Flametongue Weapon",
+ ["rank"] = 4,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/spell_fire_flametounge"
+ },
+ [4] = {
+ ["id"] = 8010,
+ ["name"] = "Lesser Healing Wave",
+ ["rank"] = 3,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/spell_nature_healingwavelesser"
+ },
+ [5] = {
+ ["id"] = 10585,
+ ["name"] = "Magma Totem",
+ ["rank"] = 2,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/spell_fire_selfdestruct"
+ },
+ [6] = {
+ ["id"] = 10495,
+ ["name"] = "Mana Spring Totem",
+ ["rank"] = 2,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/spell_nature_manaregentotem"
+ },
+ [7] = {
+ ["id"] = 15107,
+ ["name"] = "Windwall Totem",
+ ["rank"] = 1,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/spell_nature_earthbind"
+ },
+ },
+ [38] = {
+ [1] = {
+ ["id"] = 8170,
+ ["name"] = "Disease Cleansing Totem",
+ ["rank"] = 0,
+ ["cost"] = 11000,
+ ["texture"] = "Interface/ICONS/spell_nature_diseasecleansingtotem"
+ },
+ [2] = {
+ ["id"] = 8249,
+ ["name"] = "Flametongue Totem",
+ ["rank"] = 2,
+ ["cost"] = 11000,
+ ["texture"] = "Interface/ICONS/spell_nature_guardianward"
+ },
+ [3] = {
+ ["id"] = 10478,
+ ["name"] = "Frost Resistance Totem",
+ ["rank"] = 2,
+ ["cost"] = 11000,
+ ["texture"] = "Interface/ICONS/spell_frostresistancetotem_01"
+ },
+ [4] = {
+ ["id"] = 10456,
+ ["name"] = "Frostbrand Weapon",
+ ["rank"] = 3,
+ ["cost"] = 11000,
+ ["texture"] = "Interface/ICONS/spell_frost_frostbrand"
+ },
+ [5] = {
+ ["id"] = 10391,
+ ["name"] = "Lightning Bolt",
+ ["rank"] = 7,
+ ["cost"] = 11000,
+ ["texture"] = "Interface/ICONS/spell_nature_lightning"
+ },
+ [6] = {
+ ["id"] = 6392,
+ ["name"] = "Stoneclaw Totem",
+ ["rank"] = 4,
+ ["cost"] = 11000,
+ ["texture"] = "Interface/ICONS/spell_nature_stoneclawtotem"
+ },
+ [7] = {
+ ["id"] = 8161,
+ ["name"] = "Strength of Earth Totem",
+ ["rank"] = 3,
+ ["cost"] = 11000,
+ ["texture"] = "Interface/ICONS/spell_nature_earthbindtotem"
+ },
+ },
+ [40] = {
+ [1] = {
+ ["id"] = 1064,
+ ["name"] = "Chain Heal",
+ ["rank"] = 1,
+ ["cost"] = 12000,
+ ["texture"] = "Interface/ICONS/spell_nature_healingwavegreater"
+ },
+ [2] = {
+ ["id"] = 930,
+ ["name"] = "Chain Lightning",
+ ["rank"] = 2,
+ ["cost"] = 12000,
+ ["texture"] = "Interface/ICONS/spell_nature_chainlightning"
+ },
+ [3] = {
+ ["id"] = 10447,
+ ["name"] = "Flame Shock",
+ ["rank"] = 4,
+ ["cost"] = 12000,
+ ["texture"] = "Interface/ICONS/spell_fire_flameshock"
+ },
+ [4] = {
+ ["id"] = 6377,
+ ["name"] = "Healing Stream Totem",
+ ["rank"] = 3,
+ ["cost"] = 12000,
+ ["texture"] = "Interface/ICONS/inv_spear_04"
+ },
+ [5] = {
+ ["id"] = 8005,
+ ["name"] = "Healing Wave",
+ ["rank"] = 7,
+ ["cost"] = 12000,
+ ["texture"] = "Interface/ICONS/spell_nature_magicimmunity"
+ },
+ [6] = {
+ ["id"] = 8134,
+ ["name"] = "Lightning Shield",
+ ["rank"] = 5,
+ ["cost"] = 12000,
+ ["texture"] = "Interface/ICONS/spell_nature_lightningshield"
+ },
+ [7] = {
+ ["id"] = 6365,
+ ["name"] = "Searing Totem",
+ ["rank"] = 4,
+ ["cost"] = 12000,
+ ["texture"] = "Interface/ICONS/spell_fire_searingtotem"
+ },
+ [8] = {
+ ["id"] = 8235,
+ ["name"] = "Windfury Weapon",
+ ["rank"] = 2,
+ ["cost"] = 12000,
+ ["texture"] = "Interface/ICONS/spell_nature_cyclone"
+ },
+ },
+ [42] = {
+ [1] = {
+ ["id"] = 11314,
+ ["name"] = "Fire Nova Totem",
+ ["rank"] = 4,
+ ["cost"] = 16000,
+ ["texture"] = "Interface/ICONS/spell_fire_sealoffire"
+ },
+ [2] = {
+ ["id"] = 10537,
+ ["name"] = "Fire Resistance Totem",
+ ["rank"] = 2,
+ ["cost"] = 16000,
+ ["texture"] = "Interface/ICONS/spell_fireresistancetotem_01"
+ },
+ [3] = {
+ ["id"] = 8835,
+ ["name"] = "Grace of Air Totem",
+ ["rank"] = 1,
+ ["cost"] = 16000,
+ ["texture"] = "Interface/ICONS/spell_nature_invisibilitytotem"
+ },
+ [4] = {
+ ["id"] = 10613,
+ ["name"] = "Windfury Totem",
+ ["rank"] = 2,
+ ["cost"] = 16000,
+ ["texture"] = "Interface/ICONS/spell_nature_windfury"
+ },
+ },
+ [44] = {
+ [1] = {
+ ["id"] = 10466,
+ ["name"] = "Lesser Healing Wave",
+ ["rank"] = 4,
+ ["cost"] = 18000,
+ ["texture"] = "Interface/ICONS/spell_nature_healingwavelesser"
+ },
+ [2] = {
+ ["id"] = 10392,
+ ["name"] = "Lightning Bolt",
+ ["rank"] = 8,
+ ["cost"] = 18000,
+ ["texture"] = "Interface/ICONS/spell_nature_lightning"
+ },
+ [3] = {
+ ["id"] = 10600,
+ ["name"] = "Nature Resistance Totem",
+ ["rank"] = 2,
+ ["cost"] = 18000,
+ ["texture"] = "Interface/ICONS/spell_nature_natureresistancetotem"
+ },
+ [4] = {
+ ["id"] = 16315,
+ ["name"] = "Rockbiter Weapon",
+ ["rank"] = 6,
+ ["cost"] = 18000,
+ ["texture"] = "Interface/ICONS/spell_nature_rockbiter"
+ },
+ [5] = {
+ ["id"] = 10407,
+ ["name"] = "Stoneskin Totem",
+ ["rank"] = 5,
+ ["cost"] = 18000,
+ ["texture"] = "Interface/ICONS/spell_nature_stoneskintotem"
+ },
+ },
+ [46] = {
+ [1] = {
+ ["id"] = 10622,
+ ["name"] = "Chain Heal",
+ ["rank"] = 2,
+ ["cost"] = 20000,
+ ["texture"] = "Interface/ICONS/spell_nature_healingwavegreater"
+ },
+ [2] = {
+ ["id"] = 16341,
+ ["name"] = "Flametongue Weapon",
+ ["rank"] = 5,
+ ["cost"] = 20000,
+ ["texture"] = "Interface/ICONS/spell_fire_flametounge"
+ },
+ [3] = {
+ ["id"] = 10472,
+ ["name"] = "Frost Shock",
+ ["rank"] = 3,
+ ["cost"] = 20000,
+ ["texture"] = "Interface/ICONS/spell_frost_frostshock"
+ },
+ [4] = {
+ ["id"] = 10586,
+ ["name"] = "Magma Totem",
+ ["rank"] = 3,
+ ["cost"] = 20000,
+ ["texture"] = "Interface/ICONS/spell_fire_selfdestruct"
+ },
+ [5] = {
+ ["id"] = 10496,
+ ["name"] = "Mana Spring Totem",
+ ["rank"] = 3,
+ ["cost"] = 20000,
+ ["texture"] = "Interface/ICONS/spell_nature_manaregentotem"
+ },
+ [6] = {
+ ["id"] = 15111,
+ ["name"] = "Windwall Totem",
+ ["rank"] = 2,
+ ["cost"] = 20000,
+ ["texture"] = "Interface/ICONS/spell_nature_earthbind"
+ },
+ },
+ [48] = {
+ [1] = {
+ ["id"] = 20776,
+ ["name"] = "Ancestral Spirit",
+ ["rank"] = 4,
+ ["cost"] = 22000,
+ ["texture"] = "Interface/ICONS/spell_nature_regenerate"
+ },
+ [2] = {
+ ["id"] = 2860,
+ ["name"] = "Chain Lightning",
+ ["rank"] = 3,
+ ["cost"] = 22000,
+ ["texture"] = "Interface/ICONS/spell_nature_chainlightning"
+ },
+ [3] = {
+ ["id"] = 10413,
+ ["name"] = "Earth Shock",
+ ["rank"] = 6,
+ ["cost"] = 22000,
+ ["texture"] = "Interface/ICONS/spell_nature_earthshock"
+ },
+ [4] = {
+ ["id"] = 10526,
+ ["name"] = "Flametongue Totem",
+ ["rank"] = 3,
+ ["cost"] = 22000,
+ ["texture"] = "Interface/ICONS/spell_nature_guardianward"
+ },
+ [5] = {
+ ["id"] = 16355,
+ ["name"] = "Frostbrand Weapon",
+ ["rank"] = 4,
+ ["cost"] = 22000,
+ ["texture"] = "Interface/ICONS/spell_frost_frostbrand"
+ },
+ [6] = {
+ ["id"] = 10395,
+ ["name"] = "Healing Wave",
+ ["rank"] = 8,
+ ["cost"] = 22000,
+ ["texture"] = "Interface/ICONS/spell_nature_magicimmunity"
+ },
+ [7] = {
+ ["id"] = 10431,
+ ["name"] = "Lightning Shield",
+ ["rank"] = 6,
+ ["cost"] = 22000,
+ ["texture"] = "Interface/ICONS/spell_nature_lightningshield"
+ },
+ [8] = {
+ ["id"] = 10427,
+ ["name"] = "Stoneclaw Totem",
+ ["rank"] = 5,
+ ["cost"] = 22000,
+ ["texture"] = "Interface/ICONS/spell_nature_stoneclawtotem"
+ },
+ },
+ [50] = {
+ [1] = {
+ ["id"] = 10462,
+ ["name"] = "Healing Stream Totem",
+ ["rank"] = 4,
+ ["cost"] = 24000,
+ ["texture"] = "Interface/ICONS/inv_spear_04"
+ },
+ [2] = {
+ ["id"] = 15207,
+ ["name"] = "Lightning Bolt",
+ ["rank"] = 9,
+ ["cost"] = 24000,
+ ["texture"] = "Interface/ICONS/spell_nature_lightning"
+ },
+ [3] = {
+ ["id"] = 10437,
+ ["name"] = "Searing Totem",
+ ["rank"] = 5,
+ ["cost"] = 24000,
+ ["texture"] = "Interface/ICONS/spell_fire_searingtotem"
+ },
+ [4] = {
+ ["id"] = 25908,
+ ["name"] = "Tranquil Air Totem",
+ ["rank"] = 0,
+ ["cost"] = 24000,
+ ["texture"] = "Interface/ICONS/spell_nature_brilliance"
+ },
+ [5] = {
+ ["id"] = 10486,
+ ["name"] = "Windfury Weapon",
+ ["rank"] = 3,
+ ["cost"] = 24000,
+ ["texture"] = "Interface/ICONS/spell_nature_cyclone"
+ },
+ },
+ [52] = {
+ [1] = {
+ ["id"] = 11315,
+ ["name"] = "Fire Nova Totem",
+ ["rank"] = 5,
+ ["cost"] = 27000,
+ ["texture"] = "Interface/ICONS/spell_fire_sealoffire"
+ },
+ [2] = {
+ ["id"] = 10448,
+ ["name"] = "Flame Shock",
+ ["rank"] = 5,
+ ["cost"] = 27000,
+ ["texture"] = "Interface/ICONS/spell_fire_flameshock"
+ },
+ [3] = {
+ ["id"] = 10467,
+ ["name"] = "Lesser Healing Wave",
+ ["rank"] = 5,
+ ["cost"] = 27000,
+ ["texture"] = "Interface/ICONS/spell_nature_healingwavelesser"
+ },
+ [4] = {
+ ["id"] = 10442,
+ ["name"] = "Strength of Earth Totem",
+ ["rank"] = 4,
+ ["cost"] = 27000,
+ ["texture"] = "Interface/ICONS/spell_nature_earthbindtotem"
+ },
+ [5] = {
+ ["id"] = 10614,
+ ["name"] = "Windfury Totem",
+ ["rank"] = 3,
+ ["cost"] = 27000,
+ ["texture"] = "Interface/ICONS/spell_nature_windfury"
+ },
+ },
+ [54] = {
+ [1] = {
+ ["id"] = 10623,
+ ["name"] = "Chain Heal",
+ ["rank"] = 3,
+ ["cost"] = 29000,
+ ["texture"] = "Interface/ICONS/spell_nature_healingwavegreater"
+ },
+ [2] = {
+ ["id"] = 10479,
+ ["name"] = "Frost Resistance Totem",
+ ["rank"] = 3,
+ ["cost"] = 29000,
+ ["texture"] = "Interface/ICONS/spell_frostresistancetotem_01"
+ },
+ [3] = {
+ ["id"] = 16316,
+ ["name"] = "Rockbiter Weapon",
+ ["rank"] = 7,
+ ["cost"] = 29000,
+ ["texture"] = "Interface/ICONS/spell_nature_rockbiter"
+ },
+ [4] = {
+ ["id"] = 10408,
+ ["name"] = "Stoneskin Totem",
+ ["rank"] = 6,
+ ["cost"] = 29000,
+ ["texture"] = "Interface/ICONS/spell_nature_stoneskintotem"
+ },
+ },
+ [56] = {
+ [1] = {
+ ["id"] = 10605,
+ ["name"] = "Chain Lightning",
+ ["rank"] = 4,
+ ["cost"] = 30000,
+ ["texture"] = "Interface/ICONS/spell_nature_chainlightning"
+ },
+ [2] = {
+ ["id"] = 16342,
+ ["name"] = "Flametongue Weapon",
+ ["rank"] = 6,
+ ["cost"] = 30000,
+ ["texture"] = "Interface/ICONS/spell_fire_flametounge"
+ },
+ [3] = {
+ ["id"] = 10627,
+ ["name"] = "Grace of Air Totem",
+ ["rank"] = 2,
+ ["cost"] = 30000,
+ ["texture"] = "Interface/ICONS/spell_nature_invisibilitytotem"
+ },
+ [4] = {
+ ["id"] = 10396,
+ ["name"] = "Healing Wave",
+ ["rank"] = 9,
+ ["cost"] = 30000,
+ ["texture"] = "Interface/ICONS/spell_nature_magicimmunity"
+ },
+ [5] = {
+ ["id"] = 15208,
+ ["name"] = "Lightning Bolt",
+ ["rank"] = 10,
+ ["cost"] = 30000,
+ ["texture"] = "Interface/ICONS/spell_nature_lightning"
+ },
+ [6] = {
+ ["id"] = 10432,
+ ["name"] = "Lightning Shield",
+ ["rank"] = 7,
+ ["cost"] = 30000,
+ ["texture"] = "Interface/ICONS/spell_nature_lightningshield"
+ },
+ [7] = {
+ ["id"] = 10587,
+ ["name"] = "Magma Totem",
+ ["rank"] = 4,
+ ["cost"] = 30000,
+ ["texture"] = "Interface/ICONS/spell_fire_selfdestruct"
+ },
+ [8] = {
+ ["id"] = 10497,
+ ["name"] = "Mana Spring Totem",
+ ["rank"] = 4,
+ ["cost"] = 30000,
+ ["texture"] = "Interface/ICONS/spell_nature_manaregentotem"
+ },
+ [9] = {
+ ["id"] = 15112,
+ ["name"] = "Windwall Totem",
+ ["rank"] = 3,
+ ["cost"] = 30000,
+ ["texture"] = "Interface/ICONS/spell_nature_earthbind"
+ },
+ },
+ [58] = {
+ [1] = {
+ ["id"] = 10538,
+ ["name"] = "Fire Resistance Totem",
+ ["rank"] = 3,
+ ["cost"] = 32000,
+ ["texture"] = "Interface/ICONS/spell_fireresistancetotem_01"
+ },
+ [2] = {
+ ["id"] = 16387,
+ ["name"] = "Flametongue Totem",
+ ["rank"] = 4,
+ ["cost"] = 32000,
+ ["texture"] = "Interface/ICONS/spell_nature_guardianward"
+ },
+ [3] = {
+ ["id"] = 10473,
+ ["name"] = "Frost Shock",
+ ["rank"] = 4,
+ ["cost"] = 32000,
+ ["texture"] = "Interface/ICONS/spell_frost_frostshock"
+ },
+ [4] = {
+ ["id"] = 16356,
+ ["name"] = "Frostbrand Weapon",
+ ["rank"] = 5,
+ ["cost"] = 32000,
+ ["texture"] = "Interface/ICONS/spell_frost_frostbrand"
+ },
+ [5] = {
+ ["id"] = 10428,
+ ["name"] = "Stoneclaw Totem",
+ ["rank"] = 6,
+ ["cost"] = 32000,
+ ["texture"] = "Interface/ICONS/spell_nature_stoneclawtotem"
+ },
+ },
+ [60] = {
+ [1] = {
+ ["id"] = 32593,
+ ["name"] = "Earth Shield",
+ ["rank"] = 2,
+ ["cost"] = 1700,
+ ["texture"] = "Interface/ICONS/spell_nature_skinofearth",
+ ["talent"] = true
+ },
+ [2] = {
+ ["id"] = 20777,
+ ["name"] = "Ancestral Spirit",
+ ["rank"] = 5,
+ ["cost"] = 34000,
+ ["texture"] = "Interface/ICONS/spell_nature_regenerate"
+ },
+ [3] = {
+ ["id"] = 10414,
+ ["name"] = "Earth Shock",
+ ["rank"] = 7,
+ ["cost"] = 34000,
+ ["texture"] = "Interface/ICONS/spell_nature_earthshock"
+ },
+ [4] = {
+ ["id"] = 29228,
+ ["name"] = "Flame Shock",
+ ["rank"] = 6,
+ ["cost"] = 65000,
+ ["texture"] = "Interface/ICONS/spell_fire_flameshock"
+ },
+ [5] = {
+ ["id"] = 25359,
+ ["name"] = "Grace of Air Totem",
+ ["rank"] = 3,
+ ["cost"] = 65000,
+ ["texture"] = "Interface/ICONS/spell_nature_invisibilitytotem"
+ },
+ [6] = {
+ ["id"] = 10463,
+ ["name"] = "Healing Stream Totem",
+ ["rank"] = 5,
+ ["cost"] = 34000,
+ ["texture"] = "Interface/ICONS/inv_spear_04"
+ },
+ [7] = {
+ ["id"] = 25357,
+ ["name"] = "Healing Wave",
+ ["rank"] = 10,
+ ["cost"] = 6500,
+ ["texture"] = "Interface/ICONS/spell_nature_magicimmunity"
+ },
+ [8] = {
+ ["id"] = 10468,
+ ["name"] = "Lesser Healing Wave",
+ ["rank"] = 6,
+ ["cost"] = 34000,
+ ["texture"] = "Interface/ICONS/spell_nature_healingwavelesser"
+ },
+ [9] = {
+ ["id"] = 10601,
+ ["name"] = "Nature Resistance Totem",
+ ["rank"] = 3,
+ ["cost"] = 34000,
+ ["texture"] = "Interface/ICONS/spell_nature_natureresistancetotem"
+ },
+ [10] = {
+ ["id"] = 10438,
+ ["name"] = "Searing Totem",
+ ["rank"] = 6,
+ ["cost"] = 34000,
+ ["texture"] = "Interface/ICONS/spell_fire_searingtotem"
+ },
+ [11] = {
+ ["id"] = 25361,
+ ["name"] = "Strength of Earth Totem",
+ ["rank"] = 5,
+ ["cost"] = 34000,
+ ["texture"] = "Interface/ICONS/spell_nature_earthbindtotem"
+ },
+ [12] = {
+ ["id"] = 16362,
+ ["name"] = "Windfury Weapon",
+ ["rank"] = 4,
+ ["cost"] = 34000,
+ ["texture"] = "Interface/ICONS/spell_nature_cyclone"
+ },
+ },
+ [61] = {
+ [1] = {
+ ["id"] = 25422,
+ ["name"] = "Chain Heal",
+ ["rank"] = 4,
+ ["cost"] = 34000,
+ ["texture"] = "Interface/ICONS/spell_nature_healingwavegreater"
+ },
+ [2] = {
+ ["id"] = 25546,
+ ["name"] = "Fire Nova Totem",
+ ["rank"] = 6,
+ ["cost"] = 34000,
+ ["texture"] = "Interface/ICONS/spell_fire_sealoffire"
+ },
+ [3] = {
+ ["id"] = 25585,
+ ["name"] = "Windfury Totem",
+ ["rank"] = 4,
+ ["cost"] = 34000,
+ ["texture"] = "Interface/ICONS/spell_nature_windfury"
+ },
+ },
+ [62] = {
+ [1] = {
+ ["id"] = 25448,
+ ["name"] = "Lightning Bolt",
+ ["rank"] = 11,
+ ["cost"] = 38000,
+ ["texture"] = "Interface/ICONS/spell_nature_lightning"
+ },
+ [2] = {
+ ["id"] = 25479,
+ ["name"] = "Rockbiter Weapon",
+ ["rank"] = 8,
+ ["cost"] = 38000,
+ ["texture"] = "Interface/ICONS/spell_nature_rockbiter"
+ },
+ [3] = {
+ ["id"] = 24398,
+ ["name"] = "Water Shield",
+ ["rank"] = 1,
+ ["cost"] = 38000,
+ ["texture"] = "Interface/ICONS/ability_shaman_watershield"
+ },
+ },
+ [63] = {
+ [1] = {
+ ["id"] = 25439,
+ ["name"] = "Chain Lightning",
+ ["rank"] = 5,
+ ["cost"] = 42000,
+ ["texture"] = "Interface/ICONS/spell_nature_chainlightning"
+ },
+ [2] = {
+ ["id"] = 25391,
+ ["name"] = "Healing Wave",
+ ["rank"] = 11,
+ ["cost"] = 42000,
+ ["texture"] = "Interface/ICONS/spell_nature_magicimmunity"
+ },
+ [3] = {
+ ["id"] = 25469,
+ ["name"] = "Lightning Shield",
+ ["rank"] = 8,
+ ["cost"] = 42000,
+ ["texture"] = "Interface/ICONS/spell_nature_lightningshield"
+ },
+ [4] = {
+ ["id"] = 25508,
+ ["name"] = "Stoneskin Totem",
+ ["rank"] = 7,
+ ["cost"] = 42000,
+ ["texture"] = "Interface/ICONS/spell_nature_stoneskintotem"
+ },
+ },
+ [64] = {
+ [1] = {
+ ["id"] = 25489,
+ ["name"] = "Flametongue Weapon",
+ ["rank"] = 7,
+ ["cost"] = 47000,
+ ["texture"] = "Interface/ICONS/spell_fire_flametounge"
+ },
+ [2] = {
+ ["id"] = 3738,
+ ["name"] = "Wrath of Air Totem",
+ ["rank"] = 1,
+ ["cost"] = 47000,
+ ["texture"] = "Interface/ICONS/spell_nature_slowingtotem"
+ },
+ },
+ [65] = {
+ [1] = {
+ ["id"] = 25552,
+ ["name"] = "Magma Totem",
+ ["rank"] = 5,
+ ["cost"] = 52000,
+ ["texture"] = "Interface/ICONS/spell_fire_selfdestruct"
+ },
+ [2] = {
+ ["id"] = 25570,
+ ["name"] = "Mana Spring Totem",
+ ["rank"] = 5,
+ ["cost"] = 52000,
+ ["texture"] = "Interface/ICONS/spell_nature_manaregentotem"
+ },
+ [3] = {
+ ["id"] = 25528,
+ ["name"] = "Strength of Earth Totem",
+ ["rank"] = 6,
+ ["cost"] = 52000,
+ ["texture"] = "Interface/ICONS/spell_nature_earthbindtotem"
+ },
+ [4] = {
+ ["id"] = 25577,
+ ["name"] = "Windwall Totem",
+ ["rank"] = 4,
+ ["cost"] = 52000,
+ ["texture"] = "Interface/ICONS/spell_nature_earthbind"
+ },
+ },
+ [66] = {
+ [1] = {
+ ["id"] = 2062,
+ ["name"] = "Earth Elemental Totem",
+ ["rank"] = 1,
+ ["cost"] = 58000,
+ ["texture"] = "Interface/ICONS/spell_nature_earthelemental_totem"
+ },
+ [2] = {
+ ["id"] = 25500,
+ ["name"] = "Frostbrand Weapon",
+ ["rank"] = 6,
+ ["cost"] = 58000,
+ ["texture"] = "Interface/ICONS/spell_frost_frostbrand"
+ },
+ [3] = {
+ ["id"] = 25420,
+ ["name"] = "Lesser Healing Wave",
+ ["rank"] = 7,
+ ["cost"] = 58000,
+ ["texture"] = "Interface/ICONS/spell_nature_healingwavelesser"
+ },
+ },
+ [67] = {
+ [1] = {
+ ["id"] = 25557,
+ ["name"] = "Flametongue Totem",
+ ["rank"] = 5,
+ ["cost"] = 64000,
+ ["texture"] = "Interface/ICONS/spell_nature_guardianward"
+ },
+ [2] = {
+ ["id"] = 25560,
+ ["name"] = "Frost Resistance Totem",
+ ["rank"] = 4,
+ ["cost"] = 64000,
+ ["texture"] = "Interface/ICONS/spell_frostresistancetotem_01"
+ },
+ [3] = {
+ ["id"] = 25449,
+ ["name"] = "Lightning Bolt",
+ ["rank"] = 12,
+ ["cost"] = 64000,
+ ["texture"] = "Interface/ICONS/spell_nature_lightning"
+ },
+ [4] = {
+ ["id"] = 25525,
+ ["name"] = "Stoneclaw Totem",
+ ["rank"] = 7,
+ ["cost"] = 64000,
+ ["texture"] = "Interface/ICONS/spell_nature_stoneclawtotem"
+ },
+ },
+ [68] = {
+ [1] = {
+ ["id"] = 25423,
+ ["name"] = "Chain Heal",
+ ["rank"] = 5,
+ ["cost"] = 71000,
+ ["texture"] = "Interface/ICONS/spell_nature_healingwavegreater"
+ },
+ [2] = {
+ ["id"] = 2894,
+ ["name"] = "Fire Elemental Totem",
+ ["rank"] = 1,
+ ["cost"] = 71000,
+ ["texture"] = "Interface/ICONS/spell_fire_elemental_totem"
+ },
+ [3] = {
+ ["id"] = 25563,
+ ["name"] = "Fire Resistance Totem",
+ ["rank"] = 4,
+ ["cost"] = 71000,
+ ["texture"] = "Interface/ICONS/spell_fireresistancetotem_01"
+ },
+ [4] = {
+ ["id"] = 25464,
+ ["name"] = "Frost Shock",
+ ["rank"] = 5,
+ ["cost"] = 71000,
+ ["texture"] = "Interface/ICONS/spell_frost_frostshock"
+ },
+ [5] = {
+ ["id"] = 25505,
+ ["name"] = "Windfury Weapon",
+ ["rank"] = 5,
+ ["cost"] = 71000,
+ ["texture"] = "Interface/ICONS/spell_nature_cyclone"
+ },
+ },
+ [69] = {
+ [1] = {
+ ["id"] = 25454,
+ ["name"] = "Earth Shock",
+ ["rank"] = 8,
+ ["cost"] = 79000,
+ ["texture"] = "Interface/ICONS/spell_nature_earthshock"
+ },
+ [2] = {
+ ["id"] = 25567,
+ ["name"] = "Healing Stream Totem",
+ ["rank"] = 6,
+ ["cost"] = 79000,
+ ["texture"] = "Interface/ICONS/inv_spear_04"
+ },
+ [3] = {
+ ["id"] = 25574,
+ ["name"] = "Nature Resistance Totem",
+ ["rank"] = 4,
+ ["cost"] = 79000,
+ ["texture"] = "Interface/ICONS/spell_nature_natureresistancetotem"
+ },
+ [4] = {
+ ["id"] = 25533,
+ ["name"] = "Searing Totem",
+ ["rank"] = 7,
+ ["cost"] = 79000,
+ ["texture"] = "Interface/ICONS/spell_fire_searingtotem"
+ },
+ [5] = {
+ ["id"] = 33736,
+ ["name"] = "Water Shield",
+ ["rank"] = 2,
+ ["cost"] = 79000,
+ ["texture"] = "Interface/ICONS/ability_shaman_watershield"
+ },
+ },
+ [70] = {
+ [1] = {
+ ["id"] = 32594,
+ ["name"] = "Earth Shield",
+ ["rank"] = 3,
+ ["cost"] = 2500,
+ ["texture"] = "Interface/ICONS/spell_nature_skinofearth",
+ ["talent"] = true
+ },
+ [2] = {
+ ["id"] = 2825,
+ ["name"] = "Bloodlust",
+ ["rank"] = 1,
+ ["cost"] = 88000,
+ ["texture"] = "Interface/ICONS/spell_nature_bloodlust",
+ ["faction"] = "Horde"
+ },
+ [3] = {
+ ["id"] = 25442,
+ ["name"] = "Chain Lightning",
+ ["rank"] = 6,
+ ["cost"] = 88000,
+ ["texture"] = "Interface/ICONS/spell_nature_chainlightning"
+ },
+ [4] = {
+ ["id"] = 25547,
+ ["name"] = "Fire Nova Totem",
+ ["rank"] = 7,
+ ["cost"] = 88000,
+ ["texture"] = "Interface/ICONS/spell_fire_sealoffire"
+ },
+ [5] = {
+ ["id"] = 25457,
+ ["name"] = "Flame Shock",
+ ["rank"] = 7,
+ ["cost"] = 88000,
+ ["texture"] = "Interface/ICONS/spell_fire_flameshock"
+ },
+ [6] = {
+ ["id"] = 25396,
+ ["name"] = "Healing Wave",
+ ["rank"] = 12,
+ ["cost"] = 88000,
+ ["texture"] = "Interface/ICONS/spell_nature_magicimmunity"
+ },
+ [7] = {
+ ["id"] = 32182,
+ ["name"] = "Heroism",
+ ["rank"] = 0,
+ ["cost"] = 88000,
+ ["texture"] = "Interface/ICONS/ability_shaman_heroism",
+ ["faction"] = "Alliance"
+ },
+ [8] = {
+ ["id"] = 25472,
+ ["name"] = "Lightning Shield",
+ ["rank"] = 9,
+ ["cost"] = 88000,
+ ["texture"] = "Interface/ICONS/spell_nature_lightningshield"
+ },
+ [9] = {
+ ["id"] = 25485,
+ ["name"] = "Rockbiter Weapon",
+ ["rank"] = 9,
+ ["cost"] = 88000,
+ ["texture"] = "Interface/ICONS/spell_nature_rockbiter"
+ },
+ [10] = {
+ ["id"] = 25509,
+ ["name"] = "Stoneskin Totem",
+ ["rank"] = 8,
+ ["cost"] = 88000,
+ ["texture"] = "Interface/ICONS/spell_nature_stoneskintotem"
+ },
+ [11] = {
+ ["id"] = 25587,
+ ["name"] = "Windfury Totem",
+ ["rank"] = 5,
+ ["cost"] = 88000,
+ ["texture"] = "Interface/ICONS/spell_nature_windfury"
+ },
+ },
+}
diff --git a/Database/Warlock.lua b/Database/classes/Warlock.lua
similarity index 59%
rename from Database/Warlock.lua
rename to Database/classes/Warlock.lua
index a2c1acb..12f02d4 100644
--- a/Database/Warlock.lua
+++ b/Database/classes/Warlock.lua
@@ -1,1155 +1,1536 @@
local _, FieldGuide = ...
FieldGuide.WARLOCK = {
- [2] = {
+ [1] = {
[1] = {
- ["name"] = "Summon Imp",
- ["rank"] = 1,
+ ["id"] = 5019,
+ ["name"] = "Shoot",
+ ["rank"] = 0,
["cost"] = 0,
- ["texture"] = "Interface/ICONS/spell_shadow_summonimp",
- ["id"] = 688
+ ["texture"] = "Interface/ICONS/ability_shootwand"
},
[2] = {
+ ["id"] = 687,
+ ["name"] = "Demon Skin",
+ ["rank"] = 1,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_ragingscream"
+ },
+ [3] = {
+ ["id"] = 348,
["name"] = "Immolate",
["rank"] = 1,
["cost"] = 10,
- ["texture"] = "Interface/ICONS/spell_fire_immolation",
- ["id"] = 348
+ ["texture"] = "Interface/ICONS/spell_fire_immolation"
+ },
+ [4] = {
+ ["id"] = 686,
+ ["name"] = "Shadow Bolt",
+ ["rank"] = 1,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_shadowbolt"
+ },
+ [5] = {
+ ["id"] = 688,
+ ["name"] = "Summon Imp",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_summonimp"
},
},
[4] = {
[1] = {
+ ["id"] = 172,
["name"] = "Corruption",
["rank"] = 1,
["cost"] = 100,
- ["texture"] = "Interface/ICONS/spell_shadow_abominationexplosion",
- ["id"] = 172
+ ["texture"] = "Interface/ICONS/spell_shadow_abominationexplosion"
},
[2] = {
+ ["id"] = 702,
["name"] = "Curse of Weakness",
["rank"] = 1,
["cost"] = 100,
- ["texture"] = "Interface/ICONS/spell_shadow_curseofmannoroth",
- ["id"] = 702
+ ["texture"] = "Interface/ICONS/spell_shadow_curseofmannoroth"
},
},
[6] = {
[1] = {
+ ["id"] = 1454,
["name"] = "Life Tap",
["rank"] = 1,
["cost"] = 100,
- ["texture"] = "Interface/ICONS/spell_shadow_burningspirit",
- ["id"] = 1454
+ ["texture"] = "Interface/ICONS/spell_shadow_burningspirit"
},
[2] = {
+ ["id"] = 695,
["name"] = "Shadow Bolt",
["rank"] = 2,
["cost"] = 100,
- ["texture"] = "Interface/ICONS/spell_shadow_shadowbolt",
- ["id"] = 695
+ ["texture"] = "Interface/ICONS/spell_shadow_shadowbolt"
},
},
[8] = {
[1] = {
+ ["id"] = 980,
["name"] = "Curse of Agony",
["rank"] = 1,
["cost"] = 200,
- ["texture"] = "Interface/ICONS/spell_shadow_curseofsargeras",
- ["id"] = 980
+ ["texture"] = "Interface/ICONS/spell_shadow_curseofsargeras"
},
[2] = {
+ ["id"] = 5782,
["name"] = "Fear",
["rank"] = 1,
["cost"] = 200,
- ["texture"] = "Interface/ICONS/spell_shadow_possession",
- ["id"] = 5782
+ ["texture"] = "Interface/ICONS/spell_shadow_possession"
},
},
[10] = {
[1] = {
- ["name"] = "Drain Soul",
+ ["id"] = 6201,
+ ["name"] = "Create Healthstone",
["rank"] = 1,
["cost"] = 300,
- ["texture"] = "Interface/ICONS/spell_shadow_haunting",
- ["id"] = 1120
+ ["texture"] = "Interface/ICONS/inv_stone_04"
},
[2] = {
- ["name"] = "Create Healthstone (Minor)",
- ["rank"] = 1,
- ["cost"] = 300,
- ["texture"] = "Interface/ICONS/inv_stone_04",
- ["id"] = 6201
- },
- [3] = {
+ ["id"] = 696,
["name"] = "Demon Skin",
["rank"] = 2,
["cost"] = 300,
- ["texture"] = "Interface/ICONS/spell_shadow_ragingscream",
- ["id"] = 696
+ ["texture"] = "Interface/ICONS/spell_shadow_ragingscream"
},
- [4] = {
- ["name"] = "Summon Voidwalker",
+ [3] = {
+ ["id"] = 1120,
+ ["name"] = "Drain Soul",
["rank"] = 1,
- ["cost"] = 0,
- ["texture"] = "Interface/ICONS/spell_shadow_summonvoidwalker",
- ["id"] = 697
+ ["cost"] = 300,
+ ["texture"] = "Interface/ICONS/spell_shadow_haunting"
},
- [5] = {
+ [4] = {
+ ["id"] = 707,
["name"] = "Immolate",
["rank"] = 2,
["cost"] = 300,
- ["texture"] = "Interface/ICONS/spell_fire_immolation",
- ["id"] = 707
+ ["texture"] = "Interface/ICONS/spell_fire_immolation"
+ },
+ [5] = {
+ ["id"] = 697,
+ ["name"] = "Summon Voidwalker",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_summonvoidwalker"
},
},
[12] = {
[1] = {
+ ["id"] = 1108,
["name"] = "Curse of Weakness",
["rank"] = 2,
["cost"] = 600,
- ["texture"] = "Interface/ICONS/spell_shadow_curseofmannoroth",
- ["id"] = 1108
+ ["texture"] = "Interface/ICONS/spell_shadow_curseofmannoroth"
},
[2] = {
+ ["id"] = 755,
["name"] = "Health Funnel",
["rank"] = 1,
["cost"] = 600,
- ["texture"] = "Interface/ICONS/spell_shadow_lifedrain",
- ["id"] = 755
+ ["texture"] = "Interface/ICONS/spell_shadow_lifedrain"
},
[3] = {
+ ["id"] = 705,
["name"] = "Shadow Bolt",
["rank"] = 3,
["cost"] = 600,
- ["texture"] = "Interface/ICONS/spell_shadow_shadowbolt",
- ["id"] = 705
+ ["texture"] = "Interface/ICONS/spell_shadow_shadowbolt"
},
},
[14] = {
[1] = {
+ ["id"] = 6222,
["name"] = "Corruption",
["rank"] = 2,
["cost"] = 900,
- ["texture"] = "Interface/ICONS/spell_shadow_abominationexplosion",
- ["id"] = 6222
+ ["texture"] = "Interface/ICONS/spell_shadow_abominationexplosion"
},
[2] = {
+ ["id"] = 704,
["name"] = "Curse of Recklessness",
["rank"] = 1,
["cost"] = 900,
- ["texture"] = "Interface/ICONS/spell_shadow_unholystrength",
- ["id"] = 704
+ ["texture"] = "Interface/ICONS/spell_shadow_unholystrength"
},
[3] = {
+ ["id"] = 689,
["name"] = "Drain Life",
["rank"] = 1,
["cost"] = 900,
- ["texture"] = "Interface/ICONS/spell_shadow_lifedrain02",
- ["id"] = 689
+ ["texture"] = "Interface/ICONS/spell_shadow_lifedrain02"
},
},
[16] = {
[1] = {
+ ["id"] = 1455,
["name"] = "Life Tap",
["rank"] = 2,
["cost"] = 1200,
- ["texture"] = "Interface/ICONS/spell_shadow_burningspirit",
- ["id"] = 1455
+ ["texture"] = "Interface/ICONS/spell_shadow_burningspirit"
},
[2] = {
+ ["id"] = 5697,
["name"] = "Unending Breath",
- ["rank"] = 1,
+ ["rank"] = 0,
["cost"] = 1200,
- ["texture"] = "Interface/ICONS/spell_shadow_demonbreath",
- ["id"] = 5697
+ ["texture"] = "Interface/ICONS/spell_shadow_demonbreath"
},
},
[18] = {
[1] = {
- ["name"] = "Curse of Agony",
- ["rank"] = 2,
+ ["id"] = 693,
+ ["name"] = "Create Soulstone",
+ ["rank"] = 1,
["cost"] = 1500,
- ["texture"] = "Interface/ICONS/spell_shadow_curseofsargeras",
- ["id"] = 1014
+ ["texture"] = "Interface/ICONS/inv_misc_orb_04"
},
[2] = {
- ["name"] = "Create Soulstone (Minor)",
- ["rank"] = 1,
+ ["id"] = 1014,
+ ["name"] = "Curse of Agony",
+ ["rank"] = 2,
["cost"] = 1500,
- ["texture"] = "Interface/ICONS/inv_misc_orb_04",
- ["id"] = 693
+ ["texture"] = "Interface/ICONS/spell_shadow_curseofsargeras"
},
[3] = {
+ ["id"] = 5676,
["name"] = "Searing Pain",
["rank"] = 1,
["cost"] = 1500,
- ["texture"] = "Interface/ICONS/spell_fire_soulburn",
- ["id"] = 5676
+ ["texture"] = "Interface/ICONS/spell_fire_soulburn"
},
},
[20] = {
[1] = {
+ ["id"] = 706,
["name"] = "Demon Armor",
["rank"] = 1,
["cost"] = 2000,
- ["texture"] = "Interface/ICONS/spell_shadow_ragingscream",
- ["id"] = 706
+ ["texture"] = "Interface/ICONS/spell_shadow_ragingscream"
},
[2] = {
+ ["id"] = 3698,
["name"] = "Health Funnel",
["rank"] = 2,
["cost"] = 2000,
- ["texture"] = "Interface/ICONS/spell_shadow_lifedrain",
- ["id"] = 3698
+ ["texture"] = "Interface/ICONS/spell_shadow_lifedrain"
},
[3] = {
- ["name"] = "Ritual of Summoning",
- ["rank"] = 1,
+ ["id"] = 1094,
+ ["name"] = "Immolate",
+ ["rank"] = 3,
["cost"] = 2000,
- ["texture"] = "Interface/ICONS/spell_shadow_twilight",
- ["id"] = 698
+ ["texture"] = "Interface/ICONS/spell_fire_immolation"
},
[4] = {
- ["name"] = "Summon Succubus",
+ ["id"] = 5740,
+ ["name"] = "Rain of Fire",
["rank"] = 1,
- ["cost"] = 0,
- ["texture"] = "Interface/ICONS/spell_shadow_summonsuccubus",
- ["id"] = 712
+ ["cost"] = 2000,
+ ["texture"] = "Interface/ICONS/spell_shadow_rainoffire"
},
[5] = {
- ["name"] = "Immolate",
- ["rank"] = 3,
+ ["id"] = 698,
+ ["name"] = "Ritual of Summoning",
+ ["rank"] = 0,
["cost"] = 2000,
- ["texture"] = "Interface/ICONS/spell_fire_immolation",
- ["id"] = 1094
+ ["texture"] = "Interface/ICONS/spell_shadow_twilight"
},
[6] = {
- ["name"] = "Rain of Fire",
- ["rank"] = 1,
- ["cost"] = 2000,
- ["texture"] = "Interface/ICONS/spell_shadow_rainoffire",
- ["id"] = 5740
- },
- [7] = {
+ ["id"] = 1088,
["name"] = "Shadow Bolt",
["rank"] = 4,
["cost"] = 2000,
- ["texture"] = "Interface/ICONS/spell_shadow_shadowbolt",
- ["id"] = 1088
+ ["texture"] = "Interface/ICONS/spell_shadow_shadowbolt"
+ },
+ [7] = {
+ ["id"] = 713,
+ ["name"] = "Summon Incubus",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_warlock_incubus"
+ },
+ [8] = {
+ ["id"] = 712,
+ ["name"] = "Summon Succubus",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_summonsuccubus"
},
},
[22] = {
[1] = {
- ["name"] = "Curse of Weakness",
- ["rank"] = 3,
+ ["id"] = 6202,
+ ["name"] = "Create Healthstone",
+ ["rank"] = 2,
["cost"] = 2500,
- ["texture"] = "Interface/ICONS/spell_shadow_curseofmannoroth",
- ["id"] = 6205
+ ["texture"] = "Interface/ICONS/inv_stone_04"
},
[2] = {
- ["name"] = "Drain Life",
- ["rank"] = 2,
+ ["id"] = 6205,
+ ["name"] = "Curse of Weakness",
+ ["rank"] = 3,
["cost"] = 2500,
- ["texture"] = "Interface/ICONS/spell_shadow_lifedrain02",
- ["id"] = 699
+ ["texture"] = "Interface/ICONS/spell_shadow_curseofmannoroth"
},
[3] = {
- ["name"] = "Create Healthstone (Lesser)",
- ["rank"] = 1,
+ ["id"] = 699,
+ ["name"] = "Drain Life",
+ ["rank"] = 2,
["cost"] = 2500,
- ["texture"] = "Interface/ICONS/inv_stone_04",
- ["id"] = 6202
+ ["texture"] = "Interface/ICONS/spell_shadow_lifedrain02"
},
[4] = {
+ ["id"] = 126,
["name"] = "Eye of Kilrogg",
- ["rank"] = 1,
+ ["rank"] = 0,
["cost"] = 2500,
- ["texture"] = "Interface/ICONS/spell_shadow_evileye",
- ["id"] = 126
+ ["texture"] = "Interface/ICONS/spell_shadow_evileye"
},
},
[24] = {
[1] = {
+ ["id"] = 18867,
+ ["name"] = "Shadowburn",
+ ["rank"] = 2,
+ ["cost"] = 150,
+ ["texture"] = "Interface/ICONS/spell_shadow_scourgebuild",
+ ["talent"] = true
+ },
+ [2] = {
+ ["id"] = 6223,
["name"] = "Corruption",
["rank"] = 3,
["cost"] = 3000,
- ["texture"] = "Interface/ICONS/spell_shadow_abominationexplosion",
- ["id"] = 6223
+ ["texture"] = "Interface/ICONS/spell_shadow_abominationexplosion"
},
- [2] = {
+ [3] = {
+ ["id"] = 5138,
["name"] = "Drain Mana",
["rank"] = 1,
["cost"] = 3000,
- ["texture"] = "Interface/ICONS/spell_shadow_siphonmana",
- ["id"] = 5138
+ ["texture"] = "Interface/ICONS/spell_shadow_siphonmana"
},
- [3] = {
+ [4] = {
+ ["id"] = 8288,
["name"] = "Drain Soul",
["rank"] = 2,
["cost"] = 3000,
- ["texture"] = "Interface/ICONS/spell_shadow_haunting",
- ["id"] = 8288
+ ["texture"] = "Interface/ICONS/spell_shadow_haunting"
},
- [4] = {
+ [5] = {
+ ["id"] = 5500,
["name"] = "Sense Demons",
- ["rank"] = 1,
+ ["rank"] = 0,
["cost"] = 3000,
- ["texture"] = "Interface/ICONS/spell_shadow_metamorphosis",
- ["id"] = 5500
- },
- [5] = {
- ["name"] = "Shadowburn",
- ["rank"] = 2,
- ["cost"] = 150,
- ["texture"] = "Interface/ICONS/spell_shadow_scourgebuild",
- ["id"] = 18867,
- ["talent"] = true
+ ["texture"] = "Interface/ICONS/spell_shadow_metamorphosis"
},
},
[26] = {
[1] = {
+ ["id"] = 1714,
["name"] = "Curse of Tongues",
["rank"] = 1,
["cost"] = 4000,
- ["texture"] = "Interface/ICONS/spell_shadow_curseoftounges",
- ["id"] = 1714
+ ["texture"] = "Interface/ICONS/spell_shadow_curseoftounges"
},
[2] = {
- ["name"] = "Life Tap",
- ["rank"] = 3,
+ ["id"] = 132,
+ ["name"] = "Detect Invisibility",
+ ["rank"] = 0,
["cost"] = 4000,
- ["texture"] = "Interface/ICONS/spell_shadow_burningspirit",
- ["id"] = 1456
+ ["texture"] = "Interface/ICONS/spell_shadow_detectlesserinvisibility"
},
[3] = {
- ["name"] = "Detect Lesser Invisibility",
- ["rank"] = 1,
+ ["id"] = 1456,
+ ["name"] = "Life Tap",
+ ["rank"] = 3,
["cost"] = 4000,
- ["texture"] = "Interface/ICONS/spell_shadow_detectlesserinvisibility",
- ["id"] = 132
+ ["texture"] = "Interface/ICONS/spell_shadow_burningspirit"
},
[4] = {
+ ["id"] = 17919,
["name"] = "Searing Pain",
["rank"] = 2,
["cost"] = 4000,
- ["texture"] = "Interface/ICONS/spell_fire_soulburn",
- ["id"] = 17919
+ ["texture"] = "Interface/ICONS/spell_fire_soulburn"
},
},
[28] = {
[1] = {
- ["name"] = "Curse of Agony",
- ["rank"] = 3,
+ ["id"] = 710,
+ ["name"] = "Banish",
+ ["rank"] = 1,
["cost"] = 5000,
- ["texture"] = "Interface/ICONS/spell_shadow_curseofsargeras",
- ["id"] = 6217
+ ["texture"] = "Interface/ICONS/spell_shadow_cripple"
},
[2] = {
- ["name"] = "Curse of Recklessness",
- ["rank"] = 2,
+ ["id"] = 6366,
+ ["name"] = "Create Firestone",
+ ["rank"] = 1,
["cost"] = 5000,
- ["texture"] = "Interface/ICONS/spell_shadow_unholystrength",
- ["id"] = 7658
+ ["texture"] = "Interface/ICONS/inv_misc_gem_bloodstone_02"
},
[3] = {
- ["name"] = "Banish",
- ["rank"] = 1,
+ ["id"] = 6217,
+ ["name"] = "Curse of Agony",
+ ["rank"] = 3,
["cost"] = 5000,
- ["texture"] = "Interface/ICONS/spell_shadow_cripple",
- ["id"] = 710
+ ["texture"] = "Interface/ICONS/spell_shadow_curseofsargeras"
},
[4] = {
- ["name"] = "Create Firestone (Lesser)",
- ["rank"] = 1,
+ ["id"] = 7658,
+ ["name"] = "Curse of Recklessness",
+ ["rank"] = 2,
["cost"] = 5000,
- ["texture"] = "Interface/ICONS/inv_misc_gem_bloodstone_02",
- ["id"] = 6366
+ ["texture"] = "Interface/ICONS/spell_shadow_unholystrength"
},
[5] = {
+ ["id"] = 3699,
["name"] = "Health Funnel",
["rank"] = 3,
["cost"] = 5000,
- ["texture"] = "Interface/ICONS/spell_shadow_lifedrain",
- ["id"] = 3699
+ ["texture"] = "Interface/ICONS/spell_shadow_lifedrain"
},
[6] = {
+ ["id"] = 1106,
["name"] = "Shadow Bolt",
["rank"] = 5,
["cost"] = 5000,
- ["texture"] = "Interface/ICONS/spell_shadow_shadowbolt",
- ["id"] = 1106
+ ["texture"] = "Interface/ICONS/spell_shadow_shadowbolt"
},
},
[30] = {
[1] = {
- ["name"] = "Drain Life",
- ["rank"] = 3,
+ ["id"] = 20752,
+ ["name"] = "Create Soulstone",
+ ["rank"] = 2,
["cost"] = 6000,
- ["texture"] = "Interface/ICONS/spell_shadow_lifedrain02",
- ["id"] = 709
+ ["texture"] = "Interface/ICONS/inv_misc_orb_04"
},
[2] = {
- ["name"] = "Create Soulstone (Lesser)",
- ["rank"] = 1,
- ["cost"] = 6000,
- ["texture"] = "Interface/ICONS/inv_misc_orb_04",
- ["id"] = 20752
- },
- [3] = {
+ ["id"] = 1086,
["name"] = "Demon Armor",
["rank"] = 2,
["cost"] = 6000,
- ["texture"] = "Interface/ICONS/spell_shadow_ragingscream",
- ["id"] = 1086
+ ["texture"] = "Interface/ICONS/spell_shadow_ragingscream"
+ },
+ [3] = {
+ ["id"] = 709,
+ ["name"] = "Drain Life",
+ ["rank"] = 3,
+ ["cost"] = 6000,
+ ["texture"] = "Interface/ICONS/spell_shadow_lifedrain02"
},
[4] = {
+ ["id"] = 1098,
["name"] = "Enslave Demon",
["rank"] = 1,
["cost"] = 6000,
- ["texture"] = "Interface/ICONS/spell_shadow_enslavedemon",
- ["id"] = 1098
+ ["texture"] = "Interface/ICONS/spell_shadow_enslavedemon"
},
[5] = {
- ["name"] = "Summon Felhunter",
- ["rank"] = 1,
- ["cost"] = 0,
- ["texture"] = "Interface/ICONS/spell_shadow_summonfelhunter",
- ["id"] = 691
- },
- [6] = {
+ ["id"] = 1949,
["name"] = "Hellfire",
["rank"] = 1,
["cost"] = 6000,
- ["texture"] = "Interface/ICONS/spell_fire_incinerate",
- ["id"] = 1949
+ ["texture"] = "Interface/ICONS/spell_fire_incinerate"
},
- [7] = {
+ [6] = {
+ ["id"] = 2941,
["name"] = "Immolate",
["rank"] = 4,
["cost"] = 6000,
- ["texture"] = "Interface/ICONS/spell_fire_immolation",
- ["id"] = 2941
+ ["texture"] = "Interface/ICONS/spell_fire_immolation"
+ },
+ [7] = {
+ ["id"] = 691,
+ ["name"] = "Summon Felhunter",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_summonfelhunter"
+ },
+ [8] = {
+ ["id"] = 5784,
+ ["name"] = "Summon Felsteed",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/spell_nature_swiftness"
},
},
[32] = {
[1] = {
- ["name"] = "Curse of Weakness",
- ["rank"] = 4,
- ["cost"] = 7000,
- ["texture"] = "Interface/ICONS/spell_shadow_curseofmannoroth",
- ["id"] = 7646
+ ["id"] = 18868,
+ ["name"] = "Shadowburn",
+ ["rank"] = 3,
+ ["cost"] = 350,
+ ["texture"] = "Interface/ICONS/spell_shadow_scourgebuild",
+ ["talent"] = true
},
[2] = {
+ ["id"] = 1490,
["name"] = "Curse of the Elements",
["rank"] = 1,
["cost"] = 7000,
- ["texture"] = "Interface/ICONS/spell_shadow_chilltouch",
- ["id"] = 1490
+ ["texture"] = "Interface/ICONS/spell_shadow_chilltouch"
},
[3] = {
+ ["id"] = 7646,
+ ["name"] = "Curse of Weakness",
+ ["rank"] = 4,
+ ["cost"] = 7000,
+ ["texture"] = "Interface/ICONS/spell_shadow_curseofmannoroth"
+ },
+ [4] = {
+ ["id"] = 6213,
["name"] = "Fear",
["rank"] = 2,
["cost"] = 7000,
- ["texture"] = "Interface/ICONS/spell_shadow_possession",
- ["id"] = 6213
+ ["texture"] = "Interface/ICONS/spell_shadow_possession"
},
- [4] = {
+ [5] = {
+ ["id"] = 6229,
["name"] = "Shadow Ward",
["rank"] = 1,
["cost"] = 7000,
- ["texture"] = "Interface/ICONS/spell_shadow_antishadow",
- ["id"] = 6229
- },
- [5] = {
- ["name"] = "Shadowburn",
- ["rank"] = 3,
- ["cost"] = 350,
- ["texture"] = "Interface/ICONS/spell_shadow_scourgebuild",
- ["id"] = 18868,
- ["talent"] = true
+ ["texture"] = "Interface/ICONS/spell_shadow_antishadow"
},
},
[34] = {
[1] = {
+ ["id"] = 7648,
["name"] = "Corruption",
["rank"] = 4,
["cost"] = 8000,
- ["texture"] = "Interface/ICONS/spell_shadow_abominationexplosion",
- ["id"] = 7648
+ ["texture"] = "Interface/ICONS/spell_shadow_abominationexplosion"
},
[2] = {
- ["name"] = "Drain Mana",
- ["rank"] = 2,
+ ["id"] = 5699,
+ ["name"] = "Create Healthstone",
+ ["rank"] = 3,
["cost"] = 8000,
- ["texture"] = "Interface/ICONS/spell_shadow_siphonmana",
- ["id"] = 6226
+ ["texture"] = "Interface/ICONS/inv_stone_04"
},
[3] = {
- ["name"] = "Create Healthstone",
- ["rank"] = 1,
+ ["id"] = 6226,
+ ["name"] = "Drain Mana",
+ ["rank"] = 2,
["cost"] = 8000,
- ["texture"] = "Interface/ICONS/inv_stone_04",
- ["id"] = 5699
+ ["texture"] = "Interface/ICONS/spell_shadow_siphonmana"
},
[4] = {
+ ["id"] = 6219,
["name"] = "Rain of Fire",
["rank"] = 2,
["cost"] = 8000,
- ["texture"] = "Interface/ICONS/spell_shadow_rainoffire",
- ["id"] = 6219
+ ["texture"] = "Interface/ICONS/spell_shadow_rainoffire"
},
[5] = {
+ ["id"] = 17920,
["name"] = "Searing Pain",
["rank"] = 3,
["cost"] = 8000,
- ["texture"] = "Interface/ICONS/spell_fire_soulburn",
- ["id"] = 17920
+ ["texture"] = "Interface/ICONS/spell_fire_soulburn"
},
},
[36] = {
[1] = {
- ["name"] = "Life Tap",
- ["rank"] = 4,
+ ["id"] = 17951,
+ ["name"] = "Create Firestone",
+ ["rank"] = 2,
["cost"] = 9000,
- ["texture"] = "Interface/ICONS/spell_shadow_burningspirit",
- ["id"] = 11687
+ ["texture"] = "Interface/ICONS/inv_misc_gem_bloodstone_02"
},
[2] = {
- ["name"] = "Create Firestone",
+ ["id"] = 2362,
+ ["name"] = "Create Spellstone",
["rank"] = 1,
["cost"] = 9000,
- ["texture"] = "Interface/ICONS/inv_misc_gem_bloodstone_02",
- ["id"] = 17951
+ ["texture"] = "Interface/ICONS/inv_misc_gem_sapphire_01"
},
[3] = {
- ["name"] = "Create Spellstone",
- ["rank"] = 1,
+ ["id"] = 3700,
+ ["name"] = "Health Funnel",
+ ["rank"] = 4,
["cost"] = 9000,
- ["texture"] = "Interface/ICONS/inv_misc_gem_sapphire_01",
- ["id"] = 2362
+ ["texture"] = "Interface/ICONS/spell_shadow_lifedrain"
},
[4] = {
- ["name"] = "Health Funnel",
+ ["id"] = 11687,
+ ["name"] = "Life Tap",
["rank"] = 4,
["cost"] = 9000,
- ["texture"] = "Interface/ICONS/spell_shadow_lifedrain",
- ["id"] = 3700
+ ["texture"] = "Interface/ICONS/spell_shadow_burningspirit"
},
[5] = {
+ ["id"] = 7641,
["name"] = "Shadow Bolt",
["rank"] = 6,
["cost"] = 9000,
- ["texture"] = "Interface/ICONS/spell_shadow_shadowbolt",
- ["id"] = 7641
+ ["texture"] = "Interface/ICONS/spell_shadow_shadowbolt"
},
},
[38] = {
[1] = {
+ ["id"] = 18879,
+ ["name"] = "Siphon Life",
+ ["rank"] = 2,
+ ["cost"] = 500,
+ ["texture"] = "Interface/ICONS/spell_shadow_requiem",
+ ["talent"] = true
+ },
+ [2] = {
+ ["id"] = 11711,
["name"] = "Curse of Agony",
["rank"] = 4,
["cost"] = 10000,
- ["texture"] = "Interface/ICONS/spell_shadow_curseofsargeras",
- ["id"] = 11711
+ ["texture"] = "Interface/ICONS/spell_shadow_curseofsargeras"
},
- [2] = {
+ [3] = {
+ ["id"] = 7651,
["name"] = "Drain Life",
["rank"] = 4,
["cost"] = 10000,
- ["texture"] = "Interface/ICONS/spell_shadow_lifedrain02",
- ["id"] = 7651
+ ["texture"] = "Interface/ICONS/spell_shadow_lifedrain02"
},
- [3] = {
+ [4] = {
+ ["id"] = 8289,
["name"] = "Drain Soul",
["rank"] = 3,
["cost"] = 10000,
- ["texture"] = "Interface/ICONS/spell_shadow_haunting",
- ["id"] = 8289
- },
- [4] = {
- ["name"] = "Siphon Life",
- ["rank"] = 2,
- ["cost"] = 500,
- ["texture"] = "Interface/ICONS/spell_shadow_requiem",
- ["id"] = 18879,
- ["talent"] = true
- },
- [5] = {
- ["name"] = "Detect Invisibility",
- ["rank"] = 1,
- ["cost"] = 10000,
- ["texture"] = "Interface/ICONS/spell_shadow_detectinvisibility",
- ["id"] = 2970
+ ["texture"] = "Interface/ICONS/spell_shadow_haunting"
},
},
[40] = {
[1] = {
- ["name"] = "Howl of Terror",
- ["rank"] = 1,
- ["cost"] = 11000,
- ["texture"] = "Interface/ICONS/spell_shadow_deathscream",
- ["id"] = 5484
+ ["id"] = 18869,
+ ["name"] = "Shadowburn",
+ ["rank"] = 4,
+ ["cost"] = 550,
+ ["texture"] = "Interface/ICONS/spell_shadow_scourgebuild",
+ ["talent"] = true
},
[2] = {
+ ["id"] = 20755,
["name"] = "Create Soulstone",
- ["rank"] = 1,
+ ["rank"] = 3,
["cost"] = 11000,
- ["texture"] = "Interface/ICONS/inv_misc_orb_04",
- ["id"] = 20755
+ ["texture"] = "Interface/ICONS/inv_misc_orb_04"
},
[3] = {
+ ["id"] = 11733,
["name"] = "Demon Armor",
["rank"] = 3,
["cost"] = 11000,
- ["texture"] = "Interface/ICONS/spell_shadow_ragingscream",
- ["id"] = 11733
+ ["texture"] = "Interface/ICONS/spell_shadow_ragingscream"
},
[4] = {
- ["name"] = "Summon Felsteed",
+ ["id"] = 5484,
+ ["name"] = "Howl of Terror",
["rank"] = 1,
- ["cost"] = 0,
- ["texture"] = "Interface/ICONS/spell_nature_swiftness",
- ["id"] = 5784
+ ["cost"] = 11000,
+ ["texture"] = "Interface/ICONS/spell_shadow_deathscream"
},
[5] = {
+ ["id"] = 11665,
["name"] = "Immolate",
["rank"] = 5,
["cost"] = 11000,
- ["texture"] = "Interface/ICONS/spell_fire_immolation",
- ["id"] = 11665
- },
- [6] = {
- ["name"] = "Shadowburn",
- ["rank"] = 4,
- ["cost"] = 550,
- ["texture"] = "Interface/ICONS/spell_shadow_scourgebuild",
- ["id"] = 18869,
- ["talent"] = true
+ ["texture"] = "Interface/ICONS/spell_fire_immolation"
},
},
[42] = {
[1] = {
+ ["id"] = 7659,
["name"] = "Curse of Recklessness",
["rank"] = 3,
["cost"] = 11000,
- ["texture"] = "Interface/ICONS/spell_shadow_unholystrength",
- ["id"] = 7659
+ ["texture"] = "Interface/ICONS/spell_shadow_unholystrength"
},
[2] = {
+ ["id"] = 11707,
["name"] = "Curse of Weakness",
["rank"] = 5,
["cost"] = 11000,
- ["texture"] = "Interface/ICONS/spell_shadow_curseofmannoroth",
- ["id"] = 11707
+ ["texture"] = "Interface/ICONS/spell_shadow_curseofmannoroth"
},
[3] = {
+ ["id"] = 6789,
["name"] = "Death Coil",
["rank"] = 1,
["cost"] = 11000,
- ["texture"] = "Interface/ICONS/spell_shadow_deathcoil",
- ["id"] = 6789
+ ["texture"] = "Interface/ICONS/spell_shadow_deathcoil"
},
[4] = {
- ["name"] = "Shadow Ward",
+ ["id"] = 11683,
+ ["name"] = "Hellfire",
["rank"] = 2,
["cost"] = 11000,
- ["texture"] = "Interface/ICONS/spell_shadow_antishadow",
- ["id"] = 11739
+ ["texture"] = "Interface/ICONS/spell_fire_incinerate"
},
[5] = {
- ["name"] = "Hellfire",
- ["rank"] = 2,
- ["cost"] = 9900,
- ["texture"] = "Interface/ICONS/spell_fire_incinerate",
- ["id"] = 11683
- },
- [6] = {
+ ["id"] = 17921,
["name"] = "Searing Pain",
["rank"] = 4,
["cost"] = 11000,
- ["texture"] = "Interface/ICONS/spell_fire_soulburn",
- ["id"] = 17921
+ ["texture"] = "Interface/ICONS/spell_fire_soulburn"
+ },
+ [6] = {
+ ["id"] = 11739,
+ ["name"] = "Shadow Ward",
+ ["rank"] = 2,
+ ["cost"] = 11000,
+ ["texture"] = "Interface/ICONS/spell_shadow_antishadow"
},
},
[44] = {
[1] = {
+ ["id"] = 11671,
["name"] = "Corruption",
["rank"] = 5,
["cost"] = 12000,
- ["texture"] = "Interface/ICONS/spell_shadow_abominationexplosion",
- ["id"] = 11671
+ ["texture"] = "Interface/ICONS/spell_shadow_abominationexplosion"
},
[2] = {
- ["name"] = "Curse of Shadow",
- ["rank"] = 1,
- ["cost"] = 12000,
- ["texture"] = "Interface/ICONS/spell_shadow_curseofachimonde",
- ["id"] = 17862
- },
- [3] = {
+ ["id"] = 11703,
["name"] = "Drain Mana",
["rank"] = 3,
["cost"] = 12000,
- ["texture"] = "Interface/ICONS/spell_shadow_siphonmana",
- ["id"] = 11703
+ ["texture"] = "Interface/ICONS/spell_shadow_siphonmana"
},
- [4] = {
+ [3] = {
+ ["id"] = 11725,
["name"] = "Enslave Demon",
["rank"] = 2,
["cost"] = 12000,
- ["texture"] = "Interface/ICONS/spell_shadow_enslavedemon",
- ["id"] = 11725
+ ["texture"] = "Interface/ICONS/spell_shadow_enslavedemon"
},
- [5] = {
+ [4] = {
+ ["id"] = 11693,
["name"] = "Health Funnel",
["rank"] = 5,
["cost"] = 12000,
- ["texture"] = "Interface/ICONS/spell_shadow_lifedrain",
- ["id"] = 11693
+ ["texture"] = "Interface/ICONS/spell_shadow_lifedrain"
},
- [6] = {
+ [5] = {
+ ["id"] = 11659,
["name"] = "Shadow Bolt",
["rank"] = 7,
["cost"] = 12000,
- ["texture"] = "Interface/ICONS/spell_shadow_shadowbolt",
- ["id"] = 11659
+ ["texture"] = "Interface/ICONS/spell_shadow_shadowbolt"
},
},
[46] = {
[1] = {
- ["name"] = "Curse of the Elements",
- ["rank"] = 2,
+ ["id"] = 17952,
+ ["name"] = "Create Firestone",
+ ["rank"] = 3,
["cost"] = 13000,
- ["texture"] = "Interface/ICONS/spell_shadow_chilltouch",
- ["id"] = 11721
+ ["texture"] = "Interface/ICONS/inv_misc_gem_bloodstone_02"
},
[2] = {
- ["name"] = "Drain Life",
- ["rank"] = 5,
+ ["id"] = 11729,
+ ["name"] = "Create Healthstone",
+ ["rank"] = 4,
["cost"] = 13000,
- ["texture"] = "Interface/ICONS/spell_shadow_lifedrain02",
- ["id"] = 11699
+ ["texture"] = "Interface/ICONS/inv_stone_04"
},
[3] = {
- ["name"] = "Life Tap",
- ["rank"] = 5,
+ ["id"] = 11721,
+ ["name"] = "Curse of the Elements",
+ ["rank"] = 2,
["cost"] = 13000,
- ["texture"] = "Interface/ICONS/spell_shadow_burningspirit",
- ["id"] = 11688
+ ["texture"] = "Interface/ICONS/spell_shadow_chilltouch"
},
[4] = {
- ["name"] = "Create Firestone (Greater)",
- ["rank"] = 1,
+ ["id"] = 11699,
+ ["name"] = "Drain Life",
+ ["rank"] = 5,
["cost"] = 13000,
- ["texture"] = "Interface/ICONS/inv_misc_gem_bloodstone_02",
- ["id"] = 17952
+ ["texture"] = "Interface/ICONS/spell_shadow_lifedrain02"
},
[5] = {
- ["name"] = "Create Healthstone (Greater)",
- ["rank"] = 1,
+ ["id"] = 11688,
+ ["name"] = "Life Tap",
+ ["rank"] = 5,
["cost"] = 13000,
- ["texture"] = "Interface/ICONS/inv_stone_04",
- ["id"] = 11729
+ ["texture"] = "Interface/ICONS/spell_shadow_burningspirit"
},
[6] = {
+ ["id"] = 11677,
["name"] = "Rain of Fire",
["rank"] = 3,
["cost"] = 13000,
- ["texture"] = "Interface/ICONS/spell_shadow_rainoffire",
- ["id"] = 11677
+ ["texture"] = "Interface/ICONS/spell_shadow_rainoffire"
},
},
[48] = {
[1] = {
- ["name"] = "Curse of Agony",
- ["rank"] = 5,
- ["cost"] = 14000,
- ["texture"] = "Interface/ICONS/spell_shadow_curseofsargeras",
- ["id"] = 11712
+ ["id"] = 18930,
+ ["name"] = "Conflagrate",
+ ["rank"] = 2,
+ ["cost"] = 700,
+ ["texture"] = "Interface/ICONS/spell_fire_fireball",
+ ["talent"] = true
},
[2] = {
+ ["id"] = 18870,
+ ["name"] = "Shadowburn",
+ ["rank"] = 5,
+ ["cost"] = 700,
+ ["texture"] = "Interface/ICONS/spell_shadow_scourgebuild",
+ ["talent"] = true
+ },
+ [3] = {
+ ["id"] = 18880,
["name"] = "Siphon Life",
["rank"] = 3,
["cost"] = 700,
["texture"] = "Interface/ICONS/spell_shadow_requiem",
- ["id"] = 18880,
["talent"] = true
},
- [3] = {
+ [4] = {
+ ["id"] = 18647,
["name"] = "Banish",
["rank"] = 2,
["cost"] = 14000,
- ["texture"] = "Interface/ICONS/spell_shadow_cripple",
- ["id"] = 18647
- },
- [4] = {
- ["name"] = "Create Spellstone (Greater)",
- ["rank"] = 1,
- ["cost"] = 14000,
- ["texture"] = "Interface/ICONS/inv_misc_gem_sapphire_01",
- ["id"] = 17727
+ ["texture"] = "Interface/ICONS/spell_shadow_cripple"
},
[5] = {
- ["name"] = "Conflagrate",
+ ["id"] = 17727,
+ ["name"] = "Create Spellstone",
["rank"] = 2,
- ["cost"] = 700,
- ["texture"] = "Interface/ICONS/spell_fire_fireball",
- ["id"] = 18930,
- ["talent"] = true
+ ["cost"] = 14000,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_sapphire_01"
},
[6] = {
- ["name"] = "Shadowburn",
+ ["id"] = 11712,
+ ["name"] = "Curse of Agony",
["rank"] = 5,
- ["cost"] = 700,
- ["texture"] = "Interface/ICONS/spell_shadow_scourgebuild",
- ["id"] = 18870,
- ["talent"] = true
+ ["cost"] = 14000,
+ ["texture"] = "Interface/ICONS/spell_shadow_curseofsargeras"
},
[7] = {
+ ["id"] = 6353,
["name"] = "Soul Fire",
["rank"] = 1,
["cost"] = 14000,
- ["texture"] = "Interface/ICONS/spell_fire_fireball02",
- ["id"] = 6353
+ ["texture"] = "Interface/ICONS/spell_fire_fireball02"
},
},
[50] = {
[1] = {
- ["name"] = "Curse of Tongues",
- ["rank"] = 2,
- ["cost"] = 15000,
- ["texture"] = "Interface/ICONS/spell_shadow_curseoftounges",
- ["id"] = 11719
- },
- [2] = {
+ ["id"] = 18937,
["name"] = "Dark Pact",
["rank"] = 2,
["cost"] = 750,
["texture"] = "Interface/ICONS/spell_shadow_darkritual",
- ["id"] = 18937,
["talent"] = true
},
+ [2] = {
+ ["id"] = 20756,
+ ["name"] = "Create Soulstone",
+ ["rank"] = 4,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/inv_misc_orb_04"
+ },
[3] = {
- ["name"] = "Death Coil",
+ ["id"] = 11719,
+ ["name"] = "Curse of Tongues",
["rank"] = 2,
["cost"] = 15000,
- ["texture"] = "Interface/ICONS/spell_shadow_deathcoil",
- ["id"] = 17925
+ ["texture"] = "Interface/ICONS/spell_shadow_curseoftounges"
},
[4] = {
- ["name"] = "Create Soulstone (Greater)",
- ["rank"] = 1,
+ ["id"] = 17925,
+ ["name"] = "Death Coil",
+ ["rank"] = 2,
["cost"] = 15000,
- ["texture"] = "Interface/ICONS/inv_misc_orb_04",
- ["id"] = 20756
+ ["texture"] = "Interface/ICONS/spell_shadow_deathcoil"
},
[5] = {
+ ["id"] = 11734,
["name"] = "Demon Armor",
["rank"] = 4,
["cost"] = 15000,
- ["texture"] = "Interface/ICONS/spell_shadow_ragingscream",
- ["id"] = 11734
+ ["texture"] = "Interface/ICONS/spell_shadow_ragingscream"
},
[6] = {
- ["name"] = "Detect Greater Invisibility",
- ["rank"] = 1,
+ ["id"] = 11667,
+ ["name"] = "Immolate",
+ ["rank"] = 6,
["cost"] = 15000,
- ["texture"] = "Interface/ICONS/spell_shadow_detectinvisibility",
- ["id"] = 11743
+ ["texture"] = "Interface/ICONS/spell_fire_immolation"
},
[7] = {
+ ["id"] = 1122,
["name"] = "Inferno",
- ["rank"] = 1,
+ ["rank"] = 0,
["cost"] = 0,
- ["texture"] = "Interface/ICONS/spell_shadow_summoninfernal",
- ["id"] = 1122
+ ["texture"] = "Interface/ICONS/spell_shadow_summoninfernal"
},
[8] = {
- ["name"] = "Immolate",
- ["rank"] = 6,
- ["cost"] = 15000,
- ["texture"] = "Interface/ICONS/spell_fire_immolation",
- ["id"] = 11667
- },
- [9] = {
+ ["id"] = 17922,
["name"] = "Searing Pain",
["rank"] = 5,
["cost"] = 15000,
- ["texture"] = "Interface/ICONS/spell_fire_soulburn",
- ["id"] = 17922
+ ["texture"] = "Interface/ICONS/spell_fire_soulburn"
},
},
[52] = {
[1] = {
+ ["id"] = 11708,
["name"] = "Curse of Weakness",
["rank"] = 6,
["cost"] = 18000,
- ["texture"] = "Interface/ICONS/spell_shadow_curseofmannoroth",
- ["id"] = 11708
+ ["texture"] = "Interface/ICONS/spell_shadow_curseofmannoroth"
},
[2] = {
+ ["id"] = 11675,
["name"] = "Drain Soul",
["rank"] = 4,
["cost"] = 18000,
- ["texture"] = "Interface/ICONS/spell_shadow_haunting",
- ["id"] = 11675
+ ["texture"] = "Interface/ICONS/spell_shadow_haunting"
},
[3] = {
+ ["id"] = 11694,
["name"] = "Health Funnel",
["rank"] = 6,
- ["cost"] = 0,
- ["texture"] = "Interface/ICONS/spell_shadow_lifedrain",
- ["id"] = 11694
+ ["cost"] = 18000,
+ ["texture"] = "Interface/ICONS/spell_shadow_lifedrain"
},
[4] = {
- ["name"] = "Shadow Ward",
- ["rank"] = 3,
+ ["id"] = 11660,
+ ["name"] = "Shadow Bolt",
+ ["rank"] = 8,
["cost"] = 18000,
- ["texture"] = "Interface/ICONS/spell_shadow_antishadow",
- ["id"] = 11740
+ ["texture"] = "Interface/ICONS/spell_shadow_shadowbolt"
},
[5] = {
- ["name"] = "Shadow Bolt",
- ["rank"] = 8,
+ ["id"] = 11740,
+ ["name"] = "Shadow Ward",
+ ["rank"] = 3,
["cost"] = 18000,
- ["texture"] = "Interface/ICONS/spell_shadow_shadowbolt",
- ["id"] = 11660
+ ["texture"] = "Interface/ICONS/spell_shadow_antishadow"
},
},
[54] = {
[1] = {
+ ["id"] = 18931,
+ ["name"] = "Conflagrate",
+ ["rank"] = 3,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/spell_fire_fireball",
+ ["talent"] = true
+ },
+ [2] = {
+ ["id"] = 11672,
["name"] = "Corruption",
["rank"] = 6,
["cost"] = 20000,
- ["texture"] = "Interface/ICONS/spell_shadow_abominationexplosion",
- ["id"] = 11672
+ ["texture"] = "Interface/ICONS/spell_shadow_abominationexplosion"
},
- [2] = {
+ [3] = {
+ ["id"] = 11700,
["name"] = "Drain Life",
["rank"] = 6,
["cost"] = 20000,
- ["texture"] = "Interface/ICONS/spell_shadow_lifedrain02",
- ["id"] = 11700
+ ["texture"] = "Interface/ICONS/spell_shadow_lifedrain02"
},
- [3] = {
+ [4] = {
+ ["id"] = 11704,
["name"] = "Drain Mana",
["rank"] = 4,
["cost"] = 20000,
- ["texture"] = "Interface/ICONS/spell_shadow_siphonmana",
- ["id"] = 11704
- },
- [4] = {
- ["name"] = "Howl of Terror",
- ["rank"] = 2,
- ["cost"] = 20000,
- ["texture"] = "Interface/ICONS/spell_shadow_deathscream",
- ["id"] = 17928
+ ["texture"] = "Interface/ICONS/spell_shadow_siphonmana"
},
[5] = {
- ["name"] = "Conflagrate",
+ ["id"] = 11684,
+ ["name"] = "Hellfire",
["rank"] = 3,
- ["cost"] = 1000,
- ["texture"] = "Interface/ICONS/spell_fire_fireball",
- ["id"] = 18931,
- ["talent"] = true
+ ["cost"] = 20000,
+ ["texture"] = "Interface/ICONS/spell_fire_incinerate"
},
[6] = {
- ["name"] = "Hellfire",
- ["rank"] = 3,
- ["cost"] = 18000,
- ["texture"] = "Interface/ICONS/spell_fire_incinerate",
- ["id"] = 11684
+ ["id"] = 17928,
+ ["name"] = "Howl of Terror",
+ ["rank"] = 2,
+ ["cost"] = 20000,
+ ["texture"] = "Interface/ICONS/spell_shadow_deathscream"
},
},
[56] = {
[1] = {
- ["name"] = "Curse of Recklessness",
- ["rank"] = 4,
- ["cost"] = 22000,
- ["texture"] = "Interface/ICONS/spell_shadow_unholystrength",
- ["id"] = 11717
+ ["id"] = 18871,
+ ["name"] = "Shadowburn",
+ ["rank"] = 6,
+ ["cost"] = 1100,
+ ["texture"] = "Interface/ICONS/spell_shadow_scourgebuild",
+ ["talent"] = true
},
[2] = {
- ["name"] = "Curse of Shadow",
- ["rank"] = 2,
+ ["id"] = 17953,
+ ["name"] = "Create Firestone",
+ ["rank"] = 4,
["cost"] = 22000,
- ["texture"] = "Interface/ICONS/spell_shadow_curseofachimonde",
- ["id"] = 17937
+ ["texture"] = "Interface/ICONS/inv_misc_gem_bloodstone_02"
},
[3] = {
- ["name"] = "Fear",
- ["rank"] = 3,
+ ["id"] = 11717,
+ ["name"] = "Curse of Recklessness",
+ ["rank"] = 4,
["cost"] = 22000,
- ["texture"] = "Interface/ICONS/spell_shadow_possession",
- ["id"] = 6215
+ ["texture"] = "Interface/ICONS/spell_shadow_unholystrength"
},
[4] = {
- ["name"] = "Life Tap",
- ["rank"] = 6,
+ ["id"] = 6215,
+ ["name"] = "Fear",
+ ["rank"] = 3,
["cost"] = 22000,
- ["texture"] = "Interface/ICONS/spell_shadow_burningspirit",
- ["id"] = 11689
+ ["texture"] = "Interface/ICONS/spell_shadow_possession"
},
[5] = {
- ["name"] = "Create Firestone (Major)",
- ["rank"] = 1,
+ ["id"] = 11689,
+ ["name"] = "Life Tap",
+ ["rank"] = 6,
["cost"] = 22000,
- ["texture"] = "Interface/ICONS/inv_misc_gem_bloodstone_02",
- ["id"] = 17953
+ ["texture"] = "Interface/ICONS/spell_shadow_burningspirit"
},
[6] = {
- ["name"] = "Shadowburn",
- ["rank"] = 6,
- ["cost"] = 1100,
- ["texture"] = "Interface/ICONS/spell_shadow_scourgebuild",
- ["id"] = 18871,
- ["talent"] = true
- },
- [7] = {
+ ["id"] = 17924,
["name"] = "Soul Fire",
["rank"] = 2,
["cost"] = 22000,
- ["texture"] = "Interface/ICONS/spell_fire_fireball02",
- ["id"] = 17924
+ ["texture"] = "Interface/ICONS/spell_fire_fireball02"
},
},
[58] = {
[1] = {
- ["name"] = "Curse of Agony",
- ["rank"] = 6,
- ["cost"] = 24000,
- ["texture"] = "Interface/ICONS/spell_shadow_curseofsargeras",
- ["id"] = 11713
- },
- [2] = {
- ["name"] = "Death Coil",
- ["rank"] = 3,
- ["cost"] = 24000,
- ["texture"] = "Interface/ICONS/spell_shadow_deathcoil",
- ["id"] = 17926
- },
- [3] = {
+ ["id"] = 18881,
["name"] = "Siphon Life",
["rank"] = 4,
["cost"] = 1200,
["texture"] = "Interface/ICONS/spell_shadow_requiem",
- ["id"] = 18881,
["talent"] = true
},
+ [2] = {
+ ["id"] = 11730,
+ ["name"] = "Create Healthstone",
+ ["rank"] = 5,
+ ["cost"] = 24000,
+ ["texture"] = "Interface/ICONS/inv_stone_04"
+ },
+ [3] = {
+ ["id"] = 11713,
+ ["name"] = "Curse of Agony",
+ ["rank"] = 6,
+ ["cost"] = 24000,
+ ["texture"] = "Interface/ICONS/spell_shadow_curseofsargeras"
+ },
[4] = {
- ["name"] = "Create Healthstone (Major)",
- ["rank"] = 1,
+ ["id"] = 17926,
+ ["name"] = "Death Coil",
+ ["rank"] = 3,
["cost"] = 24000,
- ["texture"] = "Interface/ICONS/inv_stone_04",
- ["id"] = 11730
+ ["texture"] = "Interface/ICONS/spell_shadow_deathcoil"
},
[5] = {
+ ["id"] = 11726,
["name"] = "Enslave Demon",
["rank"] = 3,
["cost"] = 24000,
- ["texture"] = "Interface/ICONS/spell_shadow_enslavedemon",
- ["id"] = 11726
+ ["texture"] = "Interface/ICONS/spell_shadow_enslavedemon"
},
[6] = {
+ ["id"] = 11678,
["name"] = "Rain of Fire",
["rank"] = 4,
["cost"] = 24000,
- ["texture"] = "Interface/ICONS/spell_shadow_rainoffire",
- ["id"] = 11678
+ ["texture"] = "Interface/ICONS/spell_shadow_rainoffire"
},
[7] = {
+ ["id"] = 17923,
["name"] = "Searing Pain",
["rank"] = 6,
["cost"] = 24000,
- ["texture"] = "Interface/ICONS/spell_fire_soulburn",
- ["id"] = 17923
+ ["texture"] = "Interface/ICONS/spell_fire_soulburn"
},
},
[60] = {
[1] = {
- ["name"] = "Curse of Doom",
- ["rank"] = 1,
- ["cost"] = 26000,
- ["texture"] = "Interface/ICONS/spell_shadow_auraofdarkness",
- ["id"] = 603
+ ["id"] = 18932,
+ ["name"] = "Conflagrate",
+ ["rank"] = 4,
+ ["cost"] = 1300,
+ ["texture"] = "Interface/ICONS/spell_fire_fireball",
+ ["talent"] = true
},
[2] = {
- ["name"] = "Curse of the Elements",
- ["rank"] = 3,
- ["cost"] = 26000,
- ["texture"] = "Interface/ICONS/spell_shadow_chilltouch",
- ["id"] = 11722
- },
- [3] = {
+ ["id"] = 18938,
["name"] = "Dark Pact",
["rank"] = 3,
["cost"] = 1300,
["texture"] = "Interface/ICONS/spell_shadow_darkritual",
- ["id"] = 18938,
+ ["talent"] = true
+ },
+ [3] = {
+ ["id"] = 30413,
+ ["name"] = "Shadowfury",
+ ["rank"] = 2,
+ ["cost"] = 2500,
+ ["texture"] = "Interface/ICONS/spell_shadow_shadowfury",
["talent"] = true
},
[4] = {
- ["name"] = "Create Soulstone (Major)",
- ["rank"] = 1,
- ["cost"] = 26000,
- ["texture"] = "Interface/ICONS/inv_misc_orb_04",
- ["id"] = 20757
+ ["id"] = 30404,
+ ["name"] = "Unstable Affliction",
+ ["rank"] = 2,
+ ["cost"] = 2500,
+ ["texture"] = "Interface/ICONS/spell_shadow_unstableaffliction_3",
+ ["talent"] = true
},
[5] = {
- ["name"] = "Create Spellstone (Major)",
- ["rank"] = 1,
+ ["id"] = 25311,
+ ["name"] = "Corruption",
+ ["rank"] = 7,
["cost"] = 26000,
- ["texture"] = "Interface/ICONS/inv_misc_gem_sapphire_01",
- ["id"] = 17728
+ ["texture"] = "Interface/ICONS/spell_shadow_abominationexplosion"
},
[6] = {
- ["name"] = "Demon Armor",
+ ["id"] = 20757,
+ ["name"] = "Create Soulstone",
["rank"] = 5,
["cost"] = 26000,
- ["texture"] = "Interface/ICONS/spell_shadow_ragingscream",
- ["id"] = 11735
+ ["texture"] = "Interface/ICONS/inv_misc_orb_04"
},
[7] = {
+ ["id"] = 17728,
+ ["name"] = "Create Spellstone",
+ ["rank"] = 3,
+ ["cost"] = 26000,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_sapphire_01"
+ },
+ [8] = {
+ ["id"] = 603,
+ ["name"] = "Curse of Doom",
+ ["rank"] = 1,
+ ["cost"] = 26000,
+ ["texture"] = "Interface/ICONS/spell_shadow_auraofdarkness"
+ },
+ [9] = {
+ ["id"] = 11722,
+ ["name"] = "Curse of the Elements",
+ ["rank"] = 3,
+ ["cost"] = 26000,
+ ["texture"] = "Interface/ICONS/spell_shadow_chilltouch"
+ },
+ [10] = {
+ ["id"] = 11735,
+ ["name"] = "Demon Armor",
+ ["rank"] = 5,
+ ["cost"] = 26000,
+ ["texture"] = "Interface/ICONS/spell_shadow_ragingscream"
+ },
+ [11] = {
+ ["id"] = 11695,
["name"] = "Health Funnel",
["rank"] = 7,
["cost"] = 26000,
- ["texture"] = "Interface/ICONS/spell_shadow_lifedrain",
- ["id"] = 11695
- },
- [8] = {
+ ["texture"] = "Interface/ICONS/spell_shadow_lifedrain"
+ },
+ [12] = {
+ ["id"] = 11668,
+ ["name"] = "Immolate",
+ ["rank"] = 7,
+ ["cost"] = 26000,
+ ["texture"] = "Interface/ICONS/spell_fire_immolation"
+ },
+ [13] = {
+ ["id"] = 25309,
+ ["name"] = "Immolate",
+ ["rank"] = 8,
+ ["cost"] = 26000,
+ ["texture"] = "Interface/ICONS/spell_fire_immolation"
+ },
+ [14] = {
+ ["id"] = 18540,
["name"] = "Ritual of Doom",
- ["rank"] = 1,
+ ["rank"] = 0,
["cost"] = 0,
- ["texture"] = "Interface/ICONS/spell_shadow_antimagicshell",
- ["id"] = 18540
+ ["texture"] = "Interface/ICONS/spell_shadow_antimagicshell"
},
- [9] = {
+ [15] = {
+ ["id"] = 11661,
+ ["name"] = "Shadow Bolt",
+ ["rank"] = 9,
+ ["cost"] = 26000,
+ ["texture"] = "Interface/ICONS/spell_shadow_shadowbolt"
+ },
+ [16] = {
+ ["id"] = 25307,
+ ["name"] = "Shadow Bolt",
+ ["rank"] = 10,
+ ["cost"] = 26000,
+ ["texture"] = "Interface/ICONS/spell_shadow_shadowbolt"
+ },
+ [17] = {
+ ["id"] = 28610,
+ ["name"] = "Shadow Ward",
+ ["rank"] = 4,
+ ["cost"] = 34000,
+ ["texture"] = "Interface/ICONS/spell_shadow_antishadow"
+ },
+ [18] = {
+ ["id"] = 23161,
["name"] = "Summon Dreadsteed",
- ["rank"] = 1,
+ ["rank"] = 0,
["cost"] = 0,
- ["texture"] = "Interface/ICONS/ability_mount_dreadsteed",
- ["id"] = 23161
+ ["texture"] = "Interface/ICONS/ability_mount_dreadsteed"
},
- [10] = {
+ },
+ [61] = {
+ [1] = {
+ ["id"] = 27224,
+ ["name"] = "Curse of Weakness",
+ ["rank"] = 7,
+ ["cost"] = 30000,
+ ["texture"] = "Interface/ICONS/spell_shadow_curseofmannoroth"
+ },
+ },
+ [62] = {
+ [1] = {
+ ["id"] = 27219,
+ ["name"] = "Drain Life",
+ ["rank"] = 7,
+ ["cost"] = 30000,
+ ["texture"] = "Interface/ICONS/spell_shadow_lifedrain02"
+ },
+ [2] = {
+ ["id"] = 28176,
+ ["name"] = "Fel Armor",
+ ["rank"] = 1,
+ ["cost"] = 34000,
+ ["texture"] = "Interface/ICONS/spell_shadow_felarmour"
+ },
+ },
+ [63] = {
+ [1] = {
+ ["id"] = 27263,
+ ["name"] = "Shadowburn",
+ ["rank"] = 7,
+ ["cost"] = 1300,
+ ["texture"] = "Interface/ICONS/spell_shadow_scourgebuild",
+ ["talent"] = true
+ },
+ [2] = {
+ ["id"] = 27264,
+ ["name"] = "Siphon Life",
+ ["rank"] = 5,
+ ["cost"] = 2500,
+ ["texture"] = "Interface/ICONS/spell_shadow_requiem",
+ ["talent"] = true
+ },
+ [3] = {
+ ["id"] = 27221,
+ ["name"] = "Drain Mana",
+ ["rank"] = 5,
+ ["cost"] = 38000,
+ ["texture"] = "Interface/ICONS/spell_shadow_siphonmana"
+ },
+ },
+ [64] = {
+ [1] = {
+ ["id"] = 29722,
+ ["name"] = "Incinerate",
+ ["rank"] = 1,
+ ["cost"] = 42000,
+ ["texture"] = "Interface/ICONS/spell_fire_burnout"
+ },
+ [2] = {
+ ["id"] = 27211,
+ ["name"] = "Soul Fire",
+ ["rank"] = 3,
+ ["cost"] = 42000,
+ ["texture"] = "Interface/ICONS/spell_fire_fireball02"
+ },
+ },
+ [65] = {
+ [1] = {
+ ["id"] = 27266,
["name"] = "Conflagrate",
+ ["rank"] = 5,
+ ["cost"] = 2300,
+ ["texture"] = "Interface/ICONS/spell_fire_fireball",
+ ["talent"] = true
+ },
+ [2] = {
+ ["id"] = 27216,
+ ["name"] = "Corruption",
+ ["rank"] = 8,
+ ["cost"] = 46000,
+ ["texture"] = "Interface/ICONS/spell_shadow_abominationexplosion"
+ },
+ [3] = {
+ ["id"] = 27210,
+ ["name"] = "Searing Pain",
+ ["rank"] = 7,
+ ["cost"] = 46000,
+ ["texture"] = "Interface/ICONS/spell_fire_soulburn"
+ },
+ },
+ [66] = {
+ [1] = {
+ ["id"] = 27250,
+ ["name"] = "Create Firestone",
+ ["rank"] = 5,
+ ["cost"] = 51000,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_bloodstone_02"
+ },
+ [2] = {
+ ["id"] = 28172,
+ ["name"] = "Create Spellstone",
["rank"] = 4,
- ["cost"] = 1300,
+ ["cost"] = 51000,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_sapphire_01"
+ },
+ [3] = {
+ ["id"] = 29858,
+ ["name"] = "Soulshatter",
+ ["rank"] = 0,
+ ["cost"] = 51000,
+ ["texture"] = "Interface/ICONS/spell_arcane_arcane01"
+ },
+ },
+ [67] = {
+ [1] = {
+ ["id"] = 27218,
+ ["name"] = "Curse of Agony",
+ ["rank"] = 7,
+ ["cost"] = 57000,
+ ["texture"] = "Interface/ICONS/spell_shadow_curseofsargeras"
+ },
+ [2] = {
+ ["id"] = 27217,
+ ["name"] = "Drain Soul",
+ ["rank"] = 5,
+ ["cost"] = 57000,
+ ["texture"] = "Interface/ICONS/spell_shadow_haunting"
+ },
+ [3] = {
+ ["id"] = 27259,
+ ["name"] = "Health Funnel",
+ ["rank"] = 8,
+ ["cost"] = 57000,
+ ["texture"] = "Interface/ICONS/spell_shadow_lifedrain"
+ },
+ },
+ [68] = {
+ [1] = {
+ ["id"] = 27230,
+ ["name"] = "Create Healthstone",
+ ["rank"] = 6,
+ ["cost"] = 63000,
+ ["texture"] = "Interface/ICONS/inv_stone_04"
+ },
+ [2] = {
+ ["id"] = 27223,
+ ["name"] = "Death Coil",
+ ["rank"] = 4,
+ ["cost"] = 63000,
+ ["texture"] = "Interface/ICONS/spell_shadow_deathcoil"
+ },
+ [3] = {
+ ["id"] = 27213,
+ ["name"] = "Hellfire",
+ ["rank"] = 4,
+ ["cost"] = 63000,
+ ["texture"] = "Interface/ICONS/spell_fire_incinerate"
+ },
+ [4] = {
+ ["id"] = 27222,
+ ["name"] = "Life Tap",
+ ["rank"] = 7,
+ ["cost"] = 56700,
+ ["texture"] = "Interface/ICONS/spell_shadow_burningspirit"
+ },
+ [5] = {
+ ["id"] = 29893,
+ ["name"] = "Ritual of Souls",
+ ["rank"] = 1,
+ ["cost"] = 63000,
+ ["texture"] = "Interface/ICONS/spell_shadow_shadesofdarkness"
+ },
+ },
+ [69] = {
+ [1] = {
+ ["id"] = 27226,
+ ["name"] = "Curse of Recklessness",
+ ["rank"] = 5,
+ ["cost"] = 70000,
+ ["texture"] = "Interface/ICONS/spell_shadow_unholystrength"
+ },
+ [2] = {
+ ["id"] = 27228,
+ ["name"] = "Curse of the Elements",
+ ["rank"] = 4,
+ ["cost"] = 70000,
+ ["texture"] = "Interface/ICONS/spell_shadow_chilltouch"
+ },
+ [3] = {
+ ["id"] = 30909,
+ ["name"] = "Curse of Weakness",
+ ["rank"] = 8,
+ ["cost"] = 70000,
+ ["texture"] = "Interface/ICONS/spell_shadow_curseofmannoroth"
+ },
+ [4] = {
+ ["id"] = 27220,
+ ["name"] = "Drain Life",
+ ["rank"] = 8,
+ ["cost"] = 70000,
+ ["texture"] = "Interface/ICONS/spell_shadow_lifedrain02"
+ },
+ [5] = {
+ ["id"] = 28189,
+ ["name"] = "Fel Armor",
+ ["rank"] = 2,
+ ["cost"] = 70000,
+ ["texture"] = "Interface/ICONS/spell_shadow_felarmour"
+ },
+ [6] = {
+ ["id"] = 27215,
+ ["name"] = "Immolate",
+ ["rank"] = 9,
+ ["cost"] = 70000,
+ ["texture"] = "Interface/ICONS/spell_fire_immolation"
+ },
+ [7] = {
+ ["id"] = 27212,
+ ["name"] = "Rain of Fire",
+ ["rank"] = 5,
+ ["cost"] = 70000,
+ ["texture"] = "Interface/ICONS/spell_shadow_rainoffire"
+ },
+ [8] = {
+ ["id"] = 27209,
+ ["name"] = "Shadow Bolt",
+ ["rank"] = 11,
+ ["cost"] = 70000,
+ ["texture"] = "Interface/ICONS/spell_shadow_shadowbolt"
+ },
+ },
+ [70] = {
+ [1] = {
+ ["id"] = 30912,
+ ["name"] = "Conflagrate",
+ ["rank"] = 6,
+ ["cost"] = 3900,
["texture"] = "Interface/ICONS/spell_fire_fireball",
- ["id"] = 18932,
["talent"] = true
},
+ [2] = {
+ ["id"] = 27265,
+ ["name"] = "Dark Pact",
+ ["rank"] = 4,
+ ["cost"] = 1300,
+ ["texture"] = "Interface/ICONS/spell_shadow_darkritual",
+ ["talent"] = true
+ },
+ [3] = {
+ ["id"] = 30546,
+ ["name"] = "Shadowburn",
+ ["rank"] = 8,
+ ["cost"] = 3900,
+ ["texture"] = "Interface/ICONS/spell_shadow_scourgebuild",
+ ["talent"] = true
+ },
+ [4] = {
+ ["id"] = 30414,
+ ["name"] = "Shadowfury",
+ ["rank"] = 3,
+ ["cost"] = 2500,
+ ["texture"] = "Interface/ICONS/spell_shadow_shadowfury",
+ ["talent"] = true
+ },
+ [5] = {
+ ["id"] = 30911,
+ ["name"] = "Siphon Life",
+ ["rank"] = 6,
+ ["cost"] = 2500,
+ ["texture"] = "Interface/ICONS/spell_shadow_requiem",
+ ["talent"] = true
+ },
+ [6] = {
+ ["id"] = 30405,
+ ["name"] = "Unstable Affliction",
+ ["rank"] = 3,
+ ["cost"] = 2500,
+ ["texture"] = "Interface/ICONS/spell_shadow_unstableaffliction_3",
+ ["talent"] = true
+ },
+ [7] = {
+ ["id"] = 27238,
+ ["name"] = "Create Soulstone",
+ ["rank"] = 6,
+ ["cost"] = 78000,
+ ["texture"] = "Interface/ICONS/inv_misc_orb_04"
+ },
+ [8] = {
+ ["id"] = 30910,
+ ["name"] = "Curse of Doom",
+ ["rank"] = 2,
+ ["cost"] = 78000,
+ ["texture"] = "Interface/ICONS/spell_shadow_auraofdarkness"
+ },
+ [9] = {
+ ["id"] = 27260,
+ ["name"] = "Demon Armor",
+ ["rank"] = 6,
+ ["cost"] = 78000,
+ ["texture"] = "Interface/ICONS/spell_shadow_ragingscream"
+ },
+ [10] = {
+ ["id"] = 30908,
+ ["name"] = "Drain Mana",
+ ["rank"] = 6,
+ ["cost"] = 78000,
+ ["texture"] = "Interface/ICONS/spell_shadow_siphonmana"
+ },
[11] = {
- ["name"] = "Immolate",
- ["rank"] = 7,
- ["cost"] = 26000,
- ["texture"] = "Interface/ICONS/spell_fire_immolation",
- ["id"] = 11668
+ ["id"] = 32231,
+ ["name"] = "Incinerate",
+ ["rank"] = 2,
+ ["cost"] = 78000,
+ ["texture"] = "Interface/ICONS/spell_fire_burnout"
},
[12] = {
- ["name"] = "Shadow Bolt",
- ["rank"] = 9,
- ["cost"] = 0,
- ["texture"] = "Interface/ICONS/spell_shadow_shadowbolt",
- ["id"] = 11661
+ ["id"] = 30459,
+ ["name"] = "Searing Pain",
+ ["rank"] = 8,
+ ["cost"] = 78000,
+ ["texture"] = "Interface/ICONS/spell_fire_soulburn"
+ },
+ [13] = {
+ ["id"] = 27243,
+ ["name"] = "Seed of Corruption",
+ ["rank"] = 1,
+ ["cost"] = 78000,
+ ["texture"] = "Interface/ICONS/spell_shadow_seedofdestruction"
+ },
+ [14] = {
+ ["id"] = 30545,
+ ["name"] = "Soul Fire",
+ ["rank"] = 4,
+ ["cost"] = 78000,
+ ["texture"] = "Interface/ICONS/spell_fire_fireball02"
},
},
-}
+}
\ No newline at end of file
diff --git a/Database/WarlockPets.lua b/Database/classes/WarlockPets.lua
similarity index 51%
rename from Database/WarlockPets.lua
rename to Database/classes/WarlockPets.lua
index 9f4495e..1059a43 100644
--- a/Database/WarlockPets.lua
+++ b/Database/classes/WarlockPets.lua
@@ -1,480 +1,622 @@
local _, FieldGuide = ...
FieldGuide.WARLOCK_PETS = {
- [2] = {
- { empty = true } -- No spells at this level.
+ [1] = {
+ [1] = {
+ ["id"] = 3110,
+ ["name"] = "Firebolt",
+ ["rank"] = 1,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_fire_firebolt"
+ },
},
[4] = {
[1] = {
+ ["id"] = 6307,
["name"] = "Blood Pact",
["rank"] = 1,
- ["cost"] = 100,
- ["texture"] = "Interface/ICONS/spell_shadow_bloodboil",
- ["id"] = 6307
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_bloodboil"
},
},
- [6] = {
- { empty = true }
- },
[8] = {
[1] = {
+ ["id"] = 7799,
["name"] = "Firebolt",
["rank"] = 2,
- ["cost"] = 100,
- ["texture"] = "Interface/ICONS/spell_fire_firebolt",
- ["id"] = 7799
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_fire_firebolt"
},
},
[10] = {
- { empty = true }
+ [1] = {
+ ["id"] = 3716,
+ ["name"] = "Torment",
+ ["rank"] = 1,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_gathershadows"
+ },
},
[12] = {
[1] = {
+ ["id"] = 4511,
["name"] = "Phase Shift",
- ["rank"] = 1,
- ["cost"] = 600,
- ["texture"] = "Interface/ICONS/spell_shadow_impphaseshift",
- ["id"] = 4511
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_impphaseshift"
},
},
[14] = {
[1] = {
+ ["id"] = 7804,
["name"] = "Blood Pact",
["rank"] = 2,
- ["cost"] = 900,
- ["texture"] = "Interface/ICONS/spell_shadow_bloodboil",
- ["id"] = 7804
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_bloodboil"
},
[2] = {
+ ["id"] = 2947,
["name"] = "Fire Shield",
["rank"] = 1,
- ["cost"] = 900,
- ["texture"] = "Interface/ICONS/spell_fire_firearmor",
- ["id"] = 2947
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_fire_firearmor"
},
},
[16] = {
[1] = {
+ ["id"] = 7812,
["name"] = "Sacrifice",
["rank"] = 1,
- ["cost"] = 1200,
- ["texture"] = "Interface/ICONS/spell_shadow_sacrificialshield",
- ["id"] = 7812
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_sacrificialshield"
},
},
[18] = {
[1] = {
+ ["id"] = 17767,
["name"] = "Consume Shadows",
["rank"] = 1,
- ["cost"] = 1500,
- ["texture"] = "Interface/ICONS/spell_shadow_antishadow",
- ["id"] = 17767
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_antishadow"
},
[2] = {
+ ["id"] = 7800,
["name"] = "Firebolt",
["rank"] = 3,
- ["cost"] = 1500,
- ["texture"] = "Interface/ICONS/spell_fire_firebolt",
- ["id"] = 7800
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_fire_firebolt"
},
},
[20] = {
[1] = {
+ ["id"] = 7809,
["name"] = "Torment",
["rank"] = 2,
- ["cost"] = 2000,
- ["texture"] = "Interface/ICONS/spell_shadow_gathershadows",
- ["id"] = 7809
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_gathershadows"
+ },
+ [2] = {
+ ["id"] = 7814,
+ ["name"] = "Lash of Pain",
+ ["rank"] = 1,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_curse"
},
},
[22] = {
[1] = {
+ ["id"] = 6360,
["name"] = "Soothing Kiss",
["rank"] = 1,
- ["cost"] = 2500,
- ["texture"] = "Interface/ICONS/spell_shadow_soothingkiss",
- ["id"] = 6360
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_soothingkiss"
},
},
[24] = {
[1] = {
- ["name"] = "Fire Shield",
- ["rank"] = 2,
- ["cost"] = 3000,
- ["texture"] = "Interface/ICONS/spell_fire_firearmor",
- ["id"] = 8316
+ ["id"] = 17735,
+ ["name"] = "Suffering",
+ ["rank"] = 1,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_blackplague"
},
[2] = {
+ ["id"] = 19438,
["name"] = "Sacrifice",
["rank"] = 2,
- ["cost"] = 3000,
- ["texture"] = "Interface/ICONS/spell_shadow_sacrificialshield",
- ["id"] = 19438
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_sacrificialshield"
},
[3] = {
- ["name"] = "Suffering",
- ["rank"] = 1,
- ["cost"] = 3000,
- ["texture"] = "Interface/ICONS/spell_shadow_blackplague",
- ["id"] = 17735
+ ["id"] = 8316,
+ ["name"] = "Fire Shield",
+ ["rank"] = 2,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_fire_firearmor"
},
},
[26] = {
[1] = {
- ["name"] = "Blood Pact",
- ["rank"] = 3,
- ["cost"] = 4000,
- ["texture"] = "Interface/ICONS/spell_shadow_bloodboil",
- ["id"] = 7805
+ ["id"] = 6358,
+ ["name"] = "Seduction",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_mindsteal"
},
[2] = {
+ ["id"] = 17850,
["name"] = "Consume Shadows",
["rank"] = 2,
- ["cost"] = 4000,
- ["texture"] = "Interface/ICONS/spell_shadow_antishadow",
- ["id"] = 17850
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_antishadow"
},
[3] = {
- ["name"] = "Seduction",
- ["rank"] = 1,
- ["cost"] = 4000,
- ["texture"] = "Interface/ICONS/spell_shadow_mindsteal",
- ["id"] = 6358
+ ["id"] = 7805,
+ ["name"] = "Blood Pact",
+ ["rank"] = 3,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_bloodboil"
},
},
[28] = {
[1] = {
+ ["id"] = 7801,
["name"] = "Firebolt",
["rank"] = 4,
- ["cost"] = 5000,
- ["texture"] = "Interface/ICONS/spell_fire_firebolt",
- ["id"] = 7801
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_fire_firebolt"
},
[2] = {
+ ["id"] = 7815,
["name"] = "Lash of Pain",
["rank"] = 2,
- ["cost"] = 5000,
- ["texture"] = "Interface/ICONS/spell_shadow_curse",
- ["id"] = 7815
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_curse"
},
},
[30] = {
[1] = {
+ ["id"] = 7810,
["name"] = "Torment",
["rank"] = 3,
- ["cost"] = 6000,
- ["texture"] = "Interface/ICONS/spell_shadow_gathershadows",
- ["id"] = 7810
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_gathershadows"
+ },
+ [2] = {
+ ["id"] = 19505,
+ ["name"] = "Devour Magic",
+ ["rank"] = 1,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_purge"
},
},
[32] = {
[1] = {
- ["name"] = "Lesser Invisibility",
- ["rank"] = 1,
- ["cost"] = 7000,
- ["texture"] = "Interface/ICONS/spell_magic_lesserinvisibilty",
- ["id"] = 7870
- },
- [2] = {
+ ["id"] = 19440,
["name"] = "Sacrifice",
["rank"] = 3,
- ["cost"] = 7000,
- ["texture"] = "Interface/ICONS/spell_shadow_sacrificialshield",
- ["id"] = 19440
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_sacrificialshield"
+ },
+ [2] = {
+ ["id"] = 7870,
+ ["name"] = "Lesser Invisibility",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_magic_lesserinvisibilty"
},
[3] = {
+ ["id"] = 19478,
["name"] = "Tainted Blood",
["rank"] = 1,
- ["cost"] = 7000,
- ["texture"] = "Interface/ICONS/spell_shadow_lifedrain",
- ["id"] = 19478
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_lifedrain"
},
},
[34] = {
[1] = {
- ["name"] = "Consume Shadows",
+ ["id"] = 8317,
+ ["name"] = "Fire Shield",
["rank"] = 3,
- ["cost"] = 8000,
- ["texture"] = "Interface/ICONS/spell_shadow_antishadow",
- ["id"] = 17851
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_fire_firearmor"
},
[2] = {
- ["name"] = "Fire Shield",
+ ["id"] = 17851,
+ ["name"] = "Consume Shadows",
["rank"] = 3,
- ["cost"] = 8000,
- ["texture"] = "Interface/ICONS/spell_fire_firearmor",
- ["id"] = 8317
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_antishadow"
},
[3] = {
+ ["id"] = 7813,
["name"] = "Soothing Kiss",
["rank"] = 2,
- ["cost"] = 8000,
- ["texture"] = "Interface/ICONS/spell_shadow_soothingkiss",
- ["id"] = 7813
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_soothingkiss"
},
},
[36] = {
[1] = {
- ["name"] = "Lash of Pain",
- ["rank"] = 3,
- ["cost"] = 9000,
- ["texture"] = "Interface/ICONS/spell_shadow_curse",
- ["id"] = 7816
- },
- [2] = {
+ ["id"] = 19244,
["name"] = "Spell Lock",
["rank"] = 1,
- ["cost"] = 9000,
- ["texture"] = "Interface/ICONS/spell_shadow_mindrot",
- ["id"] = 19244
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_mindrot"
},
- [3] = {
+ [2] = {
+ ["id"] = 17750,
["name"] = "Suffering",
["rank"] = 2,
- ["cost"] = 9000,
- ["texture"] = "Interface/ICONS/spell_shadow_blackplague",
- ["id"] = 17750
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_blackplague"
+ },
+ [3] = {
+ ["id"] = 7816,
+ ["name"] = "Lash of Pain",
+ ["rank"] = 3,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_curse"
},
},
[38] = {
[1] = {
- ["name"] = "Blood Pact",
- ["rank"] = 4,
- ["cost"] = 10000,
- ["texture"] = "Interface/ICONS/spell_shadow_bloodboil",
- ["id"] = 11766
- },
- [2] = {
+ ["id"] = 19731,
["name"] = "Devour Magic",
["rank"] = 2,
- ["cost"] = 10000,
- ["texture"] = "Interface/ICONS/spell_nature_purge",
- ["id"] = 19731
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_purge"
},
- [3] = {
+ [2] = {
+ ["id"] = 7802,
["name"] = "Firebolt",
["rank"] = 5,
- ["cost"] = 10000,
- ["texture"] = "Interface/ICONS/spell_fire_firebolt",
- ["id"] = 7802
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_fire_firebolt"
+ },
+ [3] = {
+ ["id"] = 11766,
+ ["name"] = "Blood Pact",
+ ["rank"] = 4,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_bloodboil"
},
},
[40] = {
[1] = {
+ ["id"] = 19441,
["name"] = "Sacrifice",
["rank"] = 4,
- ["cost"] = 11000,
- ["texture"] = "Interface/ICONS/spell_shadow_sacrificialshield",
- ["id"] = 19441
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_sacrificialshield"
},
[2] = {
- ["name"] = "Tainted Blood",
- ["rank"] = 2,
- ["cost"] = 11000,
- ["texture"] = "Interface/ICONS/spell_shadow_lifedrain",
- ["id"] = 19655
- },
- [3] = {
+ ["id"] = 7811,
["name"] = "Torment",
["rank"] = 4,
- ["cost"] = 11000,
- ["texture"] = "Interface/ICONS/spell_shadow_gathershadows",
- ["id"] = 7811
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_gathershadows"
+ },
+ [3] = {
+ ["id"] = 19655,
+ ["name"] = "Tainted Blood",
+ ["rank"] = 2,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_lifedrain"
},
},
[42] = {
[1] = {
- ["name"] = "Consume Shadows",
- ["rank"] = 4,
- ["cost"] = 11000,
- ["texture"] = "Interface/ICONS/spell_shadow_antishadow",
- ["id"] = 17852
+ ["id"] = 19480,
+ ["name"] = "Paranoia",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_auraofdarkness"
},
[2] = {
- ["name"] = "Paranoia",
- ["rank"] = 1,
- ["cost"] = 11000,
- ["texture"] = "Interface/ICONS/spell_shadow_auraofdarkness",
- ["id"] = 19480
+ ["id"] = 17852,
+ ["name"] = "Consume Shadows",
+ ["rank"] = 4,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_antishadow"
},
},
[44] = {
[1] = {
- ["name"] = "Fire Shield",
+ ["id"] = 11778,
+ ["name"] = "Lash of Pain",
["rank"] = 4,
- ["cost"] = 12000,
- ["texture"] = "Interface/ICONS/spell_fire_firearmor",
- ["id"] = 16329
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_curse"
},
[2] = {
- ["name"] = "Lash of Pain",
+ ["id"] = 11770,
+ ["name"] = "Fire Shield",
["rank"] = 4,
- ["cost"] = 12000,
- ["texture"] = "Interface/ICONS/spell_shadow_curse",
- ["id"] = 11778
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_fire_firearmor"
},
},
[46] = {
[1] = {
- ["name"] = "Devour Magic",
+ ["id"] = 11784,
+ ["name"] = "Soothing Kiss",
["rank"] = 3,
- ["cost"] = 13000,
- ["texture"] = "Interface/ICONS/spell_nature_purge",
- ["id"] = 19734
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_soothingkiss"
},
[2] = {
- ["name"] = "Soothing Kiss",
+ ["id"] = 19734,
+ ["name"] = "Devour Magic",
["rank"] = 3,
- ["cost"] = 13000,
- ["texture"] = "Interface/ICONS/spell_shadow_soothingkiss",
- ["id"] = 11784
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_purge"
},
},
[48] = {
[1] = {
- ["name"] = "Firebolt",
- ["rank"] = 6,
- ["cost"] = 14000,
- ["texture"] = "Interface/ICONS/spell_fire_firebolt",
- ["id"] = 11762
- },
- [2] = {
+ ["id"] = 19442,
["name"] = "Sacrifice",
["rank"] = 5,
- ["cost"] = 14000,
- ["texture"] = "Interface/ICONS/spell_shadow_sacrificialshield",
- ["id"] = 19442
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_sacrificialshield"
},
- [3] = {
+ [2] = {
+ ["id"] = 17751,
["name"] = "Suffering",
["rank"] = 3,
- ["cost"] = 14000,
- ["texture"] = "Interface/ICONS/spell_shadow_blackplague",
- ["id"] = 17751
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_blackplague"
},
- [4] = {
+ [3] = {
+ ["id"] = 19656,
["name"] = "Tainted Blood",
["rank"] = 3,
- ["cost"] = 14000,
- ["texture"] = "Interface/ICONS/spell_shadow_lifedrain",
- ["id"] = 19656
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_lifedrain"
+ },
+ [4] = {
+ ["id"] = 11762,
+ ["name"] = "Firebolt",
+ ["rank"] = 6,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_fire_firebolt"
},
},
[50] = {
[1] = {
+ ["id"] = 11767,
["name"] = "Blood Pact",
["rank"] = 5,
- ["cost"] = 15000,
- ["texture"] = "Interface/ICONS/spell_shadow_bloodboil",
- ["id"] = 11767
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_bloodboil"
},
[2] = {
- ["name"] = "Consume Shadows",
+ ["id"] = 11774,
+ ["name"] = "Torment",
["rank"] = 5,
- ["cost"] = 15000,
- ["texture"] = "Interface/ICONS/spell_shadow_antishadow",
- ["id"] = 17853
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_gathershadows"
},
[3] = {
- ["name"] = "Torment",
+ ["id"] = 17853,
+ ["name"] = "Consume Shadows",
["rank"] = 5,
- ["cost"] = 15000,
- ["texture"] = "Interface/ICONS/spell_shadow_gathershadows",
- ["id"] = 11774
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_antishadow"
},
},
[52] = {
[1] = {
- ["name"] = "Lash of Pain",
- ["rank"] = 5,
- ["cost"] = 18000,
- ["texture"] = "Interface/ICONS/spell_shadow_curse",
- ["id"] = 11779
- },
- [2] = {
+ ["id"] = 19647,
["name"] = "Spell Lock",
["rank"] = 2,
- ["cost"] = 18000,
- ["texture"] = "Interface/ICONS/spell_shadow_mindrot",
- ["id"] = 19647
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_mindrot"
+ },
+ [2] = {
+ ["id"] = 11779,
+ ["name"] = "Lash of Pain",
+ ["rank"] = 5,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_curse"
},
},
[54] = {
[1] = {
- ["name"] = "Devour Magic",
- ["rank"] = 4,
- ["cost"] = 20000,
- ["texture"] = "Interface/ICONS/spell_nature_purge",
- ["id"] = 19736
- },
- [2] = {
+ ["id"] = 11771,
["name"] = "Fire Shield",
["rank"] = 5,
- ["cost"] = 20000,
- ["texture"] = "Interface/ICONS/spell_fire_firearmor",
- ["id"] = 11771
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_fire_firearmor"
+ },
+ [2] = {
+ ["id"] = 19736,
+ ["name"] = "Devour Magic",
+ ["rank"] = 4,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_purge"
},
},
[56] = {
[1] = {
+ ["id"] = 19443,
["name"] = "Sacrifice",
["rank"] = 6,
- ["cost"] = 22000,
- ["texture"] = "Interface/ICONS/spell_shadow_sacrificialshield",
- ["id"] = 19443
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_sacrificialshield"
},
[2] = {
+ ["id"] = 19660,
["name"] = "Tainted Blood",
["rank"] = 4,
- ["cost"] = 22000,
- ["texture"] = "Interface/ICONS/spell_shadow_lifedrain",
- ["id"] = 19660
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_lifedrain"
},
},
[58] = {
[1] = {
+ ["id"] = 17854,
["name"] = "Consume Shadows",
["rank"] = 6,
- ["cost"] = 24000,
- ["texture"] = "Interface/ICONS/spell_shadow_antishadow",
- ["id"] = 17854
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_antishadow"
},
[2] = {
+ ["id"] = 11763,
["name"] = "Firebolt",
["rank"] = 7,
- ["cost"] = 24000,
- ["texture"] = "Interface/ICONS/spell_fire_firebolt",
- ["id"] = 11763
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_fire_firebolt"
},
[3] = {
+ ["id"] = 11785,
["name"] = "Soothing Kiss",
["rank"] = 4,
- ["cost"] = 24000,
- ["texture"] = "Interface/ICONS/spell_shadow_soothingkiss",
- ["id"] = 11785
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_soothingkiss"
},
},
[60] = {
[1] = {
- ["name"] = "Lash of Pain",
+ ["id"] = 11775,
+ ["name"] = "Torment",
["rank"] = 6,
- ["cost"] = 26000,
- ["texture"] = "Interface/ICONS/spell_shadow_curse",
- ["id"] = 11780
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_gathershadows"
},
[2] = {
+ ["id"] = 17752,
["name"] = "Suffering",
["rank"] = 4,
- ["cost"] = 26000,
- ["texture"] = "Interface/ICONS/spell_shadow_blackplague",
- ["id"] = 17752
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_blackplague"
+ },
+ [3] = {
+ ["id"] = 11780,
+ ["name"] = "Lash of Pain",
+ ["rank"] = 6,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_curse"
+ },
+ },
+ [62] = {
+ [1] = {
+ ["id"] = 27268,
+ ["name"] = "Blood Pact",
+ ["rank"] = 6,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_bloodboil"
+ },
+ [2] = {
+ ["id"] = 27278,
+ ["name"] = "Devour Magic Effect",
+ ["rank"] = 5,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_purge"
+ },
+ [3] = {
+ ["id"] = 27276,
+ ["name"] = "Devour Magic",
+ ["rank"] = 5,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_purge"
+ },
+ },
+ [63] = {
+ [1] = {
+ ["id"] = 27271,
+ ["name"] = "Suffering",
+ ["rank"] = 5,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_blackplague"
+ },
+ },
+ [64] = {
+ [1] = {
+ ["id"] = 27273,
+ ["name"] = "Sacrifice",
+ ["rank"] = 7,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_sacrificialshield"
+ },
+ [2] = {
+ ["id"] = 27269,
+ ["name"] = "Fire Shield",
+ ["rank"] = 6,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_fire_firearmor"
+ },
+ [3] = {
+ ["id"] = 27280,
+ ["name"] = "Tainted Blood",
+ ["rank"] = 5,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_lifedrain"
+ },
+ },
+ [66] = {
+ [1] = {
+ ["id"] = 27272,
+ ["name"] = "Consume Shadows",
+ ["rank"] = 7,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_antishadow"
+ },
+ },
+ [68] = {
+ [1] = {
+ ["id"] = 27274,
+ ["name"] = "Lash of Pain",
+ ["rank"] = 7,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_curse"
+ },
+ [2] = {
+ ["id"] = 27267,
+ ["name"] = "Firebolt",
+ ["rank"] = 8,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_fire_firebolt"
+ },
+ },
+ [69] = {
+ [1] = {
+ ["id"] = 33701,
+ ["name"] = "Suffering",
+ ["rank"] = 6,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_blackplague"
+ },
+ },
+ [70] = {
+ [1] = {
+ ["id"] = 27277,
+ ["name"] = "Devour Magic",
+ ["rank"] = 6,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_purge"
+ },
+ [2] = {
+ ["id"] = 27275,
+ ["name"] = "Soothing Kiss",
+ ["rank"] = 5,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_soothingkiss"
},
[3] = {
+ ["id"] = 27270,
["name"] = "Torment",
+ ["rank"] = 7,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_gathershadows"
+ },
+ [4] = {
+ ["id"] = 27279,
+ ["name"] = "Devour Magic Effect",
["rank"] = 6,
- ["cost"] = 26000,
- ["texture"] = "Interface/ICONS/spell_shadow_gathershadows",
- ["id"] = 11775
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_purge"
},
},
}
diff --git a/Database/Warrior.lua b/Database/classes/Warrior.lua
similarity index 55%
rename from Database/Warrior.lua
rename to Database/classes/Warrior.lua
index f9377b3..d9c778f 100644
--- a/Database/Warrior.lua
+++ b/Database/classes/Warrior.lua
@@ -1,794 +1,1111 @@
local _, FieldGuide = ...
FieldGuide.WARRIOR = {
- [2] = {
+ [1] = {
[1] = {
+ ["id"] = 107,
+ ["name"] = "Block",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_defend"
+ },
+ [2] = {
+ ["id"] = 3127,
+ ["name"] = "Parry",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_parry"
+ },
+ [3] = {
+ ["id"] = 3018,
+ ["name"] = "Shoot",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_marksmanship"
+ },
+ [4] = {
+ ["id"] = 2764,
+ ["name"] = "Throw",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_throw"
+ },
+ [5] = {
+ ["id"] = 6673,
["name"] = "Battle Shout",
["rank"] = 1,
["cost"] = 10,
- ["texture"] = "Interface/ICONS/ability_warrior_battleshout",
- ["id"] = 6673
+ ["texture"] = "Interface/ICONS/ability_warrior_battleshout"
+ },
+ [6] = {
+ ["id"] = 2457,
+ ["name"] = "Battle Stance",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_warrior_offensivestance"
+ },
+ [7] = {
+ ["id"] = 78,
+ ["name"] = "Heroic Strike",
+ ["rank"] = 1,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_rogue_ambush"
},
},
[4] = {
[1] = {
+ ["id"] = 100,
["name"] = "Charge",
["rank"] = 1,
["cost"] = 100,
- ["texture"] = "Interface/ICONS/ability_warrior_charge",
- ["id"] = 100
+ ["texture"] = "Interface/ICONS/ability_warrior_charge"
},
[2] = {
+ ["id"] = 772,
["name"] = "Rend",
["rank"] = 1,
["cost"] = 100,
- ["texture"] = "Interface/ICONS/ability_gouge",
- ["id"] = 772
+ ["texture"] = "Interface/ICONS/ability_gouge"
},
},
[6] = {
[1] = {
- ["name"] = "Parry",
- ["rank"] = 1,
- ["cost"] = 100,
- ["texture"] = "Interface/ICONS/ability_parry",
- ["id"] = 3127
- },
- [2] = {
+ ["id"] = 6343,
["name"] = "Thunder Clap",
["rank"] = 1,
["cost"] = 100,
- ["texture"] = "Interface/ICONS/spell_nature_thunderclap",
- ["id"] = 6343
+ ["texture"] = "Interface/ICONS/spell_nature_thunderclap"
},
},
[8] = {
[1] = {
+ ["id"] = 1715,
["name"] = "Hamstring",
["rank"] = 1,
["cost"] = 200,
- ["texture"] = "Interface/ICONS/ability_shockwave",
- ["id"] = 1715
+ ["texture"] = "Interface/ICONS/ability_shockwave"
},
[2] = {
+ ["id"] = 284,
["name"] = "Heroic Strike",
["rank"] = 2,
["cost"] = 200,
- ["texture"] = "Interface/ICONS/ability_rogue_ambush",
- ["id"] = 284
+ ["texture"] = "Interface/ICONS/ability_rogue_ambush"
},
},
[10] = {
[1] = {
- ["name"] = "Rend",
- ["rank"] = 2,
- ["cost"] = 600,
- ["texture"] = "Interface/ICONS/ability_gouge",
- ["id"] = 6546
- },
- [2] = {
+ ["id"] = 2687,
["name"] = "Bloodrage",
- ["rank"] = 1,
+ ["rank"] = 0,
["cost"] = 600,
- ["texture"] = "Interface/ICONS/ability_racial_bloodrage",
- ["id"] = 2687
+ ["texture"] = "Interface/ICONS/ability_racial_bloodrage"
},
- [3] = {
+ [2] = {
+ ["id"] = 71,
["name"] = "Defensive Stance",
- ["rank"] = 1,
+ ["rank"] = 0,
["cost"] = 0,
- ["texture"] = "Interface/ICONS/ability_warrior_defensivestance",
- ["id"] = 71
+ ["texture"] = "Interface/ICONS/ability_warrior_defensivestance"
+ },
+ [3] = {
+ ["id"] = 6546,
+ ["name"] = "Rend",
+ ["rank"] = 2,
+ ["cost"] = 600,
+ ["texture"] = "Interface/ICONS/ability_gouge"
},
[4] = {
+ ["id"] = 7386,
["name"] = "Sunder Armor",
["rank"] = 1,
["cost"] = 0,
- ["texture"] = "Interface/ICONS/ability_warrior_sunder",
- ["id"] = 7386
+ ["texture"] = "Interface/ICONS/ability_warrior_sunder"
},
[5] = {
+ ["id"] = 355,
["name"] = "Taunt",
- ["rank"] = 1,
+ ["rank"] = 0,
["cost"] = 0,
- ["texture"] = "Interface/ICONS/spell_nature_reincarnation",
- ["id"] = 355
+ ["texture"] = "Interface/ICONS/spell_nature_reincarnation"
},
},
[12] = {
[1] = {
- ["name"] = "Overpower",
- ["rank"] = 1,
+ ["id"] = 5242,
+ ["name"] = "Battle Shout",
+ ["rank"] = 2,
["cost"] = 1000,
- ["texture"] = "Interface/ICONS/ability_meleedamage",
- ["id"] = 7384
+ ["texture"] = "Interface/ICONS/ability_warrior_battleshout"
},
[2] = {
- ["name"] = "Battle Shout",
- ["rank"] = 2,
+ ["id"] = 7384,
+ ["name"] = "Overpower",
+ ["rank"] = 1,
["cost"] = 1000,
- ["texture"] = "Interface/ICONS/ability_warrior_battleshout",
- ["id"] = 5242
+ ["texture"] = "Interface/ICONS/ability_meleedamage"
},
[3] = {
+ ["id"] = 72,
["name"] = "Shield Bash",
["rank"] = 1,
["cost"] = 1000,
- ["texture"] = "Interface/ICONS/ability_warrior_shieldbash",
- ["id"] = 72
+ ["texture"] = "Interface/ICONS/ability_warrior_shieldbash"
},
},
[14] = {
[1] = {
+ ["id"] = 1160,
["name"] = "Demoralizing Shout",
["rank"] = 1,
["cost"] = 1500,
- ["texture"] = "Interface/ICONS/ability_warrior_warcry",
- ["id"] = 1160
+ ["texture"] = "Interface/ICONS/ability_warrior_warcry"
},
[2] = {
+ ["id"] = 6572,
["name"] = "Revenge",
["rank"] = 1,
["cost"] = 1500,
- ["texture"] = "Interface/ICONS/ability_warrior_revenge",
- ["id"] = 6572
+ ["texture"] = "Interface/ICONS/ability_warrior_revenge"
},
},
[16] = {
[1] = {
+ ["id"] = 285,
["name"] = "Heroic Strike",
["rank"] = 3,
["cost"] = 2000,
- ["texture"] = "Interface/ICONS/ability_rogue_ambush",
- ["id"] = 285
+ ["texture"] = "Interface/ICONS/ability_rogue_ambush"
},
[2] = {
+ ["id"] = 694,
["name"] = "Mocking Blow",
["rank"] = 1,
["cost"] = 2000,
- ["texture"] = "Interface/ICONS/ability_warrior_punishingblow",
- ["id"] = 694
+ ["texture"] = "Interface/ICONS/ability_warrior_punishingblow"
},
[3] = {
+ ["id"] = 2565,
["name"] = "Shield Block",
- ["rank"] = 1,
+ ["rank"] = 0,
["cost"] = 2000,
- ["texture"] = "Interface/ICONS/ability_defend",
- ["id"] = 2565
+ ["texture"] = "Interface/ICONS/ability_defend"
},
},
[18] = {
[1] = {
- ["name"] = "Thunder Clap",
- ["rank"] = 2,
+ ["id"] = 676,
+ ["name"] = "Disarm",
+ ["rank"] = 0,
["cost"] = 3000,
- ["texture"] = "Interface/ICONS/spell_nature_thunderclap",
- ["id"] = 8198
+ ["texture"] = "Interface/ICONS/ability_warrior_disarm"
},
[2] = {
- ["name"] = "Disarm",
- ["rank"] = 1,
+ ["id"] = 8198,
+ ["name"] = "Thunder Clap",
+ ["rank"] = 2,
["cost"] = 3000,
- ["texture"] = "Interface/ICONS/ability_warrior_disarm",
- ["id"] = 676
+ ["texture"] = "Interface/ICONS/spell_nature_thunderclap"
},
},
[20] = {
[1] = {
- ["name"] = "Dual Wield",
+ ["id"] = 845,
+ ["name"] = "Cleave",
["rank"] = 1,
["cost"] = 4000,
- ["texture"] = "Interface/ICONS/ability_dualwield",
- ["id"] = 674
+ ["texture"] = "Interface/ICONS/ability_warrior_cleave"
},
[2] = {
+ ["id"] = 6547,
["name"] = "Rend",
["rank"] = 3,
["cost"] = 4000,
- ["texture"] = "Interface/ICONS/ability_gouge",
- ["id"] = 6547
+ ["texture"] = "Interface/ICONS/ability_gouge"
},
[3] = {
+ ["id"] = 20230,
["name"] = "Retaliation",
- ["rank"] = 1,
+ ["rank"] = 0,
["cost"] = 4000,
- ["texture"] = "Interface/ICONS/ability_warrior_challange",
- ["id"] = 20230
+ ["texture"] = "Interface/ICONS/ability_warrior_challange"
},
[4] = {
- ["name"] = "Cleave",
- ["rank"] = 1,
+ ["id"] = 12678,
+ ["name"] = "Stance Mastery",
+ ["rank"] = 0,
["cost"] = 4000,
- ["texture"] = "Interface/ICONS/ability_warrior_cleave",
- ["id"] = 845
+ ["texture"] = "Interface/ICONS/spell_nature_enchantarmor"
},
},
[22] = {
[1] = {
+ ["id"] = 6192,
["name"] = "Battle Shout",
["rank"] = 3,
["cost"] = 6000,
- ["texture"] = "Interface/ICONS/ability_warrior_battleshout",
- ["id"] = 6192
+ ["texture"] = "Interface/ICONS/ability_warrior_battleshout"
},
[2] = {
+ ["id"] = 5246,
["name"] = "Intimidating Shout",
- ["rank"] = 1,
+ ["rank"] = 0,
["cost"] = 6000,
- ["texture"] = "Interface/ICONS/ability_golemthunderclap",
- ["id"] = 5246
+ ["texture"] = "Interface/ICONS/ability_golemthunderclap"
},
[3] = {
+ ["id"] = 7405,
["name"] = "Sunder Armor",
["rank"] = 2,
["cost"] = 6000,
- ["texture"] = "Interface/ICONS/ability_warrior_sunder",
- ["id"] = 7405
+ ["texture"] = "Interface/ICONS/ability_warrior_sunder"
},
},
[24] = {
[1] = {
- ["name"] = "Heroic Strike",
- ["rank"] = 4,
- ["cost"] = 8000,
- ["texture"] = "Interface/ICONS/ability_rogue_ambush",
- ["id"] = 1608
- },
- [2] = {
+ ["id"] = 6190,
["name"] = "Demoralizing Shout",
["rank"] = 2,
["cost"] = 8000,
- ["texture"] = "Interface/ICONS/ability_warrior_warcry",
- ["id"] = 6190
+ ["texture"] = "Interface/ICONS/ability_warrior_warcry"
},
- [3] = {
+ [2] = {
+ ["id"] = 5308,
["name"] = "Execute",
["rank"] = 1,
["cost"] = 8000,
- ["texture"] = "Interface/ICONS/inv_sword_48",
- ["id"] = 5308
+ ["texture"] = "Interface/ICONS/inv_sword_48"
+ },
+ [3] = {
+ ["id"] = 1608,
+ ["name"] = "Heroic Strike",
+ ["rank"] = 4,
+ ["cost"] = 8000,
+ ["texture"] = "Interface/ICONS/ability_rogue_ambush"
},
[4] = {
+ ["id"] = 6574,
["name"] = "Revenge",
["rank"] = 2,
["cost"] = 8000,
- ["texture"] = "Interface/ICONS/ability_warrior_revenge",
- ["id"] = 6574
+ ["texture"] = "Interface/ICONS/ability_warrior_revenge"
},
},
[26] = {
[1] = {
- ["name"] = "Charge",
- ["rank"] = 2,
+ ["id"] = 1161,
+ ["name"] = "Challenging Shout",
+ ["rank"] = 0,
["cost"] = 10000,
- ["texture"] = "Interface/ICONS/ability_warrior_charge",
- ["id"] = 6178
+ ["texture"] = "Interface/ICONS/ability_bullrush"
},
[2] = {
- ["name"] = "Mocking Blow",
+ ["id"] = 6178,
+ ["name"] = "Charge",
["rank"] = 2,
["cost"] = 10000,
- ["texture"] = "Interface/ICONS/ability_warrior_punishingblow",
- ["id"] = 7400
+ ["texture"] = "Interface/ICONS/ability_warrior_charge"
},
[3] = {
- ["name"] = "Challenging Shout",
- ["rank"] = 1,
+ ["id"] = 7400,
+ ["name"] = "Mocking Blow",
+ ["rank"] = 2,
["cost"] = 10000,
- ["texture"] = "Interface/ICONS/ability_bullrush",
- ["id"] = 1161
+ ["texture"] = "Interface/ICONS/ability_warrior_punishingblow"
},
},
[28] = {
[1] = {
+ ["id"] = 7887,
["name"] = "Overpower",
["rank"] = 2,
["cost"] = 11000,
- ["texture"] = "Interface/ICONS/ability_meleedamage",
- ["id"] = 7887
+ ["texture"] = "Interface/ICONS/ability_meleedamage"
},
[2] = {
- ["name"] = "Thunder Clap",
- ["rank"] = 3,
+ ["id"] = 871,
+ ["name"] = "Shield Wall",
+ ["rank"] = 0,
["cost"] = 11000,
- ["texture"] = "Interface/ICONS/spell_nature_thunderclap",
- ["id"] = 8204
+ ["texture"] = "Interface/ICONS/ability_warrior_shieldwall"
},
[3] = {
- ["name"] = "Shield Wall",
- ["rank"] = 1,
+ ["id"] = 8204,
+ ["name"] = "Thunder Clap",
+ ["rank"] = 3,
["cost"] = 11000,
- ["texture"] = "Interface/ICONS/ability_warrior_shieldwall",
- ["id"] = 871
+ ["texture"] = "Interface/ICONS/spell_nature_thunderclap"
},
},
[30] = {
[1] = {
- ["name"] = "Rend",
- ["rank"] = 4,
- ["cost"] = 12000,
- ["texture"] = "Interface/ICONS/ability_gouge",
- ["id"] = 6548
- },
- [2] = {
+ ["id"] = 2458,
["name"] = "Berserker Stance",
- ["rank"] = 1,
+ ["rank"] = 0,
["cost"] = 0,
- ["texture"] = "Interface/ICONS/ability_racial_avatar",
- ["id"] = 2458
+ ["texture"] = "Interface/ICONS/ability_racial_avatar"
},
- [3] = {
+ [2] = {
+ ["id"] = 7369,
["name"] = "Cleave",
["rank"] = 2,
["cost"] = 12000,
- ["texture"] = "Interface/ICONS/ability_warrior_cleave",
- ["id"] = 7369
+ ["texture"] = "Interface/ICONS/ability_warrior_cleave"
},
- [4] = {
+ [3] = {
+ ["id"] = 20252,
["name"] = "Intercept",
["rank"] = 1,
["cost"] = 0,
- ["texture"] = "Interface/ICONS/ability_rogue_sprint",
- ["id"] = 20252
+ ["texture"] = "Interface/ICONS/ability_rogue_sprint"
+ },
+ [4] = {
+ ["id"] = 6548,
+ ["name"] = "Rend",
+ ["rank"] = 4,
+ ["cost"] = 12000,
+ ["texture"] = "Interface/ICONS/ability_gouge"
},
[5] = {
+ ["id"] = 1464,
["name"] = "Slam",
["rank"] = 1,
["cost"] = 12000,
- ["texture"] = "Interface/ICONS/ability_warrior_decisivestrike",
- ["id"] = 1464
+ ["texture"] = "Interface/ICONS/ability_warrior_decisivestrike"
},
},
[32] = {
[1] = {
- ["name"] = "Hamstring",
- ["rank"] = 2,
+ ["id"] = 11549,
+ ["name"] = "Battle Shout",
+ ["rank"] = 4,
["cost"] = 14000,
- ["texture"] = "Interface/ICONS/ability_shockwave",
- ["id"] = 7372
+ ["texture"] = "Interface/ICONS/ability_warrior_battleshout"
},
[2] = {
- ["name"] = "Heroic Strike",
- ["rank"] = 5,
+ ["id"] = 18499,
+ ["name"] = "Berserker Rage",
+ ["rank"] = 0,
["cost"] = 14000,
- ["texture"] = "Interface/ICONS/ability_rogue_ambush",
- ["id"] = 11564
+ ["texture"] = "Interface/ICONS/spell_nature_ancestralguardian"
},
[3] = {
- ["name"] = "Battle Shout",
- ["rank"] = 4,
+ ["id"] = 20658,
+ ["name"] = "Execute",
+ ["rank"] = 2,
["cost"] = 14000,
- ["texture"] = "Interface/ICONS/ability_warrior_battleshout",
- ["id"] = 11549
+ ["texture"] = "Interface/ICONS/inv_sword_48"
},
[4] = {
- ["name"] = "Berserker Rage",
- ["rank"] = 1,
+ ["id"] = 7372,
+ ["name"] = "Hamstring",
+ ["rank"] = 2,
["cost"] = 14000,
- ["texture"] = "Interface/ICONS/spell_nature_ancestralguardian",
- ["id"] = 18499
+ ["texture"] = "Interface/ICONS/ability_shockwave"
},
[5] = {
- ["name"] = "Execute",
- ["rank"] = 2,
+ ["id"] = 11564,
+ ["name"] = "Heroic Strike",
+ ["rank"] = 5,
["cost"] = 14000,
- ["texture"] = "Interface/ICONS/inv_sword_48",
- ["id"] = 20658
+ ["texture"] = "Interface/ICONS/ability_rogue_ambush"
},
[6] = {
+ ["id"] = 1671,
["name"] = "Shield Bash",
["rank"] = 2,
["cost"] = 14000,
- ["texture"] = "Interface/ICONS/ability_warrior_shieldbash",
- ["id"] = 1671
+ ["texture"] = "Interface/ICONS/ability_warrior_shieldbash"
},
},
[34] = {
[1] = {
+ ["id"] = 11554,
["name"] = "Demoralizing Shout",
["rank"] = 3,
["cost"] = 16000,
- ["texture"] = "Interface/ICONS/ability_warrior_warcry",
- ["id"] = 11554
+ ["texture"] = "Interface/ICONS/ability_warrior_warcry"
},
[2] = {
+ ["id"] = 7379,
["name"] = "Revenge",
["rank"] = 3,
["cost"] = 16000,
- ["texture"] = "Interface/ICONS/ability_warrior_revenge",
- ["id"] = 7379
+ ["texture"] = "Interface/ICONS/ability_warrior_revenge"
},
[3] = {
+ ["id"] = 8380,
["name"] = "Sunder Armor",
["rank"] = 3,
["cost"] = 16000,
- ["texture"] = "Interface/ICONS/ability_warrior_sunder",
- ["id"] = 8380
+ ["texture"] = "Interface/ICONS/ability_warrior_sunder"
},
},
[36] = {
[1] = {
+ ["id"] = 7402,
["name"] = "Mocking Blow",
["rank"] = 3,
["cost"] = 18000,
- ["texture"] = "Interface/ICONS/ability_warrior_punishingblow",
- ["id"] = 7402
+ ["texture"] = "Interface/ICONS/ability_warrior_punishingblow"
},
[2] = {
+ ["id"] = 1680,
["name"] = "Whirlwind",
- ["rank"] = 1,
+ ["rank"] = 0,
["cost"] = 18000,
- ["texture"] = "Interface/ICONS/ability_whirlwind",
- ["id"] = 1680
+ ["texture"] = "Interface/ICONS/ability_whirlwind"
},
},
[38] = {
[1] = {
- ["name"] = "Thunder Clap",
- ["rank"] = 4,
- ["cost"] = 20000,
- ["texture"] = "Interface/ICONS/spell_nature_thunderclap",
- ["id"] = 8205
- },
- [2] = {
+ ["id"] = 6552,
["name"] = "Pummel",
["rank"] = 1,
["cost"] = 20000,
- ["texture"] = "Interface/ICONS/inv_gauntlets_04",
- ["id"] = 6552
+ ["texture"] = "Interface/ICONS/inv_gauntlets_04"
},
- [3] = {
+ [2] = {
+ ["id"] = 8820,
["name"] = "Slam",
["rank"] = 2,
["cost"] = 20000,
- ["texture"] = "Interface/ICONS/ability_warrior_decisivestrike",
- ["id"] = 8820
+ ["texture"] = "Interface/ICONS/ability_warrior_decisivestrike"
+ },
+ [3] = {
+ ["id"] = 8205,
+ ["name"] = "Thunder Clap",
+ ["rank"] = 4,
+ ["cost"] = 20000,
+ ["texture"] = "Interface/ICONS/spell_nature_thunderclap"
},
},
[40] = {
[1] = {
- ["name"] = "Plate Mail",
- ["rank"] = 1,
+ ["id"] = 11608,
+ ["name"] = "Cleave",
+ ["rank"] = 3,
["cost"] = 22000,
- ["texture"] = "Interface/ICONS/inv_chest_plate01",
- ["id"] = 750
+ ["texture"] = "Interface/ICONS/ability_warrior_cleave"
},
[2] = {
- ["name"] = "Heroic Strike",
- ["rank"] = 6,
+ ["id"] = 20660,
+ ["name"] = "Execute",
+ ["rank"] = 3,
["cost"] = 22000,
- ["texture"] = "Interface/ICONS/ability_rogue_ambush",
- ["id"] = 11565
+ ["texture"] = "Interface/ICONS/inv_sword_48"
},
[3] = {
- ["name"] = "Rend",
- ["rank"] = 5,
+ ["id"] = 11565,
+ ["name"] = "Heroic Strike",
+ ["rank"] = 6,
["cost"] = 22000,
- ["texture"] = "Interface/ICONS/ability_gouge",
- ["id"] = 11572
+ ["texture"] = "Interface/ICONS/ability_rogue_ambush"
},
[4] = {
- ["name"] = "Cleave",
- ["rank"] = 3,
- ["cost"] = 22000,
- ["texture"] = "Interface/ICONS/ability_warrior_cleave",
- ["id"] = 11608
- },
- [5] = {
- ["name"] = "Execute",
- ["rank"] = 3,
+ ["id"] = 11572,
+ ["name"] = "Rend",
+ ["rank"] = 5,
["cost"] = 22000,
- ["texture"] = "Interface/ICONS/inv_sword_48",
- ["id"] = 20660
+ ["texture"] = "Interface/ICONS/ability_gouge"
},
},
[42] = {
[1] = {
+ ["id"] = 11550,
["name"] = "Battle Shout",
["rank"] = 5,
["cost"] = 32000,
- ["texture"] = "Interface/ICONS/ability_warrior_battleshout",
- ["id"] = 11550
+ ["texture"] = "Interface/ICONS/ability_warrior_battleshout"
},
[2] = {
+ ["id"] = 20616,
["name"] = "Intercept",
["rank"] = 2,
["cost"] = 32000,
- ["texture"] = "Interface/ICONS/ability_rogue_sprint",
- ["id"] = 20616
+ ["texture"] = "Interface/ICONS/ability_rogue_sprint"
},
},
[44] = {
[1] = {
- ["name"] = "Overpower",
- ["rank"] = 3,
+ ["id"] = 11555,
+ ["name"] = "Demoralizing Shout",
+ ["rank"] = 4,
["cost"] = 34000,
- ["texture"] = "Interface/ICONS/ability_meleedamage",
- ["id"] = 11584
+ ["texture"] = "Interface/ICONS/ability_warrior_warcry"
},
[2] = {
- ["name"] = "Demoralizing Shout",
- ["rank"] = 4,
+ ["id"] = 11584,
+ ["name"] = "Overpower",
+ ["rank"] = 3,
["cost"] = 34000,
- ["texture"] = "Interface/ICONS/ability_warrior_warcry",
- ["id"] = 11555
+ ["texture"] = "Interface/ICONS/ability_meleedamage"
},
[3] = {
+ ["id"] = 11600,
["name"] = "Revenge",
["rank"] = 4,
["cost"] = 34000,
- ["texture"] = "Interface/ICONS/ability_warrior_revenge",
- ["id"] = 11600
+ ["texture"] = "Interface/ICONS/ability_warrior_revenge"
},
},
[46] = {
[1] = {
+ ["id"] = 11578,
["name"] = "Charge",
["rank"] = 3,
["cost"] = 36000,
- ["texture"] = "Interface/ICONS/ability_warrior_charge",
- ["id"] = 11578
+ ["texture"] = "Interface/ICONS/ability_warrior_charge"
},
[2] = {
+ ["id"] = 20559,
["name"] = "Mocking Blow",
["rank"] = 4,
["cost"] = 36000,
- ["texture"] = "Interface/ICONS/ability_warrior_punishingblow",
- ["id"] = 20559
+ ["texture"] = "Interface/ICONS/ability_warrior_punishingblow"
},
[3] = {
+ ["id"] = 11604,
["name"] = "Slam",
["rank"] = 3,
["cost"] = 36000,
- ["texture"] = "Interface/ICONS/ability_warrior_decisivestrike",
- ["id"] = 11604
+ ["texture"] = "Interface/ICONS/ability_warrior_decisivestrike"
},
[4] = {
+ ["id"] = 11596,
["name"] = "Sunder Armor",
["rank"] = 4,
["cost"] = 36000,
- ["texture"] = "Interface/ICONS/ability_warrior_sunder",
- ["id"] = 11596
+ ["texture"] = "Interface/ICONS/ability_warrior_sunder"
},
},
[48] = {
[1] = {
- ["name"] = "Heroic Strike",
- ["rank"] = 7,
- ["cost"] = 40000,
- ["texture"] = "Interface/ICONS/ability_rogue_ambush",
- ["id"] = 11566
+ ["id"] = 23892,
+ ["name"] = "Bloodthirst",
+ ["rank"] = 2,
+ ["cost"] = 2000,
+ ["texture"] = "Interface/ICONS/spell_nature_bloodlust",
+ ["talent"] = true
},
[2] = {
+ ["id"] = 21551,
["name"] = "Mortal Strike",
["rank"] = 2,
- ["cost"] = 200, -- Typo on pservers?
+ ["cost"] = 2000,
["texture"] = "Interface/ICONS/ability_warrior_savageblow",
- ["id"] = 21551,
["talent"] = true
},
[3] = {
- ["name"] = "Thunder Clap",
- ["rank"] = 5,
- ["cost"] = 40000,
- ["texture"] = "Interface/ICONS/spell_nature_thunderclap",
- ["id"] = 11580
- },
- [4] = {
- ["name"] = "Bloodthirst",
+ ["id"] = 23923,
+ ["name"] = "Shield Slam",
["rank"] = 2,
["cost"] = 2000,
- ["texture"] = "Interface/ICONS/spell_nature_bloodlust",
- ["id"] = 23892,
+ ["texture"] = "Interface/ICONS/inv_shield_05",
["talent"] = true
},
- [5] = {
+ [4] = {
+ ["id"] = 20661,
["name"] = "Execute",
["rank"] = 4,
["cost"] = 40000,
- ["texture"] = "Interface/ICONS/inv_sword_48",
- ["id"] = 20661
+ ["texture"] = "Interface/ICONS/inv_sword_48"
+ },
+ [5] = {
+ ["id"] = 11566,
+ ["name"] = "Heroic Strike",
+ ["rank"] = 7,
+ ["cost"] = 40000,
+ ["texture"] = "Interface/ICONS/ability_rogue_ambush"
},
[6] = {
- ["name"] = "Shield Slam",
- ["rank"] = 2,
- ["cost"] = 200, -- Typo on pservers?
- ["texture"] = "Interface/ICONS/inv_shield_05",
- ["id"] = 23923,
- ["talent"] = true
+ ["id"] = 11580,
+ ["name"] = "Thunder Clap",
+ ["rank"] = 5,
+ ["cost"] = 40000,
+ ["texture"] = "Interface/ICONS/spell_nature_thunderclap"
},
},
[50] = {
[1] = {
- ["name"] = "Rend",
- ["rank"] = 6,
+ ["id"] = 11609,
+ ["name"] = "Cleave",
+ ["rank"] = 4,
["cost"] = 42000,
- ["texture"] = "Interface/ICONS/ability_gouge",
- ["id"] = 11573
+ ["texture"] = "Interface/ICONS/ability_warrior_cleave"
},
[2] = {
- ["name"] = "Cleave",
- ["rank"] = 4,
+ ["id"] = 1719,
+ ["name"] = "Recklessness",
+ ["rank"] = 0,
["cost"] = 42000,
- ["texture"] = "Interface/ICONS/ability_warrior_cleave",
- ["id"] = 11609
+ ["texture"] = "Interface/ICONS/ability_criticalstrike"
},
[3] = {
- ["name"] = "Recklessness",
- ["rank"] = 1,
+ ["id"] = 11573,
+ ["name"] = "Rend",
+ ["rank"] = 6,
["cost"] = 42000,
- ["texture"] = "Interface/ICONS/ability_criticalstrike",
- ["id"] = 1719
+ ["texture"] = "Interface/ICONS/ability_gouge"
},
},
[52] = {
[1] = {
+ ["id"] = 11551,
["name"] = "Battle Shout",
["rank"] = 6,
["cost"] = 54000,
- ["texture"] = "Interface/ICONS/ability_warrior_battleshout",
- ["id"] = 11551
+ ["texture"] = "Interface/ICONS/ability_warrior_battleshout"
},
[2] = {
+ ["id"] = 20617,
["name"] = "Intercept",
["rank"] = 3,
["cost"] = 54000,
- ["texture"] = "Interface/ICONS/ability_rogue_sprint",
- ["id"] = 20617
+ ["texture"] = "Interface/ICONS/ability_rogue_sprint"
},
[3] = {
+ ["id"] = 1672,
["name"] = "Shield Bash",
["rank"] = 3,
["cost"] = 54000,
- ["texture"] = "Interface/ICONS/ability_warrior_shieldbash",
- ["id"] = 1672
+ ["texture"] = "Interface/ICONS/ability_warrior_shieldbash"
},
},
[54] = {
[1] = {
- ["name"] = "Hamstring",
+ ["id"] = 23893,
+ ["name"] = "Bloodthirst",
["rank"] = 3,
- ["cost"] = 56000,
- ["texture"] = "Interface/ICONS/ability_shockwave",
- ["id"] = 7373
+ ["cost"] = 2800,
+ ["texture"] = "Interface/ICONS/spell_nature_bloodlust",
+ ["talent"] = true
},
[2] = {
+ ["id"] = 21552,
["name"] = "Mortal Strike",
["rank"] = 3,
["cost"] = 2800,
["texture"] = "Interface/ICONS/ability_warrior_savageblow",
- ["id"] = 21552,
["talent"] = true
},
[3] = {
- ["name"] = "Bloodthirst",
+ ["id"] = 23924,
+ ["name"] = "Shield Slam",
["rank"] = 3,
["cost"] = 2800,
- ["texture"] = "Interface/ICONS/spell_nature_bloodlust",
- ["id"] = 23893,
+ ["texture"] = "Interface/ICONS/inv_shield_05",
["talent"] = true
},
[4] = {
+ ["id"] = 11556,
["name"] = "Demoralizing Shout",
["rank"] = 5,
["cost"] = 56000,
- ["texture"] = "Interface/ICONS/ability_warrior_warcry",
- ["id"] = 11556
+ ["texture"] = "Interface/ICONS/ability_warrior_warcry"
},
[5] = {
- ["name"] = "Slam",
- ["rank"] = 4,
+ ["id"] = 7373,
+ ["name"] = "Hamstring",
+ ["rank"] = 3,
["cost"] = 56000,
- ["texture"] = "Interface/ICONS/ability_warrior_decisivestrike",
- ["id"] = 11605
+ ["texture"] = "Interface/ICONS/ability_shockwave"
},
[6] = {
+ ["id"] = 11601,
["name"] = "Revenge",
["rank"] = 5,
["cost"] = 56000,
- ["texture"] = "Interface/ICONS/ability_warrior_revenge",
- ["id"] = 11601
+ ["texture"] = "Interface/ICONS/ability_warrior_revenge"
},
[7] = {
- ["name"] = "Shield Slam",
- ["rank"] = 3,
- ["cost"] = 2800,
- ["texture"] = "Interface/ICONS/inv_shield_05",
- ["id"] = 23924,
- ["talent"] = true
+ ["id"] = 11605,
+ ["name"] = "Slam",
+ ["rank"] = 4,
+ ["cost"] = 56000,
+ ["texture"] = "Interface/ICONS/ability_warrior_decisivestrike"
},
},
[56] = {
[1] = {
- ["name"] = "Heroic Strike",
- ["rank"] = 8,
+ ["id"] = 20662,
+ ["name"] = "Execute",
+ ["rank"] = 5,
["cost"] = 58000,
- ["texture"] = "Interface/ICONS/ability_rogue_ambush",
- ["id"] = 11567
+ ["texture"] = "Interface/ICONS/inv_sword_48"
},
[2] = {
- ["name"] = "Mocking Blow",
- ["rank"] = 5,
+ ["id"] = 11567,
+ ["name"] = "Heroic Strike",
+ ["rank"] = 8,
["cost"] = 58000,
- ["texture"] = "Interface/ICONS/ability_warrior_punishingblow",
- ["id"] = 20560
+ ["texture"] = "Interface/ICONS/ability_rogue_ambush"
},
[3] = {
- ["name"] = "Execute",
+ ["id"] = 20560,
+ ["name"] = "Mocking Blow",
["rank"] = 5,
["cost"] = 58000,
- ["texture"] = "Interface/ICONS/inv_sword_48",
- ["id"] = 20662
+ ["texture"] = "Interface/ICONS/ability_warrior_punishingblow"
},
},
[58] = {
[1] = {
- ["name"] = "Thunder Clap",
- ["rank"] = 6,
- ["cost"] = 60000,
- ["texture"] = "Interface/ICONS/spell_nature_thunderclap",
- ["id"] = 11581
- },
- [2] = {
+ ["id"] = 6554,
["name"] = "Pummel",
["rank"] = 2,
["cost"] = 60000,
- ["texture"] = "Interface/ICONS/inv_gauntlets_04",
- ["id"] = 6554
+ ["texture"] = "Interface/ICONS/inv_gauntlets_04"
},
- [3] = {
+ [2] = {
+ ["id"] = 11597,
["name"] = "Sunder Armor",
["rank"] = 5,
["cost"] = 60000,
- ["texture"] = "Interface/ICONS/ability_warrior_sunder",
- ["id"] = 11597
+ ["texture"] = "Interface/ICONS/ability_warrior_sunder"
+ },
+ [3] = {
+ ["id"] = 11581,
+ ["name"] = "Thunder Clap",
+ ["rank"] = 6,
+ ["cost"] = 60000,
+ ["texture"] = "Interface/ICONS/spell_nature_thunderclap"
},
},
[60] = {
[1] = {
+ ["id"] = 23894,
+ ["name"] = "Bloodthirst",
+ ["rank"] = 4,
+ ["cost"] = 3100,
+ ["texture"] = "Interface/ICONS/spell_nature_bloodlust",
+ ["talent"] = true
+ },
+ [2] = {
+ ["id"] = 30016,
+ ["name"] = "Devastate",
+ ["rank"] = 2,
+ ["cost"] = 3100,
+ ["texture"] = "Interface/ICONS/inv_sword_11",
+ ["talent"] = true
+ },
+ [3] = {
+ ["id"] = 21553,
["name"] = "Mortal Strike",
["rank"] = 4,
["cost"] = 3100,
["texture"] = "Interface/ICONS/ability_warrior_savageblow",
- ["id"] = 21553,
["talent"] = true
},
- [2] = {
+ [4] = {
+ ["id"] = 30030,
+ ["name"] = "Rampage",
+ ["rank"] = 2,
+ ["cost"] = 3100,
+ ["texture"] = "Interface/ICONS/ability_warrior_rampage",
+ ["talent"] = true
+ },
+ [5] = {
+ ["id"] = 23925,
+ ["name"] = "Shield Slam",
+ ["rank"] = 4,
+ ["cost"] = 3100,
+ ["texture"] = "Interface/ICONS/inv_shield_05",
+ ["talent"] = true
+ },
+ [6] = {
+ ["id"] = 25289,
+ ["name"] = "Battle Shout",
+ ["rank"] = 7,
+ ["cost"] = 65000,
+ ["texture"] = "Interface/ICONS/ability_warrior_battleshout"
+ },
+ [7] = {
+ ["id"] = 20569,
+ ["name"] = "Cleave",
+ ["rank"] = 5,
+ ["cost"] = 62000,
+ ["texture"] = "Interface/ICONS/ability_warrior_cleave"
+ },
+ [8] = {
+ ["id"] = 25286,
+ ["name"] = "Heroic Strike",
+ ["rank"] = 9,
+ ["cost"] = 60000,
+ ["texture"] = "Interface/ICONS/ability_rogue_ambush"
+ },
+ [9] = {
+ ["id"] = 11585,
["name"] = "Overpower",
["rank"] = 4,
["cost"] = 62000,
- ["texture"] = "Interface/ICONS/ability_meleedamage",
- ["id"] = 11585
+ ["texture"] = "Interface/ICONS/ability_meleedamage"
},
- [3] = {
+ [10] = {
+ ["id"] = 11574,
["name"] = "Rend",
["rank"] = 7,
["cost"] = 62000,
- ["texture"] = "Interface/ICONS/ability_gouge",
- ["id"] = 11574
+ ["texture"] = "Interface/ICONS/ability_gouge"
},
- [4] = {
- ["name"] = "Bloodthirst",
+ [11] = {
+ ["id"] = 25288,
+ ["name"] = "Revenge",
+ ["rank"] = 6,
+ ["cost"] = 56000,
+ ["texture"] = "Interface/ICONS/ability_warrior_revenge"
+ },
+ },
+ [61] = {
+ [1] = {
+ ["id"] = 25272,
+ ["name"] = "Intercept",
["rank"] = 4,
- ["cost"] = 3100,
+ ["cost"] = 65000,
+ ["texture"] = "Interface/ICONS/ability_rogue_sprint"
+ },
+ [2] = {
+ ["id"] = 25241,
+ ["name"] = "Slam",
+ ["rank"] = 5,
+ ["cost"] = 65000,
+ ["texture"] = "Interface/ICONS/ability_warrior_decisivestrike"
+ },
+ },
+ [62] = {
+ [1] = {
+ ["id"] = 25202,
+ ["name"] = "Demoralizing Shout",
+ ["rank"] = 6,
+ ["cost"] = 65000,
+ ["texture"] = "Interface/ICONS/ability_warrior_warcry"
+ },
+ [2] = {
+ ["id"] = 34428,
+ ["name"] = "Victory Rush",
+ ["rank"] = 1,
+ ["cost"] = 58000,
+ ["texture"] = "Interface/ICONS/ability_warrior_devastate"
+ },
+ },
+ [63] = {
+ [1] = {
+ ["id"] = 25269,
+ ["name"] = "Revenge",
+ ["rank"] = 7,
+ ["cost"] = 65000,
+ ["texture"] = "Interface/ICONS/ability_warrior_revenge"
+ },
+ },
+ [64] = {
+ [1] = {
+ ["id"] = 29704,
+ ["name"] = "Shield Bash",
+ ["rank"] = 4,
+ ["cost"] = 60000,
+ ["texture"] = "Interface/ICONS/ability_warrior_shieldbash"
+ },
+ [2] = {
+ ["id"] = 23920,
+ ["name"] = "Spell Reflection",
+ ["rank"] = 0,
+ ["cost"] = 65000,
+ ["texture"] = "Interface/ICONS/ability_warrior_shieldreflection"
+ },
+ },
+ [65] = {
+ [1] = {
+ ["id"] = 25234,
+ ["name"] = "Execute",
+ ["rank"] = 6,
+ ["cost"] = 65000,
+ ["texture"] = "Interface/ICONS/inv_sword_48"
+ },
+ [2] = {
+ ["id"] = 25266,
+ ["name"] = "Mocking Blow",
+ ["rank"] = 6,
+ ["cost"] = 65000,
+ ["texture"] = "Interface/ICONS/ability_warrior_punishingblow"
+ },
+ },
+ [66] = {
+ [1] = {
+ ["id"] = 25251,
+ ["name"] = "Bloodthirst",
+ ["rank"] = 5,
+ ["cost"] = 3250,
["texture"] = "Interface/ICONS/spell_nature_bloodlust",
- ["id"] = 23894,
["talent"] = true
},
- [5] = {
- ["name"] = "Cleave",
+ [2] = {
+ ["id"] = 25248,
+ ["name"] = "Mortal Strike",
["rank"] = 5,
- ["cost"] = 62000,
- ["texture"] = "Interface/ICONS/ability_warrior_cleave",
- ["id"] = 20569
+ ["cost"] = 3250,
+ ["texture"] = "Interface/ICONS/ability_warrior_savageblow",
+ ["talent"] = true
},
- [6] = {
+ [3] = {
+ ["id"] = 25258,
["name"] = "Shield Slam",
+ ["rank"] = 5,
+ ["cost"] = 3250,
+ ["texture"] = "Interface/ICONS/inv_shield_05",
+ ["talent"] = true
+ },
+ [4] = {
+ ["id"] = 29707,
+ ["name"] = "Heroic Strike",
+ ["rank"] = 10,
+ ["cost"] = 65000,
+ ["texture"] = "Interface/ICONS/ability_rogue_ambush"
+ },
+ },
+ [67] = {
+ [1] = {
+ ["id"] = 25212,
+ ["name"] = "Hamstring",
["rank"] = 4,
- ["cost"] = 3100,
+ ["cost"] = 65000,
+ ["texture"] = "Interface/ICONS/ability_shockwave"
+ },
+ [2] = {
+ ["id"] = 25225,
+ ["name"] = "Sunder Armor",
+ ["rank"] = 6,
+ ["cost"] = 65000,
+ ["texture"] = "Interface/ICONS/ability_warrior_sunder"
+ },
+ [3] = {
+ ["id"] = 25264,
+ ["name"] = "Thunder Clap",
+ ["rank"] = 7,
+ ["cost"] = 65000,
+ ["texture"] = "Interface/ICONS/spell_nature_thunderclap"
+ },
+ },
+ [68] = {
+ [1] = {
+ ["id"] = 25231,
+ ["name"] = "Cleave",
+ ["rank"] = 6,
+ ["cost"] = 65000,
+ ["texture"] = "Interface/ICONS/ability_warrior_cleave"
+ },
+ [2] = {
+ ["id"] = 469,
+ ["name"] = "Commanding Shout",
+ ["rank"] = 1,
+ ["cost"] = 65000,
+ ["texture"] = "Interface/ICONS/ability_warrior_rallyingcry"
+ },
+ [3] = {
+ ["id"] = 25208,
+ ["name"] = "Rend",
+ ["rank"] = 8,
+ ["cost"] = 65000,
+ ["texture"] = "Interface/ICONS/ability_gouge"
+ },
+ },
+ [69] = {
+ [1] = {
+ ["id"] = 2048,
+ ["name"] = "Battle Shout",
+ ["rank"] = 8,
+ ["cost"] = 65000,
+ ["texture"] = "Interface/ICONS/ability_warrior_battleshout"
+ },
+ [2] = {
+ ["id"] = 25275,
+ ["name"] = "Intercept",
+ ["rank"] = 5,
+ ["cost"] = 65000,
+ ["texture"] = "Interface/ICONS/ability_rogue_sprint"
+ },
+ [3] = {
+ ["id"] = 25242,
+ ["name"] = "Slam",
+ ["rank"] = 6,
+ ["cost"] = 65000,
+ ["texture"] = "Interface/ICONS/ability_warrior_decisivestrike"
+ },
+ },
+ [70] = {
+ [1] = {
+ ["id"] = 30335,
+ ["name"] = "Bloodthirst",
+ ["rank"] = 6,
+ ["cost"] = 3250,
+ ["texture"] = "Interface/ICONS/spell_nature_bloodlust",
+ ["talent"] = true
+ },
+ [2] = {
+ ["id"] = 30022,
+ ["name"] = "Devastate",
+ ["rank"] = 3,
+ ["cost"] = 3250,
+ ["texture"] = "Interface/ICONS/inv_sword_11",
+ ["talent"] = true
+ },
+ [3] = {
+ ["id"] = 30330,
+ ["name"] = "Mortal Strike",
+ ["rank"] = 6,
+ ["cost"] = 3250,
+ ["texture"] = "Interface/ICONS/ability_warrior_savageblow",
+ ["talent"] = true
+ },
+ [4] = {
+ ["id"] = 30033,
+ ["name"] = "Rampage",
+ ["rank"] = 3,
+ ["cost"] = 3250,
+ ["texture"] = "Interface/ICONS/ability_warrior_rampage",
+ ["talent"] = true
+ },
+ [5] = {
+ ["id"] = 30356,
+ ["name"] = "Shield Slam",
+ ["rank"] = 6,
+ ["cost"] = 3250,
["texture"] = "Interface/ICONS/inv_shield_05",
- ["id"] = 23925,
["talent"] = true
},
+ [6] = {
+ ["id"] = 25203,
+ ["name"] = "Demoralizing Shout",
+ ["rank"] = 7,
+ ["cost"] = 65000,
+ ["texture"] = "Interface/ICONS/ability_warrior_warcry"
+ },
+ [7] = {
+ ["id"] = 25236,
+ ["name"] = "Execute",
+ ["rank"] = 7,
+ ["cost"] = 65000,
+ ["texture"] = "Interface/ICONS/inv_sword_48"
+ },
+ [8] = {
+ ["id"] = 30324,
+ ["name"] = "Heroic Strike",
+ ["rank"] = 11,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_rogue_ambush"
+ },
+ [9] = {
+ ["id"] = 3411,
+ ["name"] = "Intervene",
+ ["rank"] = 0,
+ ["cost"] = 65000,
+ ["texture"] = "Interface/ICONS/ability_warrior_victoryrush"
+ },
+ [10] = {
+ ["id"] = 30357,
+ ["name"] = "Revenge",
+ ["rank"] = 8,
+ ["cost"] = 65000,
+ ["texture"] = "Interface/ICONS/ability_warrior_revenge"
+ },
},
}
diff --git a/Database/professions/Alchemy.lua b/Database/professions/Alchemy.lua
new file mode 100644
index 0000000..95117e5
--- /dev/null
+++ b/Database/professions/Alchemy.lua
@@ -0,0 +1,1646 @@
+local _, FieldGuide = ...
+
+FieldGuide.ALCHEMY = {
+ [1] = {
+ [1] = {
+ ["id"] = 2259,
+ ["name"] = "Alchemy (Apprentice)",
+ ["rank"] = 0,
+ ["cost"] = 10,
+ ["texture"] = "Interface/ICONS/trade_alchemy",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 28672,
+ ["name"] = "Transmutation Master",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_relics_totemoflife",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 28675,
+ ["name"] = "Potion Master",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_relics_totemoflife",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 28677,
+ ["name"] = "Elixir Master",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_relics_totemoflife",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 2329,
+ ["name"] = "Elixir of Lion's Strength",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_56",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 2330,
+ ["name"] = "Minor Healing Potion",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_49",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 7183,
+ ["name"] = "Elixir of Minor Defense",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_63",
+ ["phase"] = 1
+ },
+ },
+ [15] = {
+ [1] = {
+ ["id"] = 3170,
+ ["name"] = "Weak Troll's Blood Potion",
+ ["rank"] = 0,
+ ["cost"] = 50,
+ ["texture"] = "Interface/ICONS/inv_potion_77",
+ ["phase"] = 1
+ },
+ },
+ [25] = {
+ [1] = {
+ ["id"] = 2331,
+ ["name"] = "Minor Mana Potion",
+ ["rank"] = 0,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/inv_potion_70",
+ ["phase"] = 1
+ },
+ },
+ [40] = {
+ [1] = {
+ ["id"] = 2332,
+ ["name"] = "Minor Rejuvenation Potion",
+ ["rank"] = 0,
+ ["cost"] = 150,
+ ["texture"] = "Interface/ICONS/inv_potion_02",
+ ["phase"] = 1
+ },
+ },
+ [50] = {
+ [1] = {
+ ["id"] = 2334,
+ ["name"] = "Elixir of Minor Fortitude",
+ ["rank"] = 0,
+ ["cost"] = 250,
+ ["texture"] = "Interface/ICONS/inv_potion_42",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 3101,
+ ["name"] = "Alchemy (Journeyman)",
+ ["rank"] = 0,
+ ["cost"] = 500,
+ ["texture"] = "Interface/ICONS/trade_alchemy",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 3230,
+ ["name"] = "Elixir of Minor Agility",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_91",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 4508,
+ ["name"] = "Discolored Healing Potion",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_35",
+ ["phase"] = 1
+ },
+ },
+ [55] = {
+ [1] = {
+ ["id"] = 2337,
+ ["name"] = "Lesser Healing Potion",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_potion_50",
+ ["phase"] = 1
+ },
+ },
+ [60] = {
+ [1] = {
+ ["id"] = 2335,
+ ["name"] = "Swiftness Potion",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_95",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 6617,
+ ["name"] = "Rage Potion",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_24",
+ ["phase"] = 1
+ },
+ },
+ [80] = {
+ [1] = {
+ ["id"] = 7836,
+ ["name"] = "Blackmouth Oil",
+ ["rank"] = 0,
+ ["cost"] = 250,
+ ["texture"] = "Interface/ICONS/inv_drink_12",
+ ["phase"] = 1
+ },
+ },
+ [90] = {
+ [1] = {
+ ["id"] = 3171,
+ ["name"] = "Elixir of Wisdom",
+ ["rank"] = 0,
+ ["cost"] = 500,
+ ["texture"] = "Interface/ICONS/inv_potion_06",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 7179,
+ ["name"] = "Elixir of Water Breathing",
+ ["rank"] = 0,
+ ["cost"] = 450,
+ ["texture"] = "Interface/ICONS/inv_potion_17",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 8240,
+ ["name"] = "Elixir of Giant Growth",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_10",
+ ["phase"] = 1
+ },
+ },
+ [100] = {
+ [1] = {
+ ["id"] = 7255,
+ ["name"] = "Holy Protection Potion",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_09",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 7841,
+ ["name"] = "Swim Speed Potion",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_potion_13",
+ ["phase"] = 1
+ },
+ },
+ [110] = {
+ [1] = {
+ ["id"] = 3172,
+ ["name"] = "Minor Magic Resistance Potion",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_08",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 3447,
+ ["name"] = "Healing Potion",
+ ["rank"] = 0,
+ ["cost"] = 4000,
+ ["texture"] = "Interface/ICONS/inv_potion_51",
+ ["phase"] = 1
+ },
+ },
+ [120] = {
+ [1] = {
+ ["id"] = 3173,
+ ["name"] = "Lesser Mana Potion",
+ ["rank"] = 0,
+ ["cost"] = 1500,
+ ["texture"] = "Interface/ICONS/inv_potion_71",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 3174,
+ ["name"] = "Potion of Curing",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_12",
+ ["phase"] = 1
+ },
+ },
+ [125] = {
+ [1] = {
+ ["id"] = 3176,
+ ["name"] = "Strong Troll's Blood Potion",
+ ["rank"] = 0,
+ ["cost"] = 1500,
+ ["texture"] = "Interface/ICONS/inv_potion_78",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 3464,
+ ["name"] = "Alchemy (Expert)",
+ ["rank"] = 0,
+ ["cost"] = 5000,
+ ["texture"] = "Interface/ICONS/trade_alchemy",
+ ["phase"] = 1
+ },
+ },
+ [130] = {
+ [1] = {
+ ["id"] = 3177,
+ ["name"] = "Elixir of Defense",
+ ["rank"] = 0,
+ ["cost"] = 2000,
+ ["texture"] = "Interface/ICONS/inv_potion_64",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 7837,
+ ["name"] = "Fire Oil",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_potion_38",
+ ["phase"] = 1
+ },
+ },
+ [135] = {
+ [1] = {
+ ["id"] = 7256,
+ ["name"] = "Shadow Protection Potion",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_44",
+ ["phase"] = 1
+ },
+ },
+ [140] = {
+ [1] = {
+ ["id"] = 2333,
+ ["name"] = "Elixir of Lesser Agility",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_92",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 7845,
+ ["name"] = "Elixir of Firepower",
+ ["rank"] = 0,
+ ["cost"] = 3000,
+ ["texture"] = "Interface/ICONS/inv_potion_33",
+ ["phase"] = 1
+ },
+ },
+ [150] = {
+ [1] = {
+ ["id"] = 3188,
+ ["name"] = "Elixir of Ogre's Strength",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_57",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 6624,
+ ["name"] = "Free Action Potion",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_04",
+ ["phase"] = 1
+ },
+ },
+ [155] = {
+ [1] = {
+ ["id"] = 7181,
+ ["name"] = "Greater Healing Potion",
+ ["rank"] = 0,
+ ["cost"] = 5000,
+ ["texture"] = "Interface/ICONS/inv_potion_52",
+ ["phase"] = 1
+ },
+ },
+ [160] = {
+ [1] = {
+ ["id"] = 3452,
+ ["name"] = "Mana Potion",
+ ["rank"] = 0,
+ ["cost"] = 5000,
+ ["texture"] = "Interface/ICONS/inv_potion_72",
+ ["phase"] = 1
+ },
+ },
+ [165] = {
+ [1] = {
+ ["id"] = 7257,
+ ["name"] = "Fire Protection Potion",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_16",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 3449,
+ ["name"] = "Shadow Oil",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_23",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 3448,
+ ["name"] = "Lesser Invisibility Potion",
+ ["rank"] = 0,
+ ["cost"] = 5000,
+ ["texture"] = "Interface/ICONS/inv_potion_18",
+ ["phase"] = 1
+ },
+ },
+ [175] = {
+ [1] = {
+ ["id"] = 3450,
+ ["name"] = "Elixir of Fortitude",
+ ["rank"] = 0,
+ ["cost"] = 6000,
+ ["texture"] = "Interface/ICONS/inv_potion_43",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 6618,
+ ["name"] = "Great Rage Potion",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_21",
+ ["phase"] = 1
+ },
+ },
+ [180] = {
+ [1] = {
+ ["id"] = 3451,
+ ["name"] = "Mighty Troll's Blood Potion",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_79",
+ ["phase"] = 1
+ },
+ },
+ [185] = {
+ [1] = {
+ ["id"] = 11449,
+ ["name"] = "Elixir of Agility",
+ ["rank"] = 0,
+ ["cost"] = 6500,
+ ["texture"] = "Interface/ICONS/inv_potion_93",
+ ["phase"] = 1
+ },
+ },
+ [190] = {
+ [1] = {
+ ["id"] = 7259,
+ ["name"] = "Nature Protection Potion",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_06",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 21923,
+ ["name"] = "Elixir of Frost Power",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_03",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 7258,
+ ["name"] = "Frost Protection Potion",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_13",
+ ["phase"] = 1
+ },
+ },
+ [195] = {
+ [1] = {
+ ["id"] = 3453,
+ ["name"] = "Elixir of Detect Lesser Invisibility",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_01",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 11450,
+ ["name"] = "Elixir of Greater Defense",
+ ["rank"] = 0,
+ ["cost"] = 7500,
+ ["texture"] = "Interface/ICONS/inv_potion_65",
+ ["phase"] = 1
+ },
+ },
+ [200] = {
+ [1] = {
+ ["id"] = 3454,
+ ["name"] = "Frost Oil",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_20",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 12609,
+ ["name"] = "Catseye Elixir",
+ ["rank"] = 0,
+ ["cost"] = 8000,
+ ["texture"] = "Interface/ICONS/inv_potion_36",
+ ["phase"] = 1
+ },
+ },
+ [205] = {
+ [1] = {
+ ["id"] = 11448,
+ ["name"] = "Greater Mana Potion",
+ ["rank"] = 0,
+ ["cost"] = 9000,
+ ["texture"] = "Interface/ICONS/inv_potion_73",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 11451,
+ ["name"] = "Oil of Immolation",
+ ["rank"] = 0,
+ ["cost"] = 8000,
+ ["texture"] = "Interface/ICONS/inv_potion_11",
+ ["phase"] = 1
+ },
+ },
+ [210] = {
+ [1] = {
+ ["id"] = 11453,
+ ["name"] = "Magic Resistance Potion",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_16",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 11456,
+ ["name"] = "Goblin Rocket Fuel",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_cask_02",
+ ["phase"] = 1
+ },
+ },
+ [215] = {
+ [1] = {
+ ["id"] = 4942,
+ ["name"] = "Lesser Stoneshield Potion",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_67",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 11457,
+ ["name"] = "Superior Healing Potion",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_potion_53",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 22808,
+ ["name"] = "Elixir of Greater Water Breathing",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_potion_05",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 11452,
+ ["name"] = "Restorative Potion",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_01",
+ ["phase"] = 1
+ },
+ },
+ [225] = {
+ [1] = {
+ ["id"] = 11458,
+ ["name"] = "Wildvine Potion",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_34",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 11459,
+ ["name"] = "Philosopher's Stone",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_orb_01",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 11479,
+ ["name"] = "Transmute: Iron to Gold",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_ingot_03",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 11480,
+ ["name"] = "Transmute: Mithril to Truesilver",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_ingot_08",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 11611,
+ ["name"] = "Alchemy (Artisan)",
+ ["rank"] = 0,
+ ["cost"] = 50000,
+ ["texture"] = "Interface/ICONS/trade_alchemy",
+ ["phase"] = 1
+ },
+ },
+ [230] = {
+ [1] = {
+ ["id"] = 11460,
+ ["name"] = "Elixir of Detect Undead",
+ ["rank"] = 0,
+ ["cost"] = 5000,
+ ["texture"] = "Interface/ICONS/inv_potion_53",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 15833,
+ ["name"] = "Dreamless Sleep Potion",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_potion_83",
+ ["phase"] = 1
+ },
+ },
+ [235] = {
+ [1] = {
+ ["id"] = 11461,
+ ["name"] = "Arcane Elixir",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_potion_30",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 11464,
+ ["name"] = "Invisibility Potion",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_25",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 11465,
+ ["name"] = "Elixir of Greater Intellect",
+ ["rank"] = 0,
+ ["cost"] = 12000,
+ ["texture"] = "Interface/ICONS/inv_potion_10",
+ ["phase"] = 1
+ },
+ },
+ [240] = {
+ [1] = {
+ ["id"] = 11466,
+ ["name"] = "Gift of Arthas",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_28",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 11467,
+ ["name"] = "Elixir of Greater Agility",
+ ["rank"] = 0,
+ ["cost"] = 12000,
+ ["texture"] = "Interface/ICONS/inv_potion_94",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 11468,
+ ["name"] = "Elixir of Dream Vision",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_14",
+ ["phase"] = 1
+ },
+ },
+ [245] = {
+ [1] = {
+ ["id"] = 11472,
+ ["name"] = "Elixir of Giants",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_61",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 11473,
+ ["name"] = "Ghost Dye",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_poison_mindnumbing",
+ ["phase"] = 1
+ },
+ },
+ [250] = {
+ [1] = {
+ ["id"] = 3175,
+ ["name"] = "Limited Invulnerability Potion",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_62",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 11476,
+ ["name"] = "Elixir of Shadow Power",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_46",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 11477,
+ ["name"] = "Elixir of Demonslaying",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_27",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 11478,
+ ["name"] = "Elixir of Detect Demon",
+ ["rank"] = 0,
+ ["cost"] = 14000,
+ ["texture"] = "Interface/ICONS/inv_potion_53",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 26277,
+ ["name"] = "Elixir of Greater Firepower",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_60",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 17551,
+ ["name"] = "Stonescale Oil",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/inv_potion_68",
+ ["phase"] = 1
+ },
+ },
+ [255] = {
+ [1] = {
+ ["id"] = 17552,
+ ["name"] = "Mighty Rage Potion",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/inv_potion_41",
+ ["phase"] = 1
+ },
+ },
+ [260] = {
+ [1] = {
+ ["id"] = 17553,
+ ["name"] = "Superior Mana Potion",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/inv_potion_74",
+ ["phase"] = 1
+ },
+ },
+ [265] = {
+ [1] = {
+ ["id"] = 17554,
+ ["name"] = "Elixir of Superior Defense",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_66",
+ ["phase"] = 1
+ },
+ },
+ [270] = {
+ [1] = {
+ ["id"] = 17555,
+ ["name"] = "Elixir of the Sages",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/inv_potion_29",
+ ["phase"] = 1
+ },
+ },
+ [275] = {
+ [1] = {
+ ["id"] = 17556,
+ ["name"] = "Major Healing Potion",
+ ["rank"] = 0,
+ ["cost"] = 20000,
+ ["texture"] = "Interface/ICONS/inv_potion_54",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 17557,
+ ["name"] = "Elixir of Brute Force",
+ ["rank"] = 0,
+ ["cost"] = 20000,
+ ["texture"] = "Interface/ICONS/inv_potion_59",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 24365,
+ ["name"] = "Mageblood Potion",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_45",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 24366,
+ ["name"] = "Greater Dreamless Sleep Potion",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_83",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 17187,
+ ["name"] = "Transmute: Arcanite",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_stonetablet_05",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 17559,
+ ["name"] = "Transmute: Air to Fire",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_fire_volcano",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 17560,
+ ["name"] = "Transmute: Fire to Earth",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_strengthofearthtotem02",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 17561,
+ ["name"] = "Transmute: Earth to Water",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_acid_01",
+ ["phase"] = 1
+ },
+ [9] = {
+ ["id"] = 17562,
+ ["name"] = "Transmute: Water to Air",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_earthbind",
+ ["phase"] = 1
+ },
+ [10] = {
+ ["id"] = 17563,
+ ["name"] = "Transmute: Undeath to Water",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_acid_01",
+ ["phase"] = 1
+ },
+ [11] = {
+ ["id"] = 17564,
+ ["name"] = "Transmute: Water to Undeath",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_shadetruesight",
+ ["phase"] = 1
+ },
+ [12] = {
+ ["id"] = 17565,
+ ["name"] = "Transmute: Life to Earth",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_strengthofearthtotem02",
+ ["phase"] = 1
+ },
+ [13] = {
+ ["id"] = 17566,
+ ["name"] = "Transmute: Earth to Life",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_abolishmagic",
+ ["phase"] = 1
+ },
+ [14] = {
+ ["id"] = 28596,
+ ["name"] = "Alchemy (Master)",
+ ["rank"] = 0,
+ ["cost"] = 100000,
+ ["texture"] = "Interface/ICONS/trade_alchemy",
+ ["phase"] = 1
+ },
+ },
+ [280] = {
+ [1] = {
+ ["id"] = 17570,
+ ["name"] = "Greater Stoneshield Potion",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_69",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 17571,
+ ["name"] = "Elixir of the Mongoose",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_32",
+ ["phase"] = 1
+ },
+ },
+ [285] = {
+ [1] = {
+ ["id"] = 17572,
+ ["name"] = "Purification Potion",
+ ["rank"] = 0,
+ ["cost"] = 20000,
+ ["texture"] = "Interface/ICONS/inv_potion_31",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 17573,
+ ["name"] = "Greater Arcane Elixir",
+ ["rank"] = 0,
+ ["cost"] = 20000,
+ ["texture"] = "Interface/ICONS/inv_potion_25",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 24367,
+ ["name"] = "Living Action Potion",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_07",
+ ["phase"] = 1
+ },
+ },
+ [290] = {
+ [1] = {
+ ["id"] = 17574,
+ ["name"] = "Greater Fire Protection Potion",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_24",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 17575,
+ ["name"] = "Greater Frost Protection Potion",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_20",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 17576,
+ ["name"] = "Greater Nature Protection Potion",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_22",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 17577,
+ ["name"] = "Greater Arcane Protection Potion",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_83",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 17578,
+ ["name"] = "Greater Shadow Protection Potion",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_23",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 24368,
+ ["name"] = "Major Troll's Blood Potion",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_80",
+ ["phase"] = 1
+ },
+ },
+ [295] = {
+ [1] = {
+ ["id"] = 17580,
+ ["name"] = "Major Mana Potion",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_76",
+ ["phase"] = 1
+ },
+ },
+ [300] = {
+ [1] = {
+ ["id"] = 17632,
+ ["name"] = "Alchemist's Stone",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_pureofheart",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 17634,
+ ["name"] = "Flask of Petrification",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_26",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 17635,
+ ["name"] = "Flask of the Titans",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_62",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 17636,
+ ["name"] = "Flask of Distilled Wisdom",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_97",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 17637,
+ ["name"] = "Flask of Supreme Power",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_41",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 17638,
+ ["name"] = "Flask of Chromatic Resistance",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_48",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 33732,
+ ["name"] = "Volatile Healing Potion",
+ ["rank"] = 0,
+ ["cost"] = 20000,
+ ["texture"] = "Interface/ICONS/inv_potion_40",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 33738,
+ ["name"] = "Onslaught Elixir",
+ ["rank"] = 0,
+ ["cost"] = 20000,
+ ["texture"] = "Interface/ICONS/inv_potion_58",
+ ["phase"] = 1
+ },
+ [9] = {
+ ["id"] = 33740,
+ ["name"] = "Adept's Elixir",
+ ["rank"] = 0,
+ ["cost"] = 20000,
+ ["texture"] = "Interface/ICONS/inv_potion_96",
+ ["phase"] = 1
+ },
+ [10] = {
+ ["id"] = 22732,
+ ["name"] = "Major Rejuvenation Potion",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_47",
+ ["phase"] = 1
+ },
+ [11] = {
+ ["id"] = 25146,
+ ["name"] = "Transmute: Elemental Fire",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_fire_fire",
+ ["phase"] = 1
+ },
+ },
+ [305] = {
+ [1] = {
+ ["id"] = 28543,
+ ["name"] = "Elixir of Camouflage",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_150",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 28544,
+ ["name"] = "Elixir of Major Strength",
+ ["rank"] = 0,
+ ["cost"] = 25000,
+ ["texture"] = "Interface/ICONS/inv_potion_147",
+ ["phase"] = 1
+ },
+ },
+ [310] = {
+ [1] = {
+ ["id"] = 28545,
+ ["name"] = "Elixir of Healing Power",
+ ["rank"] = 0,
+ ["cost"] = 25000,
+ ["texture"] = "Interface/ICONS/inv_potion_142",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 33733,
+ ["name"] = "Unstable Mana Potion",
+ ["rank"] = 0,
+ ["cost"] = 25000,
+ ["texture"] = "Interface/ICONS/inv_potion_75",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 39636,
+ ["name"] = "Elixir of Major Fortitude",
+ ["rank"] = 0,
+ ["cost"] = 25000,
+ ["texture"] = "Interface/ICONS/inv_potion_158",
+ ["phase"] = 1
+ },
+ },
+ [315] = {
+ [1] = {
+ ["id"] = 28546,
+ ["name"] = "Sneaking Potion",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_110",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 33741,
+ ["name"] = "Elixir of Mastery",
+ ["rank"] = 0,
+ ["cost"] = 30000,
+ ["texture"] = "Interface/ICONS/inv_potion_111",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 24266,
+ ["name"] = "Gurubashi Mojo Madness",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_poison_mindnumbing",
+ ["phase"] = 1
+ },
+ },
+ [320] = {
+ [1] = {
+ ["id"] = 28549,
+ ["name"] = "Elixir of Major Frost Power",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_148",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 28550,
+ ["name"] = "Insane Strength Potion",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_109",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 39637,
+ ["name"] = "Earthen Elixir",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_154",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 39638,
+ ["name"] = "Elixir of Draenic Wisdom",
+ ["rank"] = 0,
+ ["cost"] = 30000,
+ ["texture"] = "Interface/ICONS/inv_potion_155",
+ ["phase"] = 1
+ },
+ },
+ [325] = {
+ [1] = {
+ ["id"] = 28551,
+ ["name"] = "Super Healing Potion",
+ ["rank"] = 0,
+ ["cost"] = 50000,
+ ["texture"] = "Interface/ICONS/inv_potion_131",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 28552,
+ ["name"] = "Elixir of the Searching Eye",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_135",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 38070,
+ ["name"] = "Mercurial Stone",
+ ["rank"] = 0,
+ ["cost"] = 20000,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_lionseye_01",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 45061,
+ ["name"] = "Mad Alchemist's Potion",
+ ["rank"] = 0,
+ ["cost"] = 35000,
+ ["texture"] = "Interface/ICONS/inv_potion_28",
+ ["phase"] = 1
+ },
+ },
+ [330] = {
+ [1] = {
+ ["id"] = 28553,
+ ["name"] = "Elixir of Major Agility",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_127",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 39639,
+ ["name"] = "Elixir of Ironskin",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_159",
+ ["phase"] = 1
+ },
+ },
+ [335] = {
+ [1] = {
+ ["id"] = 28554,
+ ["name"] = "Shrouding Potion",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_144",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 38960,
+ ["name"] = "Fel Strength Elixir",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_152",
+ ["phase"] = 1
+ },
+ },
+ [340] = {
+ [1] = {
+ ["id"] = 28555,
+ ["name"] = "Super Mana Potion",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_137",
+ ["phase"] = 1
+ },
+ },
+ [345] = {
+ [1] = {
+ ["id"] = 28556,
+ ["name"] = "Elixir of Major Firepower",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_146",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 28557,
+ ["name"] = "Elixir of Major Defense",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_122",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 38962,
+ ["name"] = "Fel Regeneration Potion",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_140",
+ ["phase"] = 1
+ },
+ },
+ [350] = {
+ [1] = {
+ ["id"] = 28558,
+ ["name"] = "Elixir of Major Shadow Power",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_145",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 28562,
+ ["name"] = "Major Dreamless Sleep Potion",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_139",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 28563,
+ ["name"] = "Heroic Potion",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_106",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 28564,
+ ["name"] = "Haste Potion",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_108",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 28565,
+ ["name"] = "Destruction Potion",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_107",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 28566,
+ ["name"] = "Transmute: Primal Air to Fire",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_elemental_primal_fire",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 28567,
+ ["name"] = "Transmute: Primal Earth to Water",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_elemental_primal_water",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 28568,
+ ["name"] = "Transmute: Primal Fire to Earth",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_elemental_primal_earth",
+ ["phase"] = 1
+ },
+ [9] = {
+ ["id"] = 28569,
+ ["name"] = "Transmute: Primal Water to Air",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_elemental_primal_air",
+ ["phase"] = 1
+ },
+ [10] = {
+ ["id"] = 29688,
+ ["name"] = "Transmute: Primal Might",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_lightningoverload",
+ ["phase"] = 1
+ },
+ [11] = {
+ ["id"] = 32765,
+ ["name"] = "Transmute: Earthstorm Diamond",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_diamond_04",
+ ["phase"] = 1
+ },
+ [12] = {
+ ["id"] = 32766,
+ ["name"] = "Transmute: Skyfire Diamond",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_diamond_05",
+ ["phase"] = 1
+ },
+ },
+ [355] = {
+ [1] = {
+ ["id"] = 28570,
+ ["name"] = "Elixir of Major Mageblood",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_151",
+ ["phase"] = 1
+ },
+ },
+ [360] = {
+ [1] = {
+ ["id"] = 28571,
+ ["name"] = "Major Fire Protection Potion",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_124",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 28572,
+ ["name"] = "Major Frost Protection Potion",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_126",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 28573,
+ ["name"] = "Major Nature Protection Potion",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_127",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 28575,
+ ["name"] = "Major Arcane Protection Potion",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_128",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 28576,
+ ["name"] = "Major Shadow Protection Potion",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_123",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 28577,
+ ["name"] = "Major Holy Protection Potion",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_125",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 38961,
+ ["name"] = "Fel Mana Potion",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_138",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 41458,
+ ["name"] = "Cauldron of Major Arcane Protection",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_cauldron_arcane",
+ ["phase"] = 1
+ },
+ [9] = {
+ ["id"] = 41500,
+ ["name"] = "Cauldron of Major Fire Protection",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_cauldron_fire",
+ ["phase"] = 1
+ },
+ [10] = {
+ ["id"] = 41501,
+ ["name"] = "Cauldron of Major Frost Protection",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_cauldron_frost",
+ ["phase"] = 1
+ },
+ [11] = {
+ ["id"] = 41502,
+ ["name"] = "Cauldron of Major Nature Protection",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_cauldron_nature",
+ ["phase"] = 1
+ },
+ [12] = {
+ ["id"] = 41503,
+ ["name"] = "Cauldron of Major Shadow Protection",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_cauldron_shadow",
+ ["phase"] = 1
+ },
+ },
+ [365] = {
+ [1] = {
+ ["id"] = 28578,
+ ["name"] = "Elixir of Empowerment",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_136",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 28579,
+ ["name"] = "Ironshield Potion",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_133",
+ ["phase"] = 1
+ },
+ },
+ [375] = {
+ [1] = {
+ ["id"] = 42736,
+ ["name"] = "Flask of Chromatic Wonder",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_48",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 47046,
+ ["name"] = "Guardian's Alchemist Stone",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_healingway",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 47048,
+ ["name"] = "Sorcerer's Alchemist Stone",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_healingway",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 47049,
+ ["name"] = "Redeemer's Alchemist Stone",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_healingway",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 47050,
+ ["name"] = "Assassin's Alchemist Stone",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_healingway",
+ ["phase"] = 1
+ },
+ },
+ [385] = {
+ [1] = {
+ ["id"] = 28580,
+ ["name"] = "Transmute: Primal Shadow to Water",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_elemental_primal_water",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 28581,
+ ["name"] = "Transmute: Primal Water to Shadow",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_elemental_primal_shadow",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 28582,
+ ["name"] = "Transmute: Primal Mana to Fire",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_elemental_primal_fire",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 28583,
+ ["name"] = "Transmute: Primal Fire to Mana",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_elemental_primal_mana",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 28584,
+ ["name"] = "Transmute: Primal Life to Earth",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_elemental_primal_earth",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 28585,
+ ["name"] = "Transmute: Primal Earth to Life",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_elemental_primal_life",
+ ["phase"] = 1
+ },
+ },
+ [390] = {
+ [1] = {
+ ["id"] = 28586,
+ ["name"] = "Super Rejuvenation Potion",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_134",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 28587,
+ ["name"] = "Flask of Fortification",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_119",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 28588,
+ ["name"] = "Flask of Mighty Restoration",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_118",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 28589,
+ ["name"] = "Flask of Relentless Assault",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_117",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 28590,
+ ["name"] = "Flask of Blinding Light",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_116",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 28591,
+ ["name"] = "Flask of Pure Death",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_115",
+ ["phase"] = 1
+ },
+ },
+}
diff --git a/Database/professions/Blacksmithing.lua b/Database/professions/Blacksmithing.lua
new file mode 100644
index 0000000..559c972
--- /dev/null
+++ b/Database/professions/Blacksmithing.lua
@@ -0,0 +1,3226 @@
+local _, FieldGuide = ...
+
+FieldGuide.BLACKSMITHING = {
+ [1] = {
+ [1] = {
+ ["id"] = 2018,
+ ["name"] = "Blacksmithing (Apprentice)",
+ ["rank"] = 0,
+ ["cost"] = 10,
+ ["texture"] = "Interface/ICONS/trade_blacksmithing",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 9787,
+ ["name"] = "Weaponsmith",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_sword_25",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 9788,
+ ["name"] = "Armorsmith",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_plate04",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 17039,
+ ["name"] = "Master Swordsmith",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_sword_41",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 17040,
+ ["name"] = "Master Hammersmith",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_hammer_23",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 17041,
+ ["name"] = "Master Axesmith",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_axe_05",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 2662,
+ ["name"] = "Copper Chain Pants",
+ ["rank"] = 0,
+ ["cost"] = 50,
+ ["texture"] = "Interface/ICONS/inv_pants_03",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 2663,
+ ["name"] = "Copper Bracers",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_bracer_03",
+ ["phase"] = 1
+ },
+ [9] = {
+ ["id"] = 2660,
+ ["name"] = "Rough Sharpening Stone",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_stone_sharpeningstone_01",
+ ["phase"] = 1
+ },
+ [10] = {
+ ["id"] = 3115,
+ ["name"] = "Rough Weightstone",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_stone_weightstone_01",
+ ["phase"] = 1
+ },
+ [11] = {
+ ["id"] = 12260,
+ ["name"] = "Rough Copper Vest",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_chain",
+ ["phase"] = 1
+ },
+ },
+ [15] = {
+ [1] = {
+ ["id"] = 2737,
+ ["name"] = "Copper Mace",
+ ["rank"] = 0,
+ ["cost"] = 50,
+ ["texture"] = "Interface/ICONS/inv_mace_01",
+ ["phase"] = 1
+ },
+ },
+ [20] = {
+ [1] = {
+ ["id"] = 2738,
+ ["name"] = "Copper Axe",
+ ["rank"] = 0,
+ ["cost"] = 50,
+ ["texture"] = "Interface/ICONS/inv_axe_23",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 3319,
+ ["name"] = "Copper Chain Boots",
+ ["rank"] = 0,
+ ["cost"] = 50,
+ ["texture"] = "Interface/ICONS/inv_boots_01",
+ ["phase"] = 1
+ },
+ },
+ [25] = {
+ [1] = {
+ ["id"] = 2739,
+ ["name"] = "Copper Shortsword",
+ ["rank"] = 0,
+ ["cost"] = 50,
+ ["texture"] = "Interface/ICONS/inv_sword_26",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 3320,
+ ["name"] = "Rough Grinding Stone",
+ ["rank"] = 0,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/inv_stone_grindingstone_01",
+ ["phase"] = 1
+ },
+ },
+ [30] = {
+ [1] = {
+ ["id"] = 8880,
+ ["name"] = "Copper Dagger",
+ ["rank"] = 0,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/inv_weapon_shortblade_14",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 9983,
+ ["name"] = "Copper Claymore",
+ ["rank"] = 0,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/inv_sword_21",
+ ["phase"] = 1
+ },
+ },
+ [35] = {
+ [1] = {
+ ["id"] = 2661,
+ ["name"] = "Copper Chain Belt",
+ ["rank"] = 0,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/inv_belt_02",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 3293,
+ ["name"] = "Copper Battle Axe",
+ ["rank"] = 0,
+ ["cost"] = 250,
+ ["texture"] = "Interface/ICONS/inv_throwingaxe_02",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 3321,
+ ["name"] = "Copper Chain Vest",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_chain",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 43549,
+ ["name"] = "Heavy Copper Longsword",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_sword_25",
+ ["phase"] = 1
+ },
+ },
+ [40] = {
+ [1] = {
+ ["id"] = 3323,
+ ["name"] = "Runed Copper Gauntlets",
+ ["rank"] = 0,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_04",
+ ["phase"] = 1
+ },
+ },
+ [45] = {
+ [1] = {
+ ["id"] = 3324,
+ ["name"] = "Runed Copper Pants",
+ ["rank"] = 0,
+ ["cost"] = 200,
+ ["texture"] = "Interface/ICONS/inv_pants_03",
+ ["phase"] = 1
+ },
+ },
+ [50] = {
+ [1] = {
+ ["id"] = 3100,
+ ["name"] = "Blacksmithing (Journeyman)",
+ ["rank"] = 0,
+ ["cost"] = 500,
+ ["texture"] = "Interface/ICONS/trade_blacksmithing",
+ ["phase"] = 1
+ },
+ },
+ [60] = {
+ [1] = {
+ ["id"] = 3325,
+ ["name"] = "Gemmed Copper Gauntlets",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_05",
+ ["phase"] = 1
+ },
+ },
+ [65] = {
+ [1] = {
+ ["id"] = 7408,
+ ["name"] = "Heavy Copper Maul",
+ ["rank"] = 0,
+ ["cost"] = 300,
+ ["texture"] = "Interface/ICONS/inv_hammer_18",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 2665,
+ ["name"] = "Coarse Sharpening Stone",
+ ["rank"] = 0,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/inv_stone_sharpeningstone_02",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 3116,
+ ["name"] = "Coarse Weightstone",
+ ["rank"] = 0,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/inv_stone_weightstone_02",
+ ["phase"] = 1
+ },
+ },
+ [70] = {
+ [1] = {
+ ["id"] = 2666,
+ ["name"] = "Runed Copper Belt",
+ ["rank"] = 0,
+ ["cost"] = 200,
+ ["texture"] = "Interface/ICONS/inv_belt_03",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 3294,
+ ["name"] = "Thick War Axe",
+ ["rank"] = 0,
+ ["cost"] = 500,
+ ["texture"] = "Interface/ICONS/inv_throwingaxe_01",
+ ["phase"] = 1
+ },
+ },
+ [75] = {
+ [1] = {
+ ["id"] = 3326,
+ ["name"] = "Coarse Grinding Stone",
+ ["rank"] = 0,
+ ["cost"] = 250,
+ ["texture"] = "Interface/ICONS/inv_stone_grindingstone_02",
+ ["phase"] = 1
+ },
+ },
+ [80] = {
+ [1] = {
+ ["id"] = 2667,
+ ["name"] = "Runed Copper Breastplate",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_plate03",
+ ["phase"] = 1
+ },
+ },
+ [90] = {
+ [1] = {
+ ["id"] = 2664,
+ ["name"] = "Runed Copper Bracers",
+ ["rank"] = 0,
+ ["cost"] = 500,
+ ["texture"] = "Interface/ICONS/inv_bracer_03",
+ ["phase"] = 1
+ },
+ },
+ [95] = {
+ [1] = {
+ ["id"] = 3292,
+ ["name"] = "Heavy Copper Broadsword",
+ ["rank"] = 0,
+ ["cost"] = 500,
+ ["texture"] = "Interface/ICONS/inv_sword_14",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 7817,
+ ["name"] = "Rough Bronze Boots",
+ ["rank"] = 0,
+ ["cost"] = 200,
+ ["texture"] = "Interface/ICONS/inv_boots_01",
+ ["phase"] = 1
+ },
+ },
+ [100] = {
+ [1] = {
+ ["id"] = 8367,
+ ["name"] = "Ironforge Breastplate",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_plate05",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 34979,
+ ["name"] = "Thick Bronze Darts",
+ ["rank"] = 0,
+ ["cost"] = 600,
+ ["texture"] = "Interface/ICONS/inv_spear_05",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 7818,
+ ["name"] = "Silver Rod",
+ ["rank"] = 0,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/inv_staff_01",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 19666,
+ ["name"] = "Silver Skeleton Key",
+ ["rank"] = 0,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/inv_misc_key_03",
+ ["phase"] = 1
+ },
+ },
+ [105] = {
+ [1] = {
+ ["id"] = 2668,
+ ["name"] = "Rough Bronze Leggings",
+ ["rank"] = 0,
+ ["cost"] = 300,
+ ["texture"] = "Interface/ICONS/inv_pants_03",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 2670,
+ ["name"] = "Rough Bronze Cuirass",
+ ["rank"] = 0,
+ ["cost"] = 500,
+ ["texture"] = "Interface/ICONS/inv_chest_chain_08",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 3491,
+ ["name"] = "Big Bronze Knife",
+ ["rank"] = 0,
+ ["cost"] = 600,
+ ["texture"] = "Interface/ICONS/inv_weapon_shortblade_04",
+ ["phase"] = 1
+ },
+ },
+ [110] = {
+ [1] = {
+ ["id"] = 2740,
+ ["name"] = "Bronze Mace",
+ ["rank"] = 0,
+ ["cost"] = 200,
+ ["texture"] = "Interface/ICONS/inv_mace_08",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 3328,
+ ["name"] = "Rough Bronze Shoulders",
+ ["rank"] = 0,
+ ["cost"] = 500,
+ ["texture"] = "Interface/ICONS/inv_shoulder_05",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 6517,
+ ["name"] = "Pearl-handled Dagger",
+ ["rank"] = 0,
+ ["cost"] = 800,
+ ["texture"] = "Interface/ICONS/inv_weapon_shortblade_05",
+ ["phase"] = 1
+ },
+ },
+ [115] = {
+ [1] = {
+ ["id"] = 2741,
+ ["name"] = "Bronze Axe",
+ ["rank"] = 0,
+ ["cost"] = 200,
+ ["texture"] = "Interface/ICONS/inv_axe_17",
+ ["phase"] = 1
+ },
+ },
+ [120] = {
+ [1] = {
+ ["id"] = 2672,
+ ["name"] = "Patterned Bronze Bracers",
+ ["rank"] = 0,
+ ["cost"] = 500,
+ ["texture"] = "Interface/ICONS/inv_bracer_07",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 2742,
+ ["name"] = "Bronze Shortsword",
+ ["rank"] = 0,
+ ["cost"] = 200,
+ ["texture"] = "Interface/ICONS/inv_sword_04",
+ ["phase"] = 1
+ },
+ },
+ [125] = {
+ [1] = {
+ ["id"] = 3295,
+ ["name"] = "Deadly Bronze Poniard",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_weapon_shortblade_05",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 3330,
+ ["name"] = "Silvered Bronze Shoulders",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shoulder_09",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 9985,
+ ["name"] = "Bronze Warhammer",
+ ["rank"] = 0,
+ ["cost"] = 250,
+ ["texture"] = "Interface/ICONS/inv_hammer_18",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 3337,
+ ["name"] = "Heavy Grinding Stone",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_stone_grindingstone_03",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 2674,
+ ["name"] = "Heavy Sharpening Stone",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_stone_sharpeningstone_03",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 3117,
+ ["name"] = "Heavy Weightstone",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_stone_weightstone_03",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 3538,
+ ["name"] = "Blacksmithing (Expert)",
+ ["rank"] = 0,
+ ["cost"] = 5000,
+ ["texture"] = "Interface/ICONS/trade_blacksmithing",
+ ["phase"] = 1
+ },
+ },
+ [130] = {
+ [1] = {
+ ["id"] = 2673,
+ ["name"] = "Silvered Bronze Breastplate",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_chain_09",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 3296,
+ ["name"] = "Heavy Bronze Mace",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_mace_08",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 3331,
+ ["name"] = "Silvered Bronze Boots",
+ ["rank"] = 0,
+ ["cost"] = 500,
+ ["texture"] = "Interface/ICONS/inv_boots_01",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 9986,
+ ["name"] = "Bronze Greatsword",
+ ["rank"] = 0,
+ ["cost"] = 500,
+ ["texture"] = "Interface/ICONS/inv_sword_20",
+ ["phase"] = 1
+ },
+ },
+ [135] = {
+ [1] = {
+ ["id"] = 3333,
+ ["name"] = "Silvered Bronze Gauntlets",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_05",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 9987,
+ ["name"] = "Bronze Battle Axe",
+ ["rank"] = 0,
+ ["cost"] = 500,
+ ["texture"] = "Interface/ICONS/inv_axe_21",
+ ["phase"] = 1
+ },
+ },
+ [140] = {
+ [1] = {
+ ["id"] = 6518,
+ ["name"] = "Iridescent Hammer",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_hammer_05",
+ ["phase"] = 1
+ },
+ },
+ [145] = {
+ [1] = {
+ ["id"] = 2675,
+ ["name"] = "Shining Silver Breastplate",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_chest_plate15",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 3297,
+ ["name"] = "Mighty Iron Hammer",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_hammer_04",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 3334,
+ ["name"] = "Green Iron Boots",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_01",
+ ["phase"] = 1
+ },
+ },
+ [150] = {
+ [1] = {
+ ["id"] = 3336,
+ ["name"] = "Green Iron Gauntlets",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_05",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 7221,
+ ["name"] = "Iron Shield Spike",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_armorkit_01",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 14379,
+ ["name"] = "Golden Rod",
+ ["rank"] = 0,
+ ["cost"] = 250,
+ ["texture"] = "Interface/ICONS/inv_staff_10",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 19667,
+ ["name"] = "Golden Skeleton Key",
+ ["rank"] = 0,
+ ["cost"] = 250,
+ ["texture"] = "Interface/ICONS/inv_misc_key_13",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 8768,
+ ["name"] = "Iron Buckle",
+ ["rank"] = 0,
+ ["cost"] = 250,
+ ["texture"] = "Interface/ICONS/inv_misc_armorkit_12",
+ ["phase"] = 1
+ },
+ },
+ [155] = {
+ [1] = {
+ ["id"] = 3494,
+ ["name"] = "Solid Iron Maul",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_hammer_07",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 3506,
+ ["name"] = "Green Iron Leggings",
+ ["rank"] = 0,
+ ["cost"] = 5000,
+ ["texture"] = "Interface/ICONS/inv_pants_05",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 12259,
+ ["name"] = "Silvered Bronze Leggings",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_04",
+ ["phase"] = 1
+ },
+ },
+ [160] = {
+ [1] = {
+ ["id"] = 3492,
+ ["name"] = "Hardened Iron Shortsword",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_sword_20",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 3504,
+ ["name"] = "Green Iron Shoulders",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shoulder_09",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 9811,
+ ["name"] = "Barbaric Iron Shoulders",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shoulder_23",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 9813,
+ ["name"] = "Barbaric Iron Breastplate",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_chain_14",
+ ["phase"] = 1
+ },
+ },
+ [165] = {
+ [1] = {
+ ["id"] = 3501,
+ ["name"] = "Green Iron Bracers",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_bracer_06",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 7222,
+ ["name"] = "Iron Counterweight",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_orb_01",
+ ["phase"] = 1
+ },
+ },
+ [170] = {
+ [1] = {
+ ["id"] = 3495,
+ ["name"] = "Golden Iron Destroyer",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_hammer_04",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 3502,
+ ["name"] = "Green Iron Helm",
+ ["rank"] = 0,
+ ["cost"] = 1250,
+ ["texture"] = "Interface/ICONS/inv_helmet_03",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 3507,
+ ["name"] = "Golden Scale Leggings",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_04",
+ ["phase"] = 1
+ },
+ },
+ [175] = {
+ [1] = {
+ ["id"] = 3493,
+ ["name"] = "Jade Serpentblade",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_sword_36",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 3505,
+ ["name"] = "Golden Scale Shoulders",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shoulder_09",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 9814,
+ ["name"] = "Barbaric Iron Helm",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_helmet_25",
+ ["phase"] = 1
+ },
+ },
+ [180] = {
+ [1] = {
+ ["id"] = 3496,
+ ["name"] = "Moonsteel Broadsword",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_sword_25",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 3508,
+ ["name"] = "Green Iron Hauberk",
+ ["rank"] = 0,
+ ["cost"] = 7500,
+ ["texture"] = "Interface/ICONS/inv_chest_chain",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 9818,
+ ["name"] = "Barbaric Iron Boots",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_plate_01",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 15972,
+ ["name"] = "Glinting Steel Dagger",
+ ["rank"] = 0,
+ ["cost"] = 7500,
+ ["texture"] = "Interface/ICONS/inv_weapon_shortblade_05",
+ ["phase"] = 1
+ },
+ },
+ [185] = {
+ [1] = {
+ ["id"] = 3498,
+ ["name"] = "Massive Iron Axe",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_throwingaxe_05",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 3513,
+ ["name"] = "Polished Steel Boots",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_01",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 7223,
+ ["name"] = "Golden Scale Bracers",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_bracer_10",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 9820,
+ ["name"] = "Barbaric Iron Gloves",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_31",
+ ["phase"] = 1
+ },
+ },
+ [190] = {
+ [1] = {
+ ["id"] = 3503,
+ ["name"] = "Golden Scale Coif",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_helmet_36",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 7224,
+ ["name"] = "Steel Weapon Chain",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_frost_chainsofice",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 15973,
+ ["name"] = "Searing Golden Blade",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_weapon_shortblade_05",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 21913,
+ ["name"] = "Edge of Winter",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_axe_06",
+ ["phase"] = 1
+ },
+ },
+ [195] = {
+ [1] = {
+ ["id"] = 3511,
+ ["name"] = "Golden Scale Cuirass",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_chain_06",
+ ["phase"] = 1
+ },
+ },
+ [200] = {
+ [1] = {
+ ["id"] = 3497,
+ ["name"] = "Frost Tiger Blade",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_sword_05",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 3500,
+ ["name"] = "Shadow Crescent Axe",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_axe_17",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 3515,
+ ["name"] = "Golden Scale Boots",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_01",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 9916,
+ ["name"] = "Steel Breastplate",
+ ["rank"] = 0,
+ ["cost"] = 2500,
+ ["texture"] = "Interface/ICONS/inv_chest_plate05",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 11454,
+ ["name"] = "Inlaid Mithril Cylinder",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_musket_01",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 34981,
+ ["name"] = "Whirling Steel Axes",
+ ["rank"] = 0,
+ ["cost"] = 7500,
+ ["texture"] = "Interface/ICONS/inv_axe_05",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 14380,
+ ["name"] = "Truesilver Rod",
+ ["rank"] = 0,
+ ["cost"] = 2500,
+ ["texture"] = "Interface/ICONS/inv_staff_11",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 19668,
+ ["name"] = "Truesilver Skeleton Key",
+ ["rank"] = 0,
+ ["cost"] = 2500,
+ ["texture"] = "Interface/ICONS/inv_misc_key_11",
+ ["phase"] = 1
+ },
+ [9] = {
+ ["id"] = 9918,
+ ["name"] = "Solid Sharpening Stone",
+ ["rank"] = 0,
+ ["cost"] = 2500,
+ ["texture"] = "Interface/ICONS/inv_stone_sharpeningstone_04",
+ ["phase"] = 1
+ },
+ [10] = {
+ ["id"] = 9920,
+ ["name"] = "Solid Grinding Stone",
+ ["rank"] = 0,
+ ["cost"] = 2500,
+ ["texture"] = "Interface/ICONS/inv_stone_grindingstone_04",
+ ["phase"] = 1
+ },
+ [11] = {
+ ["id"] = 9921,
+ ["name"] = "Solid Weightstone",
+ ["rank"] = 0,
+ ["cost"] = 2500,
+ ["texture"] = "Interface/ICONS/inv_stone_weightstone_04",
+ ["phase"] = 1
+ },
+ },
+ [205] = {
+ [1] = {
+ ["id"] = 9926,
+ ["name"] = "Heavy Mithril Shoulder",
+ ["rank"] = 0,
+ ["cost"] = 5000,
+ ["texture"] = "Interface/ICONS/inv_shoulder_22",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 9928,
+ ["name"] = "Heavy Mithril Gauntlet",
+ ["rank"] = 0,
+ ["cost"] = 5000,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_27",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 11643,
+ ["name"] = "Golden Scale Gauntlets",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_29",
+ ["phase"] = 1
+ },
+ },
+ [210] = {
+ [1] = {
+ ["id"] = 9993,
+ ["name"] = "Heavy Mithril Axe",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_axe_14",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 9931,
+ ["name"] = "Mithril Scale Pants",
+ ["rank"] = 0,
+ ["cost"] = 5000,
+ ["texture"] = "Interface/ICONS/inv_pants_03",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 9933,
+ ["name"] = "Heavy Mithril Pants",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_03",
+ ["phase"] = 1
+ },
+ },
+ [215] = {
+ [1] = {
+ ["id"] = 9935,
+ ["name"] = "Steel Plate Helm",
+ ["rank"] = 0,
+ ["cost"] = 5000,
+ ["texture"] = "Interface/ICONS/inv_helmet_03",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 9937,
+ ["name"] = "Mithril Scale Bracers",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_bracer_07",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 9939,
+ ["name"] = "Mithril Shield Spike",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_armorkit_02",
+ ["phase"] = 1
+ },
+ },
+ [220] = {
+ [1] = {
+ ["id"] = 9995,
+ ["name"] = "Blue Glittering Axe",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_axe_03",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 9945,
+ ["name"] = "Ornate Mithril Pants",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_04",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 9950,
+ ["name"] = "Ornate Mithril Gloves",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_31",
+ ["phase"] = 1
+ },
+ },
+ [225] = {
+ [1] = {
+ ["id"] = 9997,
+ ["name"] = "Wicked Mithril Blade",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_sword_10",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 9952,
+ ["name"] = "Ornate Mithril Shoulder",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shoulder_09",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 9954,
+ ["name"] = "Truesilver Gauntlets",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_29",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 9785,
+ ["name"] = "Blacksmithing (Artisan)",
+ ["rank"] = 0,
+ ["cost"] = 50000,
+ ["texture"] = "Interface/ICONS/trade_blacksmithing",
+ ["phase"] = 1
+ },
+ },
+ [230] = {
+ [1] = {
+ ["id"] = 10001,
+ ["name"] = "Big Black Mace",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/inv_mace_15",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 9957,
+ ["name"] = "Orcish War Leggings",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_03",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 9959,
+ ["name"] = "Heavy Mithril Breastplate",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/inv_chest_plate10",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 9961,
+ ["name"] = "Mithril Coif",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/inv_helmet_35",
+ ["phase"] = 1
+ },
+ },
+ [235] = {
+ [1] = {
+ ["id"] = 10003,
+ ["name"] = "The Shatterer",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/inv_hammer_18",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 9964,
+ ["name"] = "Mithril Spurs",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_rogue_sprint",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 9966,
+ ["name"] = "Mithril Scale Shoulders",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shoulder_12",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 9968,
+ ["name"] = "Heavy Mithril Boots",
+ ["rank"] = 0,
+ ["cost"] = 20000,
+ ["texture"] = "Interface/ICONS/inv_boots_plate_01",
+ ["phase"] = 1
+ },
+ },
+ [240] = {
+ [1] = {
+ ["id"] = 10005,
+ ["name"] = "Dazzling Mithril Rapier",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_sword_30",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 9972,
+ ["name"] = "Ornate Mithril Breastplate",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_plate10",
+ ["phase"] = 1
+ },
+ },
+ [245] = {
+ [1] = {
+ ["id"] = 10007,
+ ["name"] = "Phantom Blade",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/inv_sword_40",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 10009,
+ ["name"] = "Runed Mithril Hammer",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_hammer_17",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 9974,
+ ["name"] = "Truesilver Breastplate",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_chest_plate04",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 9979,
+ ["name"] = "Ornate Mithril Boots",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_01",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 9980,
+ ["name"] = "Ornate Mithril Helm",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_helmet_10",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 9970,
+ ["name"] = "Heavy Mithril Helm",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_helmet_10",
+ ["phase"] = 1
+ },
+ },
+ [250] = {
+ [1] = {
+ ["id"] = 10011,
+ ["name"] = "Blight",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/inv_spear_07",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 16642,
+ ["name"] = "Thorium Armor",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_plate08",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 16643,
+ ["name"] = "Thorium Belt",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_belt_30",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 16639,
+ ["name"] = "Dense Grinding Stone",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_stone_grindingstone_05",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 16640,
+ ["name"] = "Dense Weightstone",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_stone_weightstone_05",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 16641,
+ ["name"] = "Dense Sharpening Stone",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_stone_sharpeningstone_05",
+ ["phase"] = 1
+ },
+ },
+ [255] = {
+ [1] = {
+ ["id"] = 10013,
+ ["name"] = "Ebon Shiv",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_weapon_shortblade_14",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 16644,
+ ["name"] = "Thorium Bracers",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_bracer_13",
+ ["phase"] = 1
+ },
+ },
+ [260] = {
+ [1] = {
+ ["id"] = 10015,
+ ["name"] = "Truesilver Champion",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/inv_sword_19",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 16645,
+ ["name"] = "Radiant Belt",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_belt_11",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 36122,
+ ["name"] = "Earthforged Leggings",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_pants_plate_17",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 36124,
+ ["name"] = "Windforged Leggings",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_pants_mail_10",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 36125,
+ ["name"] = "Light Earthforged Blade",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_sword_draenei_01",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 36126,
+ ["name"] = "Light Skyforged Axe",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_axe_67",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 36128,
+ ["name"] = "Light Emberforged Hammer",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_hammer_21",
+ ["phase"] = 1
+ },
+ },
+ [265] = {
+ [1] = {
+ ["id"] = 15292,
+ ["name"] = "Dark Iron Pulverizer",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_hammer_09",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 16646,
+ ["name"] = "Imperial Plate Shoulders",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shoulder_02",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 16647,
+ ["name"] = "Imperial Plate Belt",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_belt_01",
+ ["phase"] = 1
+ },
+ },
+ [270] = {
+ [1] = {
+ ["id"] = 15293,
+ ["name"] = "Dark Iron Mail",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_chain_16",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 16648,
+ ["name"] = "Radiant Breastplate",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_plate16",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 16649,
+ ["name"] = "Imperial Plate Bracers",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_bracer_19",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 16650,
+ ["name"] = "Wildthorn Mail",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_chain_12",
+ ["phase"] = 1
+ },
+ },
+ [275] = {
+ [1] = {
+ ["id"] = 16969,
+ ["name"] = "Ornate Thorium Handaxe",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_axe_12",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 16970,
+ ["name"] = "Dawn's Edge",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_axe_05",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 15294,
+ ["name"] = "Dark Iron Sunderer",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_weapon_halberd_02",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 16651,
+ ["name"] = "Thorium Shield Spike",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_armorkit_20",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 19669,
+ ["name"] = "Arcanite Skeleton Key",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_misc_key_08",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 20201,
+ ["name"] = "Arcanite Rod",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_staff_19",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 29844,
+ ["name"] = "Blacksmithing (Master)",
+ ["rank"] = 0,
+ ["cost"] = 100000,
+ ["texture"] = "Interface/ICONS/trade_blacksmithing",
+ ["phase"] = 1
+ },
+ },
+ [280] = {
+ [1] = {
+ ["id"] = 16971,
+ ["name"] = "Huge Thorium Battleaxe",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_weapon_halberd_11",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 16973,
+ ["name"] = "Enchanted Battlehammer",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_hammer_05",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 16978,
+ ["name"] = "Blazing Rapier",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_sword_30",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 15295,
+ ["name"] = "Dark Iron Shoulders",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shoulder_09",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 16652,
+ ["name"] = "Thorium Boots",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_plate_08",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 16653,
+ ["name"] = "Thorium Helm",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_helmet_23",
+ ["phase"] = 1
+ },
+ },
+ [285] = {
+ [1] = {
+ ["id"] = 16983,
+ ["name"] = "Serenity",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_mace_02",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 15296,
+ ["name"] = "Dark Iron Plate",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_plate08",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 16654,
+ ["name"] = "Radiant Gloves",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_26",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 16667,
+ ["name"] = "Demon Forged Breastplate",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_plate06",
+ ["phase"] = 1
+ },
+ },
+ [290] = {
+ [1] = {
+ ["id"] = 16984,
+ ["name"] = "Volcanic Hammer",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_hammer_06",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 16985,
+ ["name"] = "Corruption",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_sword_07",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 16655,
+ ["name"] = "Fiery Plate Gauntlets",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_03",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 16656,
+ ["name"] = "Radiant Boots",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_plate_03",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 16660,
+ ["name"] = "Dawnbringer Shoulders",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shoulder_20",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 23628,
+ ["name"] = "Heavy Timbermaw Belt",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_belt_16",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 23632,
+ ["name"] = "Girdle of the Dawn",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_belt_11",
+ ["phase"] = 1
+ },
+ },
+ [295] = {
+ [1] = {
+ ["id"] = 16657,
+ ["name"] = "Imperial Plate Boots",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_plate_01",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 16658,
+ ["name"] = "Imperial Plate Helm",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_helmet_22",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 16659,
+ ["name"] = "Radiant Circlet",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_crown_01",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 16661,
+ ["name"] = "Storm Gauntlets",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_30",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 20872,
+ ["name"] = "Fiery Chain Girdle",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_belt_13",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 20874,
+ ["name"] = "Dark Iron Bracers",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_bracer_07",
+ ["phase"] = 1
+ },
+ },
+ [300] = {
+ [1] = {
+ ["id"] = 21161,
+ ["name"] = "Sulfuron Hammer",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_hammer_unique_sulfuras",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 16662,
+ ["name"] = "Thorium Leggings",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_04",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 16663,
+ ["name"] = "Imperial Plate Chest",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_plate10",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 16664,
+ ["name"] = "Runic Plate Shoulders",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shoulder_23",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 16665,
+ ["name"] = "Runic Plate Boots",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_plate_01",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 16724,
+ ["name"] = "Whitesoul Helm",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_helmet_13",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 16725,
+ ["name"] = "Radiant Leggings",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_03",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 16726,
+ ["name"] = "Runic Plate Helm",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_helmet_03",
+ ["phase"] = 1
+ },
+ [9] = {
+ ["id"] = 16728,
+ ["name"] = "Helm of the Great Chief",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_helmet_24",
+ ["phase"] = 1
+ },
+ [10] = {
+ ["id"] = 16729,
+ ["name"] = "Lionheart Helm",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_helmet_36",
+ ["phase"] = 1
+ },
+ [11] = {
+ ["id"] = 16730,
+ ["name"] = "Imperial Plate Leggings",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_04",
+ ["phase"] = 1
+ },
+ [12] = {
+ ["id"] = 16731,
+ ["name"] = "Runic Breastplate",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_plate11",
+ ["phase"] = 1
+ },
+ [13] = {
+ ["id"] = 16732,
+ ["name"] = "Runic Plate Leggings",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_04",
+ ["phase"] = 1
+ },
+ [14] = {
+ ["id"] = 16741,
+ ["name"] = "Stronghold Gauntlets",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_30",
+ ["phase"] = 1
+ },
+ [15] = {
+ ["id"] = 16742,
+ ["name"] = "Enchanted Thorium Helm",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_helmet_02",
+ ["phase"] = 1
+ },
+ [16] = {
+ ["id"] = 16744,
+ ["name"] = "Enchanted Thorium Leggings",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_04",
+ ["phase"] = 1
+ },
+ [17] = {
+ ["id"] = 16745,
+ ["name"] = "Enchanted Thorium Breastplate",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_plate10",
+ ["phase"] = 1
+ },
+ [18] = {
+ ["id"] = 16746,
+ ["name"] = "Invulnerable Mail",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_chain_07",
+ ["phase"] = 1
+ },
+ [19] = {
+ ["id"] = 16988,
+ ["name"] = "Hammer of the Titans",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_hammer_09",
+ ["phase"] = 1
+ },
+ [20] = {
+ ["id"] = 16990,
+ ["name"] = "Arcanite Champion",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_sword_39",
+ ["phase"] = 1
+ },
+ [21] = {
+ ["id"] = 16991,
+ ["name"] = "Annihilator",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_axe_12",
+ ["phase"] = 1
+ },
+ [22] = {
+ ["id"] = 16992,
+ ["name"] = "Frostguard",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_sword_11",
+ ["phase"] = 1
+ },
+ [23] = {
+ ["id"] = 16993,
+ ["name"] = "Masterwork Stormhammer",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_hammer_04",
+ ["phase"] = 1
+ },
+ [24] = {
+ ["id"] = 16994,
+ ["name"] = "Arcanite Reaper",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_axe_09",
+ ["phase"] = 1
+ },
+ [25] = {
+ ["id"] = 16995,
+ ["name"] = "Heartseeker",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_sword_17",
+ ["phase"] = 1
+ },
+ [26] = {
+ ["id"] = 20873,
+ ["name"] = "Fiery Chain Shoulders",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shoulder_23",
+ ["phase"] = 1
+ },
+ [27] = {
+ ["id"] = 20876,
+ ["name"] = "Dark Iron Leggings",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_04",
+ ["phase"] = 1
+ },
+ [28] = {
+ ["id"] = 20890,
+ ["name"] = "Dark Iron Reaver",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_sword_48",
+ ["phase"] = 1
+ },
+ [29] = {
+ ["id"] = 20897,
+ ["name"] = "Dark Iron Destroyer",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_axe_12",
+ ["phase"] = 1
+ },
+ [30] = {
+ ["id"] = 23629,
+ ["name"] = "Heavy Timbermaw Boots",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_chain_10",
+ ["phase"] = 1
+ },
+ [31] = {
+ ["id"] = 23633,
+ ["name"] = "Gloves of the Dawn",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_29",
+ ["phase"] = 1
+ },
+ [32] = {
+ ["id"] = 23636,
+ ["name"] = "Dark Iron Helm",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_helmet_22",
+ ["phase"] = 1
+ },
+ [33] = {
+ ["id"] = 23637,
+ ["name"] = "Dark Iron Gauntlets",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_22",
+ ["phase"] = 1
+ },
+ [34] = {
+ ["id"] = 23638,
+ ["name"] = "Black Amnesty",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_weapon_shortblade_12",
+ ["phase"] = 1
+ },
+ [35] = {
+ ["id"] = 23639,
+ ["name"] = "Blackfury",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_spear_08",
+ ["phase"] = 1
+ },
+ [36] = {
+ ["id"] = 23650,
+ ["name"] = "Ebon Hand",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_hammer_19",
+ ["phase"] = 1
+ },
+ [37] = {
+ ["id"] = 23652,
+ ["name"] = "Blackguard",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_sword_39",
+ ["phase"] = 1
+ },
+ [38] = {
+ ["id"] = 23653,
+ ["name"] = "Nightfall",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_axe_12",
+ ["phase"] = 1
+ },
+ [39] = {
+ ["id"] = 24136,
+ ["name"] = "Bloodsoul Breastplate",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_chain_14",
+ ["phase"] = 1
+ },
+ [40] = {
+ ["id"] = 24137,
+ ["name"] = "Bloodsoul Shoulders",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shoulder_15",
+ ["phase"] = 1
+ },
+ [41] = {
+ ["id"] = 24138,
+ ["name"] = "Bloodsoul Gauntlets",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_31",
+ ["phase"] = 1
+ },
+ [42] = {
+ ["id"] = 24139,
+ ["name"] = "Darksoul Breastplate",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_plate08",
+ ["phase"] = 1
+ },
+ [43] = {
+ ["id"] = 24140,
+ ["name"] = "Darksoul Leggings",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_plate_21",
+ ["phase"] = 1
+ },
+ [44] = {
+ ["id"] = 24141,
+ ["name"] = "Darksoul Shoulders",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shoulder_01",
+ ["phase"] = 1
+ },
+ [45] = {
+ ["id"] = 24399,
+ ["name"] = "Dark Iron Boots",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_chain_08",
+ ["phase"] = 1
+ },
+ [46] = {
+ ["id"] = 24912,
+ ["name"] = "Darkrune Gauntlets",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_27",
+ ["phase"] = 1
+ },
+ [47] = {
+ ["id"] = 24913,
+ ["name"] = "Darkrune Helm",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_helmet_10",
+ ["phase"] = 1
+ },
+ [48] = {
+ ["id"] = 24914,
+ ["name"] = "Darkrune Breastplate",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_plate06",
+ ["phase"] = 1
+ },
+ [49] = {
+ ["id"] = 27585,
+ ["name"] = "Heavy Obsidian Belt",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_belt_16",
+ ["phase"] = 1
+ },
+ [50] = {
+ ["id"] = 27586,
+ ["name"] = "Jagged Obsidian Shield",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shield_22",
+ ["phase"] = 1
+ },
+ [51] = {
+ ["id"] = 27587,
+ ["name"] = "Thick Obsidian Breastplate",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_chain_17",
+ ["phase"] = 1
+ },
+ [52] = {
+ ["id"] = 27588,
+ ["name"] = "Light Obsidian Belt",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_belt_16",
+ ["phase"] = 1
+ },
+ [53] = {
+ ["id"] = 27589,
+ ["name"] = "Black Grasp of the Destroyer",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_31",
+ ["phase"] = 1
+ },
+ [54] = {
+ ["id"] = 27590,
+ ["name"] = "Obsidian Mail Tunic",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_chain_17",
+ ["phase"] = 1
+ },
+ [55] = {
+ ["id"] = 27829,
+ ["name"] = "Titanic Leggings",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_04",
+ ["phase"] = 1
+ },
+ [56] = {
+ ["id"] = 27830,
+ ["name"] = "Persuader",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_hammer_08",
+ ["phase"] = 1
+ },
+ [57] = {
+ ["id"] = 27832,
+ ["name"] = "Sageblade",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_sword_51",
+ ["phase"] = 1
+ },
+ [58] = {
+ ["id"] = 28242,
+ ["name"] = "Icebane Breastplate",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_chain_11",
+ ["phase"] = 1
+ },
+ [59] = {
+ ["id"] = 28243,
+ ["name"] = "Icebane Gauntlets",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_28",
+ ["phase"] = 1
+ },
+ [60] = {
+ ["id"] = 28244,
+ ["name"] = "Icebane Bracers",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_bracer_07",
+ ["phase"] = 1
+ },
+ [61] = {
+ ["id"] = 28461,
+ ["name"] = "Ironvine Breastplate",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_plate07",
+ ["phase"] = 1
+ },
+ [62] = {
+ ["id"] = 28462,
+ ["name"] = "Ironvine Gloves",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_29",
+ ["phase"] = 1
+ },
+ [63] = {
+ ["id"] = 28463,
+ ["name"] = "Ironvine Belt",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_belt_21",
+ ["phase"] = 1
+ },
+ [64] = {
+ ["id"] = 34982,
+ ["name"] = "Enchanted Thorium Blades",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_weapon_shortblade_26",
+ ["phase"] = 1
+ },
+ [65] = {
+ ["id"] = 29545,
+ ["name"] = "Fel Iron Plate Gloves",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_03",
+ ["phase"] = 1
+ },
+ [66] = {
+ ["id"] = 29551,
+ ["name"] = "Fel Iron Chain Coif",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/inv_helmet_35",
+ ["phase"] = 1
+ },
+ [67] = {
+ ["id"] = 22757,
+ ["name"] = "Elemental Sharpening Stone",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_stone_02",
+ ["phase"] = 1
+ },
+ [68] = {
+ ["id"] = 29654,
+ ["name"] = "Fel Sharpening Stone",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/inv_stone_sharpeningstone_06",
+ ["phase"] = 1
+ },
+ [69] = {
+ ["id"] = 32655,
+ ["name"] = "Fel Iron Rod",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_rod_felsteel",
+ ["phase"] = 1
+ },
+ [70] = {
+ ["id"] = 34607,
+ ["name"] = "Fel Weightstone",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/inv_stone_weightstone_06",
+ ["phase"] = 1
+ },
+ },
+ [305] = {
+ [1] = {
+ ["id"] = 29547,
+ ["name"] = "Fel Iron Plate Belt",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/inv_belt_21",
+ ["phase"] = 1
+ },
+ },
+ [310] = {
+ [1] = {
+ ["id"] = 29552,
+ ["name"] = "Fel Iron Chain Gloves",
+ ["rank"] = 0,
+ ["cost"] = 18000,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_11",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 29557,
+ ["name"] = "Fel Iron Hatchet",
+ ["rank"] = 0,
+ ["cost"] = 18000,
+ ["texture"] = "Interface/ICONS/inv_axe_11",
+ ["phase"] = 1
+ },
+ },
+ [315] = {
+ [1] = {
+ ["id"] = 29548,
+ ["name"] = "Fel Iron Plate Boots",
+ ["rank"] = 0,
+ ["cost"] = 20000,
+ ["texture"] = "Interface/ICONS/inv_boots_chain_11",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 29549,
+ ["name"] = "Fel Iron Plate Pants",
+ ["rank"] = 0,
+ ["cost"] = 20000,
+ ["texture"] = "Interface/ICONS/inv_pants_plate_18",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 29553,
+ ["name"] = "Fel Iron Chain Bracers",
+ ["rank"] = 0,
+ ["cost"] = 20000,
+ ["texture"] = "Interface/ICONS/inv_bracer_13",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 29558,
+ ["name"] = "Fel Iron Hammer",
+ ["rank"] = 0,
+ ["cost"] = 20000,
+ ["texture"] = "Interface/ICONS/inv_hammer_06",
+ ["phase"] = 1
+ },
+ },
+ [320] = {
+ [1] = {
+ ["id"] = 29556,
+ ["name"] = "Fel Iron Chain Tunic",
+ ["rank"] = 0,
+ ["cost"] = 22000,
+ ["texture"] = "Interface/ICONS/inv_chest_chain_14",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 29565,
+ ["name"] = "Fel Iron Greatsword",
+ ["rank"] = 0,
+ ["cost"] = 22000,
+ ["texture"] = "Interface/ICONS/inv_sword_26",
+ ["phase"] = 1
+ },
+ },
+ [325] = {
+ [1] = {
+ ["id"] = 29550,
+ ["name"] = "Fel Iron Breastplate",
+ ["rank"] = 0,
+ ["cost"] = 25000,
+ ["texture"] = "Interface/ICONS/inv_chest_plate07",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 29566,
+ ["name"] = "Adamantite Maul",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_mace_14",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 32284,
+ ["name"] = "Lesser Rune of Warding",
+ ["rank"] = 0,
+ ["cost"] = 25000,
+ ["texture"] = "Interface/ICONS/inv_misc_rune_11",
+ ["phase"] = 1
+ },
+ },
+ [330] = {
+ [1] = {
+ ["id"] = 29568,
+ ["name"] = "Adamantite Cleaver",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_axe_09",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 29569,
+ ["name"] = "Adamantite Dagger",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_sword_12",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 36129,
+ ["name"] = "Heavy Earthforged Breastplate",
+ ["rank"] = 0,
+ ["cost"] = 40000,
+ ["texture"] = "Interface/ICONS/inv_chest_plate06",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 36130,
+ ["name"] = "Stormforged Hauberk",
+ ["rank"] = 0,
+ ["cost"] = 40000,
+ ["texture"] = "Interface/ICONS/inv_chest_chain_17",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 36131,
+ ["name"] = "Windforged Rapier",
+ ["rank"] = 0,
+ ["cost"] = 40000,
+ ["texture"] = "Interface/ICONS/inv_sword_30",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 36133,
+ ["name"] = "Stoneforged Claymore",
+ ["rank"] = 0,
+ ["cost"] = 40000,
+ ["texture"] = "Interface/ICONS/inv_sword_37",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 36134,
+ ["name"] = "Stormforged Axe",
+ ["rank"] = 0,
+ ["cost"] = 40000,
+ ["texture"] = "Interface/ICONS/inv_axe_39",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 36135,
+ ["name"] = "Skyforged Great Axe",
+ ["rank"] = 0,
+ ["cost"] = 40000,
+ ["texture"] = "Interface/ICONS/inv_axe_46",
+ ["phase"] = 1
+ },
+ [9] = {
+ ["id"] = 36136,
+ ["name"] = "Lavaforged Warhammer",
+ ["rank"] = 0,
+ ["cost"] = 40000,
+ ["texture"] = "Interface/ICONS/inv_hammer_17",
+ ["phase"] = 1
+ },
+ [10] = {
+ ["id"] = 36137,
+ ["name"] = "Great Earthforged Hammer",
+ ["rank"] = 0,
+ ["cost"] = 40000,
+ ["texture"] = "Interface/ICONS/inv_hammer_09",
+ ["phase"] = 1
+ },
+ },
+ [335] = {
+ [1] = {
+ ["id"] = 29571,
+ ["name"] = "Adamantite Rapier",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_sword_30",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 29603,
+ ["name"] = "Adamantite Plate Bracers",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_bracer_07",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 29605,
+ ["name"] = "Adamantite Plate Gloves",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_30",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 42688,
+ ["name"] = "Adamantite Weapon Chain",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_frost_chainsofice",
+ ["phase"] = 1
+ },
+ },
+ [340] = {
+ [1] = {
+ ["id"] = 29606,
+ ["name"] = "Adamantite Breastplate",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_plate11",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 29728,
+ ["name"] = "Lesser Ward of Shielding",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_rune_12",
+ ["phase"] = 1
+ },
+ },
+ [350] = {
+ [1] = {
+ ["id"] = 29614,
+ ["name"] = "Flamebane Bracers",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_bracer_19",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 34529,
+ ["name"] = "Nether Chain Shirt",
+ ["rank"] = 0,
+ ["cost"] = 100000,
+ ["texture"] = "Interface/ICONS/inv_chest_chain_17",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 34533,
+ ["name"] = "Breastplate of Kings",
+ ["rank"] = 0,
+ ["cost"] = 100000,
+ ["texture"] = "Interface/ICONS/inv_chest_plate14",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 34535,
+ ["name"] = "Fireguard",
+ ["rank"] = 0,
+ ["cost"] = 100000,
+ ["texture"] = "Interface/ICONS/inv_sword_1h_blacksmithing_01",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 34538,
+ ["name"] = "Lionheart Blade",
+ ["rank"] = 0,
+ ["cost"] = 100000,
+ ["texture"] = "Interface/ICONS/inv_sword_2h_blacksmithing_01",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 34541,
+ ["name"] = "The Planar Edge",
+ ["rank"] = 0,
+ ["cost"] = 100000,
+ ["texture"] = "Interface/ICONS/inv_axe_1h_blacksmithing_01",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 34543,
+ ["name"] = "Lunar Crescent",
+ ["rank"] = 0,
+ ["cost"] = 100000,
+ ["texture"] = "Interface/ICONS/inv_axe_50",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 34545,
+ ["name"] = "Drakefist Hammer",
+ ["rank"] = 0,
+ ["cost"] = 100000,
+ ["texture"] = "Interface/ICONS/inv_mace_37",
+ ["phase"] = 1
+ },
+ [9] = {
+ ["id"] = 34547,
+ ["name"] = "Thunder",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_mace_2h_blacksmithing_01",
+ ["phase"] = 1
+ },
+ [10] = {
+ ["id"] = 34983,
+ ["name"] = "Felsteel Whisper Knives",
+ ["rank"] = 0,
+ ["cost"] = 50000,
+ ["texture"] = "Interface/ICONS/inv_weapon_shortblade_26",
+ ["phase"] = 1
+ },
+ [11] = {
+ ["id"] = 29656,
+ ["name"] = "Adamantite Sharpening Stone",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_stone_sharpeningstone_07",
+ ["phase"] = 1
+ },
+ [12] = {
+ ["id"] = 32285,
+ ["name"] = "Greater Rune of Warding",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_rune_10",
+ ["phase"] = 1
+ },
+ [13] = {
+ ["id"] = 32656,
+ ["name"] = "Adamantite Rod",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_rod_adamantite",
+ ["phase"] = 1
+ },
+ [14] = {
+ ["id"] = 34608,
+ ["name"] = "Adamantite Weightstone",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_stone_weightstone_07",
+ ["phase"] = 1
+ },
+ },
+ [355] = {
+ [1] = {
+ ["id"] = 29608,
+ ["name"] = "Enchanted Adamantite Belt",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_belt_29",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 29611,
+ ["name"] = "Enchanted Adamantite Boots",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_chain_08",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 29615,
+ ["name"] = "Flamebane Helm",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_helmet_22",
+ ["phase"] = 1
+ },
+ },
+ [360] = {
+ [1] = {
+ ["id"] = 29610,
+ ["name"] = "Enchanted Adamantite Breastplate",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_plate10",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 29616,
+ ["name"] = "Flamebane Gloves",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_11",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 29619,
+ ["name"] = "Felsteel Gloves",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_29",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 29620,
+ ["name"] = "Felsteel Leggings",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_plate_06",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 29628,
+ ["name"] = "Khorium Belt",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_belt_11",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 29629,
+ ["name"] = "Khorium Pants",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_plate_04",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 29657,
+ ["name"] = "Felsteel Shield Spike",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_armorkit_27",
+ ["phase"] = 1
+ },
+ },
+ [365] = {
+ [1] = {
+ ["id"] = 46140,
+ ["name"] = "Sunblessed Gauntlets",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_20",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 46141,
+ ["name"] = "Hard Khorium Battlefists",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_62",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 46142,
+ ["name"] = "Sunblessed Breastplate",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_plate02",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 46144,
+ ["name"] = "Hard Khorium Battleplate",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_plate11",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 29613,
+ ["name"] = "Enchanted Adamantite Leggings",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_plate_12",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 29617,
+ ["name"] = "Flamebane Breastplate",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_plate16",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 29621,
+ ["name"] = "Felsteel Helm",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_helmet_22",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 29622,
+ ["name"] = "Gauntlets of the Iron Tower",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_29",
+ ["phase"] = 1
+ },
+ [9] = {
+ ["id"] = 29630,
+ ["name"] = "Khorium Boots",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_chain_01",
+ ["phase"] = 1
+ },
+ [10] = {
+ ["id"] = 29642,
+ ["name"] = "Ragesteel Gloves",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_26",
+ ["phase"] = 1
+ },
+ [11] = {
+ ["id"] = 29643,
+ ["name"] = "Ragesteel Helm",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_helmet_22",
+ ["phase"] = 1
+ },
+ [12] = {
+ ["id"] = 29658,
+ ["name"] = "Felfury Gauntlets",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_26",
+ ["phase"] = 1
+ },
+ [13] = {
+ ["id"] = 29662,
+ ["name"] = "Steelgrip Gauntlets",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_29",
+ ["phase"] = 1
+ },
+ [14] = {
+ ["id"] = 29663,
+ ["name"] = "Storm Helm",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_helmet_29",
+ ["phase"] = 1
+ },
+ [15] = {
+ ["id"] = 29664,
+ ["name"] = "Helm of the Stalwart Defender",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_helmet_08",
+ ["phase"] = 1
+ },
+ [16] = {
+ ["id"] = 29668,
+ ["name"] = "Oathkeeper's Helm",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_helmet_38",
+ ["phase"] = 1
+ },
+ [17] = {
+ ["id"] = 29669,
+ ["name"] = "Black Felsteel Bracers",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_bracer_07",
+ ["phase"] = 1
+ },
+ [18] = {
+ ["id"] = 29671,
+ ["name"] = "Bracers of the Green Fortress",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_bracer_06",
+ ["phase"] = 1
+ },
+ [19] = {
+ ["id"] = 29672,
+ ["name"] = "Blessed Bracers",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_bracer_03",
+ ["phase"] = 1
+ },
+ [20] = {
+ ["id"] = 29692,
+ ["name"] = "Felsteel Longblade",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_sword_59",
+ ["phase"] = 1
+ },
+ [21] = {
+ ["id"] = 29693,
+ ["name"] = "Khorium Champion",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_sword_08",
+ ["phase"] = 1
+ },
+ [22] = {
+ ["id"] = 29694,
+ ["name"] = "Fel Edged Battleaxe",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_axe_15",
+ ["phase"] = 1
+ },
+ [23] = {
+ ["id"] = 29695,
+ ["name"] = "Felsteel Reaper",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_axe_02",
+ ["phase"] = 1
+ },
+ [24] = {
+ ["id"] = 29696,
+ ["name"] = "Runic Hammer",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_hammer_09",
+ ["phase"] = 1
+ },
+ [25] = {
+ ["id"] = 29697,
+ ["name"] = "Fel Hardened Maul",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_hammer_17",
+ ["phase"] = 1
+ },
+ [26] = {
+ ["id"] = 29698,
+ ["name"] = "Eternium Runed Blade",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_weapon_shortblade_05",
+ ["phase"] = 1
+ },
+ [27] = {
+ ["id"] = 29699,
+ ["name"] = "Dirge",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_weapon_shortblade_05",
+ ["phase"] = 1
+ },
+ [28] = {
+ ["id"] = 29700,
+ ["name"] = "Hand of Eternity",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_mace_16",
+ ["phase"] = 1
+ },
+ [29] = {
+ ["id"] = 42662,
+ ["name"] = "Ragesteel Shoulders",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shoulder_16",
+ ["phase"] = 1
+ },
+ [30] = {
+ ["id"] = 43846,
+ ["name"] = "Hammer of Righteous Might",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_mace_41",
+ ["phase"] = 1
+ },
+ },
+ [370] = {
+ [1] = {
+ ["id"] = 29645,
+ ["name"] = "Ragesteel Breastplate",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_chain_16",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 29648,
+ ["name"] = "Swiftsteel Gloves",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_17",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 29649,
+ ["name"] = "Earthpeace Breastplate",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_plate10",
+ ["phase"] = 1
+ },
+ },
+ [375] = {
+ [1] = {
+ ["id"] = 34530,
+ ["name"] = "Twisting Nether Chain Shirt",
+ ["rank"] = 0,
+ ["cost"] = 250000,
+ ["texture"] = "Interface/ICONS/inv_chest_chain_17",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 34534,
+ ["name"] = "Bulwark of Kings",
+ ["rank"] = 0,
+ ["cost"] = 250000,
+ ["texture"] = "Interface/ICONS/inv_chest_plate15",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 34537,
+ ["name"] = "Blazeguard",
+ ["rank"] = 0,
+ ["cost"] = 250000,
+ ["texture"] = "Interface/ICONS/inv_sword_1h_blacksmithing_02",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 34540,
+ ["name"] = "Lionheart Champion",
+ ["rank"] = 0,
+ ["cost"] = 250000,
+ ["texture"] = "Interface/ICONS/inv_sword_2h_blacksmithing_02",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 34542,
+ ["name"] = "Black Planar Edge",
+ ["rank"] = 0,
+ ["cost"] = 250000,
+ ["texture"] = "Interface/ICONS/inv_axe_1h_blacksmithing_02",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 34544,
+ ["name"] = "Mooncleaver",
+ ["rank"] = 0,
+ ["cost"] = 250000,
+ ["texture"] = "Interface/ICONS/inv_axe_51",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 34546,
+ ["name"] = "Dragonmaw",
+ ["rank"] = 0,
+ ["cost"] = 250000,
+ ["texture"] = "Interface/ICONS/inv_mace_38",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 34548,
+ ["name"] = "Deep Thunder",
+ ["rank"] = 0,
+ ["cost"] = 250000,
+ ["texture"] = "Interface/ICONS/inv_mace_2h_blacksmithing_02",
+ ["phase"] = 1
+ },
+ [9] = {
+ ["id"] = 36256,
+ ["name"] = "Embrace of the Twisting Nether",
+ ["rank"] = 0,
+ ["cost"] = 500000,
+ ["texture"] = "Interface/ICONS/inv_chest_chain_17",
+ ["phase"] = 1
+ },
+ [10] = {
+ ["id"] = 36257,
+ ["name"] = "Bulwark of the Ancient Kings",
+ ["rank"] = 0,
+ ["cost"] = 500000,
+ ["texture"] = "Interface/ICONS/inv_chest_plate16",
+ ["phase"] = 1
+ },
+ [11] = {
+ ["id"] = 36258,
+ ["name"] = "Blazefury",
+ ["rank"] = 0,
+ ["cost"] = 500000,
+ ["texture"] = "Interface/ICONS/inv_sword_1h_blacksmithing_03",
+ ["phase"] = 1
+ },
+ [12] = {
+ ["id"] = 36259,
+ ["name"] = "Lionheart Executioner",
+ ["rank"] = 0,
+ ["cost"] = 500000,
+ ["texture"] = "Interface/ICONS/inv_sword_2h_blacksmithing_03",
+ ["phase"] = 1
+ },
+ [13] = {
+ ["id"] = 36260,
+ ["name"] = "Wicked Edge of the Planes",
+ ["rank"] = 0,
+ ["cost"] = 500000,
+ ["texture"] = "Interface/ICONS/inv_axe_1h_blacksmithing_03",
+ ["phase"] = 1
+ },
+ [14] = {
+ ["id"] = 36261,
+ ["name"] = "Bloodmoon",
+ ["rank"] = 0,
+ ["cost"] = 500000,
+ ["texture"] = "Interface/ICONS/inv_axe_52",
+ ["phase"] = 1
+ },
+ [15] = {
+ ["id"] = 36262,
+ ["name"] = "Dragonstrike",
+ ["rank"] = 0,
+ ["cost"] = 500000,
+ ["texture"] = "Interface/ICONS/inv_mace_39",
+ ["phase"] = 1
+ },
+ [16] = {
+ ["id"] = 36263,
+ ["name"] = "Stormherald",
+ ["rank"] = 0,
+ ["cost"] = 500000,
+ ["texture"] = "Interface/ICONS/inv_mace_2h_blacksmithing_03",
+ ["phase"] = 1
+ },
+ [17] = {
+ ["id"] = 36389,
+ ["name"] = "Belt of the Guardian",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_belt_28",
+ ["phase"] = 1
+ },
+ [18] = {
+ ["id"] = 36390,
+ ["name"] = "Red Belt of Battle",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_belt_13",
+ ["phase"] = 1
+ },
+ [19] = {
+ ["id"] = 36391,
+ ["name"] = "Boots of the Protector",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_plate_03",
+ ["phase"] = 1
+ },
+ [20] = {
+ ["id"] = 36392,
+ ["name"] = "Red Havoc Boots",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_chain_04",
+ ["phase"] = 1
+ },
+ [21] = {
+ ["id"] = 38473,
+ ["name"] = "Wildguard Breastplate",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_plate07",
+ ["phase"] = 1
+ },
+ [22] = {
+ ["id"] = 38475,
+ ["name"] = "Wildguard Leggings",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_plate_18",
+ ["phase"] = 1
+ },
+ [23] = {
+ ["id"] = 38476,
+ ["name"] = "Wildguard Helm",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_helmet_22",
+ ["phase"] = 1
+ },
+ [24] = {
+ ["id"] = 38477,
+ ["name"] = "Iceguard Breastplate",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_plate11",
+ ["phase"] = 1
+ },
+ [25] = {
+ ["id"] = 38478,
+ ["name"] = "Iceguard Leggings",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_plate_10",
+ ["phase"] = 1
+ },
+ [26] = {
+ ["id"] = 38479,
+ ["name"] = "Iceguard Helm",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_helmet_06",
+ ["phase"] = 1
+ },
+ [27] = {
+ ["id"] = 40033,
+ ["name"] = "Shadesteel Sabots",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_chain_08",
+ ["phase"] = 1
+ },
+ [28] = {
+ ["id"] = 40034,
+ ["name"] = "Shadesteel Bracers",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_bracer_13",
+ ["phase"] = 1
+ },
+ [29] = {
+ ["id"] = 40035,
+ ["name"] = "Shadesteel Greaves",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_plate_21",
+ ["phase"] = 1
+ },
+ [30] = {
+ ["id"] = 40036,
+ ["name"] = "Shadesteel Girdle",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_belt_30",
+ ["phase"] = 1
+ },
+ [31] = {
+ ["id"] = 41132,
+ ["name"] = "Swiftsteel Bracers",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_bracer_15",
+ ["phase"] = 1
+ },
+ [32] = {
+ ["id"] = 41133,
+ ["name"] = "Swiftsteel Shoulders",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shoulder_29",
+ ["phase"] = 1
+ },
+ [33] = {
+ ["id"] = 41134,
+ ["name"] = "Dawnsteel Bracers",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_bracer_02",
+ ["phase"] = 1
+ },
+ [34] = {
+ ["id"] = 41135,
+ ["name"] = "Dawnsteel Shoulders",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shoulder_66",
+ ["phase"] = 1
+ },
+ [35] = {
+ ["id"] = 32657,
+ ["name"] = "Eternium Rod",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_rod_eternium",
+ ["phase"] = 1
+ },
+ [36] = {
+ ["id"] = 29729,
+ ["name"] = "Greater Ward of Shielding",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_rune_13",
+ ["phase"] = 1
+ },
+ },
+}
diff --git a/Database/professions/Cooking.lua b/Database/professions/Cooking.lua
new file mode 100644
index 0000000..8da67c8
--- /dev/null
+++ b/Database/professions/Cooking.lua
@@ -0,0 +1,1046 @@
+local _, FieldGuide = ...
+
+FieldGuide.COOKING = {
+ [1] = {
+ [1] = {
+ ["id"] = 2550,
+ ["name"] = "Cooking (Apprentice)",
+ ["rank"] = 0,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/inv_misc_food_15",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 43779,
+ ["name"] = "Delicious Chocolate Cake",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_celebrationcake_01",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 7751,
+ ["name"] = "Brilliant Smallfish",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_fish_07",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 7752,
+ ["name"] = "Slitherskin Mackerel",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_fish_24",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 8604,
+ ["name"] = "Herb Baked Egg",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_egg_03",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 15935,
+ ["name"] = "Crispy Bat Wing",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_46",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 21143,
+ ["name"] = "Gingerbread Cookie",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_62",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 33276,
+ ["name"] = "Lynx Steak",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_47",
+ ["phase"] = 1
+ },
+ [9] = {
+ ["id"] = 33277,
+ ["name"] = "Roasted Moongraze Tenderloin",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_60",
+ ["phase"] = 1
+ },
+ [10] = {
+ ["id"] = 37836,
+ ["name"] = "Spice Bread",
+ ["rank"] = 0,
+ ["cost"] = 10,
+ ["texture"] = "Interface/ICONS/inv_misc_food_95_grainbread",
+ ["phase"] = 1
+ },
+ [11] = {
+ ["id"] = 2538,
+ ["name"] = "Charred Wolf Meat",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_18",
+ ["phase"] = 1
+ },
+ [12] = {
+ ["id"] = 2540,
+ ["name"] = "Roasted Boar Meat",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_18",
+ ["phase"] = 1
+ },
+ [13] = {
+ ["id"] = 818,
+ ["name"] = "Basic Campfire",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_fire_fire",
+ ["phase"] = 1
+ },
+ },
+ [10] = {
+ [1] = {
+ ["id"] = 2539,
+ ["name"] = "Spiced Wolf Meat",
+ ["rank"] = 0,
+ ["cost"] = 50,
+ ["texture"] = "Interface/ICONS/inv_misc_food_65",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 6412,
+ ["name"] = "Kaldorei Spider Kabob",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_68",
+ ["phase"] = 1
+ },
+ },
+ [20] = {
+ [1] = {
+ ["id"] = 6413,
+ ["name"] = "Scorpid Surprise",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_10",
+ ["phase"] = 1
+ },
+ },
+ [25] = {
+ [1] = {
+ ["id"] = 2795,
+ ["name"] = "Beer Basted Boar Ribs",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_48",
+ ["phase"] = 1
+ },
+ },
+ [35] = {
+ [1] = {
+ ["id"] = 6414,
+ ["name"] = "Roasted Kodo Meat",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_60",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 21144,
+ ["name"] = "Egg Nog",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_drink_04",
+ ["phase"] = 1
+ },
+ },
+ [40] = {
+ [1] = {
+ ["id"] = 8607,
+ ["name"] = "Smoked Bear Meat",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_13",
+ ["phase"] = 1
+ },
+ },
+ [50] = {
+ [1] = {
+ ["id"] = 2541,
+ ["name"] = "Coyote Steak",
+ ["rank"] = 0,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/inv_misc_food_65",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 2542,
+ ["name"] = "Goretusk Liver Pie",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_10",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 3102,
+ ["name"] = "Cooking (Journeyman)",
+ ["rank"] = 0,
+ ["cost"] = 500,
+ ["texture"] = "Interface/ICONS/inv_misc_food_15",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 6415,
+ ["name"] = "Fillet of Frenzy",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_fish_05",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 6416,
+ ["name"] = "Strider Stew",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_bowl_01",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 6499,
+ ["name"] = "Boiled Clams",
+ ["rank"] = 0,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/inv_misc_shell_02",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 7753,
+ ["name"] = "Longjaw Mud Snapper",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_fish_32",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 7754,
+ ["name"] = "Loch Frenzy Delight",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_01",
+ ["phase"] = 1
+ },
+ [9] = {
+ ["id"] = 7827,
+ ["name"] = "Rainbow Fin Albacore",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_fish_27",
+ ["phase"] = 1
+ },
+ [10] = {
+ ["id"] = 33278,
+ ["name"] = "Bat Bites",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_86_basilisk",
+ ["phase"] = 1
+ },
+ },
+ [60] = {
+ [1] = {
+ ["id"] = 3371,
+ ["name"] = "Blood Sausage",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_49",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 9513,
+ ["name"] = "Thistle Tea",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_drink_milk_05",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 28267,
+ ["name"] = "Crunchy Spider Surprise",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_88_ravagernuggets",
+ ["phase"] = 1
+ },
+ },
+ [75] = {
+ [1] = {
+ ["id"] = 2543,
+ ["name"] = "Westfall Stew",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_bowl_01",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 2544,
+ ["name"] = "Crab Cake",
+ ["rank"] = 0,
+ ["cost"] = 200,
+ ["texture"] = "Interface/ICONS/inv_misc_food_08",
+ ["phase"] = 1
+ },
+ },
+ [80] = {
+ [1] = {
+ ["id"] = 2546,
+ ["name"] = "Dry Pork Ribs",
+ ["rank"] = 0,
+ ["cost"] = 150,
+ ["texture"] = "Interface/ICONS/inv_misc_food_48",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 3370,
+ ["name"] = "Crocolisk Steak",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_47",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 25704,
+ ["name"] = "Smoked Sagefish",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_fish_20",
+ ["phase"] = 1
+ },
+ },
+ [85] = {
+ [1] = {
+ ["id"] = 2545,
+ ["name"] = "Cooked Crab Claw",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_birdbeck_02",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 8238,
+ ["name"] = "Savory Deviate Delight",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_monsterhead_04",
+ ["phase"] = 1
+ },
+ },
+ [90] = {
+ [1] = {
+ ["id"] = 3372,
+ ["name"] = "Murloc Fin Soup",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_bowl_01",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 6417,
+ ["name"] = "Dig Rat Stew",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_bowl_01",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 6501,
+ ["name"] = "Clam Chowder",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_01",
+ ["phase"] = 1
+ },
+ },
+ [100] = {
+ [1] = {
+ ["id"] = 2549,
+ ["name"] = "Seasoned Wolf Kabob",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_16",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 6418,
+ ["name"] = "Crispy Lizard Tail",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_17",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 7755,
+ ["name"] = "Bristle Whisker Catfish",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_fish_30",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 2547,
+ ["name"] = "Redridge Goulash",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_bowl_01",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 45695,
+ ["name"] = "Captain Rumsey's Lager",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_drink_03",
+ ["phase"] = 1
+ },
+ },
+ [110] = {
+ [1] = {
+ ["id"] = 3377,
+ ["name"] = "Gooey Spider Cake",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_10",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 3397,
+ ["name"] = "Big Bear Steak",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_47",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 6419,
+ ["name"] = "Lean Venison",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_72",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 2548,
+ ["name"] = "Succulent Pork Ribs",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_16",
+ ["phase"] = 1
+ },
+ },
+ [120] = {
+ [1] = {
+ ["id"] = 3373,
+ ["name"] = "Crocolisk Gumbo",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_bowl_01",
+ ["phase"] = 1
+ },
+ },
+ [125] = {
+ [1] = {
+ ["id"] = 3413,
+ ["name"] = "Cooking (Expert)",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_15",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 3398,
+ ["name"] = "Hot Lion Chops",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_18",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 6500,
+ ["name"] = "Goblin Deviled Clams",
+ ["rank"] = 0,
+ ["cost"] = 300,
+ ["texture"] = "Interface/ICONS/inv_misc_shell_01",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 15853,
+ ["name"] = "Lean Wolf Steak",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_47",
+ ["phase"] = 1
+ },
+ },
+ [130] = {
+ [1] = {
+ ["id"] = 3376,
+ ["name"] = "Curiously Tasty Omelet",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_egg_04",
+ ["phase"] = 1
+ },
+ },
+ [150] = {
+ [1] = {
+ ["id"] = 3399,
+ ["name"] = "Tasty Lion Steak",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_14",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 24418,
+ ["name"] = "Heavy Crocolisk Stew",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_64",
+ ["phase"] = 1
+ },
+ },
+ [175] = {
+ [1] = {
+ ["id"] = 3400,
+ ["name"] = "Soothing Turtle Bisque",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_bowl_01",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 4094,
+ ["name"] = "Barbecued Buzzard Wing",
+ ["rank"] = 0,
+ ["cost"] = 450,
+ ["texture"] = "Interface/ICONS/inv_misc_food_18",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 7213,
+ ["name"] = "Giant Clam Scorcho",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_ammo_firetar",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 15855,
+ ["name"] = "Roast Raptor",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_50",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 15856,
+ ["name"] = "Hot Wolf Ribs",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_48",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 15861,
+ ["name"] = "Jungle Stew",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_drink_17",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 15863,
+ ["name"] = "Carrion Surprise",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_49",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 15865,
+ ["name"] = "Mystery Stew",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_drink_19",
+ ["phase"] = 1
+ },
+ [9] = {
+ ["id"] = 20916,
+ ["name"] = "Mithril Headed Trout",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_fish_02",
+ ["phase"] = 1
+ },
+ [10] = {
+ ["id"] = 25954,
+ ["name"] = "Sagefish Delight",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_fish_21",
+ ["phase"] = 1
+ },
+ [11] = {
+ ["id"] = 7828,
+ ["name"] = "Rockscale Cod",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_fish_04",
+ ["phase"] = 1
+ },
+ [12] = {
+ ["id"] = 13028,
+ ["name"] = "Goldthorn Tea",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_drink_15",
+ ["phase"] = 1
+ },
+ },
+ [200] = {
+ [1] = {
+ ["id"] = 15906,
+ ["name"] = "Dragonbreath Chili",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_drink_17",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 15910,
+ ["name"] = "Heavy Kodo Stew",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_drink_19",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 21175,
+ ["name"] = "Spider Sausage",
+ ["rank"] = 0,
+ ["cost"] = 4000,
+ ["texture"] = "Interface/ICONS/inv_misc_food_66",
+ ["phase"] = 1
+ },
+ },
+ [225] = {
+ [1] = {
+ ["id"] = 18260,
+ ["name"] = "Cooking (Artisan)",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_15",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 15915,
+ ["name"] = "Spiced Chili Crab",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_48",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 15933,
+ ["name"] = "Monster Omelet",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_06",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 18238,
+ ["name"] = "Spotted Yellowtail",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_fish_01",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 18239,
+ ["name"] = "Cooked Glossy Mightfish",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_monsterhead_03",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 18241,
+ ["name"] = "Filet of Redgill",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_fish_06",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 20626,
+ ["name"] = "Undermine Clam Chowder",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_drink_17",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 22480,
+ ["name"] = "Tender Wolf Steak",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_47",
+ ["phase"] = 1
+ },
+ },
+ [240] = {
+ [1] = {
+ ["id"] = 18240,
+ ["name"] = "Grilled Squid",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_fish_13",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 18242,
+ ["name"] = "Hot Smoked Bass",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_fish_03",
+ ["phase"] = 1
+ },
+ },
+ [250] = {
+ [1] = {
+ ["id"] = 18243,
+ ["name"] = "Nightfin Soup",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_drink_17",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 18244,
+ ["name"] = "Poached Sunscale Salmon",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_fish_19",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 46684,
+ ["name"] = "Charred Bear Kabobs",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_68",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 46688,
+ ["name"] = "Juicy Bear Burger",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_65",
+ ["phase"] = 1
+ },
+ },
+ [275] = {
+ [1] = {
+ ["id"] = 33359,
+ ["name"] = "Cooking (Master)",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_15",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 18245,
+ ["name"] = "Lobster Stew",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_drink_17",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 18246,
+ ["name"] = "Mightfish Steak",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_47",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 18247,
+ ["name"] = "Baked Salmon",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_fish_20",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 22761,
+ ["name"] = "Runn Tum Tuber Surprise",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_63",
+ ["phase"] = 1
+ },
+ },
+ [285] = {
+ [1] = {
+ ["id"] = 24801,
+ ["name"] = "Smoked Desert Dumplings",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_64",
+ ["phase"] = 1
+ },
+ },
+ [300] = {
+ [1] = {
+ ["id"] = 43772,
+ ["name"] = "Kibler's Bits",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_49",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 25659,
+ ["name"] = "Dirge's Kickin' Chimaerok Chops",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_65",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 33279,
+ ["name"] = "Buzzard Bites",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_85_stegadonbite",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 33284,
+ ["name"] = "Ravager Dog",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_53",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 33290,
+ ["name"] = "Blackened Trout",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_77",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 33291,
+ ["name"] = "Feltail Delight",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_74",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 36210,
+ ["name"] = "Clam Bar",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_27",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 43758,
+ ["name"] = "Stormchops",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_91",
+ ["phase"] = 1
+ },
+ [9] = {
+ ["id"] = 43761,
+ ["name"] = "Broiled Bloodfin",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_fish_29",
+ ["phase"] = 1
+ },
+ },
+ [310] = {
+ [1] = {
+ ["id"] = 33285,
+ ["name"] = "Sporeling Snack",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_87_sporelingsnack",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 33292,
+ ["name"] = "Blackened Sporefish",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_79",
+ ["phase"] = 1
+ },
+ },
+ [315] = {
+ [1] = {
+ ["id"] = 33286,
+ ["name"] = "Blackened Basilisk",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_86_basilisk",
+ ["phase"] = 1
+ },
+ },
+ [320] = {
+ [1] = {
+ ["id"] = 33293,
+ ["name"] = "Grilled Mudfish",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_78",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 33294,
+ ["name"] = "Poached Bluefish",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_76",
+ ["phase"] = 1
+ },
+ },
+ [325] = {
+ [1] = {
+ ["id"] = 33287,
+ ["name"] = "Roasted Clefthoof",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_60",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 33288,
+ ["name"] = "Warp Burger",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_65",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 33289,
+ ["name"] = "Talbuk Steak",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_84_roastclefthoof",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 33295,
+ ["name"] = "Golden Fish Sticks",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_fish_18",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 43707,
+ ["name"] = "Skullfish Soup",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_63",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 43765,
+ ["name"] = "Spicy Hot Talbuk",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_84_roastclefthoof",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 45022,
+ ["name"] = "Hot Apple Cider",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_drink_23",
+ ["phase"] = 1
+ },
+ },
+ [335] = {
+ [1] = {
+ ["id"] = 38867,
+ ["name"] = "Mok'Nathal Shortribs",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_48",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 38868,
+ ["name"] = "Crunchy Serpent",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_food_88_ravagernuggets",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 42296,
+ ["name"] = "Stewed Trout",
+ ["rank"] = 0,
+ ["cost"] = 42000,
+ ["texture"] = "Interface/ICONS/inv_misc_food_64",
+ ["phase"] = 1
+ },
+ },
+ [350] = {
+ [1] = {
+ ["id"] = 33296,
+ ["name"] = "Spicy Crawdad",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_fish_16",
+ ["phase"] = 1
+ },
+ },
+ [375] = {
+ [1] = {
+ ["id"] = 42302,
+ ["name"] = "Fisherman's Feast",
+ ["rank"] = 0,
+ ["cost"] = 60000,
+ ["texture"] = "Interface/ICONS/inv_misc_food_88_ravagernuggets",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 42305,
+ ["name"] = "Hot Buttered Trout",
+ ["rank"] = 0,
+ ["cost"] = 60000,
+ ["texture"] = "Interface/ICONS/inv_misc_food_76",
+ ["phase"] = 1
+ },
+ },
+}
diff --git a/Database/professions/Enchanting.lua b/Database/professions/Enchanting.lua
new file mode 100644
index 0000000..4ea7983
--- /dev/null
+++ b/Database/professions/Enchanting.lua
@@ -0,0 +1,1958 @@
+local _, FieldGuide = ...
+
+FieldGuide.ENCHANTING = {
+ [1] = {
+ [1] = {
+ ["id"] = 7411,
+ ["name"] = "Enchanting (Apprentice)",
+ ["rank"] = 0,
+ ["cost"] = 10,
+ ["texture"] = "Interface/ICONS/trade_engraving",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 7421,
+ ["name"] = "Runed Copper Rod",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_staff_goldfeathered_01",
+ ["phase"] = 1
+ },
+ },
+ [10] = {
+ [1] = {
+ ["id"] = 14293,
+ ["name"] = "Lesser Magic Wand",
+ ["rank"] = 0,
+ ["cost"] = 50,
+ ["texture"] = "Interface/ICONS/inv_staff_02",
+ ["phase"] = 1
+ },
+ },
+ [15] = {
+ [1] = {
+ ["id"] = 7420,
+ ["name"] = "Enchant Chest - Minor Health",
+ ["rank"] = 0,
+ ["cost"] = 50,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ },
+ [20] = {
+ [1] = {
+ ["id"] = 7443,
+ ["name"] = "Enchant Chest - Minor Mana",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 13262,
+ ["name"] = "Disenchant",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_enchant_disenchant",
+ ["phase"] = 1
+ },
+ },
+ [40] = {
+ [1] = {
+ ["id"] = 7426,
+ ["name"] = "Enchant Chest - Minor Absorption",
+ ["rank"] = 0,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ },
+ [45] = {
+ [1] = {
+ ["id"] = 7454,
+ ["name"] = "Enchant Cloak - Minor Resistance",
+ ["rank"] = 0,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 25124,
+ ["name"] = "Minor Wizard Oil",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_poison_mindnumbing",
+ ["phase"] = 1
+ },
+ },
+ [50] = {
+ [1] = {
+ ["id"] = 7412,
+ ["name"] = "Enchanting (Journeyman)",
+ ["rank"] = 0,
+ ["cost"] = 500,
+ ["texture"] = "Interface/ICONS/trade_engraving",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 7457,
+ ["name"] = "Enchant Bracer - Minor Stamina",
+ ["rank"] = 0,
+ ["cost"] = 250,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ },
+ [60] = {
+ [1] = {
+ ["id"] = 7748,
+ ["name"] = "Enchant Chest - Lesser Health",
+ ["rank"] = 0,
+ ["cost"] = 250,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 7766,
+ ["name"] = "Enchant Bracer - Minor Spirit",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ },
+ [70] = {
+ [1] = {
+ ["id"] = 7771,
+ ["name"] = "Enchant Cloak - Minor Protection",
+ ["rank"] = 0,
+ ["cost"] = 200,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 14807,
+ ["name"] = "Greater Magic Wand",
+ ["rank"] = 0,
+ ["cost"] = 200,
+ ["texture"] = "Interface/ICONS/inv_staff_07",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 7418,
+ ["name"] = "Enchant Bracer - Minor Health",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ },
+ [80] = {
+ [1] = {
+ ["id"] = 7776,
+ ["name"] = "Enchant Chest - Lesser Mana",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 7779,
+ ["name"] = "Enchant Bracer - Minor Agility",
+ ["rank"] = 0,
+ ["cost"] = 400,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 7782,
+ ["name"] = "Enchant Bracer - Minor Strength",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 7428,
+ ["name"] = "Enchant Bracer - Minor Deflection",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ },
+ [90] = {
+ [1] = {
+ ["id"] = 7786,
+ ["name"] = "Enchant Weapon - Minor Beastslayer",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 7788,
+ ["name"] = "Enchant Weapon - Minor Striking",
+ ["rank"] = 0,
+ ["cost"] = 500,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ },
+ [100] = {
+ [1] = {
+ ["id"] = 7745,
+ ["name"] = "Enchant 2H Weapon - Minor Impact",
+ ["rank"] = 0,
+ ["cost"] = 500,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 7793,
+ ["name"] = "Enchant 2H Weapon - Lesser Intellect",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_note_01",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 7795,
+ ["name"] = "Runed Silver Rod",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_staff_01",
+ ["phase"] = 1
+ },
+ },
+ [105] = {
+ [1] = {
+ ["id"] = 13378,
+ ["name"] = "Enchant Shield - Minor Stamina",
+ ["rank"] = 0,
+ ["cost"] = 600,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ },
+ [110] = {
+ [1] = {
+ ["id"] = 13380,
+ ["name"] = "Enchant 2H Weapon - Lesser Spirit",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 13419,
+ ["name"] = "Enchant Cloak - Minor Agility",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ },
+ [115] = {
+ [1] = {
+ ["id"] = 13421,
+ ["name"] = "Enchant Cloak - Lesser Protection",
+ ["rank"] = 0,
+ ["cost"] = 800,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 13464,
+ ["name"] = "Enchant Shield - Lesser Protection",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ },
+ [120] = {
+ [1] = {
+ ["id"] = 7857,
+ ["name"] = "Enchant Chest - Health",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 7859,
+ ["name"] = "Enchant Bracer - Lesser Spirit",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ },
+ [125] = {
+ [1] = {
+ ["id"] = 7413,
+ ["name"] = "Enchanting (Expert)",
+ ["rank"] = 0,
+ ["cost"] = 5000,
+ ["texture"] = "Interface/ICONS/trade_engraving",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 7861,
+ ["name"] = "Enchant Cloak - Lesser Fire Resistance",
+ ["rank"] = 0,
+ ["cost"] = 1250,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 7863,
+ ["name"] = "Enchant Boots - Minor Stamina",
+ ["rank"] = 0,
+ ["cost"] = 1400,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 7867,
+ ["name"] = "Enchant Boots - Minor Agility",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ },
+ [130] = {
+ [1] = {
+ ["id"] = 13485,
+ ["name"] = "Enchant Shield - Lesser Spirit",
+ ["rank"] = 0,
+ ["cost"] = 1500,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 13501,
+ ["name"] = "Enchant Bracer - Lesser Stamina",
+ ["rank"] = 0,
+ ["cost"] = 1500,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ },
+ [135] = {
+ [1] = {
+ ["id"] = 13522,
+ ["name"] = "Enchant Cloak - Lesser Shadow Resistance",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ },
+ [140] = {
+ [1] = {
+ ["id"] = 13503,
+ ["name"] = "Enchant Weapon - Lesser Striking",
+ ["rank"] = 0,
+ ["cost"] = 2000,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 13536,
+ ["name"] = "Enchant Bracer - Lesser Strength",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 13538,
+ ["name"] = "Enchant Chest - Lesser Absorption",
+ ["rank"] = 0,
+ ["cost"] = 2500,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ },
+ [145] = {
+ [1] = {
+ ["id"] = 13529,
+ ["name"] = "Enchant 2H Weapon - Lesser Impact",
+ ["rank"] = 0,
+ ["cost"] = 2400,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 13607,
+ ["name"] = "Enchant Chest - Mana",
+ ["rank"] = 0,
+ ["cost"] = 2400,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 13612,
+ ["name"] = "Enchant Gloves - Mining",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 13617,
+ ["name"] = "Enchant Gloves - Herbalism",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 13620,
+ ["name"] = "Enchant Gloves - Fishing",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ },
+ [150] = {
+ [1] = {
+ ["id"] = 13622,
+ ["name"] = "Enchant Bracer - Lesser Intellect",
+ ["rank"] = 0,
+ ["cost"] = 2500,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 13626,
+ ["name"] = "Enchant Chest - Minor Stats",
+ ["rank"] = 0,
+ ["cost"] = 2500,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 13628,
+ ["name"] = "Runed Golden Rod",
+ ["rank"] = 0,
+ ["cost"] = 2500,
+ ["texture"] = "Interface/ICONS/inv_staff_10",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 25125,
+ ["name"] = "Minor Mana Oil",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_98",
+ ["phase"] = 1
+ },
+ },
+ [155] = {
+ [1] = {
+ ["id"] = 13631,
+ ["name"] = "Enchant Shield - Lesser Stamina",
+ ["rank"] = 0,
+ ["cost"] = 2600,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 13635,
+ ["name"] = "Enchant Cloak - Defense",
+ ["rank"] = 0,
+ ["cost"] = 2600,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 14809,
+ ["name"] = "Lesser Mystic Wand",
+ ["rank"] = 0,
+ ["cost"] = 2600,
+ ["texture"] = "Interface/ICONS/inv_staff_02",
+ ["phase"] = 1
+ },
+ },
+ [160] = {
+ [1] = {
+ ["id"] = 13637,
+ ["name"] = "Enchant Boots - Lesser Agility",
+ ["rank"] = 0,
+ ["cost"] = 2800,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 13640,
+ ["name"] = "Enchant Chest - Greater Health",
+ ["rank"] = 0,
+ ["cost"] = 2700,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ },
+ [165] = {
+ [1] = {
+ ["id"] = 13642,
+ ["name"] = "Enchant Bracer - Spirit",
+ ["rank"] = 0,
+ ["cost"] = 2800,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ },
+ [170] = {
+ [1] = {
+ ["id"] = 13644,
+ ["name"] = "Enchant Boots - Lesser Stamina",
+ ["rank"] = 0,
+ ["cost"] = 2800,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 13646,
+ ["name"] = "Enchant Bracer - Lesser Deflection",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 13648,
+ ["name"] = "Enchant Bracer - Stamina",
+ ["rank"] = 0,
+ ["cost"] = 2800,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ },
+ [175] = {
+ [1] = {
+ ["id"] = 13653,
+ ["name"] = "Enchant Weapon - Lesser Beastslayer",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 13655,
+ ["name"] = "Enchant Weapon - Lesser Elemental Slayer",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 13657,
+ ["name"] = "Enchant Cloak - Fire Resistance",
+ ["rank"] = 0,
+ ["cost"] = 3000,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 14810,
+ ["name"] = "Greater Mystic Wand",
+ ["rank"] = 0,
+ ["cost"] = 3000,
+ ["texture"] = "Interface/ICONS/inv_wand_07",
+ ["phase"] = 1
+ },
+ },
+ [180] = {
+ [1] = {
+ ["id"] = 13659,
+ ["name"] = "Enchant Shield - Spirit",
+ ["rank"] = 0,
+ ["cost"] = 3200,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 13661,
+ ["name"] = "Enchant Bracer - Strength",
+ ["rank"] = 0,
+ ["cost"] = 3600,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ },
+ [185] = {
+ [1] = {
+ ["id"] = 13663,
+ ["name"] = "Enchant Chest - Greater Mana",
+ ["rank"] = 0,
+ ["cost"] = 3800,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ },
+ [190] = {
+ [1] = {
+ ["id"] = 13687,
+ ["name"] = "Enchant Boots - Lesser Spirit",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 21931,
+ ["name"] = "Enchant Weapon - Winter's Might",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ },
+ [195] = {
+ [1] = {
+ ["id"] = 13689,
+ ["name"] = "Enchant Shield - Lesser Block",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 13693,
+ ["name"] = "Enchant Weapon - Striking",
+ ["rank"] = 0,
+ ["cost"] = 4000,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ },
+ [200] = {
+ [1] = {
+ ["id"] = 13695,
+ ["name"] = "Enchant 2H Weapon - Impact",
+ ["rank"] = 0,
+ ["cost"] = 4000,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 13698,
+ ["name"] = "Enchant Gloves - Skinning",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 13700,
+ ["name"] = "Enchant Chest - Lesser Stats",
+ ["rank"] = 0,
+ ["cost"] = 4000,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 13702,
+ ["name"] = "Runed Truesilver Rod",
+ ["rank"] = 0,
+ ["cost"] = 4000,
+ ["texture"] = "Interface/ICONS/inv_staff_11",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 25126,
+ ["name"] = "Lesser Wizard Oil",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_103",
+ ["phase"] = 1
+ },
+ },
+ [205] = {
+ [1] = {
+ ["id"] = 13746,
+ ["name"] = "Enchant Cloak - Greater Defense",
+ ["rank"] = 0,
+ ["cost"] = 4200,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 13794,
+ ["name"] = "Enchant Cloak - Resistance",
+ ["rank"] = 0,
+ ["cost"] = 4200,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ },
+ [210] = {
+ [1] = {
+ ["id"] = 13815,
+ ["name"] = "Enchant Gloves - Agility",
+ ["rank"] = 0,
+ ["cost"] = 4400,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 13817,
+ ["name"] = "Enchant Shield - Stamina",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 13822,
+ ["name"] = "Enchant Bracer - Intellect",
+ ["rank"] = 0,
+ ["cost"] = 4400,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ },
+ [215] = {
+ [1] = {
+ ["id"] = 13836,
+ ["name"] = "Enchant Boots - Stamina",
+ ["rank"] = 0,
+ ["cost"] = 4600,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 13841,
+ ["name"] = "Enchant Gloves - Advanced Mining",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ },
+ [220] = {
+ [1] = {
+ ["id"] = 13846,
+ ["name"] = "Enchant Bracer - Greater Spirit",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 13858,
+ ["name"] = "Enchant Chest - Superior Health",
+ ["rank"] = 0,
+ ["cost"] = 4800,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ },
+ [225] = {
+ [1] = {
+ ["id"] = 13868,
+ ["name"] = "Enchant Gloves - Advanced Herbalism",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 13882,
+ ["name"] = "Enchant Cloak - Lesser Agility",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 13887,
+ ["name"] = "Enchant Gloves - Strength",
+ ["rank"] = 0,
+ ["cost"] = 5000,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 13890,
+ ["name"] = "Enchant Boots - Minor Speed",
+ ["rank"] = 0,
+ ["cost"] = 5000,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 13920,
+ ["name"] = "Enchanting (Artisan)",
+ ["rank"] = 0,
+ ["cost"] = 50000,
+ ["texture"] = "Interface/ICONS/trade_engraving",
+ ["phase"] = 1
+ },
+ },
+ [230] = {
+ [1] = {
+ ["id"] = 13905,
+ ["name"] = "Enchant Shield - Greater Spirit",
+ ["rank"] = 0,
+ ["cost"] = 5400,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 13915,
+ ["name"] = "Enchant Weapon - Demonslaying",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 13917,
+ ["name"] = "Enchant Chest - Superior Mana",
+ ["rank"] = 0,
+ ["cost"] = 5400,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ },
+ [235] = {
+ [1] = {
+ ["id"] = 13931,
+ ["name"] = "Enchant Bracer - Deflection",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 13933,
+ ["name"] = "Enchant Shield - Frost Resistance",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 13935,
+ ["name"] = "Enchant Boots - Agility",
+ ["rank"] = 0,
+ ["cost"] = 5800,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ },
+ [240] = {
+ [1] = {
+ ["id"] = 13937,
+ ["name"] = "Enchant 2H Weapon - Greater Impact",
+ ["rank"] = 0,
+ ["cost"] = 6200,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 13939,
+ ["name"] = "Enchant Bracer - Greater Strength",
+ ["rank"] = 0,
+ ["cost"] = 6200,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ },
+ [245] = {
+ [1] = {
+ ["id"] = 13941,
+ ["name"] = "Enchant Chest - Stats",
+ ["rank"] = 0,
+ ["cost"] = 6200,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 13943,
+ ["name"] = "Enchant Weapon - Greater Striking",
+ ["rank"] = 0,
+ ["cost"] = 6200,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 13945,
+ ["name"] = "Enchant Bracer - Greater Stamina",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ },
+ [250] = {
+ [1] = {
+ ["id"] = 13947,
+ ["name"] = "Enchant Gloves - Riding Skill",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 13948,
+ ["name"] = "Enchant Gloves - Minor Haste",
+ ["rank"] = 0,
+ ["cost"] = 6500,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 25127,
+ ["name"] = "Lesser Mana Oil",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_99",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 17180,
+ ["name"] = "Enchanted Thorium",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_ingot_eternium",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 17181,
+ ["name"] = "Enchanted Leather",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_misc_rune_05",
+ ["phase"] = 1
+ },
+ },
+ [255] = {
+ [1] = {
+ ["id"] = 20008,
+ ["name"] = "Enchant Bracer - Greater Intellect",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ },
+ [260] = {
+ [1] = {
+ ["id"] = 20020,
+ ["name"] = "Enchant Boots - Greater Stamina",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ },
+ [265] = {
+ [1] = {
+ ["id"] = 13898,
+ ["name"] = "Enchant Weapon - Fiery Weapon",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 15596,
+ ["name"] = "Smoking Heart of the Mountain",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_bloodstone_01",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 20014,
+ ["name"] = "Enchant Cloak - Greater Resistance",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 20017,
+ ["name"] = "Enchant Shield - Greater Stamina",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_note_01",
+ ["phase"] = 1
+ },
+ },
+ [270] = {
+ [1] = {
+ ["id"] = 20009,
+ ["name"] = "Enchant Bracer - Superior Spirit",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 20012,
+ ["name"] = "Enchant Gloves - Greater Agility",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ },
+ [275] = {
+ [1] = {
+ ["id"] = 20024,
+ ["name"] = "Enchant Boots - Spirit",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 20026,
+ ["name"] = "Enchant Chest - Major Health",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_note_01",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 25128,
+ ["name"] = "Wizard Oil",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_104",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 28029,
+ ["name"] = "Enchanting (Master)",
+ ["rank"] = 0,
+ ["cost"] = 100000,
+ ["texture"] = "Interface/ICONS/trade_engraving",
+ ["phase"] = 1
+ },
+ },
+ [280] = {
+ [1] = {
+ ["id"] = 20016,
+ ["name"] = "Enchant Shield - Superior Spirit",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ },
+ [285] = {
+ [1] = {
+ ["id"] = 20015,
+ ["name"] = "Enchant Cloak - Superior Defense",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_note_01",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 20029,
+ ["name"] = "Enchant Weapon - Icy Chill",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ },
+ [290] = {
+ [1] = {
+ ["id"] = 20028,
+ ["name"] = "Enchant Chest - Major Mana",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 20051,
+ ["name"] = "Runed Arcanite Rod",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_wand_09",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 23799,
+ ["name"] = "Enchant Weapon - Strength",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_note_01",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 23800,
+ ["name"] = "Enchant Weapon - Agility",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_note_01",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 23801,
+ ["name"] = "Enchant Bracer - Mana Regeneration",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_note_01",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 27837,
+ ["name"] = "Enchant 2H Weapon - Agility",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_note_01",
+ ["phase"] = 1
+ },
+ },
+ [295] = {
+ [1] = {
+ ["id"] = 20010,
+ ["name"] = "Enchant Bracer - Superior Strength",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 20013,
+ ["name"] = "Enchant Gloves - Greater Strength",
+ ["rank"] = 0,
+ ["cost"] = 20000,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 20023,
+ ["name"] = "Enchant Boots - Greater Agility",
+ ["rank"] = 0,
+ ["cost"] = 20000,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 20030,
+ ["name"] = "Enchant 2H Weapon - Superior Impact",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 20033,
+ ["name"] = "Enchant Weapon - Unholy Weapon",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ },
+ [300] = {
+ [1] = {
+ ["id"] = 20011,
+ ["name"] = "Enchant Bracer - Superior Stamina",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 20025,
+ ["name"] = "Enchant Chest - Greater Stats",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 20031,
+ ["name"] = "Enchant Weapon - Superior Striking",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 20032,
+ ["name"] = "Enchant Weapon - Lifestealing",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 20034,
+ ["name"] = "Enchant Weapon - Crusader",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 20035,
+ ["name"] = "Enchant 2H Weapon - Major Spirit",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 20036,
+ ["name"] = "Enchant 2H Weapon - Major Intellect",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 22749,
+ ["name"] = "Enchant Weapon - Spell Power",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [9] = {
+ ["id"] = 22750,
+ ["name"] = "Enchant Weapon - Healing Power",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [10] = {
+ ["id"] = 23802,
+ ["name"] = "Enchant Bracer - Healing Power",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_note_01",
+ ["phase"] = 1
+ },
+ [11] = {
+ ["id"] = 23803,
+ ["name"] = "Enchant Weapon - Mighty Spirit",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_note_01",
+ ["phase"] = 1
+ },
+ [12] = {
+ ["id"] = 23804,
+ ["name"] = "Enchant Weapon - Mighty Intellect",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_note_01",
+ ["phase"] = 1
+ },
+ [13] = {
+ ["id"] = 25072,
+ ["name"] = "Enchant Gloves - Threat",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [14] = {
+ ["id"] = 25073,
+ ["name"] = "Enchant Gloves - Shadow Power",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [15] = {
+ ["id"] = 25074,
+ ["name"] = "Enchant Gloves - Frost Power",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [16] = {
+ ["id"] = 25078,
+ ["name"] = "Enchant Gloves - Fire Power",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [17] = {
+ ["id"] = 25079,
+ ["name"] = "Enchant Gloves - Healing Power",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [18] = {
+ ["id"] = 25080,
+ ["name"] = "Enchant Gloves - Superior Agility",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [19] = {
+ ["id"] = 25081,
+ ["name"] = "Enchant Cloak - Greater Fire Resistance",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_note_01",
+ ["phase"] = 1
+ },
+ [20] = {
+ ["id"] = 25082,
+ ["name"] = "Enchant Cloak - Greater Nature Resistance",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_note_01",
+ ["phase"] = 1
+ },
+ [21] = {
+ ["id"] = 25083,
+ ["name"] = "Enchant Cloak - Stealth",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [22] = {
+ ["id"] = 25084,
+ ["name"] = "Enchant Cloak - Subtlety",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [23] = {
+ ["id"] = 25086,
+ ["name"] = "Enchant Cloak - Dodge",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [24] = {
+ ["id"] = 32664,
+ ["name"] = "Runed Fel Iron Rod",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_rod_enchantedfelsteel",
+ ["phase"] = 1
+ },
+ [25] = {
+ ["id"] = 33991,
+ ["name"] = "Enchant Chest - Restore Mana Prime",
+ ["rank"] = 0,
+ ["cost"] = 12500,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [26] = {
+ ["id"] = 34002,
+ ["name"] = "Enchant Bracer - Assault",
+ ["rank"] = 0,
+ ["cost"] = 12500,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [27] = {
+ ["id"] = 25129,
+ ["name"] = "Brilliant Wizard Oil",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_105",
+ ["phase"] = 1
+ },
+ [28] = {
+ ["id"] = 25130,
+ ["name"] = "Brilliant Mana Oil",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_100",
+ ["phase"] = 1
+ },
+ [29] = {
+ ["id"] = 42613,
+ ["name"] = "Nexus Transformation",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_enchant_shardprismaticsmall",
+ ["phase"] = 1
+ },
+ },
+ [305] = {
+ [1] = {
+ ["id"] = 27899,
+ ["name"] = "Enchant Bracer - Brawn",
+ ["rank"] = 0,
+ ["cost"] = 12500,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 27948,
+ ["name"] = "Enchant Boots - Vitality",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 33993,
+ ["name"] = "Enchant Gloves - Blasting",
+ ["rank"] = 0,
+ ["cost"] = 12500,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 34001,
+ ["name"] = "Enchant Bracer - Major Intellect",
+ ["rank"] = 0,
+ ["cost"] = 12500,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ },
+ [310] = {
+ [1] = {
+ ["id"] = 27944,
+ ["name"] = "Enchant Shield - Tough Shield",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 27961,
+ ["name"] = "Enchant Cloak - Major Armor",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 33996,
+ ["name"] = "Enchant Gloves - Assault",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 34004,
+ ["name"] = "Enchant Cloak - Greater Agility",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 28016,
+ ["name"] = "Superior Mana Oil",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_101",
+ ["phase"] = 1
+ },
+ },
+ [315] = {
+ [1] = {
+ ["id"] = 27905,
+ ["name"] = "Enchant Bracer - Stats",
+ ["rank"] = 0,
+ ["cost"] = 12500,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 27957,
+ ["name"] = "Enchant Chest - Exceptional Health",
+ ["rank"] = 0,
+ ["cost"] = 17500,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ },
+ [320] = {
+ [1] = {
+ ["id"] = 27906,
+ ["name"] = "Enchant Bracer - Major Defense",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 27950,
+ ["name"] = "Enchant Boots - Fortitude",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 33990,
+ ["name"] = "Enchant Chest - Major Spirit",
+ ["rank"] = 0,
+ ["cost"] = 20000,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ },
+ [325] = {
+ [1] = {
+ ["id"] = 27911,
+ ["name"] = "Enchant Bracer - Superior Healing",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_note_01",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 27945,
+ ["name"] = "Enchant Shield - Intellect",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_note_01",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 27958,
+ ["name"] = "Enchant Chest - Exceptional Mana",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_note_01",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 34003,
+ ["name"] = "Enchant Cloak - Spell Penetration",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 34009,
+ ["name"] = "Enchant Shield - Major Stamina",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_note_01",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 28027,
+ ["name"] = "Prismatic Sphere",
+ ["rank"] = 0,
+ ["cost"] = 40000,
+ ["texture"] = "Interface/ICONS/inv_enchant_prismaticsphere",
+ ["phase"] = 1
+ },
+ },
+ [330] = {
+ [1] = {
+ ["id"] = 27962,
+ ["name"] = "Enchant Cloak - Major Resistance",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 44383,
+ ["name"] = "Enchant Shield - Resilience",
+ ["rank"] = 0,
+ ["cost"] = 25000,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ },
+ [335] = {
+ [1] = {
+ ["id"] = 27913,
+ ["name"] = "Enchant Bracer - Restore Mana Prime",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 42615,
+ ["name"] = "Small Prismatic Shard",
+ ["rank"] = 0,
+ ["cost"] = 40000,
+ ["texture"] = "Interface/ICONS/inv_enchant_shardprismaticsmall",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 28022,
+ ["name"] = "Large Prismatic Shard",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_enchant_shardprismaticlarge",
+ ["phase"] = 1
+ },
+ },
+ [340] = {
+ [1] = {
+ ["id"] = 27946,
+ ["name"] = "Enchant Shield - Shield Block",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 27951,
+ ["name"] = "Enchant Boots - Dexterity",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 27967,
+ ["name"] = "Enchant Weapon - Major Striking",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_note_01",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 27968,
+ ["name"] = "Enchant Weapon - Major Intellect",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 33995,
+ ["name"] = "Enchant Gloves - Major Strength",
+ ["rank"] = 0,
+ ["cost"] = 25000,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 28019,
+ ["name"] = "Superior Wizard Oil",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_141",
+ ["phase"] = 1
+ },
+ },
+ [345] = {
+ [1] = {
+ ["id"] = 27960,
+ ["name"] = "Enchant Chest - Exceptional Stats",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_note_01",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 33992,
+ ["name"] = "Enchant Chest - Major Resilience",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ },
+ [350] = {
+ [1] = {
+ ["id"] = 27914,
+ ["name"] = "Enchant Bracer - Fortitude",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 27971,
+ ["name"] = "Enchant 2H Weapon - Savagery",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 27972,
+ ["name"] = "Enchant Weapon - Potency",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 27975,
+ ["name"] = "Enchant Weapon - Major Spellpower",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 28028,
+ ["name"] = "Void Sphere",
+ ["rank"] = 0,
+ ["cost"] = 80000,
+ ["texture"] = "Interface/ICONS/inv_enchant_voidsphere",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 32665,
+ ["name"] = "Runed Adamantite Rod",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_rod_enchantedadamantite",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 33999,
+ ["name"] = "Enchant Gloves - Major Healing",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 34005,
+ ["name"] = "Enchant Cloak - Greater Arcane Resistance",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [9] = {
+ ["id"] = 34006,
+ ["name"] = "Enchant Cloak - Greater Shadow Resistance",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [10] = {
+ ["id"] = 34010,
+ ["name"] = "Enchant Weapon - Major Healing",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [11] = {
+ ["id"] = 42620,
+ ["name"] = "Enchant Weapon - Greater Agility",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_note_01",
+ ["phase"] = 1
+ },
+ [12] = {
+ ["id"] = 46578,
+ ["name"] = "Enchant Weapon - Deathfrost",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ },
+ [360] = {
+ [1] = {
+ ["id"] = 27917,
+ ["name"] = "Enchant Bracer - Spellpower",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 27920,
+ ["name"] = "Enchant Ring - Striking",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_note_01",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 27924,
+ ["name"] = "Enchant Ring - Spellpower",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_note_01",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 27947,
+ ["name"] = "Enchant Shield - Resistance",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 27977,
+ ["name"] = "Enchant 2H Weapon - Major Agility",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 28003,
+ ["name"] = "Enchant Weapon - Spellsurge",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 28004,
+ ["name"] = "Enchant Weapon - Battlemaster",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 33994,
+ ["name"] = "Enchant Gloves - Spell Strike",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [9] = {
+ ["id"] = 33997,
+ ["name"] = "Enchant Gloves - Major Spellpower",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [10] = {
+ ["id"] = 34007,
+ ["name"] = "Enchant Boots - Cat's Swiftness",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [11] = {
+ ["id"] = 34008,
+ ["name"] = "Enchant Boots - Boar's Speed",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [12] = {
+ ["id"] = 46594,
+ ["name"] = "Enchant Chest - Defense",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_note_01",
+ ["phase"] = 1
+ },
+ },
+ [370] = {
+ [1] = {
+ ["id"] = 27926,
+ ["name"] = "Enchant Ring - Healing Power",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_note_01",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 27954,
+ ["name"] = "Enchant Boots - Surefooted",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ },
+ [375] = {
+ [1] = {
+ ["id"] = 27927,
+ ["name"] = "Enchant Ring - Stats",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_note_01",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 27981,
+ ["name"] = "Enchant Weapon - Sunfire",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 27982,
+ ["name"] = "Enchant Weapon - Soulfrost",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 27984,
+ ["name"] = "Enchant Weapon - Mongoose",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 42974,
+ ["name"] = "Enchant Weapon - Executioner",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 47051,
+ ["name"] = "Enchant Cloak - Steelweave",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_greaterheal",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 32667,
+ ["name"] = "Runed Eternium Rod",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_rod_enchantedeternium",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 45765,
+ ["name"] = "Void Shatter",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_enchant_shardprismaticlarge",
+ ["phase"] = 1
+ },
+ },
+}
diff --git a/Database/professions/Engineering.lua b/Database/professions/Engineering.lua
new file mode 100644
index 0000000..e184bc9
--- /dev/null
+++ b/Database/professions/Engineering.lua
@@ -0,0 +1,2094 @@
+local _, FieldGuide = ...
+
+FieldGuide.ENGINEERING = {
+ [1] = {
+ [1] = {
+ ["id"] = 4036,
+ ["name"] = "Engineering (Apprentice)",
+ ["rank"] = 0,
+ ["cost"] = 10,
+ ["texture"] = "Interface/ICONS/trade_engineering",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 20219,
+ ["name"] = "Gnomish Engineer",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gizmo_02",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 20222,
+ ["name"] = "Goblin Engineer",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_fire_selfdestruct",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 3919,
+ ["name"] = "Rough Dynamite",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_bomb_06",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 3918,
+ ["name"] = "Rough Blasting Powder",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_dust_01",
+ ["phase"] = 1
+ },
+ },
+ [30] = {
+ [1] = {
+ ["id"] = 3923,
+ ["name"] = "Rough Copper Bomb",
+ ["rank"] = 0,
+ ["cost"] = 130,
+ ["texture"] = "Interface/ICONS/inv_misc_bomb_09",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 3922,
+ ["name"] = "Handful of Copper Bolts",
+ ["rank"] = 0,
+ ["cost"] = 115,
+ ["texture"] = "Interface/ICONS/inv_misc_gear_06",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 3920,
+ ["name"] = "Crafted Light Shot",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_ammo_bullet_02",
+ ["phase"] = 1
+ },
+ },
+ [50] = {
+ [1] = {
+ ["id"] = 3924,
+ ["name"] = "Copper Tube",
+ ["rank"] = 0,
+ ["cost"] = 150,
+ ["texture"] = "Interface/ICONS/inv_gizmo_pipe_02",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 3925,
+ ["name"] = "Rough Boomstick",
+ ["rank"] = 0,
+ ["cost"] = 150,
+ ["texture"] = "Interface/ICONS/inv_weapon_rifle_03",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 4037,
+ ["name"] = "Engineering (Journeyman)",
+ ["rank"] = 0,
+ ["cost"] = 500,
+ ["texture"] = "Interface/ICONS/trade_engineering",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 7430,
+ ["name"] = "Arclight Spanner",
+ ["rank"] = 0,
+ ["cost"] = 150,
+ ["texture"] = "Interface/ICONS/inv_misc_wrench_01",
+ ["phase"] = 1
+ },
+ },
+ [60] = {
+ [1] = {
+ ["id"] = 3977,
+ ["name"] = "Crude Scope",
+ ["rank"] = 0,
+ ["cost"] = 200,
+ ["texture"] = "Interface/ICONS/inv_misc_spyglass_02",
+ ["phase"] = 1
+ },
+ },
+ [65] = {
+ [1] = {
+ ["id"] = 3926,
+ ["name"] = "Copper Modulator",
+ ["rank"] = 0,
+ ["cost"] = 225,
+ ["texture"] = "Interface/ICONS/inv_gizmo_03",
+ ["phase"] = 1
+ },
+ },
+ [75] = {
+ [1] = {
+ ["id"] = 3928,
+ ["name"] = "Mechanical Squirrel",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_crate_01",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 3931,
+ ["name"] = "Coarse Dynamite",
+ ["rank"] = 0,
+ ["cost"] = 250,
+ ["texture"] = "Interface/ICONS/inv_misc_bomb_06",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 3929,
+ ["name"] = "Coarse Blasting Powder",
+ ["rank"] = 0,
+ ["cost"] = 250,
+ ["texture"] = "Interface/ICONS/inv_misc_dust_02",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 3930,
+ ["name"] = "Crafted Heavy Shot",
+ ["rank"] = 0,
+ ["cost"] = 250,
+ ["texture"] = "Interface/ICONS/inv_ammo_bullet_02",
+ ["phase"] = 1
+ },
+ },
+ [85] = {
+ [1] = {
+ ["id"] = 3932,
+ ["name"] = "Target Dummy",
+ ["rank"] = 0,
+ ["cost"] = 300,
+ ["texture"] = "Interface/ICONS/inv_crate_06",
+ ["phase"] = 1
+ },
+ },
+ [90] = {
+ [1] = {
+ ["id"] = 3973,
+ ["name"] = "Silver Contact",
+ ["rank"] = 0,
+ ["cost"] = 300,
+ ["texture"] = "Interface/ICONS/inv_ingot_04",
+ ["phase"] = 1
+ },
+ },
+ [100] = {
+ [1] = {
+ ["id"] = 3933,
+ ["name"] = "Small Seaforium Charge",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_urn_01",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 3934,
+ ["name"] = "Flying Tiger Goggles",
+ ["rank"] = 0,
+ ["cost"] = 400,
+ ["texture"] = "Interface/ICONS/inv_helmet_47",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 8334,
+ ["name"] = "Practice Lock",
+ ["rank"] = 0,
+ ["cost"] = 300,
+ ["texture"] = "Interface/ICONS/inv_box_01",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 8339,
+ ["name"] = "EZ-Thro Dynamite",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_bomb_06",
+ ["phase"] = 1
+ },
+ },
+ [105] = {
+ [1] = {
+ ["id"] = 3936,
+ ["name"] = "Deadly Blunderbuss",
+ ["rank"] = 0,
+ ["cost"] = 420,
+ ["texture"] = "Interface/ICONS/inv_weapon_rifle_07",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 3937,
+ ["name"] = "Large Copper Bomb",
+ ["rank"] = 0,
+ ["cost"] = 450,
+ ["texture"] = "Interface/ICONS/inv_misc_bomb_01",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 3938,
+ ["name"] = "Bronze Tube",
+ ["rank"] = 0,
+ ["cost"] = 450,
+ ["texture"] = "Interface/ICONS/inv_gizmo_pipe_01",
+ ["phase"] = 1
+ },
+ },
+ [110] = {
+ [1] = {
+ ["id"] = 3978,
+ ["name"] = "Standard Scope",
+ ["rank"] = 0,
+ ["cost"] = 475,
+ ["texture"] = "Interface/ICONS/inv_misc_spyglass_02",
+ ["phase"] = 1
+ },
+ },
+ [120] = {
+ [1] = {
+ ["id"] = 3939,
+ ["name"] = "Lovingly Crafted Boomstick",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_weapon_rifle_07",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 3940,
+ ["name"] = "Shadow Goggles",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_helmet_47",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 3941,
+ ["name"] = "Small Bronze Bomb",
+ ["rank"] = 0,
+ ["cost"] = 500,
+ ["texture"] = "Interface/ICONS/inv_misc_bomb_09",
+ ["phase"] = 1
+ },
+ },
+ [125] = {
+ [1] = {
+ ["id"] = 9269,
+ ["name"] = "Gnomish Universal Remote",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_pocketwatch_01",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 3942,
+ ["name"] = "Whirring Bronze Gizmo",
+ ["rank"] = 0,
+ ["cost"] = 500,
+ ["texture"] = "Interface/ICONS/inv_gizmo_02",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 3944,
+ ["name"] = "Flame Deflector",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gizmo_01",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 26416,
+ ["name"] = "Small Blue Rocket",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_missilesmall_blue",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 26417,
+ ["name"] = "Small Green Rocket",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_missilesmall_green",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 26418,
+ ["name"] = "Small Red Rocket",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_missilesmall_red",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 3945,
+ ["name"] = "Heavy Blasting Powder",
+ ["rank"] = 0,
+ ["cost"] = 500,
+ ["texture"] = "Interface/ICONS/inv_misc_dust_06",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 3946,
+ ["name"] = "Heavy Dynamite",
+ ["rank"] = 0,
+ ["cost"] = 500,
+ ["texture"] = "Interface/ICONS/inv_misc_bomb_06",
+ ["phase"] = 1
+ },
+ [9] = {
+ ["id"] = 3947,
+ ["name"] = "Crafted Solid Shot",
+ ["rank"] = 0,
+ ["cost"] = 300,
+ ["texture"] = "Interface/ICONS/inv_ammo_bullet_02",
+ ["phase"] = 1
+ },
+ [10] = {
+ ["id"] = 4038,
+ ["name"] = "Engineering (Expert)",
+ ["rank"] = 0,
+ ["cost"] = 5000,
+ ["texture"] = "Interface/ICONS/trade_engineering",
+ ["phase"] = 1
+ },
+ },
+ [130] = {
+ [1] = {
+ ["id"] = 3949,
+ ["name"] = "Silver-plated Shotgun",
+ ["rank"] = 0,
+ ["cost"] = 550,
+ ["texture"] = "Interface/ICONS/inv_weapon_rifle_07",
+ ["phase"] = 1
+ },
+ },
+ [135] = {
+ [1] = {
+ ["id"] = 6458,
+ ["name"] = "Ornate Spyglass",
+ ["rank"] = 0,
+ ["cost"] = 400,
+ ["texture"] = "Interface/ICONS/inv_misc_spyglass_01",
+ ["phase"] = 1
+ },
+ },
+ [140] = {
+ [1] = {
+ ["id"] = 3952,
+ ["name"] = "Minor Recombobulator",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gizmo_07",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 3950,
+ ["name"] = "Big Bronze Bomb",
+ ["rank"] = 0,
+ ["cost"] = 600,
+ ["texture"] = "Interface/ICONS/inv_misc_bomb_05",
+ ["phase"] = 1
+ },
+ },
+ [145] = {
+ [1] = {
+ ["id"] = 3954,
+ ["name"] = "Moonsight Rifle",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_weapon_rifle_06",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 3953,
+ ["name"] = "Bronze Framework",
+ ["rank"] = 0,
+ ["cost"] = 600,
+ ["texture"] = "Interface/ICONS/inv_gizmo_bronzeframework_01",
+ ["phase"] = 1
+ },
+ },
+ [150] = {
+ [1] = {
+ ["id"] = 3955,
+ ["name"] = "Explosive Sheep",
+ ["rank"] = 0,
+ ["cost"] = 750,
+ ["texture"] = "Interface/ICONS/spell_nature_polymorph",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 3956,
+ ["name"] = "Green Tinted Goggles",
+ ["rank"] = 0,
+ ["cost"] = 750,
+ ["texture"] = "Interface/ICONS/inv_helmet_47",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 12584,
+ ["name"] = "Gold Power Core",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_battery_02",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 23066,
+ ["name"] = "Red Firework",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_fire_fireball02",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 23067,
+ ["name"] = "Blue Firework",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_ice_magicdamage",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 23068,
+ ["name"] = "Green Firework",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_abolishmagic",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 9271,
+ ["name"] = "Aquadynamic Fish Attractor",
+ ["rank"] = 0,
+ ["cost"] = 500,
+ ["texture"] = "Interface/ICONS/inv_misc_food_26",
+ ["phase"] = 1
+ },
+ },
+ [155] = {
+ [1] = {
+ ["id"] = 3957,
+ ["name"] = "Ice Deflector",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gizmo_01",
+ ["phase"] = 1
+ },
+ },
+ [160] = {
+ [1] = {
+ ["id"] = 3959,
+ ["name"] = "Discombobulator Ray",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_spyglass_02",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 3958,
+ ["name"] = "Iron Strut",
+ ["rank"] = 0,
+ ["cost"] = 800,
+ ["texture"] = "Interface/ICONS/inv_spear_05",
+ ["phase"] = 1
+ },
+ },
+ [165] = {
+ [1] = {
+ ["id"] = 3960,
+ ["name"] = "Portable Bronze Mortar",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_musket_01",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 9273,
+ ["name"] = "Goblin Jumper Cables",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_enggizmos_10",
+ ["phase"] = 1
+ },
+ },
+ [170] = {
+ [1] = {
+ ["id"] = 3961,
+ ["name"] = "Gyrochronatom",
+ ["rank"] = 0,
+ ["cost"] = 900,
+ ["texture"] = "Interface/ICONS/inv_misc_pocketwatch_02",
+ ["phase"] = 1
+ },
+ },
+ [175] = {
+ [1] = {
+ ["id"] = 12587,
+ ["name"] = "Bright-Eye Goggles",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_helmet_47",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 3962,
+ ["name"] = "Iron Grenade",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_misc_bomb_08",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 3963,
+ ["name"] = "Compact Harvest Reaper Kit",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_helmet_08",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 12590,
+ ["name"] = "Gyromatic Micro-Adjustor",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_misc_screwdriver_02",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 26420,
+ ["name"] = "Large Blue Rocket",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_missilelarge_blue",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 26421,
+ ["name"] = "Large Green Rocket",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_missilelarge_green",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 26422,
+ ["name"] = "Large Red Rocket",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_missilelarge_red",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 12585,
+ ["name"] = "Solid Blasting Powder",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_misc_powder_black",
+ ["phase"] = 1
+ },
+ [9] = {
+ ["id"] = 12586,
+ ["name"] = "Solid Dynamite",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_misc_bomb_06",
+ ["phase"] = 1
+ },
+ },
+ [180] = {
+ [1] = {
+ ["id"] = 3979,
+ ["name"] = "Accurate Scope",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_spyglass_02",
+ ["phase"] = 1
+ },
+ },
+ [185] = {
+ [1] = {
+ ["id"] = 3966,
+ ["name"] = "Craftsman's Monocle",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_helmet_44",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 3965,
+ ["name"] = "Advanced Target Dummy",
+ ["rank"] = 0,
+ ["cost"] = 1200,
+ ["texture"] = "Interface/ICONS/inv_crate_05",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 8243,
+ ["name"] = "Flash Bomb",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_ammo_bullet_01",
+ ["phase"] = 1
+ },
+ },
+ [190] = {
+ [1] = {
+ ["id"] = 3967,
+ ["name"] = "Big Iron Bomb",
+ ["rank"] = 0,
+ ["cost"] = 1400,
+ ["texture"] = "Interface/ICONS/inv_misc_bomb_01",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 21940,
+ ["name"] = "Snowmaster 9000",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_frost_windwalkon",
+ ["phase"] = 1
+ },
+ },
+ [195] = {
+ [1] = {
+ ["id"] = 3968,
+ ["name"] = "Goblin Land Mine",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shield_08",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 12589,
+ ["name"] = "Mithril Tube",
+ ["rank"] = 0,
+ ["cost"] = 1300,
+ ["texture"] = "Interface/ICONS/inv_musket_01",
+ ["phase"] = 1
+ },
+ },
+ [200] = {
+ [1] = {
+ ["id"] = 3969,
+ ["name"] = "Mechanical Dragonling",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_head_dragon_01",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 3971,
+ ["name"] = "Gnomish Cloaking Device",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gizmo_01",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 3972,
+ ["name"] = "Large Seaforium Charge",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_urn_01",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 12591,
+ ["name"] = "Unstable Trigger",
+ ["rank"] = 0,
+ ["cost"] = 1500,
+ ["texture"] = "Interface/ICONS/inv_battery_01",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 15255,
+ ["name"] = "Mechanical Repair Kit",
+ ["rank"] = 0,
+ ["cost"] = 1500,
+ ["texture"] = "Interface/ICONS/inv_gizmo_03",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 23069,
+ ["name"] = "EZ-Thro Dynamite II",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_bomb_03",
+ ["phase"] = 1
+ },
+ },
+ [205] = {
+ [1] = {
+ ["id"] = 12594,
+ ["name"] = "Fire Goggles",
+ ["rank"] = 0,
+ ["cost"] = 1600,
+ ["texture"] = "Interface/ICONS/inv_helmet_47",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 12595,
+ ["name"] = "Mithril Blunderbuss",
+ ["rank"] = 0,
+ ["cost"] = 1600,
+ ["texture"] = "Interface/ICONS/inv_weapon_rifle_07",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 12717,
+ ["name"] = "Goblin Mining Helmet",
+ ["rank"] = 0,
+ ["cost"] = 1500,
+ ["texture"] = "Interface/ICONS/inv_helmet_25",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 12718,
+ ["name"] = "Goblin Construction Helmet",
+ ["rank"] = 0,
+ ["cost"] = 1500,
+ ["texture"] = "Interface/ICONS/inv_helmet_60",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 12899,
+ ["name"] = "Gnomish Shrink Ray",
+ ["rank"] = 0,
+ ["cost"] = 1500,
+ ["texture"] = "Interface/ICONS/inv_gizmo_09",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 12760,
+ ["name"] = "Goblin Sapper Charge",
+ ["rank"] = 0,
+ ["cost"] = 1500,
+ ["texture"] = "Interface/ICONS/spell_fire_selfdestruct",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 12715,
+ ["name"] = "Goblin Rocket Fuel Recipe",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_scroll_03",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 12895,
+ ["name"] = "Inlaid Mithril Cylinder Plans",
+ ["rank"] = 0,
+ ["cost"] = 1500,
+ ["texture"] = "Interface/ICONS/inv_scroll_05",
+ ["phase"] = 1
+ },
+ [9] = {
+ ["id"] = 15628,
+ ["name"] = "Pet Bombling",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_bomb_04",
+ ["phase"] = 1
+ },
+ [10] = {
+ ["id"] = 15633,
+ ["name"] = "Lil' Smoky",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_idol_02",
+ ["phase"] = 1
+ },
+ [11] = {
+ ["id"] = 13240,
+ ["name"] = "The Mortar: Reloaded",
+ ["rank"] = 0,
+ ["cost"] = 1500,
+ ["texture"] = "Interface/ICONS/inv_musket_01",
+ ["phase"] = 1
+ },
+ },
+ [210] = {
+ [1] = {
+ ["id"] = 12597,
+ ["name"] = "Deadly Scope",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_spyglass_02",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 12897,
+ ["name"] = "Gnomish Goggles",
+ ["rank"] = 0,
+ ["cost"] = 1500,
+ ["texture"] = "Interface/ICONS/inv_helmet_47",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 12902,
+ ["name"] = "Gnomish Net-o-Matic Projector",
+ ["rank"] = 0,
+ ["cost"] = 1800,
+ ["texture"] = "Interface/ICONS/inv_misc_net_01",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 12596,
+ ["name"] = "Hi-Impact Mithril Slugs",
+ ["rank"] = 0,
+ ["cost"] = 1700,
+ ["texture"] = "Interface/ICONS/inv_ammo_bullet_01",
+ ["phase"] = 1
+ },
+ },
+ [215] = {
+ [1] = {
+ ["id"] = 12903,
+ ["name"] = "Gnomish Harm Prevention Belt",
+ ["rank"] = 0,
+ ["cost"] = 2000,
+ ["texture"] = "Interface/ICONS/inv_belt_06",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 12599,
+ ["name"] = "Mithril Casing",
+ ["rank"] = 0,
+ ["cost"] = 1800,
+ ["texture"] = "Interface/ICONS/inv_gizmo_mithrilcasing_01",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 12603,
+ ["name"] = "Mithril Frag Bomb",
+ ["rank"] = 0,
+ ["cost"] = 1800,
+ ["texture"] = "Interface/ICONS/inv_misc_bomb_02",
+ ["phase"] = 1
+ },
+ },
+ [220] = {
+ [1] = {
+ ["id"] = 12607,
+ ["name"] = "Catseye Ultra Goggles",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_helmet_47",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 12614,
+ ["name"] = "Mithril Heavy-bore Rifle",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_weapon_rifle_07",
+ ["phase"] = 1
+ },
+ },
+ [225] = {
+ [1] = {
+ ["id"] = 8895,
+ ["name"] = "Goblin Rocket Boots",
+ ["rank"] = 0,
+ ["cost"] = 2200,
+ ["texture"] = "Interface/ICONS/inv_gizmo_rocketboot_01",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 12615,
+ ["name"] = "Spellpower Goggles Xtreme",
+ ["rank"] = 0,
+ ["cost"] = 2500,
+ ["texture"] = "Interface/ICONS/inv_helmet_47",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 12616,
+ ["name"] = "Parachute Cloak",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_cape_11",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 12905,
+ ["name"] = "Gnomish Rocket Boots",
+ ["rank"] = 0,
+ ["cost"] = 2200,
+ ["texture"] = "Interface/ICONS/inv_boots_02",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 26442,
+ ["name"] = "Firework Launcher",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_musket_04",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 26423,
+ ["name"] = "Blue Rocket Cluster",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_missilesmallcluster_blue",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 26424,
+ ["name"] = "Green Rocket Cluster",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_missilesmallcluster_green",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 26425,
+ ["name"] = "Red Rocket Cluster",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_missilesmallcluster_red",
+ ["phase"] = 1
+ },
+ [9] = {
+ ["id"] = 12716,
+ ["name"] = "Goblin Mortar",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_musket_01",
+ ["phase"] = 1
+ },
+ [10] = {
+ ["id"] = 12656,
+ ["name"] = "Engineering (Artisan)",
+ ["rank"] = 0,
+ ["cost"] = 50000,
+ ["texture"] = "Interface/ICONS/trade_engineering",
+ ["phase"] = 1
+ },
+ },
+ [230] = {
+ [1] = {
+ ["id"] = 12617,
+ ["name"] = "Deepdive Helmet",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_helmet_49",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 12618,
+ ["name"] = "Rose Colored Goggles",
+ ["rank"] = 0,
+ ["cost"] = 2200,
+ ["texture"] = "Interface/ICONS/inv_helmet_47",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 12906,
+ ["name"] = "Gnomish Battle Chicken",
+ ["rank"] = 0,
+ ["cost"] = 2400,
+ ["texture"] = "Interface/ICONS/spell_magic_polymorphchicken",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 12755,
+ ["name"] = "Goblin Bomb Dispenser",
+ ["rank"] = 0,
+ ["cost"] = 2400,
+ ["texture"] = "Interface/ICONS/inv_gizmo_06",
+ ["phase"] = 1
+ },
+ },
+ [235] = {
+ [1] = {
+ ["id"] = 12907,
+ ["name"] = "Gnomish Mind Control Cap",
+ ["rank"] = 0,
+ ["cost"] = 2600,
+ ["texture"] = "Interface/ICONS/inv_helmet_49",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 12619,
+ ["name"] = "Hi-Explosive Bomb",
+ ["rank"] = 0,
+ ["cost"] = 2400,
+ ["texture"] = "Interface/ICONS/inv_misc_bomb_07",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 12754,
+ ["name"] = "The Big One",
+ ["rank"] = 0,
+ ["cost"] = 2600,
+ ["texture"] = "Interface/ICONS/inv_misc_bomb_04",
+ ["phase"] = 1
+ },
+ },
+ [240] = {
+ [1] = {
+ ["id"] = 12620,
+ ["name"] = "Sniper Scope",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_spyglass_02",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 12759,
+ ["name"] = "Gnomish Death Ray",
+ ["rank"] = 0,
+ ["cost"] = 2800,
+ ["texture"] = "Interface/ICONS/inv_gizmo_08",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 12908,
+ ["name"] = "Goblin Dragon Gun",
+ ["rank"] = 0,
+ ["cost"] = 2800,
+ ["texture"] = "Interface/ICONS/spell_fire_flamebolt",
+ ["phase"] = 1
+ },
+ },
+ [245] = {
+ [1] = {
+ ["id"] = 12622,
+ ["name"] = "Green Lens",
+ ["rank"] = 0,
+ ["cost"] = 2800,
+ ["texture"] = "Interface/ICONS/inv_helmet_44",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 12758,
+ ["name"] = "Goblin Rocket Helmet",
+ ["rank"] = 0,
+ ["cost"] = 3000,
+ ["texture"] = "Interface/ICONS/inv_helmet_49",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 12621,
+ ["name"] = "Mithril Gyro-Shot",
+ ["rank"] = 0,
+ ["cost"] = 2800,
+ ["texture"] = "Interface/ICONS/inv_ammo_bullet_01",
+ ["phase"] = 1
+ },
+ },
+ [250] = {
+ [1] = {
+ ["id"] = 26011,
+ ["name"] = "Tranquil Mechanical Yeti",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_hunter_pet_gorilla",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 12624,
+ ["name"] = "Mithril Mechanical Dragonling",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_head_dragon_01",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 19567,
+ ["name"] = "Salt Shaker",
+ ["rank"] = 0,
+ ["cost"] = 4000,
+ ["texture"] = "Interface/ICONS/inv_egg_05",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 23070,
+ ["name"] = "Dense Dynamite",
+ ["rank"] = 0,
+ ["cost"] = 5000,
+ ["texture"] = "Interface/ICONS/inv_misc_bomb_06",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 23507,
+ ["name"] = "Snake Burst Firework",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_holybolt",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 19788,
+ ["name"] = "Dense Blasting Powder",
+ ["rank"] = 0,
+ ["cost"] = 4000,
+ ["texture"] = "Interface/ICONS/inv_misc_ammo_gunpowder_01",
+ ["phase"] = 1
+ },
+ },
+ [260] = {
+ [1] = {
+ ["id"] = 19790,
+ ["name"] = "Thorium Grenade",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_misc_bomb_08",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 19791,
+ ["name"] = "Thorium Widget",
+ ["rank"] = 0,
+ ["cost"] = 5000,
+ ["texture"] = "Interface/ICONS/inv_gizmo_04",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 19792,
+ ["name"] = "Thorium Rifle",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_weapon_rifle_07",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 23077,
+ ["name"] = "Gyrofreeze Ice Reflector",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_enggizmos_02",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 23071,
+ ["name"] = "Truesilver Transformer",
+ ["rank"] = 0,
+ ["cost"] = 5000,
+ ["texture"] = "Interface/ICONS/inv_staff_18",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 23129,
+ ["name"] = "World Enlarger",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_enggizmos_08",
+ ["phase"] = 1
+ },
+ },
+ [265] = {
+ [1] = {
+ ["id"] = 19793,
+ ["name"] = "Lifelike Mechanical Toad",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_monsterhead_03",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 23078,
+ ["name"] = "Goblin Jumper Cables XL",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_enggizmos_11",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 23096,
+ ["name"] = "Alarm-O-Bot",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_enggizmos_13",
+ ["phase"] = 1
+ },
+ },
+ [270] = {
+ [1] = {
+ ["id"] = 19794,
+ ["name"] = "Spellpower Goggles Xtreme Plus",
+ ["rank"] = 0,
+ ["cost"] = 20000,
+ ["texture"] = "Interface/ICONS/inv_helmet_47",
+ ["phase"] = 1
+ },
+ },
+ [275] = {
+ [1] = {
+ ["id"] = 19795,
+ ["name"] = "Thorium Tube",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_gizmo_pipe_04",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 19796,
+ ["name"] = "Dark Iron Rifle",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_weapon_rifle_08",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 19814,
+ ["name"] = "Masterwork Target Dummy",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_crate_02",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 26443,
+ ["name"] = "Firework Cluster Launcher",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_enggizmos_03",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 23079,
+ ["name"] = "Major Recombobulator",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_enggizmos_09",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 23080,
+ ["name"] = "Powerful Seaforium Charge",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_detectinvisibility",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 26426,
+ ["name"] = "Large Blue Rocket Cluster",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_missilelargecluster_blue",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 26427,
+ ["name"] = "Large Green Rocket Cluster",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_missilelargecluster_green",
+ ["phase"] = 1
+ },
+ [9] = {
+ ["id"] = 26428,
+ ["name"] = "Large Red Rocket Cluster",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_missilelargecluster_red",
+ ["phase"] = 1
+ },
+ [10] = {
+ ["id"] = 28327,
+ ["name"] = "Steam Tonk Controller",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gizmo_goblingtonkcontroller",
+ ["phase"] = 1
+ },
+ [11] = {
+ ["id"] = 30350,
+ ["name"] = "Engineering (Master)",
+ ["rank"] = 0,
+ ["cost"] = 100000,
+ ["texture"] = "Interface/ICONS/trade_engineering",
+ ["phase"] = 1
+ },
+ [12] = {
+ ["id"] = 39895,
+ ["name"] = "Fused Wiring",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_gear_03",
+ ["phase"] = 1
+ },
+ },
+ [285] = {
+ [1] = {
+ ["id"] = 19799,
+ ["name"] = "Dark Iron Bomb",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_bomb_05",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 19815,
+ ["name"] = "Delicate Arcanite Converter",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gizmo_07",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 19800,
+ ["name"] = "Thorium Shells",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_ammo_bullet_03",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 23486,
+ ["name"] = "Dimensional Ripper - Everlook",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_enggizmos_07",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 23489,
+ ["name"] = "Ultrasafe Transporter - Gadgetzan",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_enggizmos_12",
+ ["phase"] = 1
+ },
+ },
+ [290] = {
+ [1] = {
+ ["id"] = 19819,
+ ["name"] = "Voice Amplification Modulator",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelry_amulet_07",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 19825,
+ ["name"] = "Master Engineer's Goggles",
+ ["rank"] = 0,
+ ["cost"] = 20000,
+ ["texture"] = "Interface/ICONS/inv_helmet_47",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 23081,
+ ["name"] = "Hyper-Radiant Flame Reflector",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_enggizmos_04",
+ ["phase"] = 1
+ },
+ },
+ [300] = {
+ [1] = {
+ ["id"] = 19830,
+ ["name"] = "Arcanite Dragonling",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_head_dragon_01",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 19831,
+ ["name"] = "Arcane Bomb",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_mindbomb",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 19833,
+ ["name"] = "Flawless Arcanite Rifle",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_weapon_rifle_03",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 22704,
+ ["name"] = "Field Repair Bot 74A",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_egg_05",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 22793,
+ ["name"] = "Biznicks 247x128 Accurascope",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_spyglass_02",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 22795,
+ ["name"] = "Core Marksman Rifle",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_weapon_rifle_05",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 22797,
+ ["name"] = "Force Reactive Disk",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_arcane_portaldarnassus",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 23082,
+ ["name"] = "Ultra-Flash Shadow Reflector",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_enggizmos_16",
+ ["phase"] = 1
+ },
+ [9] = {
+ ["id"] = 24356,
+ ["name"] = "Bloodvine Goggles",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_helmet_47",
+ ["phase"] = 1
+ },
+ [10] = {
+ ["id"] = 24357,
+ ["name"] = "Bloodvine Lens",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_helmet_44",
+ ["phase"] = 1
+ },
+ [11] = {
+ ["id"] = 30310,
+ ["name"] = "Fel Iron Bomb",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/inv_gizmo_felironbomb",
+ ["phase"] = 1
+ },
+ [12] = {
+ ["id"] = 30303,
+ ["name"] = "Elemental Blasting Powder",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_misc_ammo_gunpowder_07",
+ ["phase"] = 1
+ },
+ [13] = {
+ ["id"] = 30304,
+ ["name"] = "Fel Iron Casing",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_gizmo_felironcasing",
+ ["phase"] = 1
+ },
+ [14] = {
+ ["id"] = 30305,
+ ["name"] = "Handful of Fel Iron Bolts",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_gizmo_felironbolts",
+ ["phase"] = 1
+ },
+ },
+ [305] = {
+ [1] = {
+ ["id"] = 30548,
+ ["name"] = "Zapthrottle Mote Extractor",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gizmo_zapthrottlegascollector",
+ ["phase"] = 1
+ },
+ },
+ [310] = {
+ [1] = {
+ ["id"] = 30346,
+ ["name"] = "Fel Iron Shells",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/inv_gizmo_felironshell",
+ ["phase"] = 1
+ },
+ },
+ [320] = {
+ [1] = {
+ ["id"] = 30312,
+ ["name"] = "Fel Iron Musket",
+ ["rank"] = 0,
+ ["cost"] = 20000,
+ ["texture"] = "Interface/ICONS/inv_weapon_rifle_04",
+ ["phase"] = 1
+ },
+ },
+ [325] = {
+ [1] = {
+ ["id"] = 30311,
+ ["name"] = "Adamantite Grenade",
+ ["rank"] = 0,
+ ["cost"] = 25000,
+ ["texture"] = "Interface/ICONS/inv_misc_bomb_08",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 30337,
+ ["name"] = "Crashin' Thrashin' Robot",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_idol_02",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 30568,
+ ["name"] = "Gnomish Flame Turret",
+ ["rank"] = 0,
+ ["cost"] = 22500,
+ ["texture"] = "Interface/ICONS/inv_gizmo_gnomishflameturret",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 30348,
+ ["name"] = "Fel Iron Toolbox",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_enggizmos_18",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 30558,
+ ["name"] = "The Bigger One",
+ ["rank"] = 0,
+ ["cost"] = 25000,
+ ["texture"] = "Interface/ICONS/inv_gizmo_thebiggerone",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 30306,
+ ["name"] = "Adamantite Frame",
+ ["rank"] = 0,
+ ["cost"] = 20000,
+ ["texture"] = "Interface/ICONS/inv_gizmo_adamantiteframe",
+ ["phase"] = 1
+ },
+ },
+ [330] = {
+ [1] = {
+ ["id"] = 30551,
+ ["name"] = "Healing Potion Injector",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_167",
+ ["phase"] = 1
+ },
+ },
+ [335] = {
+ [1] = {
+ ["id"] = 30329,
+ ["name"] = "Adamantite Scope",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_spyglass_02",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 39973,
+ ["name"] = "Frost Grenades",
+ ["rank"] = 0,
+ ["cost"] = 50000,
+ ["texture"] = "Interface/ICONS/spell_frost_frozencore",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 30341,
+ ["name"] = "White Smoke Flare",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_missilesmall_white",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 30344,
+ ["name"] = "Green Smoke Flare",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_missilesmall_green",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 30347,
+ ["name"] = "Adamantite Shell Machine",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_crate_04",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 32814,
+ ["name"] = "Purple Smoke Flare",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_missilesmall_purple",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 43676,
+ ["name"] = "Adamantite Arrow Maker (Adamantite Series)",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_crate_03",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 39971,
+ ["name"] = "Icy Blasting Primers",
+ ["rank"] = 0,
+ ["cost"] = 20000,
+ ["texture"] = "Interface/ICONS/inv_misc_enggizmos_15",
+ ["phase"] = 1
+ },
+ },
+ [340] = {
+ [1] = {
+ ["id"] = 30569,
+ ["name"] = "Gnomish Poultryizer",
+ ["rank"] = 0,
+ ["cost"] = 31500,
+ ["texture"] = "Interface/ICONS/inv_misc_enggizmos_06",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 30307,
+ ["name"] = "Hardened Adamantite Tube",
+ ["rank"] = 0,
+ ["cost"] = 50000,
+ ["texture"] = "Interface/ICONS/inv_gizmo_hardenedadamantitetube",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 30308,
+ ["name"] = "Khorium Power Core",
+ ["rank"] = 0,
+ ["cost"] = 50000,
+ ["texture"] = "Interface/ICONS/inv_gizmo_khoriumpowercore",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 30309,
+ ["name"] = "Felsteel Stabilizer",
+ ["rank"] = 0,
+ ["cost"] = 50000,
+ ["texture"] = "Interface/ICONS/inv_gizmo_felstabilizer",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 30316,
+ ["name"] = "Cogspinner Goggles",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gizmo_newgoggles",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 30317,
+ ["name"] = "Power Amplification Goggles",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gizmo_newgoggles",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 30560,
+ ["name"] = "Super Sapper Charge",
+ ["rank"] = 0,
+ ["cost"] = 35000,
+ ["texture"] = "Interface/ICONS/inv_gizmo_supersappercharge",
+ ["phase"] = 1
+ },
+ },
+ [345] = {
+ [1] = {
+ ["id"] = 30552,
+ ["name"] = "Mana Potion Injector",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_potion_168",
+ ["phase"] = 1
+ },
+ },
+ [350] = {
+ [1] = {
+ ["id"] = 44155,
+ ["name"] = "Flying Machine",
+ ["rank"] = 0,
+ ["cost"] = 120000,
+ ["texture"] = "Interface/ICONS/ability_mount_gyrocoptor",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 41314,
+ ["name"] = "Surestrike Goggles v2.0",
+ ["rank"] = 0,
+ ["cost"] = 50000,
+ ["texture"] = "Interface/ICONS/inv_gizmo_newgoggles",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 41315,
+ ["name"] = "Gadgetstorm Goggles",
+ ["rank"] = 0,
+ ["cost"] = 50000,
+ ["texture"] = "Interface/ICONS/inv_gizmo_newgoggles",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 41316,
+ ["name"] = "Living Replicator Specs",
+ ["rank"] = 0,
+ ["cost"] = 50000,
+ ["texture"] = "Interface/ICONS/inv_gizmo_newgoggles",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 41321,
+ ["name"] = "Powerheal 4000 Lens",
+ ["rank"] = 0,
+ ["cost"] = 50000,
+ ["texture"] = "Interface/ICONS/inv_gizmo_newgoggles",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 41311,
+ ["name"] = "Justicebringer 2000 Specs",
+ ["rank"] = 0,
+ ["cost"] = 50000,
+ ["texture"] = "Interface/ICONS/inv_gizmo_newgoggles",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 40274,
+ ["name"] = "Furious Gizmatic Goggles",
+ ["rank"] = 0,
+ ["cost"] = 50000,
+ ["texture"] = "Interface/ICONS/inv_gizmo_newgoggles",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 41312,
+ ["name"] = "Tankatronic Goggles",
+ ["rank"] = 0,
+ ["cost"] = 50000,
+ ["texture"] = "Interface/ICONS/inv_gizmo_newgoggles",
+ ["phase"] = 1
+ },
+ [9] = {
+ ["id"] = 41317,
+ ["name"] = "Deathblow X11 Goggles",
+ ["rank"] = 0,
+ ["cost"] = 50000,
+ ["texture"] = "Interface/ICONS/inv_gizmo_newgoggles",
+ ["phase"] = 1
+ },
+ [10] = {
+ ["id"] = 41318,
+ ["name"] = "Wonderheal XT40 Shades",
+ ["rank"] = 0,
+ ["cost"] = 50000,
+ ["texture"] = "Interface/ICONS/inv_gizmo_newgoggles",
+ ["phase"] = 1
+ },
+ [11] = {
+ ["id"] = 41319,
+ ["name"] = "Magnified Moon Specs",
+ ["rank"] = 0,
+ ["cost"] = 50000,
+ ["texture"] = "Interface/ICONS/inv_gizmo_newgoggles",
+ ["phase"] = 1
+ },
+ [12] = {
+ ["id"] = 41320,
+ ["name"] = "Destruction Holo-gogs",
+ ["rank"] = 0,
+ ["cost"] = 50000,
+ ["texture"] = "Interface/ICONS/inv_gizmo_newgoggles",
+ ["phase"] = 1
+ },
+ [13] = {
+ ["id"] = 30313,
+ ["name"] = "Adamantite Rifle",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_weapon_rifle_04",
+ ["phase"] = 1
+ },
+ [14] = {
+ ["id"] = 30318,
+ ["name"] = "Ultra-Spectropic Detection Goggles",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gizmo_newgoggles",
+ ["phase"] = 1
+ },
+ [15] = {
+ ["id"] = 30349,
+ ["name"] = "Khorium Toolbox",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_enggizmos_19",
+ ["phase"] = 1
+ },
+ [16] = {
+ ["id"] = 30563,
+ ["name"] = "Goblin Rocket Launcher",
+ ["rank"] = 0,
+ ["cost"] = 50000,
+ ["texture"] = "Interface/ICONS/inv_gizmo_rocketlauncher",
+ ["phase"] = 1
+ },
+ [17] = {
+ ["id"] = 30570,
+ ["name"] = "Nigh-Invulnerability Belt",
+ ["rank"] = 0,
+ ["cost"] = 45000,
+ ["texture"] = "Interface/ICONS/inv_belt_27",
+ ["phase"] = 1
+ },
+ [18] = {
+ ["id"] = 30547,
+ ["name"] = "Elemental Seaforium Charge",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_detectinvisibility",
+ ["phase"] = 1
+ },
+ [19] = {
+ ["id"] = 36954,
+ ["name"] = "Dimensional Ripper - Area 52",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_enggizmos_07",
+ ["phase"] = 1
+ },
+ [20] = {
+ ["id"] = 36955,
+ ["name"] = "Ultrasafe Transporter - Toshley's Station",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_enggizmos_12",
+ ["phase"] = 1
+ },
+ },
+ [355] = {
+ [1] = {
+ ["id"] = 30556,
+ ["name"] = "Rocket Boots Xtreme",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gizmo_rocketboot_01",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 46697,
+ ["name"] = "Rocket Boots Xtreme Lite",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gizmo_rocketboot_01",
+ ["phase"] = 1
+ },
+ },
+ [360] = {
+ [1] = {
+ ["id"] = 30314,
+ ["name"] = "Felsteel Boomstick",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_weapon_rifle_04",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 30325,
+ ["name"] = "Hyper-Vision Goggles",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gizmo_newgoggles",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 30332,
+ ["name"] = "Khorium Scope",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_spyglass_02",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 44391,
+ ["name"] = "Field Repair Bot 110G",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_enggizmos_01",
+ ["phase"] = 1
+ },
+ },
+ [375] = {
+ [1] = {
+ ["id"] = 46110,
+ ["name"] = "Primal-Attuned Goggles",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gizmo_newgoggles",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 46112,
+ ["name"] = "Lightning Etched Specs",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gizmo_newgoggles",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 46113,
+ ["name"] = "Surestrike Goggles v3.0",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gizmo_newgoggles",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 46114,
+ ["name"] = "Mayhem Projection Goggles",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gizmo_newgoggles",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 46115,
+ ["name"] = "Hard Khorium Goggles",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gizmo_newgoggles",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 46116,
+ ["name"] = "Quad Deathblow X44 Goggles",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gizmo_newgoggles",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 30315,
+ ["name"] = "Ornate Khorium Rifle",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_weapon_rifle_03",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 30334,
+ ["name"] = "Stabilized Eternium Scope",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_spyglass_02",
+ ["phase"] = 1
+ },
+ [9] = {
+ ["id"] = 44157,
+ ["name"] = "Turbo-Charged Flying Machine",
+ ["rank"] = 0,
+ ["cost"] = 180000,
+ ["texture"] = "Interface/ICONS/ability_mount_gyrocoptorelite",
+ ["phase"] = 1
+ },
+ [10] = {
+ ["id"] = 41307,
+ ["name"] = "Gyro-balanced Khorium Destroyer",
+ ["rank"] = 0,
+ ["cost"] = 50000,
+ ["texture"] = "Interface/ICONS/inv_weapon_rifle_13",
+ ["phase"] = 1
+ },
+ [11] = {
+ ["id"] = 30565,
+ ["name"] = "Foreman's Enchanted Helmet",
+ ["rank"] = 0,
+ ["cost"] = 100000,
+ ["texture"] = "Interface/ICONS/inv_helmet_60",
+ ["phase"] = 1
+ },
+ [12] = {
+ ["id"] = 30566,
+ ["name"] = "Foreman's Reinforced Helmet",
+ ["rank"] = 0,
+ ["cost"] = 100000,
+ ["texture"] = "Interface/ICONS/inv_helmet_60",
+ ["phase"] = 1
+ },
+ [13] = {
+ ["id"] = 30574,
+ ["name"] = "Gnomish Power Goggles",
+ ["rank"] = 0,
+ ["cost"] = 90000,
+ ["texture"] = "Interface/ICONS/inv_helmet_47",
+ ["phase"] = 1
+ },
+ [14] = {
+ ["id"] = 30575,
+ ["name"] = "Gnomish Battle Goggles",
+ ["rank"] = 0,
+ ["cost"] = 90000,
+ ["texture"] = "Interface/ICONS/inv_gizmo_newgoggles",
+ ["phase"] = 1
+ },
+ [15] = {
+ ["id"] = 46108,
+ ["name"] = "Powerheal 9000 Lens",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gizmo_newgoggles",
+ ["phase"] = 1
+ },
+ [16] = {
+ ["id"] = 46107,
+ ["name"] = "Justicebringer 3000 Specs",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gizmo_newgoggles",
+ ["phase"] = 1
+ },
+ [17] = {
+ ["id"] = 46106,
+ ["name"] = "Wonderheal XT68 Shades",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gizmo_newgoggles",
+ ["phase"] = 1
+ },
+ [18] = {
+ ["id"] = 46109,
+ ["name"] = "Hyper-Magnified Moon Specs",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gizmo_newgoggles",
+ ["phase"] = 1
+ },
+ [19] = {
+ ["id"] = 46111,
+ ["name"] = "Annihilator Holo-Gogs",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gizmo_newgoggles",
+ ["phase"] = 1
+ },
+ },
+}
diff --git a/Database/professions/FirstAid.lua b/Database/professions/FirstAid.lua
new file mode 100644
index 0000000..a700db4
--- /dev/null
+++ b/Database/professions/FirstAid.lua
@@ -0,0 +1,198 @@
+local _, FieldGuide = ...
+
+FieldGuide.FIRSTAID = {
+ [1] = {
+ [1] = {
+ ["id"] = 3273,
+ ["name"] = "First Aid (Apprentice)",
+ ["rank"] = 0,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/spell_holy_sealofsacrifice",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 3275,
+ ["name"] = "Linen Bandage",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_bandage_15",
+ ["phase"] = 1
+ },
+ },
+ [40] = {
+ [1] = {
+ ["id"] = 3276,
+ ["name"] = "Heavy Linen Bandage",
+ ["rank"] = 0,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/inv_misc_bandage_18",
+ ["phase"] = 1
+ },
+ },
+ [50] = {
+ [1] = {
+ ["id"] = 3274,
+ ["name"] = "First Aid",
+ ["rank"] = 0,
+ ["cost"] = 500,
+ ["texture"] = "Interface/ICONS/spell_holy_sealofsacrifice",
+ ["phase"] = 1
+ },
+ },
+ [80] = {
+ [1] = {
+ ["id"] = 3277,
+ ["name"] = "Wool Bandage",
+ ["rank"] = 0,
+ ["cost"] = 250,
+ ["texture"] = "Interface/ICONS/inv_misc_bandage_14",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 7934,
+ ["name"] = "Anti-Venom",
+ ["rank"] = 0,
+ ["cost"] = 250,
+ ["texture"] = "Interface/ICONS/inv_misc_slime_01",
+ ["phase"] = 1
+ },
+ },
+ [115] = {
+ [1] = {
+ ["id"] = 3278,
+ ["name"] = "Heavy Wool Bandage",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_misc_bandage_17",
+ ["phase"] = 1
+ },
+ },
+ [125] = {
+ [1] = {
+ ["id"] = 7924,
+ ["name"] = "First Aid (Expert)",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/spell_holy_sealofsacrifice",
+ ["phase"] = 1
+ },
+ },
+ [130] = {
+ [1] = {
+ ["id"] = 7935,
+ ["name"] = "Strong Anti-Venom",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_slime_01",
+ ["phase"] = 1
+ },
+ },
+ [150] = {
+ [1] = {
+ ["id"] = 7928,
+ ["name"] = "Silk Bandage",
+ ["rank"] = 0,
+ ["cost"] = 5000,
+ ["texture"] = "Interface/ICONS/inv_misc_bandage_01",
+ ["phase"] = 1
+ },
+ },
+ [180] = {
+ [1] = {
+ ["id"] = 7929,
+ ["name"] = "Heavy Silk Bandage",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_bandage_02",
+ ["phase"] = 1
+ },
+ },
+ [210] = {
+ [1] = {
+ ["id"] = 10840,
+ ["name"] = "Mageweave Bandage",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_bandage_19",
+ ["phase"] = 1
+ },
+ },
+ [225] = {
+ [1] = {
+ ["id"] = 10846,
+ ["name"] = "First Aid (Artisan)",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_sealofsacrifice",
+ ["phase"] = 1
+ },
+ },
+ [240] = {
+ [1] = {
+ ["id"] = 10841,
+ ["name"] = "Heavy Mageweave Bandage",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_bandage_20",
+ ["phase"] = 1
+ },
+ },
+ [260] = {
+ [1] = {
+ ["id"] = 18629,
+ ["name"] = "Runecloth Bandage",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_bandage_11",
+ ["phase"] = 1
+ },
+ },
+ [290] = {
+ [1] = {
+ ["id"] = 18630,
+ ["name"] = "Heavy Runecloth Bandage",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_bandage_12",
+ ["phase"] = 1
+ },
+ },
+ [300] = {
+ [1] = {
+ ["id"] = 27028,
+ ["name"] = "First Aid (Master)",
+ ["rank"] = 0,
+ ["cost"] = 50000,
+ ["texture"] = "Interface/ICONS/spell_holy_sealofsacrifice",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 23787,
+ ["name"] = "Powerful Anti-Venom",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_drink_14",
+ ["phase"] = 1
+ },
+ },
+ [330] = {
+ [1] = {
+ ["id"] = 27032,
+ ["name"] = "Netherweave Bandage",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_bandage_netherweave",
+ ["phase"] = 1
+ },
+ },
+ [360] = {
+ [1] = {
+ ["id"] = 27033,
+ ["name"] = "Heavy Netherweave Bandage",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_bandage_netherweave_heavy",
+ ["phase"] = 1
+ },
+ },
+}
diff --git a/Database/professions/Fishing.lua b/Database/professions/Fishing.lua
new file mode 100644
index 0000000..a179c14
--- /dev/null
+++ b/Database/professions/Fishing.lua
@@ -0,0 +1,64 @@
+local _, FieldGuide = ...
+
+FieldGuide.FISHING = {
+ [1] = {
+ [1] = {
+ ["id"] = 7620,
+ ["name"] = "Fishing (Apprentice)",
+ ["rank"] = 0,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/trade_fishing",
+ ["phase"] = 1
+ },
+ },
+ [50] = {
+ [1] = {
+ ["id"] = 7731,
+ ["name"] = "Fishing (Journeyman)",
+ ["rank"] = 0,
+ ["cost"] = 500,
+ ["texture"] = "Interface/ICONS/trade_fishing",
+ ["phase"] = 1
+ },
+ },
+ [100] = {
+ [1] = {
+ ["id"] = 43308,
+ ["name"] = "Find Fish",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_fish_02",
+ ["phase"] = 1
+ },
+ },
+ [125] = {
+ [1] = {
+ ["id"] = 7732,
+ ["name"] = "Fishing (Expert)",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/trade_fishing",
+ ["phase"] = 1
+ },
+ },
+ [225] = {
+ [1] = {
+ ["id"] = 18248,
+ ["name"] = "Fishing (Artisan)",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/trade_fishing",
+ ["phase"] = 1
+ },
+ },
+ [275] = {
+ [1] = {
+ ["id"] = 33095,
+ ["name"] = "Fishing (Master)",
+ ["rank"] = 0,
+ ["cost"] = 50000,
+ ["texture"] = "Interface/ICONS/trade_fishing",
+ ["phase"] = 1
+ },
+ },
+}
diff --git a/Database/professions/Herbalism.lua b/Database/professions/Herbalism.lua
new file mode 100644
index 0000000..ed8fdb4
--- /dev/null
+++ b/Database/professions/Herbalism.lua
@@ -0,0 +1,62 @@
+local _, FieldGuide = ...
+
+FieldGuide.HERBALISM = {
+ [1] = {
+ [1] = {
+ ["id"] = 2366,
+ ["name"] = "Herb Gathering (Apprentice)",
+ ["rank"] = 0,
+ ["cost"] = 10,
+ ["texture"] = "Interface/ICONS/spell_nature_naturetouchgrow",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 2383,
+ ["name"] = "Find Herbs",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_flower_02",
+ ["phase"] = 1
+ },
+ },
+ [50] = {
+ [1] = {
+ ["id"] = 2368,
+ ["name"] = "Herb Gathering (Journeyman)",
+ ["rank"] = 0,
+ ["cost"] = 500,
+ ["texture"] = "Interface/ICONS/spell_nature_naturetouchgrow",
+ ["phase"] = 1
+ },
+ },
+ [125] = {
+ [1] = {
+ ["id"] = 3570,
+ ["name"] = "Herb Gathering (Expert)",
+ ["rank"] = 0,
+ ["cost"] = 5000,
+ ["texture"] = "Interface/ICONS/spell_nature_naturetouchgrow",
+ ["phase"] = 1
+ },
+ },
+ [225] = {
+ [1] = {
+ ["id"] = 11993,
+ ["name"] = "Herb Gathering (Artisan)",
+ ["rank"] = 0,
+ ["cost"] = 50000,
+ ["texture"] = "Interface/ICONS/spell_nature_naturetouchgrow",
+ ["phase"] = 1
+ },
+ },
+ [275] = {
+ [1] = {
+ ["id"] = 28695,
+ ["name"] = "Herb Gathering (Master)",
+ ["rank"] = 0,
+ ["cost"] = 100000,
+ ["texture"] = "Interface/ICONS/spell_nature_naturetouchgrow",
+ ["phase"] = 1
+ },
+ },
+}
diff --git a/Database/professions/Jewelcrafting.lua b/Database/professions/Jewelcrafting.lua
new file mode 100644
index 0000000..179b10a
--- /dev/null
+++ b/Database/professions/Jewelcrafting.lua
@@ -0,0 +1,2234 @@
+local _, FieldGuide = ...
+
+FieldGuide.JEWELCRAFTING = {
+ [1] = {
+ [1] = {
+ ["id"] = 25229,
+ ["name"] = "Jewelcrafting (Apprentice)",
+ ["rank"] = 0,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_01",
+ ["phase"] = 1
+ },
+ },
+ [5] = {
+ [1] = {
+ ["id"] = 26926,
+ ["name"] = "Heavy Copper Ring",
+ ["rank"] = 0,
+ ["cost"] = 50,
+ ["texture"] = "Interface/ICONS/inv_jewelry_ring_12",
+ ["phase"] = 1
+ },
+ },
+ [20] = {
+ [1] = {
+ ["id"] = 31252,
+ ["name"] = "Prospecting",
+ ["rank"] = 0,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_bloodgem_01",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 32178,
+ ["name"] = "Malachite Pendant",
+ ["rank"] = 0,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/inv_jewelry_necklace_01",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 32179,
+ ["name"] = "Tigerseye Band",
+ ["rank"] = 0,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/inv_jewelry_ring_21",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 25255,
+ ["name"] = "Delicate Copper Wire",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_delicatecopperwire",
+ ["phase"] = 1
+ },
+ },
+ [30] = {
+ [1] = {
+ ["id"] = 25283,
+ ["name"] = "Inlaid Malachite Ring",
+ ["rank"] = 0,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/inv_jewelry_ring_23",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 26928,
+ ["name"] = "Ornate Tigerseye Necklace",
+ ["rank"] = 0,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/inv_jewelry_necklace_02",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 25493,
+ ["name"] = "Braided Copper Ring",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelry_ring_13",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 26925,
+ ["name"] = "Woven Copper Ring",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelry_ring_12",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 32259,
+ ["name"] = "Rough Stone Statue",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_statue_08",
+ ["phase"] = 1
+ },
+ },
+ [50] = {
+ [1] = {
+ ["id"] = 25230,
+ ["name"] = "Jewelcrafting (Journeyman)",
+ ["rank"] = 0,
+ ["cost"] = 500,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_02",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 25280,
+ ["name"] = "Elegant Silver Ring",
+ ["rank"] = 0,
+ ["cost"] = 200,
+ ["texture"] = "Interface/ICONS/inv_jewelry_ring_01",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 25490,
+ ["name"] = "Solid Bronze Ring",
+ ["rank"] = 0,
+ ["cost"] = 300,
+ ["texture"] = "Interface/ICONS/inv_jewelry_ring_14",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 26927,
+ ["name"] = "Thick Bronze Necklace",
+ ["rank"] = 0,
+ ["cost"] = 300,
+ ["texture"] = "Interface/ICONS/inv_belt_19",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 25278,
+ ["name"] = "Bronze Setting",
+ ["rank"] = 0,
+ ["cost"] = 200,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_bronzesetting",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 32801,
+ ["name"] = "Coarse Stone Statue",
+ ["rank"] = 0,
+ ["cost"] = 200,
+ ["texture"] = "Interface/ICONS/inv_misc_statue_05",
+ ["phase"] = 1
+ },
+ },
+ [60] = {
+ [1] = {
+ ["id"] = 25284,
+ ["name"] = "Simple Pearl Ring",
+ ["rank"] = 0,
+ ["cost"] = 400,
+ ["texture"] = "Interface/ICONS/inv_jewelry_ring_28",
+ ["phase"] = 1
+ },
+ },
+ [65] = {
+ [1] = {
+ ["id"] = 37818,
+ ["name"] = "Bronze Band of Force",
+ ["rank"] = 0,
+ ["cost"] = 500,
+ ["texture"] = "Interface/ICONS/inv_jewelry_ring_34",
+ ["phase"] = 1
+ },
+ },
+ [70] = {
+ [1] = {
+ ["id"] = 25287,
+ ["name"] = "Gloom Band",
+ ["rank"] = 0,
+ ["cost"] = 400,
+ ["texture"] = "Interface/ICONS/inv_jewelry_ring_16",
+ ["phase"] = 1
+ },
+ },
+ [75] = {
+ [1] = {
+ ["id"] = 36523,
+ ["name"] = "Brilliant Necklace",
+ ["rank"] = 0,
+ ["cost"] = 600,
+ ["texture"] = "Interface/ICONS/inv_jewelry_necklace_01",
+ ["phase"] = 1
+ },
+ },
+ [80] = {
+ [1] = {
+ ["id"] = 25317,
+ ["name"] = "Ring of Silver Might",
+ ["rank"] = 0,
+ ["cost"] = 600,
+ ["texture"] = "Interface/ICONS/inv_jewelry_ring_05",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 38175,
+ ["name"] = "Bronze Torc",
+ ["rank"] = 0,
+ ["cost"] = 650,
+ ["texture"] = "Interface/ICONS/inv_jewelry_necklace_29naxxramas",
+ ["phase"] = 1
+ },
+ },
+ [90] = {
+ [1] = {
+ ["id"] = 25305,
+ ["name"] = "Heavy Silver Ring",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_jewelry_ring_26",
+ ["phase"] = 1
+ },
+ },
+ [100] = {
+ [1] = {
+ ["id"] = 25318,
+ ["name"] = "Ring of Twilight Shadows",
+ ["rank"] = 0,
+ ["cost"] = 800,
+ ["texture"] = "Interface/ICONS/inv_jewelry_ring_34",
+ ["phase"] = 1
+ },
+ },
+ [105] = {
+ [1] = {
+ ["id"] = 36524,
+ ["name"] = "Heavy Jade Ring",
+ ["rank"] = 0,
+ ["cost"] = 800,
+ ["texture"] = "Interface/ICONS/inv_jewelry_ring_11",
+ ["phase"] = 1
+ },
+ },
+ [110] = {
+ [1] = {
+ ["id"] = 25339,
+ ["name"] = "Amulet of the Moon",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelry_necklace_11",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 25498,
+ ["name"] = "Barbaric Iron Collar",
+ ["rank"] = 0,
+ ["cost"] = 600,
+ ["texture"] = "Interface/ICONS/inv_jewelry_necklace_22",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 32807,
+ ["name"] = "Heavy Stone Statue",
+ ["rank"] = 0,
+ ["cost"] = 600,
+ ["texture"] = "Interface/ICONS/inv_misc_statue_09",
+ ["phase"] = 1
+ },
+ },
+ [120] = {
+ [1] = {
+ ["id"] = 25321,
+ ["name"] = "Moonsoul Crown",
+ ["rank"] = 0,
+ ["cost"] = 1500,
+ ["texture"] = "Interface/ICONS/inv_crown_15",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 25610,
+ ["name"] = "Pendant of the Agate Shield",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shield_21",
+ ["phase"] = 1
+ },
+ },
+ [125] = {
+ [1] = {
+ ["id"] = 25323,
+ ["name"] = "Wicked Moonstone Ring",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelry_ring_02",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 25612,
+ ["name"] = "Heavy Iron Knuckles",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_04",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 28894,
+ ["name"] = "Jewelcrafting (Expert)",
+ ["rank"] = 0,
+ ["cost"] = 5000,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_02",
+ ["phase"] = 1
+ },
+ },
+ [135] = {
+ [1] = {
+ ["id"] = 25613,
+ ["name"] = "Golden Dragon Ring",
+ ["rank"] = 0,
+ ["cost"] = 1200,
+ ["texture"] = "Interface/ICONS/inv_jewelry_ring_40",
+ ["phase"] = 1
+ },
+ },
+ [150] = {
+ [1] = {
+ ["id"] = 25320,
+ ["name"] = "Heavy Golden Necklace of Battle",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelry_necklace_08",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 25617,
+ ["name"] = "Blazing Citrine Ring",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelry_ring_20",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 25615,
+ ["name"] = "Mithril Filigree",
+ ["rank"] = 0,
+ ["cost"] = 1500,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_mithrilfiligree",
+ ["phase"] = 1
+ },
+ },
+ [160] = {
+ [1] = {
+ ["id"] = 25618,
+ ["name"] = "Jade Pendant of Blasting",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelry_necklace_01",
+ ["phase"] = 1
+ },
+ },
+ [170] = {
+ [1] = {
+ ["id"] = 25619,
+ ["name"] = "The Jade Eye",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelry_ring_11",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 25620,
+ ["name"] = "Engraved Truesilver Ring",
+ ["rank"] = 0,
+ ["cost"] = 2000,
+ ["texture"] = "Interface/ICONS/inv_jewelry_ring_35",
+ ["phase"] = 1
+ },
+ },
+ [175] = {
+ [1] = {
+ ["id"] = 32808,
+ ["name"] = "Solid Stone Statue",
+ ["rank"] = 0,
+ ["cost"] = 2000,
+ ["texture"] = "Interface/ICONS/inv_misc_statue_06",
+ ["phase"] = 1
+ },
+ },
+ [180] = {
+ [1] = {
+ ["id"] = 25621,
+ ["name"] = "Citrine Ring of Rapid Healing",
+ ["rank"] = 0,
+ ["cost"] = 2000,
+ ["texture"] = "Interface/ICONS/inv_jewelry_ring_29",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 34955,
+ ["name"] = "Golden Ring of Power",
+ ["rank"] = 0,
+ ["cost"] = 2500,
+ ["texture"] = "Interface/ICONS/inv_jewelry_ring_46",
+ ["phase"] = 1
+ },
+ },
+ [190] = {
+ [1] = {
+ ["id"] = 25622,
+ ["name"] = "Citrine Pendant of Golden Healing",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelry_necklace_06",
+ ["phase"] = 1
+ },
+ },
+ [200] = {
+ [1] = {
+ ["id"] = 26872,
+ ["name"] = "Figurine - Jade Owl",
+ ["rank"] = 0,
+ ["cost"] = 2500,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_jadeowl",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 26873,
+ ["name"] = "Figurine - Golden Hare",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_goldenhare",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 34959,
+ ["name"] = "Truesilver Commander's Ring",
+ ["rank"] = 0,
+ ["cost"] = 3000,
+ ["texture"] = "Interface/ICONS/inv_jewelry_ring_30",
+ ["phase"] = 1
+ },
+ },
+ [210] = {
+ [1] = {
+ ["id"] = 26874,
+ ["name"] = "Aquamarine Signet",
+ ["rank"] = 0,
+ ["cost"] = 5000,
+ ["texture"] = "Interface/ICONS/inv_jewelry_ring_05",
+ ["phase"] = 1
+ },
+ },
+ [215] = {
+ [1] = {
+ ["id"] = 26875,
+ ["name"] = "Figurine - Black Pearl Panther",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_blackpearlpanther",
+ ["phase"] = 1
+ },
+ },
+ [220] = {
+ [1] = {
+ ["id"] = 26876,
+ ["name"] = "Aquamarine Pendant of the Warrior",
+ ["rank"] = 0,
+ ["cost"] = 3000,
+ ["texture"] = "Interface/ICONS/inv_jewelry_necklace_16",
+ ["phase"] = 1
+ },
+ },
+ [225] = {
+ [1] = {
+ ["id"] = 26878,
+ ["name"] = "Ruby Crown of Restoration",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_crown_13",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 26881,
+ ["name"] = "Figurine - Truesilver Crab",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_truesilvercrab",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 26880,
+ ["name"] = "Thorium Setting",
+ ["rank"] = 0,
+ ["cost"] = 3500,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_thoriumsetting",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 32809,
+ ["name"] = "Dense Stone Statue",
+ ["rank"] = 0,
+ ["cost"] = 3500,
+ ["texture"] = "Interface/ICONS/inv_misc_statue_10",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 28895,
+ ["name"] = "Jewelcrafting (Artisan)",
+ ["rank"] = 0,
+ ["cost"] = 50000,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_02",
+ ["phase"] = 1
+ },
+ },
+ [230] = {
+ [1] = {
+ ["id"] = 36525,
+ ["name"] = "Red Ring of Destruction",
+ ["rank"] = 0,
+ ["cost"] = 4000,
+ ["texture"] = "Interface/ICONS/inv_jewelry_ring_25",
+ ["phase"] = 1
+ },
+ },
+ [235] = {
+ [1] = {
+ ["id"] = 26882,
+ ["name"] = "Figurine - Truesilver Boar",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_truesilverboar",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 26883,
+ ["name"] = "Ruby Pendant of Fire",
+ ["rank"] = 0,
+ ["cost"] = 4000,
+ ["texture"] = "Interface/ICONS/inv_jewelry_necklace_15",
+ ["phase"] = 1
+ },
+ },
+ [240] = {
+ [1] = {
+ ["id"] = 26885,
+ ["name"] = "Truesilver Healing Ring",
+ ["rank"] = 0,
+ ["cost"] = 5000,
+ ["texture"] = "Interface/ICONS/inv_jewelry_ring_26",
+ ["phase"] = 1
+ },
+ },
+ [245] = {
+ [1] = {
+ ["id"] = 26887,
+ ["name"] = "The Aquamarine Ward",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelry_ring_29",
+ ["phase"] = 1
+ },
+ },
+ [250] = {
+ [1] = {
+ ["id"] = 26896,
+ ["name"] = "Gem Studded Band",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelry_ring_37",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 26897,
+ ["name"] = "Opal Necklace of Impact",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelry_necklace_14",
+ ["phase"] = 1
+ },
+ },
+ [260] = {
+ [1] = {
+ ["id"] = 26900,
+ ["name"] = "Figurine - Ruby Serpent",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_rubyserpent",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 26902,
+ ["name"] = "Simple Opal Ring",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_jewelry_ring_17",
+ ["phase"] = 1
+ },
+ },
+ [265] = {
+ [1] = {
+ ["id"] = 36526,
+ ["name"] = "Diamond Focus Ring",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_jewelry_ring_42",
+ ["phase"] = 1
+ },
+ },
+ [275] = {
+ [1] = {
+ ["id"] = 26903,
+ ["name"] = "Sapphire Signet",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_jewelry_ring_29",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 26906,
+ ["name"] = "Emerald Crown of Destruction",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_crown_14",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 28897,
+ ["name"] = "Jewelcrafting (Master)",
+ ["rank"] = 0,
+ ["cost"] = 100000,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_02",
+ ["phase"] = 1
+ },
+ },
+ [280] = {
+ [1] = {
+ ["id"] = 26907,
+ ["name"] = "Onslaught Ring",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_jewelry_ring_27",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 26908,
+ ["name"] = "Sapphire Pendant of Winter Night",
+ ["rank"] = 0,
+ ["cost"] = 12000,
+ ["texture"] = "Interface/ICONS/inv_jewelry_necklace_11",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 34960,
+ ["name"] = "Glowing Thorium Band",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_jewelry_ring_35",
+ ["phase"] = 1
+ },
+ },
+ [285] = {
+ [1] = {
+ ["id"] = 26909,
+ ["name"] = "Figurine - Emerald Owl",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_jadeowl",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 26910,
+ ["name"] = "Ring of Bitter Shadows",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelry_ring_ahnqiraj_01",
+ ["phase"] = 1
+ },
+ },
+ [290] = {
+ [1] = {
+ ["id"] = 26911,
+ ["name"] = "Living Emerald Pendant",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/inv_jewelry_necklace_01",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 34961,
+ ["name"] = "Emerald Lion Ring",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_jewelry_ring_18",
+ ["phase"] = 1
+ },
+ },
+ [300] = {
+ [1] = {
+ ["id"] = 26912,
+ ["name"] = "Figurine - Black Diamond Crab",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_truesilvercrab",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 26914,
+ ["name"] = "Figurine - Dark Iron Scorpid",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_hunter_pet_crab",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 28903,
+ ["name"] = "Teardrop Blood Garnet",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_bloodgem_02",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 28910,
+ ["name"] = "Inscribed Flame Spessarite",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_flamespessarite_02",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 28916,
+ ["name"] = "Radiant Deep Peridot",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_deepperidot_02",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 28925,
+ ["name"] = "Glowing Shadow Draenite",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_ebondraenite_02",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 28938,
+ ["name"] = "Brilliant Golden Draenite",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_goldendraenite_02",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 28950,
+ ["name"] = "Solid Azure Moonstone",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_azuredraenite_02",
+ ["phase"] = 1
+ },
+ },
+ [305] = {
+ [1] = {
+ ["id"] = 26915,
+ ["name"] = "Necklace of the Diamond Tower",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelry_necklace_35",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 28905,
+ ["name"] = "Bold Blood Garnet",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_bloodgem_02",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 28912,
+ ["name"] = "Luminous Flame Spessarite",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_flamespessarite_02",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 28917,
+ ["name"] = "Jagged Deep Peridot",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_deepperidot_02",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 28927,
+ ["name"] = "Royal Shadow Draenite",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_ebondraenite_02",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 28944,
+ ["name"] = "Gleaming Golden Draenite",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_goldendraenite_02",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 28953,
+ ["name"] = "Sparkling Azure Moonstone",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_azuredraenite_02",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 34590,
+ ["name"] = "Bright Blood Garnet",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_bloodgem_02",
+ ["phase"] = 1
+ },
+ },
+ [310] = {
+ [1] = {
+ ["id"] = 31049,
+ ["name"] = "Golden Draenite Ring",
+ ["rank"] = 0,
+ ["cost"] = 20000,
+ ["texture"] = "Interface/ICONS/inv_jewelry_ring_60",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 26916,
+ ["name"] = "Band of Natural Fire",
+ ["rank"] = 0,
+ ["cost"] = 20000,
+ ["texture"] = "Interface/ICONS/inv_jewelry_ring_41",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 31048,
+ ["name"] = "Fel Iron Blood Ring",
+ ["rank"] = 0,
+ ["cost"] = 20000,
+ ["texture"] = "Interface/ICONS/inv_jewelry_ring_39",
+ ["phase"] = 1
+ },
+ },
+ [315] = {
+ [1] = {
+ ["id"] = 26918,
+ ["name"] = "Arcanite Sword Pendant",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_weapon_shortblade_06",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 28906,
+ ["name"] = "Runed Blood Garnet",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_bloodgem_02",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 28914,
+ ["name"] = "Glinting Flame Spessarite",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_flamespessarite_02",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 28918,
+ ["name"] = "Enduring Deep Peridot",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_deepperidot_02",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 28933,
+ ["name"] = "Shifting Shadow Draenite",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_ebondraenite_02",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 28947,
+ ["name"] = "Thick Golden Draenite",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_goldendraenite_02",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 28955,
+ ["name"] = "Stormy Azure Moonstone",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_azuredraenite_02",
+ ["phase"] = 1
+ },
+ },
+ [320] = {
+ [1] = {
+ ["id"] = 31050,
+ ["name"] = "Azure Moonstone Ring",
+ ["rank"] = 0,
+ ["cost"] = 25000,
+ ["texture"] = "Interface/ICONS/inv_jewelry_ring_50naxxramas",
+ ["phase"] = 1
+ },
+ },
+ [325] = {
+ [1] = {
+ ["id"] = 26920,
+ ["name"] = "Blood Crown",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_crown_13",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 41414,
+ ["name"] = "Brilliant Pearl Band",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_jewelry_ring_05",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 28907,
+ ["name"] = "Delicate Blood Garnet",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_bloodgem_02",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 28915,
+ ["name"] = "Potent Flame Spessarite",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_flamespessarite_02",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 28924,
+ ["name"] = "Dazzling Deep Peridot",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_deepperidot_02",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 28936,
+ ["name"] = "Sovereign Shadow Draenite",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_ebondraenite_02",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 28948,
+ ["name"] = "Rigid Golden Draenite",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_goldendraenite_02",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 28957,
+ ["name"] = "Lustrous Azure Moonstone",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_azuredraenite_02",
+ ["phase"] = 1
+ },
+ [9] = {
+ ["id"] = 34069,
+ ["name"] = "Smooth Golden Draenite",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_goldendraenite_02",
+ ["phase"] = 1
+ },
+ [10] = {
+ ["id"] = 39451,
+ ["name"] = "Great Golden Draenite",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_goldendraenite_02",
+ ["phase"] = 1
+ },
+ [11] = {
+ ["id"] = 39455,
+ ["name"] = "Balanced Shadow Draenite",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_ebondraenite_02",
+ ["phase"] = 1
+ },
+ [12] = {
+ ["id"] = 39458,
+ ["name"] = "Infused Shadow Draenite",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_ebondraenite_02",
+ ["phase"] = 1
+ },
+ [13] = {
+ ["id"] = 39466,
+ ["name"] = "Veiled Flame Spessarite",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_flamespessarite_02",
+ ["phase"] = 1
+ },
+ [14] = {
+ ["id"] = 39467,
+ ["name"] = "Wicked Flame Spessarite",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_flamespessarite_02",
+ ["phase"] = 1
+ },
+ [15] = {
+ ["id"] = 38068,
+ ["name"] = "Mercurial Adamantite",
+ ["rank"] = 0,
+ ["cost"] = 20000,
+ ["texture"] = "Interface/ICONS/spell_arcane_arcanepotency",
+ ["phase"] = 1
+ },
+ [16] = {
+ ["id"] = 41420,
+ ["name"] = "Purified Jaggal Pearl",
+ ["rank"] = 0,
+ ["cost"] = 8500,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_pearl_08",
+ ["phase"] = 1
+ },
+ },
+ [330] = {
+ [1] = {
+ ["id"] = 41415,
+ ["name"] = "The Black Pearl",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_jewelry_ring_16",
+ ["phase"] = 1
+ },
+ },
+ [335] = {
+ [1] = {
+ ["id"] = 31051,
+ ["name"] = "Thick Adamantite Necklace",
+ ["rank"] = 0,
+ ["cost"] = 30000,
+ ["texture"] = "Interface/ICONS/inv_jewelry_necklace_29naxxramas",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 31052,
+ ["name"] = "Heavy Adamantite Ring",
+ ["rank"] = 0,
+ ["cost"] = 30000,
+ ["texture"] = "Interface/ICONS/inv_jewelry_ring_59",
+ ["phase"] = 1
+ },
+ },
+ [340] = {
+ [1] = {
+ ["id"] = 40514,
+ ["name"] = "Necklace of the Deep",
+ ["rank"] = 0,
+ ["cost"] = 8500,
+ ["texture"] = "Interface/ICONS/inv_jewelry_necklace_03",
+ ["phase"] = 1
+ },
+ },
+ [345] = {
+ [1] = {
+ ["id"] = 31058,
+ ["name"] = "Heavy Felsteel Ring",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelry_ring_64",
+ ["phase"] = 1
+ },
+ },
+ [350] = {
+ [1] = {
+ ["id"] = 31053,
+ ["name"] = "Khorium Band of Shadows",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelry_ring_62",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 31084,
+ ["name"] = "Bold Living Ruby",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_livingruby_03",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 31085,
+ ["name"] = "Delicate Living Ruby",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_livingruby_03",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 31087,
+ ["name"] = "Teardrop Living Ruby",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_livingruby_03",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 31088,
+ ["name"] = "Runed Living Ruby",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_livingruby_03",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 31089,
+ ["name"] = "Bright Living Ruby",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_livingruby_03",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 31090,
+ ["name"] = "Subtle Living Ruby",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_livingruby_03",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 31091,
+ ["name"] = "Flashing Living Ruby",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_livingruby_03",
+ ["phase"] = 1
+ },
+ [9] = {
+ ["id"] = 31092,
+ ["name"] = "Solid Star of Elune",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_starofelune_03",
+ ["phase"] = 1
+ },
+ [10] = {
+ ["id"] = 31094,
+ ["name"] = "Lustrous Star of Elune",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_starofelune_03",
+ ["phase"] = 1
+ },
+ [11] = {
+ ["id"] = 31095,
+ ["name"] = "Stormy Star of Elune",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_starofelune_03",
+ ["phase"] = 1
+ },
+ [12] = {
+ ["id"] = 31096,
+ ["name"] = "Brilliant Dawnstone",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_dawnstone_03",
+ ["phase"] = 1
+ },
+ [13] = {
+ ["id"] = 31097,
+ ["name"] = "Smooth Dawnstone",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_dawnstone_03",
+ ["phase"] = 1
+ },
+ [14] = {
+ ["id"] = 31098,
+ ["name"] = "Rigid Dawnstone",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_dawnstone_03",
+ ["phase"] = 1
+ },
+ [15] = {
+ ["id"] = 31099,
+ ["name"] = "Gleaming Dawnstone",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_dawnstone_03",
+ ["phase"] = 1
+ },
+ [16] = {
+ ["id"] = 31100,
+ ["name"] = "Thick Dawnstone",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_dawnstone_03",
+ ["phase"] = 1
+ },
+ [17] = {
+ ["id"] = 31101,
+ ["name"] = "Mystic Dawnstone",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_dawnstone_03",
+ ["phase"] = 1
+ },
+ [18] = {
+ ["id"] = 31102,
+ ["name"] = "Sovereign Nightseye",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_nightseye_03",
+ ["phase"] = 1
+ },
+ [19] = {
+ ["id"] = 31103,
+ ["name"] = "Shifting Nightseye",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_nightseye_03",
+ ["phase"] = 1
+ },
+ [20] = {
+ ["id"] = 31104,
+ ["name"] = "Glowing Nightseye",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_nightseye_03",
+ ["phase"] = 1
+ },
+ [21] = {
+ ["id"] = 31105,
+ ["name"] = "Royal Nightseye",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_nightseye_03",
+ ["phase"] = 1
+ },
+ [22] = {
+ ["id"] = 31106,
+ ["name"] = "Inscribed Noble Topaz",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_nobletopaz_03",
+ ["phase"] = 1
+ },
+ [23] = {
+ ["id"] = 31107,
+ ["name"] = "Potent Noble Topaz",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_nobletopaz_03",
+ ["phase"] = 1
+ },
+ [24] = {
+ ["id"] = 31108,
+ ["name"] = "Luminous Noble Topaz",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_nobletopaz_03",
+ ["phase"] = 1
+ },
+ [25] = {
+ ["id"] = 31109,
+ ["name"] = "Glinting Noble Topaz",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_nobletopaz_03",
+ ["phase"] = 1
+ },
+ [26] = {
+ ["id"] = 31110,
+ ["name"] = "Enduring Talasite",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_talasite_03",
+ ["phase"] = 1
+ },
+ [27] = {
+ ["id"] = 31111,
+ ["name"] = "Radiant Talasite",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_talasite_03",
+ ["phase"] = 1
+ },
+ [28] = {
+ ["id"] = 31112,
+ ["name"] = "Dazzling Talasite",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_talasite_03",
+ ["phase"] = 1
+ },
+ [29] = {
+ ["id"] = 31113,
+ ["name"] = "Jagged Talasite",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_talasite_03",
+ ["phase"] = 1
+ },
+ [30] = {
+ ["id"] = 31149,
+ ["name"] = "Sparkling Star of Elune",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_starofelune_03",
+ ["phase"] = 1
+ },
+ [31] = {
+ ["id"] = 39452,
+ ["name"] = "Great Dawnstone",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_dawnstone_03",
+ ["phase"] = 1
+ },
+ [32] = {
+ ["id"] = 39462,
+ ["name"] = "Infused Nightseye",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_nightseye_03",
+ ["phase"] = 1
+ },
+ [33] = {
+ ["id"] = 39463,
+ ["name"] = "Balanced Nightseye",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_nightseye_03",
+ ["phase"] = 1
+ },
+ [34] = {
+ ["id"] = 39470,
+ ["name"] = "Veiled Noble Topaz",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_nobletopaz_03",
+ ["phase"] = 1
+ },
+ [35] = {
+ ["id"] = 39471,
+ ["name"] = "Wicked Noble Topaz",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_nobletopaz_03",
+ ["phase"] = 1
+ },
+ [36] = {
+ ["id"] = 41429,
+ ["name"] = "Purified Shadow Pearl",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_pearl_07",
+ ["phase"] = 1
+ },
+ [37] = {
+ ["id"] = 43493,
+ ["name"] = "Steady Talasite",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_talasite_03",
+ ["phase"] = 1
+ },
+ [38] = {
+ ["id"] = 46403,
+ ["name"] = "Quick Dawnstone",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_dawnstone_03",
+ ["phase"] = 1
+ },
+ [39] = {
+ ["id"] = 46404,
+ ["name"] = "Reckless Noble Topaz",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_nobletopaz_03",
+ ["phase"] = 1
+ },
+ [40] = {
+ ["id"] = 46405,
+ ["name"] = "Forceful Talasite",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_talasite_03",
+ ["phase"] = 1
+ },
+ [41] = {
+ ["id"] = 46803,
+ ["name"] = "Regal Nightseye",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_nightseye_03",
+ ["phase"] = 1
+ },
+ [42] = {
+ ["id"] = 47280,
+ ["name"] = "Brilliant Glass",
+ ["rank"] = 0,
+ ["cost"] = 30000,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_diamond_03",
+ ["phase"] = 1
+ },
+ },
+ [355] = {
+ [1] = {
+ ["id"] = 31054,
+ ["name"] = "Khorium Band of Frost",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelry_ring_57",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 31055,
+ ["name"] = "Khorium Inferno Band",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelry_ring_61",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 31060,
+ ["name"] = "Delicate Eternium Ring",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelry_ring_65",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 31067,
+ ["name"] = "Thick Felsteel Necklace",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelry_necklace_17",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 31068,
+ ["name"] = "Living Ruby Pendant",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelry_necklace_15",
+ ["phase"] = 1
+ },
+ },
+ [360] = {
+ [1] = {
+ ["id"] = 31056,
+ ["name"] = "Khorium Band of Leaves",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelry_ring_56",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 31062,
+ ["name"] = "Pendant of Frozen Flame",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelry_necklace_36",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 31063,
+ ["name"] = "Pendant of Thawing",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelry_necklace_34",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 31064,
+ ["name"] = "Pendant of Withering",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelry_necklace_31",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 31065,
+ ["name"] = "Pendant of Shadow's End",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelry_necklace_33",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 31066,
+ ["name"] = "Pendant of the Null Rune",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelry_necklace_32",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 31070,
+ ["name"] = "Braided Eternium Chain",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelry_necklace_07",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 31071,
+ ["name"] = "Eye of the Night",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelry_necklace_28",
+ ["phase"] = 1
+ },
+ [9] = {
+ ["id"] = 37855,
+ ["name"] = "Ring of Arcane Shielding",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelry_ring_68",
+ ["phase"] = 1
+ },
+ [10] = {
+ ["id"] = 42558,
+ ["name"] = "Don Julio's Heart",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_crimsonspinel_02",
+ ["phase"] = 1
+ },
+ [11] = {
+ ["id"] = 42588,
+ ["name"] = "Kailee's Rose",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_crimsonspinel_02",
+ ["phase"] = 1
+ },
+ [12] = {
+ ["id"] = 42589,
+ ["name"] = "Crimson Sun",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_crimsonspinel_02",
+ ["phase"] = 1
+ },
+ [13] = {
+ ["id"] = 42590,
+ ["name"] = "Falling Star",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_empyreansapphire_02",
+ ["phase"] = 1
+ },
+ [14] = {
+ ["id"] = 42591,
+ ["name"] = "Stone of Blades",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_lionseye_02",
+ ["phase"] = 1
+ },
+ [15] = {
+ ["id"] = 42592,
+ ["name"] = "Blood of Amber",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_lionseye_02",
+ ["phase"] = 1
+ },
+ [16] = {
+ ["id"] = 42593,
+ ["name"] = "Facet of Eternity",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_lionseye_02",
+ ["phase"] = 1
+ },
+ },
+ [365] = {
+ [1] = {
+ ["id"] = 46122,
+ ["name"] = "Loop of Forged Power",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelry_ring_35",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 46123,
+ ["name"] = "Ring of Flowing Life",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelry_ring_35",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 46124,
+ ["name"] = "Hard Khorium Band",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelry_ring_55",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 46125,
+ ["name"] = "Pendant of Sunfire",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelry_necklace_30",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 46126,
+ ["name"] = "Amulet of Flowing Life",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelry_necklace_30",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 46127,
+ ["name"] = "Hard Khorium Choker",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelry_necklace_35",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 31057,
+ ["name"] = "Arcane Khorium Band",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelry_ring_63",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 31061,
+ ["name"] = "Blazing Eternium Band",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelry_ring_55",
+ ["phase"] = 1
+ },
+ [9] = {
+ ["id"] = 31072,
+ ["name"] = "Embrace of the Dawn",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelry_necklace_29naxxramas",
+ ["phase"] = 1
+ },
+ [10] = {
+ ["id"] = 31076,
+ ["name"] = "Chain of the Twilight Owl",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelry_necklace_ahnqiraj_02",
+ ["phase"] = 1
+ },
+ [11] = {
+ ["id"] = 32866,
+ ["name"] = "Powerful Earthstorm Diamond",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_diamond_06",
+ ["phase"] = 1
+ },
+ [12] = {
+ ["id"] = 32867,
+ ["name"] = "Bracing Earthstorm Diamond",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_diamond_06",
+ ["phase"] = 1
+ },
+ [13] = {
+ ["id"] = 32868,
+ ["name"] = "Tenacious Earthstorm Diamond",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_diamond_06",
+ ["phase"] = 1
+ },
+ [14] = {
+ ["id"] = 32869,
+ ["name"] = "Brutal Earthstorm Diamond",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_diamond_06",
+ ["phase"] = 1
+ },
+ [15] = {
+ ["id"] = 32870,
+ ["name"] = "Insightful Earthstorm Diamond",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_diamond_06",
+ ["phase"] = 1
+ },
+ [16] = {
+ ["id"] = 32871,
+ ["name"] = "Destructive Skyfire Diamond",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_diamond_07",
+ ["phase"] = 1
+ },
+ [17] = {
+ ["id"] = 32872,
+ ["name"] = "Mystical Skyfire Diamond",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_diamond_07",
+ ["phase"] = 1
+ },
+ [18] = {
+ ["id"] = 32873,
+ ["name"] = "Swift Skyfire Diamond",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_diamond_07",
+ ["phase"] = 1
+ },
+ [19] = {
+ ["id"] = 32874,
+ ["name"] = "Enigmatic Skyfire Diamond",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_diamond_07",
+ ["phase"] = 1
+ },
+ [20] = {
+ ["id"] = 39961,
+ ["name"] = "Relentless Earthstorm Diamond",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_diamond_06",
+ ["phase"] = 1
+ },
+ [21] = {
+ ["id"] = 39963,
+ ["name"] = "Thundering Skyfire Diamond",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_diamond_07",
+ ["phase"] = 1
+ },
+ [22] = {
+ ["id"] = 41418,
+ ["name"] = "Crown of the Sea Witch",
+ ["rank"] = 0,
+ ["cost"] = 30000,
+ ["texture"] = "Interface/ICONS/inv_crown_01",
+ ["phase"] = 1
+ },
+ [23] = {
+ ["id"] = 44794,
+ ["name"] = "Chaotic Skyfire Diamond",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_diamond_07",
+ ["phase"] = 1
+ },
+ },
+ [370] = {
+ [1] = {
+ ["id"] = 31077,
+ ["name"] = "Coronet of the Verdant Flame",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_crown_01",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 31078,
+ ["name"] = "Circlet of Arcane Might",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_crown_02",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 31079,
+ ["name"] = "Figurine - Felsteel Boar",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_truesilverboar",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 31080,
+ ["name"] = "Figurine - Dawnstone Crab",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_truesilvercrab",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 31081,
+ ["name"] = "Figurine - Living Ruby Serpent",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_rubyserpent",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 31082,
+ ["name"] = "Figurine - Talasite Owl",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_jadeowl",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 31083,
+ ["name"] = "Figurine - Nightseye Panther",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_blackpearlpanther",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 46597,
+ ["name"] = "Eternal Earthstorm Diamond",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_diamond_06",
+ ["phase"] = 1
+ },
+ [9] = {
+ ["id"] = 46601,
+ ["name"] = "Ember Skyfire Diamond",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_gem_diamond_07",
+ ["phase"] = 1
+ },
+ },
+ [375] = {
+ [1] = {
+ ["id"] = 38503,
+ ["name"] = "The Frozen Eye",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelry_ring_70",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 38504,
+ ["name"] = "The Natural Ward",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelry_ring_69",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 39705,
+ ["name"] = "Bold Crimson Spinel",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_crimsonspinel_02",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 39706,
+ ["name"] = "Delicate Crimson Spinel",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_crimsonspinel_02",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 39710,
+ ["name"] = "Teardrop Crimson Spinel",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_crimsonspinel_02",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 39711,
+ ["name"] = "Runed Crimson Spinel",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_crimsonspinel_02",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 39712,
+ ["name"] = "Bright Crimson Spinel",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_crimsonspinel_02",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 39713,
+ ["name"] = "Subtle Crimson Spinel",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_crimsonspinel_02",
+ ["phase"] = 1
+ },
+ [9] = {
+ ["id"] = 39714,
+ ["name"] = "Flashing Crimson Spinel",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_crimsonspinel_02",
+ ["phase"] = 1
+ },
+ [10] = {
+ ["id"] = 39715,
+ ["name"] = "Solid Empyrean Sapphire",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_empyreansapphire_02",
+ ["phase"] = 1
+ },
+ [11] = {
+ ["id"] = 39716,
+ ["name"] = "Sparkling Empyrean Sapphire",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_empyreansapphire_02",
+ ["phase"] = 1
+ },
+ [12] = {
+ ["id"] = 39717,
+ ["name"] = "Lustrous Empyrean Sapphire",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_empyreansapphire_02",
+ ["phase"] = 1
+ },
+ [13] = {
+ ["id"] = 39718,
+ ["name"] = "Stormy Empyrean Sapphire",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_empyreansapphire_02",
+ ["phase"] = 1
+ },
+ [14] = {
+ ["id"] = 39719,
+ ["name"] = "Brilliant Lionseye",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_lionseye_02",
+ ["phase"] = 1
+ },
+ [15] = {
+ ["id"] = 39720,
+ ["name"] = "Smooth Lionseye",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_lionseye_02",
+ ["phase"] = 1
+ },
+ [16] = {
+ ["id"] = 39721,
+ ["name"] = "Rigid Lionseye",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_lionseye_02",
+ ["phase"] = 1
+ },
+ [17] = {
+ ["id"] = 39722,
+ ["name"] = "Gleaming Lionseye",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_lionseye_02",
+ ["phase"] = 1
+ },
+ [18] = {
+ ["id"] = 39723,
+ ["name"] = "Thick Lionseye",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_lionseye_02",
+ ["phase"] = 1
+ },
+ [19] = {
+ ["id"] = 39724,
+ ["name"] = "Mystic Lionseye",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_lionseye_02",
+ ["phase"] = 1
+ },
+ [20] = {
+ ["id"] = 39725,
+ ["name"] = "Great Lionseye",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_lionseye_02",
+ ["phase"] = 1
+ },
+ [21] = {
+ ["id"] = 39727,
+ ["name"] = "Sovereign Shadowsong Amethyst",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_shadowsongamethyst_02",
+ ["phase"] = 1
+ },
+ [22] = {
+ ["id"] = 39728,
+ ["name"] = "Shifting Shadowsong Amethyst",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_shadowsongamethyst_02",
+ ["phase"] = 1
+ },
+ [23] = {
+ ["id"] = 39729,
+ ["name"] = "Balanced Shadowsong Amethyst",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_shadowsongamethyst_02",
+ ["phase"] = 1
+ },
+ [24] = {
+ ["id"] = 39730,
+ ["name"] = "Infused Shadowsong Amethyst",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_shadowsongamethyst_02",
+ ["phase"] = 1
+ },
+ [25] = {
+ ["id"] = 39731,
+ ["name"] = "Glowing Shadowsong Amethyst",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_shadowsongamethyst_02",
+ ["phase"] = 1
+ },
+ [26] = {
+ ["id"] = 39732,
+ ["name"] = "Royal Shadowsong Amethyst",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_shadowsongamethyst_02",
+ ["phase"] = 1
+ },
+ [27] = {
+ ["id"] = 39733,
+ ["name"] = "Inscribed Pyrestone",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_pyrestone_02",
+ ["phase"] = 1
+ },
+ [28] = {
+ ["id"] = 39734,
+ ["name"] = "Potent Pyrestone",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_pyrestone_02",
+ ["phase"] = 1
+ },
+ [29] = {
+ ["id"] = 39735,
+ ["name"] = "Luminous Pyrestone",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_pyrestone_02",
+ ["phase"] = 1
+ },
+ [30] = {
+ ["id"] = 39736,
+ ["name"] = "Glinting Pyrestone",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_pyrestone_02",
+ ["phase"] = 1
+ },
+ [31] = {
+ ["id"] = 39737,
+ ["name"] = "Veiled Pyrestone",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_pyrestone_02",
+ ["phase"] = 1
+ },
+ [32] = {
+ ["id"] = 39738,
+ ["name"] = "Wicked Pyrestone",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_pyrestone_02",
+ ["phase"] = 1
+ },
+ [33] = {
+ ["id"] = 39739,
+ ["name"] = "Enduring Seaspray Emerald",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_seasprayemerald_02",
+ ["phase"] = 1
+ },
+ [34] = {
+ ["id"] = 39740,
+ ["name"] = "Radiant Seaspray Emerald",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_seasprayemerald_02",
+ ["phase"] = 1
+ },
+ [35] = {
+ ["id"] = 39741,
+ ["name"] = "Dazzling Seaspray Emerald",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_seasprayemerald_02",
+ ["phase"] = 1
+ },
+ [36] = {
+ ["id"] = 39742,
+ ["name"] = "Jagged Seaspray Emerald",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_seasprayemerald_02",
+ ["phase"] = 1
+ },
+ [37] = {
+ ["id"] = 46775,
+ ["name"] = "Figurine - Empyrean Tortoise",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/ability_hunter_pet_turtle",
+ ["phase"] = 1
+ },
+ [38] = {
+ ["id"] = 46776,
+ ["name"] = "Figurine - Khorium Boar",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_truesilverboar",
+ ["phase"] = 1
+ },
+ [39] = {
+ ["id"] = 46777,
+ ["name"] = "Figurine - Crimson Serpent",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_rubyserpent",
+ ["phase"] = 1
+ },
+ [40] = {
+ ["id"] = 46778,
+ ["name"] = "Figurine - Shadowsong Panther",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_blackpearlpanther",
+ ["phase"] = 1
+ },
+ [41] = {
+ ["id"] = 46779,
+ ["name"] = "Figurine - Seaspray Albatross",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_qirajidol_obsidian",
+ ["phase"] = 1
+ },
+ [42] = {
+ ["id"] = 47053,
+ ["name"] = "Forceful Seaspray Emerald",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_seasprayemerald_02",
+ ["phase"] = 1
+ },
+ [43] = {
+ ["id"] = 47054,
+ ["name"] = "Steady Seaspray Emerald",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_seasprayemerald_02",
+ ["phase"] = 1
+ },
+ [44] = {
+ ["id"] = 47055,
+ ["name"] = "Reckless Pyrestone",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_pyrestone_02",
+ ["phase"] = 5
+ },
+ [45] = {
+ ["id"] = 47056,
+ ["name"] = "Quick Lionseye",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_lionseye_02",
+ ["phase"] = 5
+ },
+ [46] = {
+ ["id"] = 48789,
+ ["name"] = "Purified Shadowsong Amethyst",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_jewelcrafting_shadowsongamethyst_02",
+ ["phase"] = 5
+ },
+ },
+}
diff --git a/Database/professions/Leatherworking.lua b/Database/professions/Leatherworking.lua
new file mode 100644
index 0000000..a0dba76
--- /dev/null
+++ b/Database/professions/Leatherworking.lua
@@ -0,0 +1,3224 @@
+local _, FieldGuide = ...
+
+FieldGuide.LEATHERWORKING = {
+ [1] = {
+ [1] = {
+ ["id"] = 2108,
+ ["name"] = "Leatherworking (Apprentice)",
+ ["rank"] = 0,
+ ["cost"] = 10,
+ ["texture"] = "Interface/ICONS/inv_misc_armorkit_17",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 10656,
+ ["name"] = "Dragonscale Leatherworking",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_monsterscales_03",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 10658,
+ ["name"] = "Elemental Leatherworking",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_fire_volcano",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 10660,
+ ["name"] = "Tribal Leatherworking",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_nullward",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 2149,
+ ["name"] = "Handstitched Leather Boots",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_04",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 7126,
+ ["name"] = "Handstitched Leather Vest",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_wolf",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 9058,
+ ["name"] = "Handstitched Leather Cloak",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_helmet_48",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 9059,
+ ["name"] = "Handstitched Leather Bracers",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_bracer_08",
+ ["phase"] = 1
+ },
+ [9] = {
+ ["id"] = 2152,
+ ["name"] = "Light Armor Kit",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_armorkit_17",
+ ["phase"] = 1
+ },
+ [10] = {
+ ["id"] = 2881,
+ ["name"] = "Light Leather",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_leatherscrap_03",
+ ["phase"] = 1
+ },
+ },
+ [15] = {
+ [1] = {
+ ["id"] = 2153,
+ ["name"] = "Handstitched Leather Pants",
+ ["rank"] = 0,
+ ["cost"] = 50,
+ ["texture"] = "Interface/ICONS/inv_pants_wolf",
+ ["phase"] = 1
+ },
+ },
+ [25] = {
+ [1] = {
+ ["id"] = 3753,
+ ["name"] = "Handstitched Leather Belt",
+ ["rank"] = 0,
+ ["cost"] = 75,
+ ["texture"] = "Interface/ICONS/inv_belt_04",
+ ["phase"] = 1
+ },
+ },
+ [30] = {
+ [1] = {
+ ["id"] = 9060,
+ ["name"] = "Light Leather Quiver",
+ ["rank"] = 0,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/inv_misc_quiver_01",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 9062,
+ ["name"] = "Small Leather Ammo Pouch",
+ ["rank"] = 0,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/inv_misc_ammo_bullet_01",
+ ["phase"] = 1
+ },
+ },
+ [35] = {
+ [1] = {
+ ["id"] = 9064,
+ ["name"] = "Rugged Leather Pants",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_02",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 3816,
+ ["name"] = "Cured Light Hide",
+ ["rank"] = 0,
+ ["cost"] = 50,
+ ["texture"] = "Interface/ICONS/inv_misc_pelt_wolf_01",
+ ["phase"] = 1
+ },
+ },
+ [40] = {
+ [1] = {
+ ["id"] = 2160,
+ ["name"] = "Embossed Leather Vest",
+ ["rank"] = 0,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/inv_chest_leather_09",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 5244,
+ ["name"] = "Kodo Hide Bag",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_bag_10",
+ ["phase"] = 1
+ },
+ },
+ [50] = {
+ [1] = {
+ ["id"] = 3104,
+ ["name"] = "Leatherworking (Journeyman)",
+ ["rank"] = 0,
+ ["cost"] = 500,
+ ["texture"] = "Interface/ICONS/inv_misc_armorkit_17",
+ ["phase"] = 1
+ },
+ },
+ [55] = {
+ [1] = {
+ ["id"] = 2161,
+ ["name"] = "Embossed Leather Boots",
+ ["rank"] = 0,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/inv_boots_05",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 3756,
+ ["name"] = "Embossed Leather Gloves",
+ ["rank"] = 0,
+ ["cost"] = 150,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_05",
+ ["phase"] = 1
+ },
+ },
+ [60] = {
+ [1] = {
+ ["id"] = 2162,
+ ["name"] = "Embossed Leather Cloak",
+ ["rank"] = 0,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/inv_helmet_48",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 2163,
+ ["name"] = "White Leather Jerkin",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_wolf",
+ ["phase"] = 1
+ },
+ },
+ [70] = {
+ [1] = {
+ ["id"] = 9065,
+ ["name"] = "Light Leather Bracers",
+ ["rank"] = 0,
+ ["cost"] = 150,
+ ["texture"] = "Interface/ICONS/inv_bracer_04",
+ ["phase"] = 1
+ },
+ },
+ [75] = {
+ [1] = {
+ ["id"] = 2164,
+ ["name"] = "Fine Leather Gloves",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_05",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 3759,
+ ["name"] = "Embossed Leather Pants",
+ ["rank"] = 0,
+ ["cost"] = 200,
+ ["texture"] = "Interface/ICONS/inv_pants_02",
+ ["phase"] = 1
+ },
+ },
+ [80] = {
+ [1] = {
+ ["id"] = 3763,
+ ["name"] = "Fine Leather Belt",
+ ["rank"] = 0,
+ ["cost"] = 300,
+ ["texture"] = "Interface/ICONS/inv_belt_04",
+ ["phase"] = 1
+ },
+ },
+ [85] = {
+ [1] = {
+ ["id"] = 3761,
+ ["name"] = "Fine Leather Tunic",
+ ["rank"] = 0,
+ ["cost"] = 350,
+ ["texture"] = "Interface/ICONS/inv_chest_leather_09",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 2159,
+ ["name"] = "Fine Leather Cloak",
+ ["rank"] = 0,
+ ["cost"] = 250,
+ ["texture"] = "Interface/ICONS/inv_misc_cape_10",
+ ["phase"] = 1
+ },
+ },
+ [90] = {
+ [1] = {
+ ["id"] = 2158,
+ ["name"] = "Fine Leather Boots",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_06",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 6702,
+ ["name"] = "Murloc Scale Belt",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_belt_02",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 7953,
+ ["name"] = "Deviate Scale Cloak",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_monsterscales_03",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 8322,
+ ["name"] = "Moonglow Vest",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_leather_09",
+ ["phase"] = 1
+ },
+ },
+ [95] = {
+ [1] = {
+ ["id"] = 6703,
+ ["name"] = "Murloc Scale Breastplate",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_chain_12",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 9068,
+ ["name"] = "Light Leather Pants",
+ ["rank"] = 0,
+ ["cost"] = 400,
+ ["texture"] = "Interface/ICONS/inv_pants_02",
+ ["phase"] = 1
+ },
+ },
+ [100] = {
+ [1] = {
+ ["id"] = 2167,
+ ["name"] = "Dark Leather Boots",
+ ["rank"] = 0,
+ ["cost"] = 350,
+ ["texture"] = "Interface/ICONS/inv_boots_05",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 2169,
+ ["name"] = "Dark Leather Tunic",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_leather_03",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 3762,
+ ["name"] = "Hillman's Leather Vest",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_leather_10",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 9070,
+ ["name"] = "Black Whelp Cloak",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_monsterscales_03",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 24940,
+ ["name"] = "Black Whelp Tunic",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_45",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 2165,
+ ["name"] = "Medium Armor Kit",
+ ["rank"] = 0,
+ ["cost"] = 250,
+ ["texture"] = "Interface/ICONS/inv_misc_armorkit_15",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 3817,
+ ["name"] = "Cured Medium Hide",
+ ["rank"] = 0,
+ ["cost"] = 200,
+ ["texture"] = "Interface/ICONS/inv_misc_pelt_bear_02",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 20648,
+ ["name"] = "Medium Leather",
+ ["rank"] = 0,
+ ["cost"] = 500,
+ ["texture"] = "Interface/ICONS/inv_misc_leatherscrap_05",
+ ["phase"] = 1
+ },
+ },
+ [105] = {
+ [1] = {
+ ["id"] = 7133,
+ ["name"] = "Fine Leather Pants",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_02",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 7954,
+ ["name"] = "Deviate Scale Gloves",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_05",
+ ["phase"] = 1
+ },
+ },
+ [110] = {
+ [1] = {
+ ["id"] = 2168,
+ ["name"] = "Dark Leather Cloak",
+ ["rank"] = 0,
+ ["cost"] = 350,
+ ["texture"] = "Interface/ICONS/inv_misc_cape_10",
+ ["phase"] = 1
+ },
+ },
+ [115] = {
+ [1] = {
+ ["id"] = 7135,
+ ["name"] = "Dark Leather Pants",
+ ["rank"] = 0,
+ ["cost"] = 400,
+ ["texture"] = "Interface/ICONS/inv_pants_09",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 7955,
+ ["name"] = "Deviate Scale Belt",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_belt_09",
+ ["phase"] = 1
+ },
+ },
+ [120] = {
+ [1] = {
+ ["id"] = 3765,
+ ["name"] = "Dark Leather Gloves",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_05",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 2166,
+ ["name"] = "Toughened Leather Armor",
+ ["rank"] = 0,
+ ["cost"] = 450,
+ ["texture"] = "Interface/ICONS/inv_chest_leather_10",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 3767,
+ ["name"] = "Hillman's Belt",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_belt_06",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 9072,
+ ["name"] = "Red Whelp Gloves",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_05",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 9074,
+ ["name"] = "Nimble Leather Gloves",
+ ["rank"] = 0,
+ ["cost"] = 500,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_05",
+ ["phase"] = 1
+ },
+ },
+ [125] = {
+ [1] = {
+ ["id"] = 3766,
+ ["name"] = "Dark Leather Belt",
+ ["rank"] = 0,
+ ["cost"] = 400,
+ ["texture"] = "Interface/ICONS/inv_belt_03",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 3811,
+ ["name"] = "Leatherworking (Expert)",
+ ["rank"] = 0,
+ ["cost"] = 5000,
+ ["texture"] = "Interface/ICONS/inv_misc_armorkit_17",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 9145,
+ ["name"] = "Fletcher's Gloves",
+ ["rank"] = 0,
+ ["cost"] = 500,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_05",
+ ["phase"] = 1
+ },
+ },
+ [130] = {
+ [1] = {
+ ["id"] = 3768,
+ ["name"] = "Hillman's Shoulders",
+ ["rank"] = 0,
+ ["cost"] = 500,
+ ["texture"] = "Interface/ICONS/inv_shoulder_08",
+ ["phase"] = 1
+ },
+ },
+ [135] = {
+ [1] = {
+ ["id"] = 3770,
+ ["name"] = "Toughened Leather Gloves",
+ ["rank"] = 0,
+ ["cost"] = 500,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_24",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 9146,
+ ["name"] = "Herbalist's Gloves",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_18",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 9147,
+ ["name"] = "Earthen Leather Shoulders",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shoulder_06",
+ ["phase"] = 1
+ },
+ },
+ [140] = {
+ [1] = {
+ ["id"] = 3769,
+ ["name"] = "Dark Leather Shoulders",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shoulder_12",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 9148,
+ ["name"] = "Pilferer's Gloves",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_05",
+ ["phase"] = 1
+ },
+ },
+ [145] = {
+ [1] = {
+ ["id"] = 3764,
+ ["name"] = "Hillman's Leather Gloves",
+ ["rank"] = 0,
+ ["cost"] = 500,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_05",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 9149,
+ ["name"] = "Heavy Earthen Gloves",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_23",
+ ["phase"] = 1
+ },
+ },
+ [150] = {
+ [1] = {
+ ["id"] = 3760,
+ ["name"] = "Hillman's Cloak",
+ ["rank"] = 0,
+ ["cost"] = 600,
+ ["texture"] = "Interface/ICONS/inv_misc_cape_07",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 3771,
+ ["name"] = "Barbaric Gloves",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_05",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 3780,
+ ["name"] = "Heavy Armor Kit",
+ ["rank"] = 0,
+ ["cost"] = 750,
+ ["texture"] = "Interface/ICONS/inv_misc_armorkit_16",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 9193,
+ ["name"] = "Heavy Quiver",
+ ["rank"] = 0,
+ ["cost"] = 500,
+ ["texture"] = "Interface/ICONS/inv_misc_quiver_02",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 9194,
+ ["name"] = "Heavy Leather Ammo Pouch",
+ ["rank"] = 0,
+ ["cost"] = 500,
+ ["texture"] = "Interface/ICONS/inv_misc_bag_09",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 3818,
+ ["name"] = "Cured Heavy Hide",
+ ["rank"] = 0,
+ ["cost"] = 500,
+ ["texture"] = "Interface/ICONS/inv_misc_pelt_wolf_02",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 20649,
+ ["name"] = "Heavy Leather",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_misc_leatherscrap_07",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 23190,
+ ["name"] = "Heavy Leather Ball",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_throwingball_01",
+ ["phase"] = 1
+ },
+ },
+ [155] = {
+ [1] = {
+ ["id"] = 3772,
+ ["name"] = "Green Leather Armor",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_leather_08",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 23399,
+ ["name"] = "Barbaric Bracers",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_bracer_15",
+ ["phase"] = 1
+ },
+ },
+ [160] = {
+ [1] = {
+ ["id"] = 3774,
+ ["name"] = "Green Leather Belt",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_belt_17",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 7147,
+ ["name"] = "Guardian Pants",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_pants_02",
+ ["phase"] = 1
+ },
+ },
+ [165] = {
+ [1] = {
+ ["id"] = 4096,
+ ["name"] = "Raptor Hide Harness",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_leather_04",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 4097,
+ ["name"] = "Raptor Hide Belt",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_belt_02",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 9195,
+ ["name"] = "Dusky Leather Leggings",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_07",
+ ["phase"] = 1
+ },
+ },
+ [170] = {
+ [1] = {
+ ["id"] = 3775,
+ ["name"] = "Guardian Belt",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_belt_03",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 6704,
+ ["name"] = "Thick Murloc Armor",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_chain_12",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 7149,
+ ["name"] = "Barbaric Leggings",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_12",
+ ["phase"] = 1
+ },
+ },
+ [175] = {
+ [1] = {
+ ["id"] = 3773,
+ ["name"] = "Guardian Armor",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_leather_08",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 7151,
+ ["name"] = "Barbaric Shoulders",
+ ["rank"] = 0,
+ ["cost"] = 1200,
+ ["texture"] = "Interface/ICONS/inv_shoulder_08",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 9196,
+ ["name"] = "Dusky Leather Armor",
+ ["rank"] = 0,
+ ["cost"] = 1500,
+ ["texture"] = "Interface/ICONS/inv_chest_leather_03",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 9197,
+ ["name"] = "Green Whelp Armor",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_chain_09",
+ ["phase"] = 1
+ },
+ },
+ [180] = {
+ [1] = {
+ ["id"] = 3776,
+ ["name"] = "Green Leather Bracers",
+ ["rank"] = 0,
+ ["cost"] = 1200,
+ ["texture"] = "Interface/ICONS/inv_bracer_12",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 9198,
+ ["name"] = "Frost Leather Cloak",
+ ["rank"] = 0,
+ ["cost"] = 2000,
+ ["texture"] = "Interface/ICONS/inv_misc_cape_04",
+ ["phase"] = 1
+ },
+ },
+ [185] = {
+ [1] = {
+ ["id"] = 3778,
+ ["name"] = "Gem-studded Leather Belt",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_belt_01",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 7153,
+ ["name"] = "Guardian Cloak",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_cape_03",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 9201,
+ ["name"] = "Dusky Bracers",
+ ["rank"] = 0,
+ ["cost"] = 2000,
+ ["texture"] = "Interface/ICONS/inv_bracer_07",
+ ["phase"] = 1
+ },
+ },
+ [190] = {
+ [1] = {
+ ["id"] = 6661,
+ ["name"] = "Barbaric Harness",
+ ["rank"] = 0,
+ ["cost"] = 2000,
+ ["texture"] = "Interface/ICONS/inv_chest_leather_04",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 6705,
+ ["name"] = "Murloc Scale Bracers",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_bracer_05",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 7156,
+ ["name"] = "Guardian Gloves",
+ ["rank"] = 0,
+ ["cost"] = 2400,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_05",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 9202,
+ ["name"] = "Green Whelp Bracers",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_bracer_06",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 21943,
+ ["name"] = "Gloves of the Greatfather",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_21",
+ ["phase"] = 1
+ },
+ },
+ [195] = {
+ [1] = {
+ ["id"] = 3777,
+ ["name"] = "Guardian Leather Bracers",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_bracer_10",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 9206,
+ ["name"] = "Dusky Belt",
+ ["rank"] = 0,
+ ["cost"] = 2500,
+ ["texture"] = "Interface/ICONS/inv_belt_06",
+ ["phase"] = 1
+ },
+ },
+ [200] = {
+ [1] = {
+ ["id"] = 3779,
+ ["name"] = "Barbaric Belt",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_belt_09",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 9207,
+ ["name"] = "Dusky Boots",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_07",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 9208,
+ ["name"] = "Swift Boots",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_08",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 10487,
+ ["name"] = "Thick Armor Kit",
+ ["rank"] = 0,
+ ["cost"] = 2000,
+ ["texture"] = "Interface/ICONS/inv_misc_armorkit_07",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 10490,
+ ["name"] = "Comfortable Leather Hat",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_helmet_15",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 10482,
+ ["name"] = "Cured Thick Hide",
+ ["rank"] = 0,
+ ["cost"] = 2000,
+ ["texture"] = "Interface/ICONS/inv_misc_pelt_bear_01",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 22711,
+ ["name"] = "Shadowskin Gloves",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_32",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 20650,
+ ["name"] = "Thick Leather",
+ ["rank"] = 0,
+ ["cost"] = 4000,
+ ["texture"] = "Interface/ICONS/inv_misc_leatherscrap_08",
+ ["phase"] = 1
+ },
+ },
+ [205] = {
+ [1] = {
+ ["id"] = 10499,
+ ["name"] = "Nightscape Tunic",
+ ["rank"] = 0,
+ ["cost"] = 3000,
+ ["texture"] = "Interface/ICONS/inv_chest_leather_03",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 10507,
+ ["name"] = "Nightscape Headband",
+ ["rank"] = 0,
+ ["cost"] = 3000,
+ ["texture"] = "Interface/ICONS/inv_belt_24",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 10509,
+ ["name"] = "Turtle Scale Gloves",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_05",
+ ["phase"] = 1
+ },
+ },
+ [210] = {
+ [1] = {
+ ["id"] = 10511,
+ ["name"] = "Turtle Scale Breastplate",
+ ["rank"] = 0,
+ ["cost"] = 3000,
+ ["texture"] = "Interface/ICONS/inv_chest_chain_12",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 10516,
+ ["name"] = "Nightscape Shoulders",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shoulder_07",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 10518,
+ ["name"] = "Turtle Scale Bracers",
+ ["rank"] = 0,
+ ["cost"] = 3500,
+ ["texture"] = "Interface/ICONS/inv_bracer_06",
+ ["phase"] = 1
+ },
+ },
+ [215] = {
+ [1] = {
+ ["id"] = 10520,
+ ["name"] = "Big Voodoo Robe",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_25",
+ ["phase"] = 1
+ },
+ },
+ [220] = {
+ [1] = {
+ ["id"] = 10525,
+ ["name"] = "Tough Scorpid Breastplate",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_leather_02",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 10529,
+ ["name"] = "Wild Leather Shoulders",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shoulder_18",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 10531,
+ ["name"] = "Big Voodoo Mask",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_banner_01",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 10533,
+ ["name"] = "Tough Scorpid Bracers",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_bracer_09",
+ ["phase"] = 1
+ },
+ },
+ [225] = {
+ [1] = {
+ ["id"] = 10542,
+ ["name"] = "Tough Scorpid Gloves",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_24",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 10544,
+ ["name"] = "Wild Leather Vest",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_06",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 10546,
+ ["name"] = "Wild Leather Helmet",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_helmet_10",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 10619,
+ ["name"] = "Dragonscale Gauntlets",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_10",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 10621,
+ ["name"] = "Wolfshead Helm",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_helmet_04",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 14930,
+ ["name"] = "Quickdraw Quiver",
+ ["rank"] = 0,
+ ["cost"] = 3600,
+ ["texture"] = "Interface/ICONS/inv_misc_quiver_07",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 14932,
+ ["name"] = "Thick Leather Ammo Pouch",
+ ["rank"] = 0,
+ ["cost"] = 3600,
+ ["texture"] = "Interface/ICONS/inv_misc_bag_09_black",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 10662,
+ ["name"] = "Leatherworking (Artisan)",
+ ["rank"] = 0,
+ ["cost"] = 50000,
+ ["texture"] = "Interface/ICONS/inv_misc_armorkit_17",
+ ["phase"] = 1
+ },
+ },
+ [230] = {
+ [1] = {
+ ["id"] = 10548,
+ ["name"] = "Nightscape Pants",
+ ["rank"] = 0,
+ ["cost"] = 4000,
+ ["texture"] = "Interface/ICONS/inv_pants_11",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 10552,
+ ["name"] = "Turtle Scale Helm",
+ ["rank"] = 0,
+ ["cost"] = 4000,
+ ["texture"] = "Interface/ICONS/inv_helmet_40",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 10630,
+ ["name"] = "Gauntlets of the Sea",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_30",
+ ["phase"] = 1
+ },
+ },
+ [235] = {
+ [1] = {
+ ["id"] = 10554,
+ ["name"] = "Tough Scorpid Boots",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_05",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 10556,
+ ["name"] = "Turtle Scale Leggings",
+ ["rank"] = 0,
+ ["cost"] = 4500,
+ ["texture"] = "Interface/ICONS/inv_pants_02",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 10558,
+ ["name"] = "Nightscape Boots",
+ ["rank"] = 0,
+ ["cost"] = 4500,
+ ["texture"] = "Interface/ICONS/inv_boots_05",
+ ["phase"] = 1
+ },
+ },
+ [240] = {
+ [1] = {
+ ["id"] = 10560,
+ ["name"] = "Big Voodoo Pants",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_02",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 10562,
+ ["name"] = "Big Voodoo Cloak",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_cape_02",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 10564,
+ ["name"] = "Tough Scorpid Shoulders",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shoulder_04",
+ ["phase"] = 1
+ },
+ },
+ [245] = {
+ [1] = {
+ ["id"] = 10566,
+ ["name"] = "Wild Leather Boots",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_07",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 10568,
+ ["name"] = "Tough Scorpid Leggings",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_12",
+ ["phase"] = 1
+ },
+ },
+ [250] = {
+ [1] = {
+ ["id"] = 10570,
+ ["name"] = "Tough Scorpid Helm",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_helmet_20",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 10572,
+ ["name"] = "Wild Leather Leggings",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_14",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 10574,
+ ["name"] = "Wild Leather Cloak",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_cape_03",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 10632,
+ ["name"] = "Helm of Fire",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_helmet_08",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 10647,
+ ["name"] = "Feathered Breastplate",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_chest_leather_06",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 19058,
+ ["name"] = "Rugged Armor Kit",
+ ["rank"] = 0,
+ ["cost"] = 5000,
+ ["texture"] = "Interface/ICONS/inv_misc_armorkit_09",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 19047,
+ ["name"] = "Cured Rugged Hide",
+ ["rank"] = 0,
+ ["cost"] = 5000,
+ ["texture"] = "Interface/ICONS/inv_misc_pelt_bear_03",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 22331,
+ ["name"] = "Rugged Leather",
+ ["rank"] = 0,
+ ["cost"] = 5000,
+ ["texture"] = "Interface/ICONS/inv_misc_leatherscrap_02",
+ ["phase"] = 1
+ },
+ },
+ [255] = {
+ [1] = {
+ ["id"] = 10650,
+ ["name"] = "Dragonscale Breastplate",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_chest_chain_07",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 19048,
+ ["name"] = "Heavy Scorpid Bracers",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_bracer_09",
+ ["phase"] = 1
+ },
+ },
+ [260] = {
+ [1] = {
+ ["id"] = 19049,
+ ["name"] = "Wicked Leather Gauntlets",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_31",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 19050,
+ ["name"] = "Green Dragonscale Breastplate",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_chain_06",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 36074,
+ ["name"] = "Blackstorm Leggings",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_pants_leather_03",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 36075,
+ ["name"] = "Wildfeather Leggings",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_pants_leather_03",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 36076,
+ ["name"] = "Dragonstrike Leggings",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_pants_plate_20",
+ ["phase"] = 1
+ },
+ },
+ [265] = {
+ [1] = {
+ ["id"] = 19051,
+ ["name"] = "Heavy Scorpid Vest",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_chain_15",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 19052,
+ ["name"] = "Wicked Leather Bracers",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_bracer_07",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 19053,
+ ["name"] = "Chimeric Gloves",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_23",
+ ["phase"] = 1
+ },
+ },
+ [270] = {
+ [1] = {
+ ["id"] = 19055,
+ ["name"] = "Runic Leather Gauntlets",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_31",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 19059,
+ ["name"] = "Volcanic Leggings",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_06",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 19060,
+ ["name"] = "Green Dragonscale Leggings",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_05",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 19061,
+ ["name"] = "Living Shoulders",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shoulder_18",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 19062,
+ ["name"] = "Ironfeather Shoulders",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shoulder_06",
+ ["phase"] = 1
+ },
+ },
+ [275] = {
+ [1] = {
+ ["id"] = 19063,
+ ["name"] = "Chimeric Boots",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_07",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 19064,
+ ["name"] = "Heavy Scorpid Gauntlets",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_24",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 19065,
+ ["name"] = "Runic Leather Bracers",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_bracer_11",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 19066,
+ ["name"] = "Frostsaber Boots",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_05",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 19067,
+ ["name"] = "Stormshroud Pants",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_09",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 19068,
+ ["name"] = "Warbear Harness",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_leather_04",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 32549,
+ ["name"] = "Leatherworking (Master)",
+ ["rank"] = 0,
+ ["cost"] = 100000,
+ ["texture"] = "Interface/ICONS/inv_misc_armorkit_17",
+ ["phase"] = 1
+ },
+ },
+ [280] = {
+ [1] = {
+ ["id"] = 19070,
+ ["name"] = "Heavy Scorpid Belt",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_belt_03",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 19071,
+ ["name"] = "Wicked Leather Headband",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_misc_bandage_13",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 19072,
+ ["name"] = "Runic Leather Belt",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_belt_23",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 19073,
+ ["name"] = "Chimeric Leggings",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_02",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 24655,
+ ["name"] = "Green Dragonscale Gauntlets",
+ ["rank"] = 0,
+ ["cost"] = 30000,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_12",
+ ["phase"] = 1
+ },
+ },
+ [285] = {
+ [1] = {
+ ["id"] = 19074,
+ ["name"] = "Frostsaber Leggings",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_01",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 19075,
+ ["name"] = "Heavy Scorpid Leggings",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_12",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 19076,
+ ["name"] = "Volcanic Breastplate",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_leather_07",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 19077,
+ ["name"] = "Blue Dragonscale Breastplate",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_chain_04",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 19078,
+ ["name"] = "Living Leggings",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_05",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 19079,
+ ["name"] = "Stormshroud Armor",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_leather_08",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 19080,
+ ["name"] = "Warbear Woolies",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_wolf",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 44953,
+ ["name"] = "Winter Boots",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_christmas01",
+ ["phase"] = 1
+ },
+ [9] = {
+ ["id"] = 22815,
+ ["name"] = "Gordok Ogre Suit",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_chain_14",
+ ["phase"] = 1
+ },
+ },
+ [290] = {
+ [1] = {
+ ["id"] = 19081,
+ ["name"] = "Chimeric Vest",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_leather_07",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 19082,
+ ["name"] = "Runic Leather Headband",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/inv_misc_bandage_11",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 19083,
+ ["name"] = "Wicked Leather Pants",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/inv_pants_12",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 19084,
+ ["name"] = "Devilsaur Gauntlets",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_26",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 19085,
+ ["name"] = "Black Dragonscale Breastplate",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_plate06",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 19086,
+ ["name"] = "Ironfeather Breastplate",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_leather_06",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 23703,
+ ["name"] = "Might of the Timbermaw",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_belt_09",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 23705,
+ ["name"] = "Dawn Treaders",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_cloth_08",
+ ["phase"] = 1
+ },
+ },
+ [295] = {
+ [1] = {
+ ["id"] = 19087,
+ ["name"] = "Frostsaber Gloves",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_16",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 19088,
+ ["name"] = "Heavy Scorpid Helm",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_helmet_20",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 19089,
+ ["name"] = "Blue Dragonscale Shoulders",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shoulder_18",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 19090,
+ ["name"] = "Stormshroud Shoulders",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shoulder_05",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 20853,
+ ["name"] = "Corehound Boots",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_07",
+ ["phase"] = 1
+ },
+ },
+ [300] = {
+ [1] = {
+ ["id"] = 19054,
+ ["name"] = "Red Dragonscale Breastplate",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_chain_06",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 19091,
+ ["name"] = "Runic Leather Pants",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/inv_pants_02",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 19092,
+ ["name"] = "Wicked Leather Belt",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/inv_belt_03",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 19093,
+ ["name"] = "Onyxia Scale Cloak",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_cape_05",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 19094,
+ ["name"] = "Black Dragonscale Shoulders",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shoulder_01",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 19095,
+ ["name"] = "Living Breastplate",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_plate07",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 19097,
+ ["name"] = "Devilsaur Leggings",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_wolf",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 19098,
+ ["name"] = "Wicked Leather Armor",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/inv_chest_plate06",
+ ["phase"] = 1
+ },
+ [9] = {
+ ["id"] = 19100,
+ ["name"] = "Heavy Scorpid Shoulders",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shoulder_07",
+ ["phase"] = 1
+ },
+ [10] = {
+ ["id"] = 19101,
+ ["name"] = "Volcanic Shoulders",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shoulder_13",
+ ["phase"] = 1
+ },
+ [11] = {
+ ["id"] = 19102,
+ ["name"] = "Runic Leather Armor",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/inv_chest_leather_07",
+ ["phase"] = 1
+ },
+ [12] = {
+ ["id"] = 19103,
+ ["name"] = "Runic Leather Shoulders",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/inv_shoulder_15",
+ ["phase"] = 1
+ },
+ [13] = {
+ ["id"] = 19104,
+ ["name"] = "Frostsaber Tunic",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_chain_10",
+ ["phase"] = 1
+ },
+ [14] = {
+ ["id"] = 19107,
+ ["name"] = "Black Dragonscale Leggings",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_03",
+ ["phase"] = 1
+ },
+ [15] = {
+ ["id"] = 20854,
+ ["name"] = "Molten Helm",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_helmet_08",
+ ["phase"] = 1
+ },
+ [16] = {
+ ["id"] = 20855,
+ ["name"] = "Black Dragonscale Boots",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_plate_09",
+ ["phase"] = 1
+ },
+ [17] = {
+ ["id"] = 22727,
+ ["name"] = "Core Armor Kit",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_armorkit_05",
+ ["phase"] = 1
+ },
+ [18] = {
+ ["id"] = 22921,
+ ["name"] = "Girdle of Insight",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_belt_26",
+ ["phase"] = 1
+ },
+ [19] = {
+ ["id"] = 22922,
+ ["name"] = "Mongoose Boots",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_08",
+ ["phase"] = 1
+ },
+ [20] = {
+ ["id"] = 22923,
+ ["name"] = "Swift Flight Bracers",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_bracer_05",
+ ["phase"] = 1
+ },
+ [21] = {
+ ["id"] = 22926,
+ ["name"] = "Chromatic Cloak",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_cape_02",
+ ["phase"] = 1
+ },
+ [22] = {
+ ["id"] = 22927,
+ ["name"] = "Hide of the Wild",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_cape_01",
+ ["phase"] = 1
+ },
+ [23] = {
+ ["id"] = 22928,
+ ["name"] = "Shifting Cloak",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_cape_20",
+ ["phase"] = 1
+ },
+ [24] = {
+ ["id"] = 23704,
+ ["name"] = "Timbermaw Brawlers",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_26",
+ ["phase"] = 1
+ },
+ [25] = {
+ ["id"] = 23706,
+ ["name"] = "Golden Mantle of the Dawn",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shoulder_26",
+ ["phase"] = 1
+ },
+ [26] = {
+ ["id"] = 23707,
+ ["name"] = "Lava Belt",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_belt_32",
+ ["phase"] = 1
+ },
+ [27] = {
+ ["id"] = 23708,
+ ["name"] = "Chromatic Gauntlets",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_22",
+ ["phase"] = 1
+ },
+ [28] = {
+ ["id"] = 23709,
+ ["name"] = "Corehound Belt",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_belt_24",
+ ["phase"] = 1
+ },
+ [29] = {
+ ["id"] = 23710,
+ ["name"] = "Molten Belt",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_belt_13",
+ ["phase"] = 1
+ },
+ [30] = {
+ ["id"] = 24121,
+ ["name"] = "Primal Batskin Jerkin",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_leather_03",
+ ["phase"] = 1
+ },
+ [31] = {
+ ["id"] = 24122,
+ ["name"] = "Primal Batskin Gloves",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_31",
+ ["phase"] = 1
+ },
+ [32] = {
+ ["id"] = 24123,
+ ["name"] = "Primal Batskin Bracers",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_bracer_07",
+ ["phase"] = 1
+ },
+ [33] = {
+ ["id"] = 24124,
+ ["name"] = "Blood Tiger Breastplate",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_leather_07",
+ ["phase"] = 1
+ },
+ [34] = {
+ ["id"] = 24125,
+ ["name"] = "Blood Tiger Shoulders",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shoulder_23",
+ ["phase"] = 1
+ },
+ [35] = {
+ ["id"] = 24654,
+ ["name"] = "Blue Dragonscale Leggings",
+ ["rank"] = 0,
+ ["cost"] = 50000,
+ ["texture"] = "Interface/ICONS/inv_pants_mail_15",
+ ["phase"] = 1
+ },
+ [36] = {
+ ["id"] = 24703,
+ ["name"] = "Dreamscale Breastplate",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_plate08",
+ ["phase"] = 1
+ },
+ [37] = {
+ ["id"] = 24846,
+ ["name"] = "Spitfire Bracers",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_bracer_05",
+ ["phase"] = 1
+ },
+ [38] = {
+ ["id"] = 24847,
+ ["name"] = "Spitfire Gauntlets",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_11",
+ ["phase"] = 1
+ },
+ [39] = {
+ ["id"] = 24848,
+ ["name"] = "Spitfire Breastplate",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_leather_02",
+ ["phase"] = 1
+ },
+ [40] = {
+ ["id"] = 24849,
+ ["name"] = "Sandstalker Bracers",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_bracer_12",
+ ["phase"] = 1
+ },
+ [41] = {
+ ["id"] = 24850,
+ ["name"] = "Sandstalker Gauntlets",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_11",
+ ["phase"] = 1
+ },
+ [42] = {
+ ["id"] = 24851,
+ ["name"] = "Sandstalker Breastplate",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_plate07",
+ ["phase"] = 1
+ },
+ [43] = {
+ ["id"] = 26279,
+ ["name"] = "Stormshroud Gloves",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_05",
+ ["phase"] = 1
+ },
+ [44] = {
+ ["id"] = 28219,
+ ["name"] = "Polar Tunic",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_08",
+ ["phase"] = 1
+ },
+ [45] = {
+ ["id"] = 28220,
+ ["name"] = "Polar Gloves",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_06",
+ ["phase"] = 1
+ },
+ [46] = {
+ ["id"] = 28221,
+ ["name"] = "Polar Bracers",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_bracer_07",
+ ["phase"] = 1
+ },
+ [47] = {
+ ["id"] = 28222,
+ ["name"] = "Icy Scale Breastplate",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_plate09",
+ ["phase"] = 1
+ },
+ [48] = {
+ ["id"] = 28223,
+ ["name"] = "Icy Scale Gauntlets",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_28",
+ ["phase"] = 1
+ },
+ [49] = {
+ ["id"] = 28224,
+ ["name"] = "Icy Scale Bracers",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_bracer_07",
+ ["phase"] = 1
+ },
+ [50] = {
+ ["id"] = 28472,
+ ["name"] = "Bramblewood Helm",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_helmet_58",
+ ["phase"] = 1
+ },
+ [51] = {
+ ["id"] = 28473,
+ ["name"] = "Bramblewood Boots",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_cloth_04",
+ ["phase"] = 1
+ },
+ [52] = {
+ ["id"] = 28474,
+ ["name"] = "Bramblewood Belt",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_belt_17",
+ ["phase"] = 1
+ },
+ [53] = {
+ ["id"] = 32456,
+ ["name"] = "Knothide Armor Kit",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/inv_misc_armorkit_24",
+ ["phase"] = 1
+ },
+ [54] = {
+ ["id"] = 32462,
+ ["name"] = "Felscale Gloves",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_04",
+ ["phase"] = 1
+ },
+ [55] = {
+ ["id"] = 32466,
+ ["name"] = "Scaled Draenic Pants",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/inv_pants_mail_07",
+ ["phase"] = 1
+ },
+ [56] = {
+ ["id"] = 32470,
+ ["name"] = "Thick Draenic Gloves",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_04",
+ ["phase"] = 1
+ },
+ [57] = {
+ ["id"] = 32478,
+ ["name"] = "Wild Draenish Boots",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/inv_boots_chain_01",
+ ["phase"] = 1
+ },
+ [58] = {
+ ["id"] = 45100,
+ ["name"] = "Leatherworker's Satchel",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/inv_misc_bag_20",
+ ["phase"] = 1
+ },
+ [59] = {
+ ["id"] = 32454,
+ ["name"] = "Knothide Leather",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_misc_leatherscrap_10",
+ ["phase"] = 1
+ },
+ [60] = {
+ ["id"] = 32482,
+ ["name"] = "Comfortable Insoles",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_armorkit_17",
+ ["phase"] = 1
+ },
+ },
+ [310] = {
+ [1] = {
+ ["id"] = 32463,
+ ["name"] = "Felscale Boots",
+ ["rank"] = 0,
+ ["cost"] = 18000,
+ ["texture"] = "Interface/ICONS/inv_boots_chain_08",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 32467,
+ ["name"] = "Scaled Draenic Gloves",
+ ["rank"] = 0,
+ ["cost"] = 18000,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_04",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 32479,
+ ["name"] = "Wild Draenish Gloves",
+ ["rank"] = 0,
+ ["cost"] = 18000,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_04",
+ ["phase"] = 1
+ },
+ },
+ [315] = {
+ [1] = {
+ ["id"] = 32471,
+ ["name"] = "Thick Draenic Pants",
+ ["rank"] = 0,
+ ["cost"] = 18000,
+ ["texture"] = "Interface/ICONS/inv_pants_leather_07",
+ ["phase"] = 1
+ },
+ },
+ [320] = {
+ [1] = {
+ ["id"] = 32464,
+ ["name"] = "Felscale Pants",
+ ["rank"] = 0,
+ ["cost"] = 20000,
+ ["texture"] = "Interface/ICONS/inv_pants_mail_08",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 32472,
+ ["name"] = "Thick Draenic Boots",
+ ["rank"] = 0,
+ ["cost"] = 20000,
+ ["texture"] = "Interface/ICONS/inv_boots_chain_01",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 32480,
+ ["name"] = "Wild Draenish Leggings",
+ ["rank"] = 0,
+ ["cost"] = 20000,
+ ["texture"] = "Interface/ICONS/inv_pants_leather_07",
+ ["phase"] = 1
+ },
+ },
+ [325] = {
+ [1] = {
+ ["id"] = 32468,
+ ["name"] = "Scaled Draenic Vest",
+ ["rank"] = 0,
+ ["cost"] = 20000,
+ ["texture"] = "Interface/ICONS/inv_chest_chain_16",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 32457,
+ ["name"] = "Vindicator's Armor Kit",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_armorkit_26",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 32458,
+ ["name"] = "Magister's Armor Kit",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_armorkit_22",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 35530,
+ ["name"] = "Reinforced Mining Bag",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_bag_15",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 32455,
+ ["name"] = "Heavy Knothide Leather",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_leatherscrap_11",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 44343,
+ ["name"] = "Knothide Ammo Pouch",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_bag_09",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 44344,
+ ["name"] = "Knothide Quiver",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_quiver_06",
+ ["phase"] = 1
+ },
+ },
+ [330] = {
+ [1] = {
+ ["id"] = 36077,
+ ["name"] = "Primalstorm Breastplate",
+ ["rank"] = 0,
+ ["cost"] = 20000,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_07",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 36078,
+ ["name"] = "Living Crystal Breastplate",
+ ["rank"] = 0,
+ ["cost"] = 20000,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_06",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 36079,
+ ["name"] = "Golden Dragonstrike Breastplate",
+ ["rank"] = 0,
+ ["cost"] = 40000,
+ ["texture"] = "Interface/ICONS/inv_chest_plate06",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 32473,
+ ["name"] = "Thick Draenic Vest",
+ ["rank"] = 0,
+ ["cost"] = 25000,
+ ["texture"] = "Interface/ICONS/inv_chest_leather_07",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 32481,
+ ["name"] = "Wild Draenish Vest",
+ ["rank"] = 0,
+ ["cost"] = 25000,
+ ["texture"] = "Interface/ICONS/inv_chest_leather_07",
+ ["phase"] = 1
+ },
+ },
+ [335] = {
+ [1] = {
+ ["id"] = 32465,
+ ["name"] = "Felscale Breastplate",
+ ["rank"] = 0,
+ ["cost"] = 25000,
+ ["texture"] = "Interface/ICONS/inv_chest_chain_13",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 32469,
+ ["name"] = "Scaled Draenic Boots",
+ ["rank"] = 0,
+ ["cost"] = 25000,
+ ["texture"] = "Interface/ICONS/inv_boots_chain_01",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 35549,
+ ["name"] = "Cobrahide Leg Armor",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_armorkit_21",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 35555,
+ ["name"] = "Clefthide Leg Armor",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_armorkit_23",
+ ["phase"] = 1
+ },
+ },
+ [340] = {
+ [1] = {
+ ["id"] = 32490,
+ ["name"] = "Fel Leather Gloves",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_22",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 32501,
+ ["name"] = "Netherfury Belt",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_belt_15",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 32502,
+ ["name"] = "Netherfury Leggings",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_plate_12",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 35520,
+ ["name"] = "Shadow Armor Kit",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_antishadow",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 35521,
+ ["name"] = "Flame Armor Kit",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_fire_sealoffire",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 35522,
+ ["name"] = "Frost Armor Kit",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_frost_wizardmark",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 35523,
+ ["name"] = "Nature Armor Kit",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_spiritarmor",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 35524,
+ ["name"] = "Arcane Armor Kit",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_shadow_sealofkings",
+ ["phase"] = 1
+ },
+ [9] = {
+ ["id"] = 35540,
+ ["name"] = "Drums of War",
+ ["rank"] = 0,
+ ["cost"] = 20000,
+ ["texture"] = "Interface/ICONS/inv_misc_drum_03",
+ ["phase"] = 1
+ },
+ },
+ [345] = {
+ [1] = {
+ ["id"] = 35544,
+ ["name"] = "Drums of Speed",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_drum_04",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 351768,
+ ["name"] = "Greater Drums of Speed",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_drum_04",
+ ["phase"] = 1
+ },
+ },
+ [350] = {
+ [1] = {
+ ["id"] = 32461,
+ ["name"] = "Riding Crop",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_crop_02",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 32485,
+ ["name"] = "Stylin' Purple Hat",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_helmet_50",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 32487,
+ ["name"] = "Stylin' Adventure Hat",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_helmet_51",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 32488,
+ ["name"] = "Stylin' Crimson Hat",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_helmet_50",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 32489,
+ ["name"] = "Stylin' Jungle Hat",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_helmet_50",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 32493,
+ ["name"] = "Fel Leather Boots",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_cloth_05",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 32494,
+ ["name"] = "Fel Leather Leggings",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_leather_03",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 32498,
+ ["name"] = "Felstalker Belt",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_belt_13",
+ ["phase"] = 1
+ },
+ [9] = {
+ ["id"] = 32503,
+ ["name"] = "Netherfury Boots",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_chain_06",
+ ["phase"] = 1
+ },
+ [10] = {
+ ["id"] = 35525,
+ ["name"] = "Enchanted Felscale Leggings",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_mail_15",
+ ["phase"] = 1
+ },
+ [11] = {
+ ["id"] = 35526,
+ ["name"] = "Enchanted Felscale Gloves",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_15",
+ ["phase"] = 1
+ },
+ [12] = {
+ ["id"] = 35527,
+ ["name"] = "Enchanted Felscale Boots",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_chain_06",
+ ["phase"] = 1
+ },
+ [13] = {
+ ["id"] = 35528,
+ ["name"] = "Flamescale Boots",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_chain_07",
+ ["phase"] = 1
+ },
+ [14] = {
+ ["id"] = 35529,
+ ["name"] = "Flamescale Leggings",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_mail_03",
+ ["phase"] = 1
+ },
+ [15] = {
+ ["id"] = 35531,
+ ["name"] = "Flamescale Belt",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_belt_15",
+ ["phase"] = 1
+ },
+ [16] = {
+ ["id"] = 35532,
+ ["name"] = "Enchanted Clefthoof Leggings",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_leather_21",
+ ["phase"] = 1
+ },
+ [17] = {
+ ["id"] = 35533,
+ ["name"] = "Enchanted Clefthoof Gloves",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_17",
+ ["phase"] = 1
+ },
+ [18] = {
+ ["id"] = 35534,
+ ["name"] = "Enchanted Clefthoof Boots",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_cloth_03",
+ ["phase"] = 1
+ },
+ [19] = {
+ ["id"] = 35535,
+ ["name"] = "Blastguard Pants",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_leather_05",
+ ["phase"] = 1
+ },
+ [20] = {
+ ["id"] = 35536,
+ ["name"] = "Blastguard Boots",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_cloth_05",
+ ["phase"] = 1
+ },
+ [21] = {
+ ["id"] = 35537,
+ ["name"] = "Blastguard Belt",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_belt_06",
+ ["phase"] = 1
+ },
+ [22] = {
+ ["id"] = 44359,
+ ["name"] = "Quiver of a Thousand Feathers",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_quiver_05",
+ ["phase"] = 1
+ },
+ [23] = {
+ ["id"] = 44768,
+ ["name"] = "Netherscale Ammo Pouch",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_bag_21",
+ ["phase"] = 1
+ },
+ [24] = {
+ ["id"] = 44770,
+ ["name"] = "Glove Reinforcements",
+ ["rank"] = 0,
+ ["cost"] = 50000,
+ ["texture"] = "Interface/ICONS/inv_misc_armorkit_08",
+ ["phase"] = 1
+ },
+ [25] = {
+ ["id"] = 44970,
+ ["name"] = "Heavy Knothide Armor Kit",
+ ["rank"] = 0,
+ ["cost"] = 50000,
+ ["texture"] = "Interface/ICONS/inv_misc_armorkit_25",
+ ["phase"] = 1
+ },
+ [26] = {
+ ["id"] = 35539,
+ ["name"] = "Drums of Restoration",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_drum_07",
+ ["phase"] = 1
+ },
+ [27] = {
+ ["id"] = 351769,
+ ["name"] = "Greater Drums of Restoration",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_drum_07",
+ ["phase"] = 1
+ },
+ },
+ [355] = {
+ [1] = {
+ ["id"] = 32496,
+ ["name"] = "Heavy Clefthoof Leggings",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_12",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 32497,
+ ["name"] = "Heavy Clefthoof Boots",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_07",
+ ["phase"] = 1
+ },
+ },
+ [360] = {
+ [1] = {
+ ["id"] = 32495,
+ ["name"] = "Heavy Clefthoof Vest",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_leather_06",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 32499,
+ ["name"] = "Felstalker Bracer",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_bracer_14",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 32500,
+ ["name"] = "Felstalker Breastplate",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_chain_13",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 42546,
+ ["name"] = "Cloak of Darkness",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_cape_20",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 45117,
+ ["name"] = "Bag of Many Hides",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_bag_21",
+ ["phase"] = 1
+ },
+ },
+ [365] = {
+ [1] = {
+ ["id"] = 46132,
+ ["name"] = "Leather Gauntlets of the Sun",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_24",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 46133,
+ ["name"] = "Fletcher's Gloves of the Phoenix",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_59",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 46134,
+ ["name"] = "Gloves of Immortal Dusk",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_28",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 46135,
+ ["name"] = "Sun-Drenched Scale Gloves",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_61",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 46136,
+ ["name"] = "Leather Chestguard of the Sun",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_leather_01",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 46137,
+ ["name"] = "Embrace of the Phoenix",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_chain_17",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 46138,
+ ["name"] = "Carapace of Sun and Shadow",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_plate02",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 46139,
+ ["name"] = "Sun-Drenched Scale Chestguard",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_mail_04",
+ ["phase"] = 1
+ },
+ [9] = {
+ ["id"] = 35558,
+ ["name"] = "Cobrascale Hood",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_helmet_38",
+ ["phase"] = 1
+ },
+ [10] = {
+ ["id"] = 35559,
+ ["name"] = "Cobrascale Gloves",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_15",
+ ["phase"] = 1
+ },
+ [11] = {
+ ["id"] = 35560,
+ ["name"] = "Windscale Hood",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_helmet_29",
+ ["phase"] = 1
+ },
+ [12] = {
+ ["id"] = 35561,
+ ["name"] = "Hood of Primal Life",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_helmet_32",
+ ["phase"] = 1
+ },
+ [13] = {
+ ["id"] = 35562,
+ ["name"] = "Gloves of the Living Touch",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_25",
+ ["phase"] = 1
+ },
+ [14] = {
+ ["id"] = 35563,
+ ["name"] = "Windslayer Wraps",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_25",
+ ["phase"] = 1
+ },
+ [15] = {
+ ["id"] = 35564,
+ ["name"] = "Living Dragonscale Helm",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_helmet_13",
+ ["phase"] = 1
+ },
+ [16] = {
+ ["id"] = 35567,
+ ["name"] = "Earthen Netherscale Boots",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_chain_02",
+ ["phase"] = 1
+ },
+ [17] = {
+ ["id"] = 35568,
+ ["name"] = "Windstrike Gloves",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_10",
+ ["phase"] = 1
+ },
+ [18] = {
+ ["id"] = 35572,
+ ["name"] = "Netherdrake Helm",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_helmet_06",
+ ["phase"] = 1
+ },
+ [19] = {
+ ["id"] = 35573,
+ ["name"] = "Netherdrake Gloves",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_05",
+ ["phase"] = 1
+ },
+ [20] = {
+ ["id"] = 35574,
+ ["name"] = "Thick Netherscale Breastplate",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_plate08",
+ ["phase"] = 1
+ },
+ [21] = {
+ ["id"] = 42731,
+ ["name"] = "Shadowprowler's Chestguard",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_plate11",
+ ["phase"] = 1
+ },
+ [22] = {
+ ["id"] = 35554,
+ ["name"] = "Nethercobra Leg Armor",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_armorkit_25",
+ ["phase"] = 1
+ },
+ [23] = {
+ ["id"] = 35557,
+ ["name"] = "Nethercleft Leg Armor",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_armorkit_25",
+ ["phase"] = 1
+ },
+ [24] = {
+ ["id"] = 35543,
+ ["name"] = "Drums of Battle",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_drum_02",
+ ["phase"] = 1
+ },
+ [25] = {
+ ["id"] = 351771,
+ ["name"] = "Greater Drums of Battle",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_drum_02",
+ ["phase"] = 1
+ },
+ },
+ [370] = {
+ [1] = {
+ ["id"] = 35538,
+ ["name"] = "Drums of Panic",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_drum_06",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 351770,
+ ["name"] = "Greater Drums of Panic",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_drum_06",
+ ["phase"] = 1
+ },
+ },
+ [375] = {
+ [1] = {
+ ["id"] = 35575,
+ ["name"] = "Ebon Netherscale Breastplate",
+ ["rank"] = 0,
+ ["cost"] = 100000,
+ ["texture"] = "Interface/ICONS/inv_chest_plate08",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 35576,
+ ["name"] = "Ebon Netherscale Belt",
+ ["rank"] = 0,
+ ["cost"] = 100000,
+ ["texture"] = "Interface/ICONS/inv_belt_29",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 35577,
+ ["name"] = "Ebon Netherscale Bracers",
+ ["rank"] = 0,
+ ["cost"] = 100000,
+ ["texture"] = "Interface/ICONS/inv_bracer_19",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 35580,
+ ["name"] = "Netherstrike Breastplate",
+ ["rank"] = 0,
+ ["cost"] = 100000,
+ ["texture"] = "Interface/ICONS/inv_chest_plate07",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 35582,
+ ["name"] = "Netherstrike Belt",
+ ["rank"] = 0,
+ ["cost"] = 100000,
+ ["texture"] = "Interface/ICONS/inv_belt_03",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 35584,
+ ["name"] = "Netherstrike Bracers",
+ ["rank"] = 0,
+ ["cost"] = 100000,
+ ["texture"] = "Interface/ICONS/inv_bracer_12",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 35585,
+ ["name"] = "Windhawk Hauberk",
+ ["rank"] = 0,
+ ["cost"] = 100000,
+ ["texture"] = "Interface/ICONS/inv_chest_leather_01",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 35587,
+ ["name"] = "Windhawk Belt",
+ ["rank"] = 0,
+ ["cost"] = 100000,
+ ["texture"] = "Interface/ICONS/inv_belt_03",
+ ["phase"] = 1
+ },
+ [9] = {
+ ["id"] = 35588,
+ ["name"] = "Windhawk Bracers",
+ ["rank"] = 0,
+ ["cost"] = 100000,
+ ["texture"] = "Interface/ICONS/inv_bracer_07",
+ ["phase"] = 1
+ },
+ [10] = {
+ ["id"] = 35589,
+ ["name"] = "Primalstrike Vest",
+ ["rank"] = 0,
+ ["cost"] = 100000,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_45",
+ ["phase"] = 1
+ },
+ [11] = {
+ ["id"] = 35590,
+ ["name"] = "Primalstrike Belt",
+ ["rank"] = 0,
+ ["cost"] = 100000,
+ ["texture"] = "Interface/ICONS/inv_belt_03",
+ ["phase"] = 1
+ },
+ [12] = {
+ ["id"] = 35591,
+ ["name"] = "Primalstrike Bracers",
+ ["rank"] = 0,
+ ["cost"] = 100000,
+ ["texture"] = "Interface/ICONS/inv_bracer_07",
+ ["phase"] = 1
+ },
+ [13] = {
+ ["id"] = 36349,
+ ["name"] = "Belt of Natural Power",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_belt_25",
+ ["phase"] = 1
+ },
+ [14] = {
+ ["id"] = 36351,
+ ["name"] = "Belt of Deep Shadow",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_belt_29",
+ ["phase"] = 1
+ },
+ [15] = {
+ ["id"] = 36352,
+ ["name"] = "Belt of the Black Eagle",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_belt_03",
+ ["phase"] = 1
+ },
+ [16] = {
+ ["id"] = 36353,
+ ["name"] = "Monsoon Belt",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_belt_15",
+ ["phase"] = 1
+ },
+ [17] = {
+ ["id"] = 36355,
+ ["name"] = "Boots of Natural Grace",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_cloth_04",
+ ["phase"] = 1
+ },
+ [18] = {
+ ["id"] = 36357,
+ ["name"] = "Boots of Utter Darkness",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_05",
+ ["phase"] = 1
+ },
+ [19] = {
+ ["id"] = 36358,
+ ["name"] = "Boots of the Crimson Hawk",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_chain_07",
+ ["phase"] = 1
+ },
+ [20] = {
+ ["id"] = 36359,
+ ["name"] = "Hurricane Boots",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_chain_06",
+ ["phase"] = 1
+ },
+ [21] = {
+ ["id"] = 39997,
+ ["name"] = "Boots of Shackled Souls",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_chain_08",
+ ["phase"] = 1
+ },
+ [22] = {
+ ["id"] = 40000,
+ ["name"] = "Bracers of Shackled Souls",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_bracer_17",
+ ["phase"] = 1
+ },
+ [23] = {
+ ["id"] = 40001,
+ ["name"] = "Greaves of Shackled Souls",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_plate_12",
+ ["phase"] = 1
+ },
+ [24] = {
+ ["id"] = 40002,
+ ["name"] = "Waistguard of Shackled Souls",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_belt_26",
+ ["phase"] = 1
+ },
+ [25] = {
+ ["id"] = 40003,
+ ["name"] = "Redeemed Soul Moccasins",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_cloth_14",
+ ["phase"] = 1
+ },
+ [26] = {
+ ["id"] = 40004,
+ ["name"] = "Redeemed Soul Wristguards",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_bracer_18",
+ ["phase"] = 1
+ },
+ [27] = {
+ ["id"] = 40005,
+ ["name"] = "Redeemed Soul Legguards",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_leather_05",
+ ["phase"] = 1
+ },
+ [28] = {
+ ["id"] = 40006,
+ ["name"] = "Redeemed Soul Cinch",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_belt_26",
+ ["phase"] = 1
+ },
+ [29] = {
+ ["id"] = 41156,
+ ["name"] = "Bracers of Renewed Life",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_bracer_02",
+ ["phase"] = 1
+ },
+ [30] = {
+ ["id"] = 41157,
+ ["name"] = "Shoulderpads of Renewed Life",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shoulder_07",
+ ["phase"] = 1
+ },
+ [31] = {
+ ["id"] = 41158,
+ ["name"] = "Swiftstrike Bracers",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_bracer_15",
+ ["phase"] = 1
+ },
+ [32] = {
+ ["id"] = 41160,
+ ["name"] = "Swiftstrike Shoulders",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shoulder_23",
+ ["phase"] = 1
+ },
+ [33] = {
+ ["id"] = 41161,
+ ["name"] = "Bindings of Lightning Reflexes",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_bracer_02",
+ ["phase"] = 1
+ },
+ [34] = {
+ ["id"] = 41162,
+ ["name"] = "Shoulders of Lightning Reflexes",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shoulder_66",
+ ["phase"] = 1
+ },
+ [35] = {
+ ["id"] = 41163,
+ ["name"] = "Living Earth Bindings",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_bracer_02",
+ ["phase"] = 1
+ },
+ [36] = {
+ ["id"] = 41164,
+ ["name"] = "Living Earth Shoulders",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shoulder_66",
+ ["phase"] = 1
+ },
+ [37] = {
+ ["id"] = 351766,
+ ["name"] = "Greater Drums of War",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_drum_03",
+ ["phase"] = 1
+ },
+ },
+}
diff --git a/Database/professions/Mining.lua b/Database/professions/Mining.lua
new file mode 100644
index 0000000..6574596
--- /dev/null
+++ b/Database/professions/Mining.lua
@@ -0,0 +1,386 @@
+local _, FieldGuide = ...
+
+FieldGuide.MINING = {
+ [1] = {
+ [1] = {
+ ["id"] = 2575,
+ ["name"] = "Mining (Apprentice)",
+ ["rank"] = 0,
+ ["cost"] = 10,
+ ["texture"] = "Interface/ICONS/trade_mining",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 2580,
+ ["name"] = "Find Minerals",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_earthquake",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 2656,
+ ["name"] = "Smelting",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_fire_flameblades",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["item_id"] = 2770,
+ ["name"] = "Copper Vein",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_ore_copper_01",
+ ["phase"] = 1
+ },
+ },
+ [25] = {
+ [1] = {
+ ["id"] = 2657,
+ ["name"] = "Smelt Copper",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_ingot_02",
+ ["phase"] = 1
+ },
+ },
+ [50] = {
+ [1] = {
+ ["id"] = 2576,
+ ["name"] = "Mining (Journeyman)",
+ ["rank"] = 0,
+ ["cost"] = 500,
+ ["texture"] = "Interface/ICONS/trade_mining",
+ ["phase"] = 1
+ },
+ },
+ [65] = {
+ [1] = {
+ ["item_id"] = 2771,
+ ["name"] = "Tin Vein",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_ore_tin_01",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 2659,
+ ["name"] = "Smelt Bronze",
+ ["rank"] = 0,
+ ["cost"] = 200,
+ ["texture"] = "Interface/ICONS/inv_ingot_bronze",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 3304,
+ ["name"] = "Smelt Tin",
+ ["rank"] = 0,
+ ["cost"] = 50,
+ ["texture"] = "Interface/ICONS/inv_ingot_05",
+ ["phase"] = 1
+ },
+ },
+ [75] = {
+ [1] = {
+ ["item_id"] = 2775,
+ ["name"] = "Silver Vein",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_stone_16",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 2658,
+ ["name"] = "Smelt Silver",
+ ["rank"] = 0,
+ ["cost"] = 200,
+ ["texture"] = "Interface/ICONS/inv_ingot_01",
+ ["phase"] = 1
+ },
+ },
+ [125] = {
+ [1] = {
+ ["id"] = 3564,
+ ["name"] = "Mining (Expert)",
+ ["rank"] = 0,
+ ["cost"] = 5000,
+ ["texture"] = "Interface/ICONS/trade_mining",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["item_id"] = 2772,
+ ["name"] = "Iron Deposit",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_ore_iron_01",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 3307,
+ ["name"] = "Smelt Iron",
+ ["rank"] = 0,
+ ["cost"] = 500,
+ ["texture"] = "Interface/ICONS/inv_ingot_iron",
+ ["phase"] = 1
+ },
+ },
+ [155] = {
+ [1] = {
+ ["item_id"] = 2776,
+ ["name"] = "Gold Vein",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_ore_copper_01",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 3308,
+ ["name"] = "Smelt Gold",
+ ["rank"] = 0,
+ ["cost"] = 2500,
+ ["texture"] = "Interface/ICONS/inv_ingot_03",
+ ["phase"] = 1
+ },
+ },
+ [165] = {
+ [1] = {
+ ["id"] = 3569,
+ ["name"] = "Smelt Steel",
+ ["rank"] = 0,
+ ["cost"] = 2500,
+ ["texture"] = "Interface/ICONS/inv_ingot_steel",
+ ["phase"] = 1
+ },
+ },
+ [175] = {
+ [1] = {
+ ["item_id"] = 3858,
+ ["name"] = "Mithril Deposit",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_ore_mithril_02",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 10097,
+ ["name"] = "Smelt Mithril",
+ ["rank"] = 0,
+ ["cost"] = 5000,
+ ["texture"] = "Interface/ICONS/inv_ingot_06",
+ ["phase"] = 1
+ },
+ },
+ [200] = {
+ [1] = {
+ ["id"] = 10248,
+ ["name"] = "Mining (Artisan)",
+ ["rank"] = 0,
+ ["cost"] = 50000,
+ ["texture"] = "Interface/ICONS/trade_mining",
+ ["phase"] = 1
+ },
+ },
+ [230] = {
+ [1] = {
+ ["item_id"] = 11370,
+ ["name"] = "Dark Iron Deposit",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_ore_mithril_01",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 14891,
+ ["name"] = "Smelt Dark Iron",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_ingot_mithril",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["item_id"] = 7911,
+ ["name"] = "Truesilver Deposit",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_ore_truesilver_01",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 10098,
+ ["name"] = "Smelt Truesilver",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_ingot_08",
+ ["phase"] = 1
+ },
+ },
+ [245] = {
+ [1] = {
+ ["item_id"] = 10620,
+ ["name"] = "Small Thorium Vein",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_ore_thorium_02",
+ ["phase"] = 1
+ },
+ },
+ [250] = {
+ [1] = {
+ ["id"] = 16153,
+ ["name"] = "Smelt Thorium",
+ ["rank"] = 0,
+ ["cost"] = 20000,
+ ["texture"] = "Interface/ICONS/inv_ingot_07",
+ ["phase"] = 1
+ },
+ },
+ [275] = {
+ [1] = {
+ ["id"] = 29354,
+ ["name"] = "Mining (Master)",
+ ["rank"] = 0,
+ ["cost"] = 100000,
+ ["texture"] = "Interface/ICONS/trade_mining",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["item_id"] = 10620,
+ ["name"] = "Rich Thorium Vein",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_ore_thorium_02",
+ ["phase"] = 1
+ },
+ },
+ [300] = {
+ [1] = {
+ ["item_id"] = 23424,
+ ["name"] = "Fel Iron Deposit",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_ore_feliron",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 29356,
+ ["name"] = "Smelt Fel Iron",
+ ["rank"] = 0,
+ ["cost"] = 40000,
+ ["texture"] = "Interface/ICONS/inv_ingot_feliron",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 35750,
+ ["name"] = "Earth Shatter",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_elemental_mote_earth01",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 35751,
+ ["name"] = "Fire Sunder",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_elemental_mote_fire01",
+ ["phase"] = 1
+ },
+ },
+ [305] = {
+ [1] = {
+ ["item_id"] = 22203,
+ ["name"] = "Obsidian Chunk",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_stone_15",
+ ["phase"] = 1
+ },
+ },
+ [325] = {
+ [1] = {
+ ["item_id"] = 23425,
+ ["name"] = "Adamantite Deposit",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_ore_adamantium",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 29358,
+ ["name"] = "Smelt Adamantite",
+ ["rank"] = 0,
+ ["cost"] = 40000,
+ ["texture"] = "Interface/ICONS/inv_ingot_10",
+ ["phase"] = 1
+ },
+ },
+ [350] = {
+ [1] = {
+ ["item_id"] = 23425,
+ ["name"] = "Rich Adamantite Deposit",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_ore_adamantium",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 29360,
+ ["name"] = "Smelt Felsteel",
+ ["rank"] = 0,
+ ["cost"] = 40000,
+ ["texture"] = "Interface/ICONS/inv_ingot_felsteel",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 29359,
+ ["name"] = "Smelt Eternium",
+ ["rank"] = 0,
+ ["cost"] = 40000,
+ ["texture"] = "Interface/ICONS/inv_ingot_11",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 22967,
+ ["name"] = "Smelt Elementium",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_ingot_thorium",
+ ["phase"] = 1
+ },
+ },
+ [375] = {
+ [1] = {
+ ["item_id"] = 23426,
+ ["name"] = "Khorium Vein",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_ore_khorium",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 29361,
+ ["name"] = "Smelt Khorium",
+ ["rank"] = 0,
+ ["cost"] = 100000,
+ ["texture"] = "Interface/ICONS/inv_ingot_09",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 29686,
+ ["name"] = "Smelt Hardened Adamantite",
+ ["rank"] = 0,
+ ["cost"] = 100000,
+ ["texture"] = "Interface/ICONS/inv_ingot_adamantite",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 46353,
+ ["name"] = "Smelt Hardened Khorium",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_ingot_thorium",
+ ["phase"] = 1
+ },
+ },
+}
diff --git a/Database/professions/Skinning.lua b/Database/professions/Skinning.lua
new file mode 100644
index 0000000..a6a3b9a
--- /dev/null
+++ b/Database/professions/Skinning.lua
@@ -0,0 +1,54 @@
+local _, FieldGuide = ...
+
+FieldGuide.SKINNING = {
+ [1] = {
+ [1] = {
+ ["id"] = 8613,
+ ["name"] = "Skinning (Apprentice)",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_pelt_wolf_01",
+ ["phase"] = 1
+ },
+ },
+ [50] = {
+ [1] = {
+ ["id"] = 8617,
+ ["name"] = "Skinning (Journeyman)",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_pelt_wolf_01",
+ ["phase"] = 1
+ },
+ },
+ [125] = {
+ [1] = {
+ ["id"] = 8618,
+ ["name"] = "Skinning (Expert)",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_pelt_wolf_01",
+ ["phase"] = 1
+ },
+ },
+ [200] = {
+ [1] = {
+ ["id"] = 10768,
+ ["name"] = "Skinning (Artisan)",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_pelt_wolf_01",
+ ["phase"] = 1
+ },
+ },
+ [275] = {
+ [1] = {
+ ["id"] = 32678,
+ ["name"] = "Skinning (Master)",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_pelt_wolf_01",
+ ["phase"] = 1
+ },
+ },
+}
diff --git a/Database/professions/Tailoring.lua b/Database/professions/Tailoring.lua
new file mode 100644
index 0000000..f079b06
--- /dev/null
+++ b/Database/professions/Tailoring.lua
@@ -0,0 +1,2724 @@
+local _, FieldGuide = ...
+
+FieldGuide.TAILORING = {
+ [1] = {
+ [1] = {
+ ["id"] = 3908,
+ ["name"] = "Tailoring (Apprentice)",
+ ["rank"] = 0,
+ ["cost"] = 10,
+ ["texture"] = "Interface/ICONS/trade_tailoring",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 26797,
+ ["name"] = "Spellfire Tailoring",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_blessingofprotection",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 26798,
+ ["name"] = "Mooncloth Tailoring",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_fabric_moonrag_01",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 26801,
+ ["name"] = "Shadoweave Tailoring",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_fabric_felrag",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 2387,
+ ["name"] = "Linen Cloak",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_cape_14",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 2393,
+ ["name"] = "White Linen Shirt",
+ ["rank"] = 0,
+ ["cost"] = 25,
+ ["texture"] = "Interface/ICONS/inv_shirt_white_01",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 3915,
+ ["name"] = "Brown Linen Shirt",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shirt_02",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 12044,
+ ["name"] = "Simple Linen Pants",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_11",
+ ["phase"] = 1
+ },
+ [9] = {
+ ["id"] = 2963,
+ ["name"] = "Bolt of Linen Cloth",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_fabric_linen_02",
+ ["phase"] = 1
+ },
+ },
+ [10] = {
+ [1] = {
+ ["id"] = 2385,
+ ["name"] = "Brown Linen Vest",
+ ["rank"] = 0,
+ ["cost"] = 50,
+ ["texture"] = "Interface/ICONS/inv_shirt_05",
+ ["phase"] = 1
+ },
+ },
+ [15] = {
+ [1] = {
+ ["id"] = 8776,
+ ["name"] = "Linen Belt",
+ ["rank"] = 0,
+ ["cost"] = 50,
+ ["texture"] = "Interface/ICONS/inv_belt_05",
+ ["phase"] = 1
+ },
+ },
+ [20] = {
+ [1] = {
+ ["id"] = 12045,
+ ["name"] = "Simple Linen Boots",
+ ["rank"] = 0,
+ ["cost"] = 50,
+ ["texture"] = "Interface/ICONS/inv_boots_05",
+ ["phase"] = 1
+ },
+ },
+ [30] = {
+ [1] = {
+ ["id"] = 3914,
+ ["name"] = "Brown Linen Pants",
+ ["rank"] = 0,
+ ["cost"] = 50,
+ ["texture"] = "Interface/ICONS/inv_pants_06",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 7623,
+ ["name"] = "Brown Linen Robe",
+ ["rank"] = 0,
+ ["cost"] = 50,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_21",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 7624,
+ ["name"] = "White Linen Robe",
+ ["rank"] = 0,
+ ["cost"] = 50,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_04",
+ ["phase"] = 1
+ },
+ },
+ [35] = {
+ [1] = {
+ ["id"] = 3840,
+ ["name"] = "Heavy Linen Gloves",
+ ["rank"] = 0,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_05",
+ ["phase"] = 1
+ },
+ },
+ [40] = {
+ [1] = {
+ ["id"] = 2389,
+ ["name"] = "Red Linen Robe",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_18",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 2392,
+ ["name"] = "Red Linen Shirt",
+ ["rank"] = 0,
+ ["cost"] = 50,
+ ["texture"] = "Interface/ICONS/inv_shirt_red_01",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 2394,
+ ["name"] = "Blue Linen Shirt",
+ ["rank"] = 0,
+ ["cost"] = 50,
+ ["texture"] = "Interface/ICONS/inv_shirt_blue_01",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 8465,
+ ["name"] = "Simple Dress",
+ ["rank"] = 0,
+ ["cost"] = 50,
+ ["texture"] = "Interface/ICONS/inv_shirt_12",
+ ["phase"] = 1
+ },
+ },
+ [45] = {
+ [1] = {
+ ["id"] = 3755,
+ ["name"] = "Linen Bag",
+ ["rank"] = 0,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/inv_misc_bag_01",
+ ["phase"] = 1
+ },
+ },
+ [50] = {
+ [1] = {
+ ["id"] = 3909,
+ ["name"] = "Tailoring (Journeyman)",
+ ["rank"] = 0,
+ ["cost"] = 500,
+ ["texture"] = "Interface/ICONS/trade_tailoring",
+ ["phase"] = 1
+ },
+ },
+ [55] = {
+ [1] = {
+ ["id"] = 7629,
+ ["name"] = "Red Linen Vest",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_40",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 7630,
+ ["name"] = "Blue Linen Vest",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_37",
+ ["phase"] = 1
+ },
+ },
+ [60] = {
+ [1] = {
+ ["id"] = 2397,
+ ["name"] = "Reinforced Linen Cape",
+ ["rank"] = 0,
+ ["cost"] = 200,
+ ["texture"] = "Interface/ICONS/inv_misc_cape_07",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 3841,
+ ["name"] = "Green Linen Bracers",
+ ["rank"] = 0,
+ ["cost"] = 200,
+ ["texture"] = "Interface/ICONS/inv_bracer_12",
+ ["phase"] = 1
+ },
+ },
+ [65] = {
+ [1] = {
+ ["id"] = 2386,
+ ["name"] = "Linen Boots",
+ ["rank"] = 0,
+ ["cost"] = 200,
+ ["texture"] = "Interface/ICONS/inv_boots_09",
+ ["phase"] = 1
+ },
+ },
+ [70] = {
+ [1] = {
+ ["id"] = 2395,
+ ["name"] = "Barbaric Linen Vest",
+ ["rank"] = 0,
+ ["cost"] = 300,
+ ["texture"] = "Interface/ICONS/inv_chest_fur",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 2396,
+ ["name"] = "Green Linen Shirt",
+ ["rank"] = 0,
+ ["cost"] = 200,
+ ["texture"] = "Interface/ICONS/inv_shirt_green_01",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 3842,
+ ["name"] = "Handstitched Linen Britches",
+ ["rank"] = 0,
+ ["cost"] = 300,
+ ["texture"] = "Interface/ICONS/inv_pants_07",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 6686,
+ ["name"] = "Red Linen Bag",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_bag_02",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 7633,
+ ["name"] = "Blue Linen Robe",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_23",
+ ["phase"] = 1
+ },
+ },
+ [75] = {
+ [1] = {
+ ["id"] = 2402,
+ ["name"] = "Woolen Cape",
+ ["rank"] = 0,
+ ["cost"] = 250,
+ ["texture"] = "Interface/ICONS/inv_misc_cape_10",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 12046,
+ ["name"] = "Simple Kilt",
+ ["rank"] = 0,
+ ["cost"] = 300,
+ ["texture"] = "Interface/ICONS/inv_pants_11",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 2964,
+ ["name"] = "Bolt of Woolen Cloth",
+ ["rank"] = 0,
+ ["cost"] = 100,
+ ["texture"] = "Interface/ICONS/inv_fabric_wool_03",
+ ["phase"] = 1
+ },
+ },
+ [80] = {
+ [1] = {
+ ["id"] = 3757,
+ ["name"] = "Woolen Bag",
+ ["rank"] = 0,
+ ["cost"] = 200,
+ ["texture"] = "Interface/ICONS/inv_misc_bag_10",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 3845,
+ ["name"] = "Soft-soled Linen Boots",
+ ["rank"] = 0,
+ ["cost"] = 300,
+ ["texture"] = "Interface/ICONS/inv_boots_09",
+ ["phase"] = 1
+ },
+ },
+ [85] = {
+ [1] = {
+ ["id"] = 2399,
+ ["name"] = "Green Woolen Vest",
+ ["rank"] = 0,
+ ["cost"] = 300,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_39",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 3843,
+ ["name"] = "Heavy Woolen Gloves",
+ ["rank"] = 0,
+ ["cost"] = 400,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_05",
+ ["phase"] = 1
+ },
+ },
+ [90] = {
+ [1] = {
+ ["id"] = 6521,
+ ["name"] = "Pearl-clasped Cloak",
+ ["rank"] = 0,
+ ["cost"] = 400,
+ ["texture"] = "Interface/ICONS/inv_misc_cape_11",
+ ["phase"] = 1
+ },
+ },
+ [95] = {
+ [1] = {
+ ["id"] = 2401,
+ ["name"] = "Woolen Boots",
+ ["rank"] = 0,
+ ["cost"] = 300,
+ ["texture"] = "Interface/ICONS/inv_boots_09",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 3758,
+ ["name"] = "Green Woolen Bag",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_bag_10_green",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 3847,
+ ["name"] = "Red Woolen Boots",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_09",
+ ["phase"] = 1
+ },
+ },
+ [100] = {
+ [1] = {
+ ["id"] = 3844,
+ ["name"] = "Heavy Woolen Cloak",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_cape_14",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 7639,
+ ["name"] = "Blue Overalls",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shirt_13",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 2406,
+ ["name"] = "Gray Woolen Shirt",
+ ["rank"] = 0,
+ ["cost"] = 200,
+ ["texture"] = "Interface/ICONS/inv_shirt_grey_01",
+ ["phase"] = 1
+ },
+ },
+ [105] = {
+ [1] = {
+ ["id"] = 2403,
+ ["name"] = "Gray Woolen Robe",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_13",
+ ["phase"] = 1
+ },
+ },
+ [110] = {
+ [1] = {
+ ["id"] = 3848,
+ ["name"] = "Double-stitched Woolen Shoulders",
+ ["rank"] = 0,
+ ["cost"] = 500,
+ ["texture"] = "Interface/ICONS/inv_shoulder_06",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 3850,
+ ["name"] = "Heavy Woolen Pants",
+ ["rank"] = 0,
+ ["cost"] = 500,
+ ["texture"] = "Interface/ICONS/inv_pants_01",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 3866,
+ ["name"] = "Stylish Red Shirt",
+ ["rank"] = 0,
+ ["cost"] = 250,
+ ["texture"] = "Interface/ICONS/inv_shirt_red_01",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 8467,
+ ["name"] = "White Woolen Dress",
+ ["rank"] = 0,
+ ["cost"] = 250,
+ ["texture"] = "Interface/ICONS/inv_shirt_12",
+ ["phase"] = 1
+ },
+ },
+ [115] = {
+ [1] = {
+ ["id"] = 6688,
+ ["name"] = "Red Woolen Bag",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_bag_10_red",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 7643,
+ ["name"] = "Greater Adept's Robe",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_24",
+ ["phase"] = 1
+ },
+ },
+ [120] = {
+ [1] = {
+ ["id"] = 3849,
+ ["name"] = "Reinforced Woolen Shoulders",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shoulder_09",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 7892,
+ ["name"] = "Stylish Blue Shirt",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shirt_blue_01",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 7893,
+ ["name"] = "Stylish Green Shirt",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shirt_green_01",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 12047,
+ ["name"] = "Colorful Kilt",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_02",
+ ["phase"] = 1
+ },
+ },
+ [125] = {
+ [1] = {
+ ["id"] = 3851,
+ ["name"] = "Phoenix Pants",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_06",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 3855,
+ ["name"] = "Spidersilk Boots",
+ ["rank"] = 0,
+ ["cost"] = 750,
+ ["texture"] = "Interface/ICONS/inv_boots_05",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 3868,
+ ["name"] = "Phoenix Gloves",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_19",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 3839,
+ ["name"] = "Bolt of Silk Cloth",
+ ["rank"] = 0,
+ ["cost"] = 500,
+ ["texture"] = "Interface/ICONS/inv_fabric_silk_03",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 3910,
+ ["name"] = "Tailoring (Expert)",
+ ["rank"] = 0,
+ ["cost"] = 5000,
+ ["texture"] = "Interface/ICONS/trade_tailoring",
+ ["phase"] = 1
+ },
+ },
+ [130] = {
+ [1] = {
+ ["id"] = 3852,
+ ["name"] = "Gloves of Meditation",
+ ["rank"] = 0,
+ ["cost"] = 750,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_05",
+ ["phase"] = 1
+ },
+ },
+ [135] = {
+ [1] = {
+ ["id"] = 6690,
+ ["name"] = "Lesser Wizard's Robe",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_17",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 3869,
+ ["name"] = "Bright Yellow Shirt",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shirt_yellow_01",
+ ["phase"] = 1
+ },
+ },
+ [140] = {
+ [1] = {
+ ["id"] = 3856,
+ ["name"] = "Spider Silk Slippers",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_03",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 8758,
+ ["name"] = "Azure Silk Pants",
+ ["rank"] = 0,
+ ["cost"] = 600,
+ ["texture"] = "Interface/ICONS/inv_pants_08",
+ ["phase"] = 1
+ },
+ },
+ [145] = {
+ [1] = {
+ ["id"] = 3854,
+ ["name"] = "Azure Silk Gloves",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_17",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 8780,
+ ["name"] = "Hands of Darkness",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_22",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 8760,
+ ["name"] = "Azure Silk Hood",
+ ["rank"] = 0,
+ ["cost"] = 600,
+ ["texture"] = "Interface/ICONS/inv_helmet_29",
+ ["phase"] = 1
+ },
+ },
+ [150] = {
+ [1] = {
+ ["id"] = 3813,
+ ["name"] = "Small Silk Pack",
+ ["rank"] = 0,
+ ["cost"] = 800,
+ ["texture"] = "Interface/ICONS/inv_misc_bag_07",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 3859,
+ ["name"] = "Azure Silk Vest",
+ ["rank"] = 0,
+ ["cost"] = 750,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_37",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 6692,
+ ["name"] = "Robes of Arcana",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_29",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 8782,
+ ["name"] = "Truefaith Gloves",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_16",
+ ["phase"] = 1
+ },
+ },
+ [155] = {
+ [1] = {
+ ["id"] = 3870,
+ ["name"] = "Dark Silk Shirt",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shirt_black_01",
+ ["phase"] = 1
+ },
+ },
+ [160] = {
+ [1] = {
+ ["id"] = 8483,
+ ["name"] = "White Swashbuckler's Shirt",
+ ["rank"] = 0,
+ ["cost"] = 500,
+ ["texture"] = "Interface/ICONS/inv_shirt_white_01",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 8762,
+ ["name"] = "Silk Headband",
+ ["rank"] = 0,
+ ["cost"] = 750,
+ ["texture"] = "Interface/ICONS/inv_misc_bandana_01",
+ ["phase"] = 1
+ },
+ },
+ [165] = {
+ [1] = {
+ ["id"] = 3857,
+ ["name"] = "Enchanter's Cowl",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_helmet_31",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 8784,
+ ["name"] = "Green Silk Armor",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_06",
+ ["phase"] = 1
+ },
+ },
+ [170] = {
+ [1] = {
+ ["id"] = 3858,
+ ["name"] = "Shadow Hood",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_helmet_27",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 8764,
+ ["name"] = "Earthen Vest",
+ ["rank"] = 0,
+ ["cost"] = 900,
+ ["texture"] = "Interface/ICONS/inv_shirt_04",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 3871,
+ ["name"] = "Formal White Shirt",
+ ["rank"] = 0,
+ ["cost"] = 500,
+ ["texture"] = "Interface/ICONS/inv_shirt_08",
+ ["phase"] = 1
+ },
+ },
+ [175] = {
+ [1] = {
+ ["id"] = 3860,
+ ["name"] = "Boots of the Enchanter",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_05",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 6693,
+ ["name"] = "Green Silk Pack",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_bag_07_green",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 8766,
+ ["name"] = "Azure Silk Belt",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_belt_22",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 8772,
+ ["name"] = "Crimson Silk Belt",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_belt_04",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 8786,
+ ["name"] = "Azure Silk Cloak",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_14",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 8489,
+ ["name"] = "Red Swashbuckler's Shirt",
+ ["rank"] = 0,
+ ["cost"] = 750,
+ ["texture"] = "Interface/ICONS/inv_shirt_red_01",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 3865,
+ ["name"] = "Bolt of Mageweave",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_fabric_mageweave_03",
+ ["phase"] = 1
+ },
+ },
+ [180] = {
+ [1] = {
+ ["id"] = 3863,
+ ["name"] = "Spider Belt",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_belt_25",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 8774,
+ ["name"] = "Green Silken Shoulders",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_shoulder_18",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 8789,
+ ["name"] = "Crimson Silk Cloak",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_16",
+ ["phase"] = 1
+ },
+ },
+ [185] = {
+ [1] = {
+ ["id"] = 3861,
+ ["name"] = "Long Silken Cloak",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_misc_cape_02",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 6695,
+ ["name"] = "Black Silk Pack",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_bag_07_black",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 8791,
+ ["name"] = "Crimson Silk Vest",
+ ["rank"] = 0,
+ ["cost"] = 2500,
+ ["texture"] = "Interface/ICONS/inv_shirt_04",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 3872,
+ ["name"] = "Rich Purple Silk Shirt",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shirt_16",
+ ["phase"] = 1
+ },
+ },
+ [190] = {
+ [1] = {
+ ["id"] = 8770,
+ ["name"] = "Robe of Power",
+ ["rank"] = 0,
+ ["cost"] = 1000,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_02",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 8793,
+ ["name"] = "Crimson Silk Shoulders",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shoulder_23",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 8795,
+ ["name"] = "Azure Shoulders",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shoulder_27",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 21945,
+ ["name"] = "Green Holiday Shirt",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shirt_green_01",
+ ["phase"] = 1
+ },
+ },
+ [195] = {
+ [1] = {
+ ["id"] = 8797,
+ ["name"] = "Earthen Silk Belt",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_belt_24",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 8799,
+ ["name"] = "Crimson Silk Pantaloons",
+ ["rank"] = 0,
+ ["cost"] = 3000,
+ ["texture"] = "Interface/ICONS/inv_pants_06",
+ ["phase"] = 1
+ },
+ },
+ [200] = {
+ [1] = {
+ ["id"] = 3862,
+ ["name"] = "Icy Cloak",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_cape_04",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 3864,
+ ["name"] = "Star Belt",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_belt_06",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 3873,
+ ["name"] = "Black Swashbuckler's Shirt",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shirt_black_01",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 12180,
+ ["name"] = "Tailoring (Artisan)",
+ ["rank"] = 0,
+ ["cost"] = 50000,
+ ["texture"] = "Interface/ICONS/trade_tailoring",
+ ["phase"] = 1
+ },
+ },
+ [205] = {
+ [1] = {
+ ["id"] = 8802,
+ ["name"] = "Crimson Silk Robe",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_25",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 12048,
+ ["name"] = "Black Mageweave Vest",
+ ["rank"] = 0,
+ ["cost"] = 4000,
+ ["texture"] = "Interface/ICONS/inv_chest_leather_03",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 12049,
+ ["name"] = "Black Mageweave Leggings",
+ ["rank"] = 0,
+ ["cost"] = 4000,
+ ["texture"] = "Interface/ICONS/inv_pants_09",
+ ["phase"] = 1
+ },
+ },
+ [210] = {
+ [1] = {
+ ["id"] = 8804,
+ ["name"] = "Crimson Silk Gloves",
+ ["rank"] = 0,
+ ["cost"] = 5000,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_05",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 12050,
+ ["name"] = "Black Mageweave Robe",
+ ["rank"] = 0,
+ ["cost"] = 4000,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_13",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 12052,
+ ["name"] = "Shadoweave Pants",
+ ["rank"] = 0,
+ ["cost"] = 4500,
+ ["texture"] = "Interface/ICONS/inv_pants_11",
+ ["phase"] = 1
+ },
+ },
+ [215] = {
+ [1] = {
+ ["id"] = 12053,
+ ["name"] = "Black Mageweave Gloves",
+ ["rank"] = 0,
+ ["cost"] = 5000,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_05",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 12055,
+ ["name"] = "Shadoweave Robe",
+ ["rank"] = 0,
+ ["cost"] = 4950,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_38",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 12056,
+ ["name"] = "Red Mageweave Vest",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shirt_09",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 12060,
+ ["name"] = "Red Mageweave Pants",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_06",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 12059,
+ ["name"] = "White Bandit Mask",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_cape_11",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 12061,
+ ["name"] = "Orange Mageweave Shirt",
+ ["rank"] = 0,
+ ["cost"] = 2500,
+ ["texture"] = "Interface/ICONS/inv_shirt_orange_01",
+ ["phase"] = 1
+ },
+ },
+ [220] = {
+ [1] = {
+ ["id"] = 12064,
+ ["name"] = "Orange Martial Shirt",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shirt_orange_01",
+ ["phase"] = 1
+ },
+ },
+ [225] = {
+ [1] = {
+ ["id"] = 12065,
+ ["name"] = "Mageweave Bag",
+ ["rank"] = 0,
+ ["cost"] = 5000,
+ ["texture"] = "Interface/ICONS/inv_misc_bag_10_black",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 12066,
+ ["name"] = "Red Mageweave Gloves",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_19",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 12067,
+ ["name"] = "Dreamweave Gloves",
+ ["rank"] = 0,
+ ["cost"] = 5000,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_18",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 12069,
+ ["name"] = "Cindercloth Robe",
+ ["rank"] = 0,
+ ["cost"] = 5000,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_25",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 12070,
+ ["name"] = "Dreamweave Vest",
+ ["rank"] = 0,
+ ["cost"] = 5000,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_42",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 12071,
+ ["name"] = "Shadoweave Gloves",
+ ["rank"] = 0,
+ ["cost"] = 5400,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_09",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 27658,
+ ["name"] = "Enchanted Mageweave Pouch",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_bag_enchantedmageweave",
+ ["phase"] = 1
+ },
+ },
+ [230] = {
+ [1] = {
+ ["id"] = 12072,
+ ["name"] = "Black Mageweave Headband",
+ ["rank"] = 0,
+ ["cost"] = 6000,
+ ["texture"] = "Interface/ICONS/inv_misc_bandana_01",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 12073,
+ ["name"] = "Black Mageweave Boots",
+ ["rank"] = 0,
+ ["cost"] = 6000,
+ ["texture"] = "Interface/ICONS/inv_boots_05",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 12074,
+ ["name"] = "Black Mageweave Shoulders",
+ ["rank"] = 0,
+ ["cost"] = 6000,
+ ["texture"] = "Interface/ICONS/inv_shoulder_25",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 12075,
+ ["name"] = "Lavender Mageweave Shirt",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shirt_purple_01",
+ ["phase"] = 1
+ },
+ },
+ [235] = {
+ [1] = {
+ ["id"] = 12076,
+ ["name"] = "Shadoweave Shoulders",
+ ["rank"] = 0,
+ ["cost"] = 5850,
+ ["texture"] = "Interface/ICONS/inv_shoulder_25",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 12078,
+ ["name"] = "Red Mageweave Shoulders",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shoulder_23",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 12079,
+ ["name"] = "Red Mageweave Bag",
+ ["rank"] = 0,
+ ["cost"] = 6500,
+ ["texture"] = "Interface/ICONS/inv_misc_bag_10_red",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 12077,
+ ["name"] = "Simple Black Dress",
+ ["rank"] = 0,
+ ["cost"] = 5000,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_21",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 12080,
+ ["name"] = "Pink Mageweave Shirt",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shirt_red_01",
+ ["phase"] = 1
+ },
+ },
+ [240] = {
+ [1] = {
+ ["id"] = 12081,
+ ["name"] = "Admiral's Hat",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_helmet_29",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 12082,
+ ["name"] = "Shadoweave Boots",
+ ["rank"] = 0,
+ ["cost"] = 6300,
+ ["texture"] = "Interface/ICONS/inv_boots_05",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 12084,
+ ["name"] = "Red Mageweave Headband",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_bandana_03",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 12085,
+ ["name"] = "Tuxedo Shirt",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shirt_08",
+ ["phase"] = 1
+ },
+ },
+ [245] = {
+ [1] = {
+ ["id"] = 12086,
+ ["name"] = "Shadoweave Mask",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_helmet_27",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 12088,
+ ["name"] = "Cindercloth Boots",
+ ["rank"] = 0,
+ ["cost"] = 7500,
+ ["texture"] = "Interface/ICONS/inv_boots_05",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 12089,
+ ["name"] = "Tuxedo Pants",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_01",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 50647,
+ ["name"] = "Haliscan Pantaloons",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_11",
+ ["phase"] = 1
+ },
+ },
+ [250] = {
+ [1] = {
+ ["id"] = 18560,
+ ["name"] = "Mooncloth",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_fabric_moonrag_01",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 12092,
+ ["name"] = "Dreamweave Circlet",
+ ["rank"] = 0,
+ ["cost"] = 7500,
+ ["texture"] = "Interface/ICONS/inv_crown_01",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 12093,
+ ["name"] = "Tuxedo Jacket",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shirt_black_01",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 26403,
+ ["name"] = "Festival Dress",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_56",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 26407,
+ ["name"] = "Festive Red Pant Suit",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_55",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 50644,
+ ["name"] = "Haliscan Jacket",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shirt_black_01",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 49677,
+ ["name"] = "Dress Shoes",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_05",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 12091,
+ ["name"] = "White Wedding Dress",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_04",
+ ["phase"] = 1
+ },
+ [9] = {
+ ["id"] = 18401,
+ ["name"] = "Bolt of Runecloth",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_fabric_purplefire_02",
+ ["phase"] = 1
+ },
+ [10] = {
+ ["id"] = 44950,
+ ["name"] = "Green Winter Clothes",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_christmas01",
+ ["phase"] = 1
+ },
+ [11] = {
+ ["id"] = 44958,
+ ["name"] = "Red Winter Clothes",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_christmas02",
+ ["phase"] = 1
+ },
+ },
+ [255] = {
+ [1] = {
+ ["id"] = 18402,
+ ["name"] = "Runecloth Belt",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_belt_15",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 18403,
+ ["name"] = "Frostweave Tunic",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_08",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 18404,
+ ["name"] = "Frostweave Robe",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_03",
+ ["phase"] = 1
+ },
+ },
+ [260] = {
+ [1] = {
+ ["id"] = 18405,
+ ["name"] = "Runecloth Bag",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_bag_19",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 18406,
+ ["name"] = "Runecloth Robe",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_04",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 18407,
+ ["name"] = "Runecloth Tunic",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_04",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 18408,
+ ["name"] = "Cindercloth Vest",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_07",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 26085,
+ ["name"] = "Soul Pouch",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_bag_soulbag",
+ ["phase"] = 1
+ },
+ },
+ [265] = {
+ [1] = {
+ ["id"] = 18409,
+ ["name"] = "Runecloth Cloak",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_misc_cape_10",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 18410,
+ ["name"] = "Ghostweave Belt",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_belt_16",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 18411,
+ ["name"] = "Frostweave Gloves",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_05",
+ ["phase"] = 1
+ },
+ },
+ [270] = {
+ [1] = {
+ ["id"] = 18412,
+ ["name"] = "Cindercloth Gloves",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_05",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 18413,
+ ["name"] = "Ghostweave Gloves",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_05",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 18414,
+ ["name"] = "Brightcloth Robe",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_26",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 18415,
+ ["name"] = "Brightcloth Gloves",
+ ["rank"] = 0,
+ ["cost"] = 10000,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_21",
+ ["phase"] = 1
+ },
+ },
+ [275] = {
+ [1] = {
+ ["id"] = 18416,
+ ["name"] = "Ghostweave Vest",
+ ["rank"] = 0,
+ ["cost"] = 12500,
+ ["texture"] = "Interface/ICONS/inv_shirt_08",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 18417,
+ ["name"] = "Runecloth Gloves",
+ ["rank"] = 0,
+ ["cost"] = 12500,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_25",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 18418,
+ ["name"] = "Cindercloth Cloak",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_cape_18",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 18419,
+ ["name"] = "Felcloth Pants",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_06",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 18420,
+ ["name"] = "Brightcloth Cloak",
+ ["rank"] = 0,
+ ["cost"] = 12500,
+ ["texture"] = "Interface/ICONS/inv_misc_cape_11",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 18421,
+ ["name"] = "Wizardweave Leggings",
+ ["rank"] = 0,
+ ["cost"] = 12500,
+ ["texture"] = "Interface/ICONS/inv_pants_09",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 18422,
+ ["name"] = "Cloak of Fire",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_cape_18",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 26790,
+ ["name"] = "Tailoring (Master)",
+ ["rank"] = 0,
+ ["cost"] = 100000,
+ ["texture"] = "Interface/ICONS/trade_tailoring",
+ ["phase"] = 1
+ },
+ [9] = {
+ ["id"] = 27659,
+ ["name"] = "Enchanted Runecloth Bag",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_bag_enchantedrunecloth",
+ ["phase"] = 1
+ },
+ [10] = {
+ ["id"] = 27724,
+ ["name"] = "Cenarion Herb Bag",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_bag_cenarionherbbag",
+ ["phase"] = 1
+ },
+ },
+ [280] = {
+ [1] = {
+ ["id"] = 18423,
+ ["name"] = "Runecloth Boots",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/inv_boots_05",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 18424,
+ ["name"] = "Frostweave Pants",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/inv_pants_08",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 18434,
+ ["name"] = "Cindercloth Pants",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_06",
+ ["phase"] = 1
+ },
+ },
+ [285] = {
+ [1] = {
+ ["id"] = 18436,
+ ["name"] = "Robe of Winter Night",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_49",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 18437,
+ ["name"] = "Felcloth Boots",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/inv_boots_05",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 18438,
+ ["name"] = "Runecloth Pants",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/inv_pants_09",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 26086,
+ ["name"] = "Felcloth Bag",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_bag_felclothbag",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 22813,
+ ["name"] = "Gordok Ogre Suit",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_chain_14",
+ ["phase"] = 1
+ },
+ },
+ [290] = {
+ [1] = {
+ ["id"] = 18439,
+ ["name"] = "Brightcloth Pants",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_09",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 18440,
+ ["name"] = "Mooncloth Leggings",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_13",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 18441,
+ ["name"] = "Ghostweave Pants",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/inv_pants_01",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 18442,
+ ["name"] = "Felcloth Hood",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/inv_helmet_34",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 23662,
+ ["name"] = "Wisdom of the Timbermaw",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_belt_09",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 23664,
+ ["name"] = "Argent Boots",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_cloth_03",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 19435,
+ ["name"] = "Mooncloth Boots",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_05",
+ ["phase"] = 1
+ },
+ },
+ [295] = {
+ [1] = {
+ ["id"] = 18444,
+ ["name"] = "Runecloth Headband",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/inv_misc_bandana_03",
+ ["phase"] = 1
+ },
+ },
+ [300] = {
+ [1] = {
+ ["id"] = 22759,
+ ["name"] = "Flarecore Wraps",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_bracer_09",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 18445,
+ ["name"] = "Mooncloth Bag",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_bag_14",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 18446,
+ ["name"] = "Wizardweave Robe",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_46",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 18447,
+ ["name"] = "Mooncloth Vest",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_08",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 18448,
+ ["name"] = "Mooncloth Shoulders",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shoulder_02",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 18449,
+ ["name"] = "Runecloth Shoulders",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/inv_shoulder_21",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 18450,
+ ["name"] = "Wizardweave Turban",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/inv_helmet_63",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 18451,
+ ["name"] = "Felcloth Robe",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_09",
+ ["phase"] = 1
+ },
+ [9] = {
+ ["id"] = 18452,
+ ["name"] = "Mooncloth Circlet",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_bandana_01",
+ ["phase"] = 1
+ },
+ [10] = {
+ ["id"] = 18453,
+ ["name"] = "Felcloth Shoulders",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/inv_shoulder_23",
+ ["phase"] = 1
+ },
+ [11] = {
+ ["id"] = 18454,
+ ["name"] = "Gloves of Spell Mastery",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_06",
+ ["phase"] = 1
+ },
+ [12] = {
+ ["id"] = 18455,
+ ["name"] = "Bottomless Bag",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_bag_13",
+ ["phase"] = 1
+ },
+ [13] = {
+ ["id"] = 18456,
+ ["name"] = "Truefaith Vestments",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_31",
+ ["phase"] = 1
+ },
+ [14] = {
+ ["id"] = 18457,
+ ["name"] = "Robe of the Archmage",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_38",
+ ["phase"] = 1
+ },
+ [15] = {
+ ["id"] = 18458,
+ ["name"] = "Robe of the Void",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_51",
+ ["phase"] = 1
+ },
+ [16] = {
+ ["id"] = 20848,
+ ["name"] = "Flarecore Mantle",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shoulder_23",
+ ["phase"] = 1
+ },
+ [17] = {
+ ["id"] = 20849,
+ ["name"] = "Flarecore Gloves",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_26",
+ ["phase"] = 1
+ },
+ [18] = {
+ ["id"] = 22866,
+ ["name"] = "Belt of the Archmage",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_belt_31",
+ ["phase"] = 1
+ },
+ [19] = {
+ ["id"] = 22867,
+ ["name"] = "Felcloth Gloves",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_19",
+ ["phase"] = 1
+ },
+ [20] = {
+ ["id"] = 22868,
+ ["name"] = "Inferno Gloves",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_19",
+ ["phase"] = 1
+ },
+ [21] = {
+ ["id"] = 22869,
+ ["name"] = "Mooncloth Gloves",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_17",
+ ["phase"] = 1
+ },
+ [22] = {
+ ["id"] = 22870,
+ ["name"] = "Cloak of Warding",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_cape_06",
+ ["phase"] = 1
+ },
+ [23] = {
+ ["id"] = 22902,
+ ["name"] = "Mooncloth Robe",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_04",
+ ["phase"] = 1
+ },
+ [24] = {
+ ["id"] = 23663,
+ ["name"] = "Mantle of the Timbermaw",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shoulder_19",
+ ["phase"] = 1
+ },
+ [25] = {
+ ["id"] = 23665,
+ ["name"] = "Argent Shoulders",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shoulder_13",
+ ["phase"] = 1
+ },
+ [26] = {
+ ["id"] = 23666,
+ ["name"] = "Flarecore Robe",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_18",
+ ["phase"] = 1
+ },
+ [27] = {
+ ["id"] = 23667,
+ ["name"] = "Flarecore Leggings",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_06",
+ ["phase"] = 1
+ },
+ [28] = {
+ ["id"] = 24091,
+ ["name"] = "Bloodvine Vest",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_07",
+ ["phase"] = 1
+ },
+ [29] = {
+ ["id"] = 24092,
+ ["name"] = "Bloodvine Leggings",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_cloth_14",
+ ["phase"] = 1
+ },
+ [30] = {
+ ["id"] = 24093,
+ ["name"] = "Bloodvine Boots",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_cloth_02",
+ ["phase"] = 1
+ },
+ [31] = {
+ ["id"] = 24901,
+ ["name"] = "Runed Stygian Leggings",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_cloth_05",
+ ["phase"] = 1
+ },
+ [32] = {
+ ["id"] = 24902,
+ ["name"] = "Runed Stygian Belt",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_belt_14",
+ ["phase"] = 1
+ },
+ [33] = {
+ ["id"] = 24903,
+ ["name"] = "Runed Stygian Boots",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_05",
+ ["phase"] = 1
+ },
+ [34] = {
+ ["id"] = 26087,
+ ["name"] = "Core Felcloth Bag",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_bag_corefelclothbag",
+ ["phase"] = 1
+ },
+ [35] = {
+ ["id"] = 27660,
+ ["name"] = "Big Bag of Enchantment",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_bag_bigbagofenchantments",
+ ["phase"] = 1
+ },
+ [36] = {
+ ["id"] = 27725,
+ ["name"] = "Satchel of Cenarius",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_bag_satchelofcenarius",
+ ["phase"] = 1
+ },
+ [37] = {
+ ["id"] = 28205,
+ ["name"] = "Glacial Gloves",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_06",
+ ["phase"] = 1
+ },
+ [38] = {
+ ["id"] = 28207,
+ ["name"] = "Glacial Vest",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_08",
+ ["phase"] = 1
+ },
+ [39] = {
+ ["id"] = 28208,
+ ["name"] = "Glacial Cloak",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_cape_16",
+ ["phase"] = 1
+ },
+ [40] = {
+ ["id"] = 28209,
+ ["name"] = "Glacial Wrists",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_bracer_07",
+ ["phase"] = 1
+ },
+ [41] = {
+ ["id"] = 28210,
+ ["name"] = "Gaea's Embrace",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_cape_17",
+ ["phase"] = 1
+ },
+ [42] = {
+ ["id"] = 28480,
+ ["name"] = "Sylvan Vest",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_plate07",
+ ["phase"] = 1
+ },
+ [43] = {
+ ["id"] = 28481,
+ ["name"] = "Sylvan Crown",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_crown_01",
+ ["phase"] = 1
+ },
+ [44] = {
+ ["id"] = 28482,
+ ["name"] = "Sylvan Shoulders",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shoulder_18",
+ ["phase"] = 1
+ },
+ [45] = {
+ ["id"] = 26745,
+ ["name"] = "Bolt of Netherweave",
+ ["rank"] = 0,
+ ["cost"] = 20000,
+ ["texture"] = "Interface/ICONS/inv_fabric_netherweave_bolt",
+ ["phase"] = 1
+ },
+ [46] = {
+ ["id"] = 31460,
+ ["name"] = "Netherweave Net",
+ ["rank"] = 0,
+ ["cost"] = 20000,
+ ["texture"] = "Interface/ICONS/inv_misc_net_01",
+ ["phase"] = 1
+ },
+ },
+ [310] = {
+ [1] = {
+ ["id"] = 26764,
+ ["name"] = "Netherweave Bracers",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/inv_bracer_07",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 26765,
+ ["name"] = "Netherweave Belt",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/inv_belt_04",
+ ["phase"] = 1
+ },
+ },
+ [315] = {
+ [1] = {
+ ["id"] = 26746,
+ ["name"] = "Netherweave Bag",
+ ["rank"] = 0,
+ ["cost"] = 15000,
+ ["texture"] = "Interface/ICONS/inv_misc_bag_23_netherweave",
+ ["phase"] = 1
+ },
+ },
+ [320] = {
+ [1] = {
+ ["id"] = 26770,
+ ["name"] = "Netherweave Gloves",
+ ["rank"] = 0,
+ ["cost"] = 20000,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_27",
+ ["phase"] = 1
+ },
+ },
+ [325] = {
+ [1] = {
+ ["id"] = 26771,
+ ["name"] = "Netherweave Pants",
+ ["rank"] = 0,
+ ["cost"] = 20000,
+ ["texture"] = "Interface/ICONS/inv_pants_09",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 26747,
+ ["name"] = "Bolt of Imbued Netherweave",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_fabric_netherweave_bolt_imbued",
+ ["phase"] = 1
+ },
+ },
+ [335] = {
+ [1] = {
+ ["id"] = 26772,
+ ["name"] = "Netherweave Boots",
+ ["rank"] = 0,
+ ["cost"] = 20000,
+ ["texture"] = "Interface/ICONS/inv_boots_05",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 31430,
+ ["name"] = "Mystic Spellthread",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_astralrecal",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 31431,
+ ["name"] = "Silver Spellthread",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_lightning",
+ ["phase"] = 1
+ },
+ },
+ [340] = {
+ [1] = {
+ ["id"] = 26773,
+ ["name"] = "Netherweave Robe",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_29",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 26775,
+ ["name"] = "Imbued Netherweave Pants",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_leather_09",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 31459,
+ ["name"] = "Bag of Jewels",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_bag_15",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 26749,
+ ["name"] = "Imbued Netherweave Bag",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_bag_24_netherweave_imbued",
+ ["phase"] = 1
+ },
+ },
+ [345] = {
+ [1] = {
+ ["id"] = 26774,
+ ["name"] = "Netherweave Tunic",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shirt_04",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 26750,
+ ["name"] = "Bolt of Soulcloth",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_fabric_soulcloth_bolt",
+ ["phase"] = 1
+ },
+ },
+ [350] = {
+ [1] = {
+ ["id"] = 26776,
+ ["name"] = "Imbued Netherweave Boots",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_07",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 26782,
+ ["name"] = "Arcanoweave Bracers",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_bracer_19",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 31434,
+ ["name"] = "Unyielding Bracers",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_bracer_11",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 31435,
+ ["name"] = "Bracers of Havok",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_bracer_10",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 31437,
+ ["name"] = "Blackstrike Bracers",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_bracer_07",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 31438,
+ ["name"] = "Cloak of the Black Void",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_cape_20",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 31440,
+ ["name"] = "Cloak of Eternity",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_cape_10",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 31441,
+ ["name"] = "White Remedy Cape",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_cape_11",
+ ["phase"] = 1
+ },
+ [9] = {
+ ["id"] = 37873,
+ ["name"] = "Cloak of Arcane Evasion",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_cape_16",
+ ["phase"] = 1
+ },
+ [10] = {
+ ["id"] = 37882,
+ ["name"] = "Flameheart Bracers",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_bracer_11",
+ ["phase"] = 1
+ },
+ [11] = {
+ ["id"] = 26751,
+ ["name"] = "Primal Mooncloth",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_fabric_moonrag_primal",
+ ["phase"] = 1
+ },
+ [12] = {
+ ["id"] = 31373,
+ ["name"] = "Spellcloth",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_fabric_spellfire",
+ ["phase"] = 1
+ },
+ [13] = {
+ ["id"] = 36686,
+ ["name"] = "Shadowcloth",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_fabric_felcloth_ebon",
+ ["phase"] = 1
+ },
+ },
+ [355] = {
+ [1] = {
+ ["id"] = 26752,
+ ["name"] = "Spellfire Belt",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_belt_04",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 26756,
+ ["name"] = "Frozen Shadoweave Shoulders",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shoulder_25",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 26760,
+ ["name"] = "Primal Mooncloth Belt",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_belt_31",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 26779,
+ ["name"] = "Soulcloth Gloves",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_17",
+ ["phase"] = 1
+ },
+ },
+ [360] = {
+ [1] = {
+ ["id"] = 26777,
+ ["name"] = "Imbued Netherweave Robe",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_12",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 26778,
+ ["name"] = "Imbued Netherweave Tunic",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_45",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 26783,
+ ["name"] = "Arcanoweave Boots",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_07",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 37883,
+ ["name"] = "Flameheart Gloves",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_19",
+ ["phase"] = 1
+ },
+ },
+ [365] = {
+ [1] = {
+ ["id"] = 46128,
+ ["name"] = "Sunfire Handwraps",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_49",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 46129,
+ ["name"] = "Hands of Eternal Light",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_63",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 46130,
+ ["name"] = "Sunfire Robe",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_02",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 46131,
+ ["name"] = "Robe of Eternal Light",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_51",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 26753,
+ ["name"] = "Spellfire Gloves",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_gauntlets_19",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 26757,
+ ["name"] = "Frozen Shadoweave Boots",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_cloth_03",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 26761,
+ ["name"] = "Primal Mooncloth Shoulders",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shoulder_02",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 26780,
+ ["name"] = "Soulcloth Shoulders",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shoulder_02",
+ ["phase"] = 1
+ },
+ [9] = {
+ ["id"] = 31442,
+ ["name"] = "Unyielding Girdle",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_belt_03",
+ ["phase"] = 1
+ },
+ [10] = {
+ ["id"] = 31443,
+ ["name"] = "Girdle of Ruination",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_belt_13",
+ ["phase"] = 1
+ },
+ [11] = {
+ ["id"] = 31444,
+ ["name"] = "Black Belt of Knowledge",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_belt_26",
+ ["phase"] = 1
+ },
+ [12] = {
+ ["id"] = 31448,
+ ["name"] = "Resolute Cape",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_cape_16",
+ ["phase"] = 1
+ },
+ [13] = {
+ ["id"] = 31449,
+ ["name"] = "Vengeance Wrap",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_cape_18",
+ ["phase"] = 1
+ },
+ [14] = {
+ ["id"] = 31450,
+ ["name"] = "Manaweave Cloak",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_cape_16",
+ ["phase"] = 1
+ },
+ },
+ [370] = {
+ [1] = {
+ ["id"] = 26784,
+ ["name"] = "Arcanoweave Robe",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_01",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 37884,
+ ["name"] = "Flameheart Vest",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_07",
+ ["phase"] = 1
+ },
+ },
+ [375] = {
+ [1] = {
+ ["id"] = 26754,
+ ["name"] = "Spellfire Robe",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_02",
+ ["phase"] = 1
+ },
+ [2] = {
+ ["id"] = 26755,
+ ["name"] = "Spellfire Bag",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_bag_26_spellfire",
+ ["phase"] = 1
+ },
+ [3] = {
+ ["id"] = 26758,
+ ["name"] = "Frozen Shadoweave Robe",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_08",
+ ["phase"] = 1
+ },
+ [4] = {
+ ["id"] = 26759,
+ ["name"] = "Ebon Shadowbag",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_bag_felclothbag",
+ ["phase"] = 1
+ },
+ [5] = {
+ ["id"] = 26762,
+ ["name"] = "Primal Mooncloth Robe",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_04",
+ ["phase"] = 1
+ },
+ [6] = {
+ ["id"] = 26763,
+ ["name"] = "Primal Mooncloth Bag",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_bag_25_mooncloth",
+ ["phase"] = 1
+ },
+ [7] = {
+ ["id"] = 26781,
+ ["name"] = "Soulcloth Vest",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_chest_cloth_12",
+ ["phase"] = 1
+ },
+ [8] = {
+ ["id"] = 31432,
+ ["name"] = "Runic Spellthread",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_nature_astralrecalgroup",
+ ["phase"] = 1
+ },
+ [9] = {
+ ["id"] = 31433,
+ ["name"] = "Golden Spellthread",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/spell_holy_restoration",
+ ["phase"] = 1
+ },
+ [10] = {
+ ["id"] = 31451,
+ ["name"] = "Whitemend Pants",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_cloth_07",
+ ["phase"] = 1
+ },
+ [11] = {
+ ["id"] = 31452,
+ ["name"] = "Spellstrike Pants",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_cloth_14",
+ ["phase"] = 1
+ },
+ [12] = {
+ ["id"] = 31453,
+ ["name"] = "Battlecast Pants",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_cloth_12",
+ ["phase"] = 1
+ },
+ [13] = {
+ ["id"] = 31454,
+ ["name"] = "Whitemend Hood",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_helmet_53",
+ ["phase"] = 1
+ },
+ [14] = {
+ ["id"] = 31455,
+ ["name"] = "Spellstrike Hood",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_helmet_27",
+ ["phase"] = 1
+ },
+ [15] = {
+ ["id"] = 31456,
+ ["name"] = "Battlecast Hood",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_helmet_70",
+ ["phase"] = 1
+ },
+ [16] = {
+ ["id"] = 36315,
+ ["name"] = "Belt of Blasting",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_belt_13",
+ ["phase"] = 1
+ },
+ [17] = {
+ ["id"] = 36316,
+ ["name"] = "Belt of the Long Road",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_belt_05",
+ ["phase"] = 1
+ },
+ [18] = {
+ ["id"] = 36317,
+ ["name"] = "Boots of Blasting",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_cloth_05",
+ ["phase"] = 1
+ },
+ [19] = {
+ ["id"] = 36318,
+ ["name"] = "Boots of the Long Road",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_cloth_14",
+ ["phase"] = 1
+ },
+ [20] = {
+ ["id"] = 40020,
+ ["name"] = "Soulguard Slippers",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_boots_cloth_10",
+ ["phase"] = 1
+ },
+ [21] = {
+ ["id"] = 40021,
+ ["name"] = "Soulguard Bracers",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_bracer_09",
+ ["phase"] = 1
+ },
+ [22] = {
+ ["id"] = 40023,
+ ["name"] = "Soulguard Leggings",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_pants_cloth_09",
+ ["phase"] = 1
+ },
+ [23] = {
+ ["id"] = 40024,
+ ["name"] = "Soulguard Girdle",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_belt_07",
+ ["phase"] = 1
+ },
+ [24] = {
+ ["id"] = 40060,
+ ["name"] = "Night's End",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_cape_20",
+ ["phase"] = 1
+ },
+ [25] = {
+ ["id"] = 41205,
+ ["name"] = "Bracers of Nimble Thought",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_bracer_13",
+ ["phase"] = 1
+ },
+ [26] = {
+ ["id"] = 41206,
+ ["name"] = "Mantle of Nimble Thought",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shoulder_02",
+ ["phase"] = 1
+ },
+ [27] = {
+ ["id"] = 41207,
+ ["name"] = "Swiftheal Wraps",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_bracer_13",
+ ["phase"] = 1
+ },
+ [28] = {
+ ["id"] = 41208,
+ ["name"] = "Swiftheal Mantle",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_shoulder_25",
+ ["phase"] = 1
+ },
+ [29] = {
+ ["id"] = 50194,
+ ["name"] = "Mycah's Botanical Bag",
+ ["rank"] = 0,
+ ["cost"] = 0,
+ ["texture"] = "Interface/ICONS/inv_misc_bag_27",
+ ["phase"] = 1
+ },
+ },
+}
diff --git a/FieldGuide.lua b/FieldGuide.lua
index 71bd219..0abfd62 100644
--- a/FieldGuide.lua
+++ b/FieldGuide.lua
@@ -2,20 +2,20 @@ local _, FieldGuide = ...
local pairs, ipairs, select, floor = pairs, ipairs, select, math.floor
local GetFactionInfoByID, IsSpellKnown, GetMoney, GetCoinTextureString = GetFactionInfoByID, IsSpellKnown, GetMoney, GetCoinTextureString
-local hbd = LibStub("HereBeDragons-2.0")
-local hbdp = LibStub("HereBeDragons-Pins-2.0")
local minimapIcon = LibStub("LibDBIcon-1.0")
local libDD = LibStub("LibUIDropDownMenu-4.0")
-- Variables.
-local tomtom = nil
local faction = UnitFactionGroup("player")
local race = UnitRace("player")
-local actualClass = select(2, UnitClass("player"))
-local lowestLevel = 52 -- Used for figuring out which row is at the top when hiding entire rows.
-local currentMinLevel = 2 -- The current top row to show.
+local playerClass = select(2, UnitClass("player"))
+local playerLevel = select(1, UnitLevel("player"))
+local topShownRow = 1 -- The current top row to show.
+local bottomShownRow = 1 -- Used for figuring out which row is at the top when hiding entire rows.
+local selectedCategory = "CLASS"
local selectedClass -- The currently selected class.
-local emptyLevels = {} -- Holds info on if a row is empty or not.
+local groups = {}
+local spells = {}
local CLASS_BACKGROUNDS = {
WARRIOR = "WarriorArms",
PALADIN = "PaladinCombat",
@@ -26,6 +26,7 @@ local CLASS_BACKGROUNDS = {
MAGE = "MageFrost",
WARLOCK = "WarlockCurses",
DRUID = "DruidFeralCombat",
+ RIDING = "MageFrost",
WEAPONS = "MageFrost"
}
local CLASS_COLORS = {
@@ -38,38 +39,14 @@ local CLASS_COLORS = {
["MAGE"] = "|cFF40C7EB",
["WARLOCK"] = "|cFF8787ED",
["DRUID"] = "|cFFFF7D0A",
+ ["RIDING"] = "|cFFDFDFDF",
["WEAPONS"] = "|cFFDFDFDF"
}
-local CLASS_INDECES = {
- ["WARRIOR"] = 1,
- ["PALADIN"] = 2,
- ["HUNTER"] = 3,
- ["ROGUE"] = 4,
- ["PRIEST"] = 5,
- ["SHAMAN"] = 6,
- ["MAGE"] = 7,
- ["WARLOCK"] = 8,
- ["DRUID"] = 9
-}
-local CLASSES = {
- "Warrior",
- "Paladin",
- "Hunter",
- "Rogue",
- "Priest",
- "Shaman",
- "Mage",
- "Warlock",
- "Druid"
-}
-- UI variables.
local levelStrings = {} -- All the level font strings.
local spellButtons = {} -- All the spell frames.
local lastVerticalValue = 0 -- For the vertical slider to not update a million times a second.
-local lastHorizontalValue = 0 -- For the horizontal slider to not update a million times a second.
-local verticalOffset = 0 -- Used exclusively for weapon skills.
-local horizontalOffset = 0 -- Used for scrolling horizontally.
local BUTTON_X_START = 33 -- How far to the right the buttons start.
local BUTTON_Y_START = -25 -- How far down the first button is placed.
local BUTTON_X_SPACING = 45 -- The spacing between all buttons in x.
@@ -79,134 +56,44 @@ local Y_SPACING = 0 -- The spacing between all elements in y.
local NBR_OF_SPELL_ROWS = 0
local NBR_OF_SPELL_COLUMNS = 0
--- Returns the distance to the given location from the player's location.
-local function getDistance(x, y, map)
- local playerX, playerY, instance = hbd:GetPlayerWorldPosition()
- local destX, destY = hbd:GetWorldCoordinatesFromZone(x, y, map)
- return hbd:GetWorldDistance(instance, playerX, playerY, destX, destY)
-end
-
--- Returns the portal trainer for the given portal (spell).
-local function findPortalTrainer(spell)
- local trainer = FieldGuide.PORTAL_TRAINERS[spell.spellId]
- trainer.x = trainer.x / 100
- trainer.y = trainer.y / 100
- return trainer
-end
-
--- Returns the closest trainer for the given skill.
-local function findClosestTrainer(skill)
- local tempFaction = faction == "Horde" and selectedClass == "PALADIN" and "ALLIANCE" or faction == "Alliance" and selectedClass == "SHAMAN" and "HORDE" or faction:upper()
- local backupTrainer = nil -- For if there is no trainer on the same continent as the player.
- local sameContinentTrainer = nil
- local shortestDistance = 100000 -- For if there is no trainer on the same continent as the player.
- local sameContinentDistance = 100000
- local instance = select(3, hbd:GetPlayerWorldPosition())
- local conditional = nil
- local trainerTable = nil
- for _, trainer in ipairs((selectedClass == "WEAPONS" and FieldGuide.WEAPON_TRAINERS[tempFaction])
- or (selectedClass == "HUNTER_PETS" and FieldGuide.HUNTER_PET_TRAINERS[tempFaction])
- or (selectedClass == "WARLOCK_PETS" and FieldGuide.WARLOCK_PET_TRAINERS[tempFaction])
- or FieldGuide.SPELL_TRAINERS[selectedClass][tempFaction]) do
- if selectedClass == "WARLOCK_PETS" and trainer[skill.name]
- or selectedClass == "WEAPONS" and trainer[skill.spellId]
- or selectedClass ~= "WARLOCK_PETS" and skill.level ~= nil and not (skill.level > 6 and trainer.noob) then
- local distance = getDistance(trainer.x / 100, trainer.y / 100, trainer.map)
- if distance == nil then -- Most likely means player is inside an instance.
- return nil
- end
- if FieldGuide.getContinent(trainer.map) == instance and distance < sameContinentDistance then
- sameContinentDistance = distance
- sameContinentTrainer = FieldGuide.copy(trainer)
- elseif distance < shortestDistance then
- shortestDistance = distance
- backupTrainer = FieldGuide.copy(trainer)
- end
- end
- end
- backupTrainer = sameContinentTrainer ~= nil and sameContinentTrainer or backupTrainer
- backupTrainer.x = backupTrainer.x / 100
- backupTrainer.y = backupTrainer.y / 100
- return backupTrainer
-end
-
--- Checks if the pin exists as a frame and as a saved variable.
--- Returns true if it does exist, then the frames, and then the variables.
-local function doesPinExist(name)
- local variable = nil
- local world = nil
- local minimap = nil
- for _, pin in pairs(FieldGuide.pinPool) do
- if pin.name == name then
- world = pin.world and pin or world
- minimap = pin.minimap and pin or minimap
- end
- end
- for k, pin in pairs(FieldGuideOptions.pins) do
- if pin.name == name then
- variable = k
- end
- end
- return variable ~= nil, world, minimap, variable
-end
-
--- Adds a pin to the world map with the given mapId, x, y, and name.
-local function addMapPin(map, x, y, name)
- local mapName = hbd:GetLocalizedMap(map)
- local coordString = string.format("%.2f, %.2f", x * 100, y * 100)
- if tomtom then
- tomtom:AddWaypoint(map, x, y, {title = name, from = "Field Guide"})
- else
- local world = FieldGuide:getPin()
- local minimap = FieldGuide:getPin()
- world.map = map
- world.x = x
- world.y = y
- world.name = name
- world.mapName = mapName
- world.coordString = coordString
- world.world = true
- world.instance = FieldGuide.getContinent(map)
- minimap.map = map
- minimap.x = x
- minimap.y = y
- minimap.name = name
- minimap.mapName = mapName
- minimap.coordString = coordString
- minimap.minimap = true
- minimap.instance = FieldGuide.getContinent(map)
- hbdp:AddMinimapIconMap("FieldGuideFrame", minimap, map, x, y, true)
- hbdp:AddWorldMapIconMap("FieldGuideFrame", world, map, x, y, 3)
- end
-end
-
--- Removes the given pin from the world map.
-local function removeMapPin(pin)
- local _, world, minimap, variable = doesPinExist(pin.name)
- hbdp:RemoveMinimapIcon("FieldGuideFrame", minimap)
- hbdp:RemoveWorldMapIcon("FieldGuideFrame", world)
- FieldGuideOptions.pins[variable] = nil
-end
-
-- Returns true if the player is Alliance, false otherwise.
-local function isAlliance()
+local function isAlliance ()
return faction == "Alliance"
end
-- Returns the cost modifier (0.9 if player is honored or rank 3, 0.8 if both, 1 otherwise).
-local function getCostModifier()
- local honored = false
- local rankThree = UnitPVPRank("player") > 6
- if isAlliance() then
- honored = select(3, GetFactionInfoByID(72)) > 5 or select(3, GetFactionInfoByID(69)) > 5 or select(3, GetFactionInfoByID(47)) > 5 or select(3, GetFactionInfoByID(54)) > 5
+local function getCostModifier ()
+ local highestRep = 0
+ local allianceFactions = {
+ 72, -- Stormwind
+ 47, -- Ironforge
+ 69, -- Darnassus
+ 53, -- Gnomeregan Exiles
+ 930 -- Exodar
+ }
+ local hordeFactions = {
+ 76, -- Orgrimmar
+ 81, -- Thunder Bluff
+ 68, -- Undercity
+ 530, -- Darkspear Trolls
+ 911 -- Silvermoon City
+ }
+ for k, v in pairs(isAlliance() and allianceFactions or hordeFactions) do
+ local a, b, repLevel = GetFactionInfoByID(v)
+ if repLevel > highestRep then
+ highestRep = repLevel
+ end
+ end
+
+ if (highestRep > 5) then
+ return 1 - 0.05 * (highestRep - 4)
else
- honored = select(3, GetFactionInfoByID(68)) > 5 or select(3, GetFactionInfoByID(76)) > 5 or select(3, GetFactionInfoByID(81)) > 5 or select(3, GetFactionInfoByID(530)) > 5
+ return 1
end
- return rankThree and honored and 0.8 or (honored or rankThree) and 0.9 or 1
end
-- Shows/hides the frame.
-local function toggleFrame()
+local function toggleFrame ()
if FieldGuideFrame:IsVisible() then
FieldGuideFrame:Hide()
else
@@ -215,18 +102,29 @@ local function toggleFrame()
end
-- Toggles the minimap button on or off.
-local function toggleMinimapButton()
+local function toggleMinimapButton ()
FieldGuideOptions.minimapTable.hide = not FieldGuideOptions.minimapTable.hide
if FieldGuideOptions.minimapTable.hide then
minimapIcon:Hide("FieldGuide")
print("|cFFFFFF00Field Guide:|r Minimap button hidden. Type /fg minimap to show it again.")
else
minimapIcon:Show("FieldGuide")
+ print("|cFFFFFF00Field Guide:|r Minimap button shown. Type /fg minimap to hide it again.")
+ end
+end
+
+-- Toggles the startup message on or off.
+local function toggleStartupMessage ()
+ FieldGuideOptions.showStartupMessage = not FieldGuideOptions.showStartupMessage
+ if FieldGuideOptions.showStartupMessage then
+ print("|cFFFFFF00Field Guide|r startup message enabled")
+ else
+ print("|cFFFFFF00Field Guide|r startup message disabled")
end
end
-- Sets slash commands.
-local function initSlash()
+local function initSlash ()
SLASH_FIELDGUIDE1 = "/fieldguide"
SLASH_FIELDGUIDE2 = "/fg"
SlashCmdList["FIELDGUIDE"] = function(msg)
@@ -234,23 +132,29 @@ local function initSlash()
if msg == "minimap" then
toggleMinimapButton()
return
- elseif msg == "help" then
+ elseif msg == "startup" then
+ toggleStartupMessage()
+ return
+ elseif msg == "help" or msg == "h" then
print("|cFFFFFF00Field Guide:|r\n"
.. "/fg or /fieldguide both work to toggle the addon.\n"
- .. "/fg minimap toggles the minimap button.\n"
- .. "Scroll horizontally by holding Shift and scrolling.\n"
- .. "Left click a spell to mark the trainer for that spell on your map.\n"
- .. "Right click a spell to mark it as unwanted.\n"
- .. "Shift-right click a spell to mark all ranks of that spell as unwanted.\n"
+ .. "/fg minimap - toggles the minimap button.\n"
+ .. "/fg startup - toggles the 'Field Guide loaded!' message when your UI loads.\n"
+ .. "/fg version - toggles the 'Field Guide loaded!' message when your UI loads.\n"
.. "You can drag any spell onto an action bar from the addon.")
return
+ elseif msg == "version" or msg == "v" then
+ local version = GetAddOnMetadata("FieldGuide", "Version");
+ print("|cFFFFFF00Field Guide|r version " .. version)
+ return
+ else
+ toggleFrame()
end
- toggleFrame()
end
end
-- Initializes the minimap button.
-local function initMinimapButton()
+local function initMinimapButton ()
local obj = LibStub:GetLibrary("LibDataBroker-1.1"):NewDataObject("FieldGuide", {
type = "launcher",
text = "Field Guide",
@@ -277,7 +181,7 @@ local function initMinimapButton()
end
-- Initializes all checkboxes.
-local function initCheckboxes()
+local function initCheckboxes ()
-- Show talents checkbox.
FieldGuideFrameKnownSpellsCheckBoxText:SetFont("Fonts/FRIZQT__.TTF", 12, "OUTLINE")
FieldGuideFrameKnownSpellsCheckBoxText:SetTextColor(1, 1, 1, 1)
@@ -291,7 +195,7 @@ local function initCheckboxes()
-- Show known spells checkbox.
FieldGuideFrameEnemySpellsCheckBoxText:SetFont("Fonts/FRIZQT__.TTF", 12, "OUTLINE")
FieldGuideFrameEnemySpellsCheckBoxText:SetTextColor(1, 1, 1, 1)
- FieldGuideFrameEnemySpellsCheckBoxText:SetText((actualClass ~= "PRIEST" and (isAlliance() and "Horde" or "Alliance") or ("Non-" .. race)) .. " spells")
+ FieldGuideFrameEnemySpellsCheckBoxText:SetText((playerClass ~= "PRIEST" and (isAlliance() and "Horde" or "Alliance") or ("Non-" .. race)) .. " spells")
FieldGuideFrameEnemySpellsCheckBox:SetPoint("RIGHT", FieldGuideFrameTalentsCheckBox, "LEFT", -FieldGuideFrameEnemySpellsCheckBoxText:GetWidth() - 5, 0)
-- Set checked or not checked.
FieldGuideFrameTalentsCheckBox:SetChecked(FieldGuideOptions.showTalents)
@@ -300,26 +204,30 @@ local function initCheckboxes()
end
-- Updates the given frame with the given texture and info.
-local function updateFrame(texture, frame, info, level)
+local function updateFrame (texture, frame, info, level)
texture:SetTexture(info.texture)
texture:SetAllPoints()
- if FieldGuideOptions.unwantedSpells[info.id] then
- texture:SetVertexColor(1, 0, 0, 1)
- else
- texture:SetVertexColor(1, 1, 1)
- end
+ texture:SetVertexColor(1, 1, 1)
+
frame:Hide() -- So that tooltip updates when scrolling.
frame.name = info.name
frame.rank = info.rank
frame.talent = info.talent
- frame.spellId = info.id
+ if info.item_id ~= nil then
+ frame.itemId = info.item_id
+ frame.spellId = ''
+ else
+ frame.itemId = ''
+ frame.spellId = info.id
+ end
+ if info.cost_modifier ~= nil then frame.cost_modifier = info.cost_modifier end
frame.spellCost = info.cost
frame.level = level
frame:Show()
end
-- Hides all empty buttons between the given frameCounter and shownCounter.
-local function hideExtraFrames(frameCounter, shownCounter)
+local function hideExtraFrames (frameCounter, shownCounter)
for i = frameCounter, frameCounter + NBR_OF_SPELL_COLUMNS - shownCounter - 1 do -- Hide all unnecessary buttons.
spellButtons[i]:Hide()
frameCounter = frameCounter + 1
@@ -327,195 +235,81 @@ local function hideExtraFrames(frameCounter, shownCounter)
return frameCounter
end
--- Updates all the buttons in the frame if weapons are selected.
-local function updateWeapons()
+-- Updates all the buttons in the frame.
+local function updateButtons ()
local frameCounter = 1
- for row = 1, NBR_OF_SPELL_ROWS do -- For all rows currently in view.
- local hiddenCounter = 0
+ local currentRow = topShownRow
+
+ for row=1,NBR_OF_SPELL_ROWS do
+ local index = topShownRow + row - 1
+ local item = spells[index]
+ local group = groups[index]
local shownCounter = 0
- levelStrings[row]:SetText(CLASS_COLORS[CLASSES[row + verticalOffset]:upper()] .. CLASSES[row + verticalOffset])
- for col = 1, #FieldGuide.WEAPONS[row + verticalOffset] do -- For all columns currently in view.
- if not FieldGuide.WEAPONS[row + verticalOffset][col].hidden then -- If the column (skill) is supposed to be not hidden.
- if col - hiddenCounter >= horizontalOffset + 1 and col - hiddenCounter <= NBR_OF_SPELL_COLUMNS + horizontalOffset then
- updateFrame(spellButtons[frameCounter].texture, spellButtons[frameCounter], FieldGuide.WEAPONS[row + verticalOffset][col])
- frameCounter = frameCounter + 1
- shownCounter = shownCounter + 1
- end
- else
- hiddenCounter = hiddenCounter + 1
- end
- end
- frameCounter = hideExtraFrames(frameCounter, shownCounter)
- end
-end
--- Sets the horizontal slider's max value to the given value.
-local function setHorizontalSliderMaxValue(value)
- if value - NBR_OF_SPELL_COLUMNS <= 0 then
- FieldGuideFrameHorizontalSlider:SetMinMaxValues(0, 0)
- FieldGuideFrameHorizontalSliderScrollRightButton:Disable()
- else
- FieldGuideFrameHorizontalSlider:SetMinMaxValues(0, value - NBR_OF_SPELL_COLUMNS)
- FieldGuideFrameHorizontalSliderScrollRightButton:Enable()
- end
-end
+ -- Set text to blank to avoid leaving old text in there
+ levelStrings[row]:SetText("")
--- Iterates all weapon skills for the current class and shows/hides any known ones.
-local function hideUnwantedWeapons()
- local maxValue = 0
- for weaponIndex, weaponInfo in ipairs(FieldGuide.WEAPONS[CLASS_INDECES[actualClass]]) do
- if not FieldGuideOptions.showKnownSpells and FieldGuide.isWeaponKnown(weaponInfo.name) then
- weaponInfo.hidden = true
- else
- weaponInfo.hidden = false
- end
- end
- for i = 1, 9, 1 do -- Iterate through each class and count the maximum number of spells being shown.
- local currentMax = 0
- for weaponIndex, weaponInfo in ipairs(FieldGuide.WEAPONS[i]) do
- if not weaponInfo.hidden then
- currentMax = currentMax + 1
+ if groups[index] ~= nil then
+ if type(groups[index]) == "number" then
+ levelStrings[row]:SetText("Level " .. groups[index])
+ else
+ levelStrings[row]:SetText((groups[index]:gsub("^%l", string.upper)))
end
- end
- if currentMax > maxValue then
- maxValue = currentMax
- end
- end
- setHorizontalSliderMaxValue(maxValue)
-end
--- Updates all the buttons in the frame.
-local function updateButtons()
- local frameCounter = 1
- local currentLevel = currentMinLevel
- for row = 1, NBR_OF_SPELL_ROWS do
- if currentLevel >= 62 then
- -- Hide all hidden rows.
- for i = NBR_OF_SPELL_COLUMNS * row - NBR_OF_SPELL_COLUMNS + 1, #spellButtons do
- spellButtons[i]:Hide()
- end
- for i = row, NBR_OF_SPELL_ROWS do
- levelStrings[i]:SetText("")
- end
- break
- end
- local hiddenCounter = 0
- local shownCounter = 0
- while currentLevel < 60 and emptyLevels[currentLevel] do
- currentLevel = currentLevel + 2
- end
- levelStrings[row]:SetText(currentLevel ~= 2 and "Level " .. currentLevel or "Level 1")
- for spellIndex, spellInfo in ipairs(FieldGuide[selectedClass][currentLevel]) do
- if not spellInfo.hidden then
- if spellIndex - hiddenCounter >= horizontalOffset + 1 and spellIndex - hiddenCounter <= NBR_OF_SPELL_COLUMNS + horizontalOffset then
- updateFrame(spellButtons[frameCounter].texture, spellButtons[frameCounter], spellInfo, currentLevel)
- shownCounter = shownCounter + 1
- frameCounter = frameCounter + 1
- end
- else
- hiddenCounter = hiddenCounter + 1
+ for c=1,getTableSize(item) do
+ updateFrame(spellButtons[frameCounter].texture, spellButtons[frameCounter], item[c], index)
+ shownCounter = shownCounter + 1
+ frameCounter = frameCounter + 1
end
end
frameCounter = hideExtraFrames(frameCounter, shownCounter)
- currentLevel = currentLevel + 2
end
end
--- Hides all unwanted spells (known spells/talents/opposite faction spells). Also adjusts the horizontal slider appropriately.
-local function hideUnwantedSpells()
- local knownSpells = {}
- local maxSpellIndex = 0
- local currentSpellIndex = 0
- local nbrOfHiddenRows = 0
- lowestLevel = 52
- for level = 60, 2, -2 do
- local hiddenCounter = 0
- for spellIndex, spellInfo in ipairs(FieldGuide[selectedClass][level]) do
- -- Fix for spells that overwrite older ranks (Heroic Strike, Sinister Strike etc.)
- if selectedClass == actualClass and IsPlayerSpell(spellInfo.id) then
- knownSpells[spellInfo.name] = true
- end
- if spellInfo.empty then
- spellInfo.hidden = true
- -- Known spells.
- elseif not FieldGuideOptions.showKnownSpells and ((selectedClass == "HUNTER_PETS" or selectedClass == "WARLOCK_PETS") and IsSpellKnown(spellInfo.id, true) or knownSpells[spellInfo.name]) then
- spellInfo.hidden = true
- -- Enemy spells.
- elseif not FieldGuideOptions.showEnemySpells and (isAlliance() and spellInfo.faction == 2 or (not isAlliance() and spellInfo.faction == 1)) then
- spellInfo.hidden = true
- -- Other Priest races' spells.
- elseif actualClass == "PRIEST" and selectedClass == "PRIEST" and spellInfo.race and not FieldGuideOptions.showEnemySpells and not spellInfo.race:find(race) then
- spellInfo.hidden = true
- -- Talents.
- elseif not FieldGuideOptions.showTalents and spellInfo.talent then
- spellInfo.hidden = true
- else
- spellInfo.hidden = false
- end
- if spellInfo.hidden then
- hiddenCounter = hiddenCounter + 1
- elseif spellIndex - hiddenCounter > maxSpellIndex then
- maxSpellIndex = spellIndex - hiddenCounter
- end
- currentSpellIndex = spellIndex
- end
- if currentSpellIndex - hiddenCounter == 0 then -- This means all buttons on the row are hidden, so we should hide the entire row.
- emptyLevels[level] = true -- Hide current level if all buttons are empty.
- nbrOfHiddenRows = nbrOfHiddenRows + 1
- else
- if level < lowestLevel then
- lowestLevel = level
- end
- emptyLevels[level] = false
- end
+-- Sets the height of the scrollable window, so we can't scroll too far
+local function setScrollableHeight ()
+ total_rows = 0
+ for level,levelInfo in pairsByKeys(spells) do
+ total_rows = total_rows + 1
end
- setHorizontalSliderMaxValue(maxSpellIndex)
- if 30 - NBR_OF_SPELL_ROWS - nbrOfHiddenRows <= 0 then
+
+ rows_off_screen = total_rows - NBR_OF_SPELL_ROWS
+
+ if rows_off_screen <= 0 then
FieldGuideFrameVerticalSlider:SetMinMaxValues(0, 0)
FieldGuideFrameVerticalSliderScrollDownButton:Disable()
else
- FieldGuideFrameVerticalSlider:SetMinMaxValues(0, 30 - NBR_OF_SPELL_ROWS - nbrOfHiddenRows)
+ FieldGuideFrameVerticalSlider:SetMinMaxValues(0, rows_off_screen)
FieldGuideFrameVerticalSliderScrollDownButton:Enable()
end
end
-- Sets the background to the given class. Class must be a capitalized string.
-local function setBackground(class)
- class = class == "WARLOCK_PETS" and "WARLOCK" or class == "HUNTER_PETS" and "HUNTER" or class
- FieldGuideFrameBackgroundTextureClass:SetTexture("Interface/TALENTFRAME/" .. CLASS_BACKGROUNDS[class] .. "-TopLeft")
- FieldGuideFrameBackgroundTextureClass:SetAlpha(0.4)
+local function setBackground (class)
+ if CLASS_BACKGROUNDS[class] ~= nil then
+ FieldGuideFrameBackgroundTextureClass:SetTexture("Interface/TALENTFRAME/" .. CLASS_BACKGROUNDS['WARRIOR'] .. "-TopLeft")
+ FieldGuideFrameBackgroundTextureClass:SetAlpha(0.4)
+ end
end
-- Resets the scroll bar to top left position.
-local function resetScroll()
- currentMinLevel = lowestLevel
+local function resetScroll ()
+ topShownRow = bottomShownRow
FieldGuideFrameVerticalSlider:SetValue(0)
FieldGuideFrameVerticalSliderScrollUpButton:Disable()
- FieldGuideFrameHorizontalSlider:SetValue(0)
- FieldGuideFrameHorizontalSliderScrollLeftButton:Disable()
end
-- Changes the class to the given class.
-local function setClass(_, class)
- if class == "HUNTER_PETS" then
- setBackground("HUNTER")
- libDD:ToggleDropDownMenu(nil, nil, FieldGuideDropdownFrame)
- libDD:UIDropDownMenu_SetText(FieldGuideDropdownFrame, CLASS_COLORS.HUNTER .. "Pet skills")
- elseif class == "WARLOCK_PETS" then
- setBackground("WARLOCK")
- libDD:ToggleDropDownMenu(nil, nil, FieldGuideDropdownFrame)
- libDD:UIDropDownMenu_SetText(FieldGuideDropdownFrame, CLASS_COLORS.WARLOCK .. "Demon spells")
- else
- libDD:UIDropDownMenu_SetText(FieldGuideDropdownFrame, CLASS_COLORS[class] .. class:sub(1, 1) .. class:sub(2):lower())
- end
+local function setClass (class)
selectedClass = class
- if class ~= "WEAPONS" and class ~= "HUNTER_PETS" and class ~= "WARLOCK_PETS" then
- setBackground(selectedClass)
- if class == "PRIEST" and actualClass == "PRIEST" then
+ setBackground(selectedClass)
+
+ if selectedClass ~= "WEAPONS" and selectedClass ~= "HUNTER_PETS" and selectedClass ~= "WARLOCK_PETS" and selectedCategory ~= "PROFESSIONS" then
+ if selectedClass == "PRIEST" and actualClass == "PRIEST" then
FieldGuideFrameEnemySpellsCheckBoxText:SetText("Non-" .. race .. " spells")
FieldGuideFrameEnemySpellsCheckBox:Show()
FieldGuideFrameEnemySpellsCheckBox:SetPoint("RIGHT", FieldGuideFrameTalentsCheckBox, "LEFT", -FieldGuideFrameEnemySpellsCheckBoxText:GetWidth() - 5, 0)
- elseif class == "MAGE" or class == "PRIEST" then
+ elseif selectedClass == "MAGE" or selectedClass == "PRIEST" or selectedClass == "SHAMAN" then
FieldGuideFrameEnemySpellsCheckBoxText:SetText((isAlliance() and "Horde" or "Alliance") .. " spells")
FieldGuideFrameEnemySpellsCheckBox:Show()
FieldGuideFrameEnemySpellsCheckBox:SetPoint("RIGHT", FieldGuideFrameTalentsCheckBox, "LEFT", -FieldGuideFrameEnemySpellsCheckBoxText:GetWidth() - 5, 0)
@@ -523,302 +317,518 @@ local function setClass(_, class)
FieldGuideFrameEnemySpellsCheckBox:Hide()
end
FieldGuideFrameTalentsCheckBox:Show()
- hideUnwantedSpells()
- resetScroll()
- updateButtons()
- elseif class == "WEAPONS" then
+ elseif selectedClass == "WEAPONS" then
setBackground(actualClass)
FieldGuideFrameTalentsCheckBox:Hide()
FieldGuideFrameEnemySpellsCheckBox:Hide()
FieldGuideFrameVerticalSlider:SetMinMaxValues(0, 9 - NBR_OF_SPELL_ROWS)
- hideUnwantedWeapons()
- updateWeapons()
- elseif class == "WARLOCK_PETS" then
+ elseif selectedClass == "WARLOCK_PETS" then
FieldGuideFrameEnemySpellsCheckBox:Hide()
FieldGuideFrameTalentsCheckBox:Hide()
- hideUnwantedSpells()
- resetScroll()
- updateButtons()
- elseif class == "HUNTER_PETS" then
+ elseif selectedClass == "HUNTER_PETS" then
+ FieldGuideFrameEnemySpellsCheckBox:Hide()
+ FieldGuideFrameTalentsCheckBox:Hide()
+ elseif selectedCategory == "PROFESSIONS" then
FieldGuideFrameEnemySpellsCheckBox:Hide()
FieldGuideFrameTalentsCheckBox:Hide()
- hideUnwantedSpells()
+ elseif selectedCategory == "GENERAL" then
+ setBackground(actualClass)
+ FieldGuideFrameTalentsCheckBox:Hide()
+ FieldGuideFrameEnemySpellsCheckBox:Hide()
+ end
+
+ if CLASS_COLORS[selectedClass] ~= nil then
+ libDD:UIDropDownMenu_SetText(FieldGuideDropdownFrame, CLASS_COLORS[selectedClass] .. selectedClass:sub(1, 1) .. selectedClass:sub(2):lower())
+ else
+ libDD:UIDropDownMenu_SetText(FieldGuideDropdownFrame, CLASS_COLORS['WEAPONS'] .. selectedClass:sub(1, 1) .. selectedClass:sub(2):lower())
+ end
+end
+
+local function changeClass (class)
+ local info = libDD:Create_UIDropDownMenu("FieldGuideDropdownFrame", FieldGuideFrame)
+ info:Hide()
+
+ if FieldGuide[class.arg1] ~= nil then
+ spells = {}
+ groups = {}
+
+ selectedCategory = class.arg2
+ setClass(class.arg1)
+ parseSpells()
+
+ setScrollableHeight()
resetScroll()
updateButtons()
end
end
-- Returns true if the given class is currently selected in the dropdown list.
-local function isSelected(class)
- return selectedClass == class
+local function isSelected (class)
+ if selectedClass == class then
+ return true
+ elseif selectedCategory == class then
+ return true
+ end
+
+ return false
end
-- Initializes the dropdown menu.
-local function initDropdown()
+local function initDropdown ()
libDD:UIDropDownMenu_Initialize(FieldGuideDropdownFrame, function(self, level, menuList)
local info = libDD:UIDropDownMenu_CreateInfo()
- info.isNotRadio = true
- info.func = setClass
+
if level == 1 then
- -- Warrior.
- info.text = "Warrior"
- info.colorCode = CLASS_COLORS.WARRIOR
- info.arg1 = "WARRIOR"
- info.checked = isSelected("WARRIOR")
- libDD:UIDropDownMenu_AddButton(info, level)
- -- Paladin.
- info.text = "Paladin"
- info.colorCode = CLASS_COLORS.PALADIN
- info.arg1 = "PALADIN"
- info.checked = isSelected("PALADIN")
+ -- Druid.
+ info.text = "Druid"
+ info.colorCode = CLASS_COLORS.DRUID
+ info.arg1 = "DRUID"
+ info.arg2 = "CLASS"
+ info.checked = isSelected("DRUID")
+ info.hasArrow = false
+ info.menuList = nil
+ info.func = changeClass
libDD:UIDropDownMenu_AddButton(info, level)
-- Hunter.
info.text = "Hunter"
info.colorCode = CLASS_COLORS.HUNTER
info.arg1 = "HUNTER"
+ info.arg2 = "CLASS"
info.checked = isSelected("HUNTER")
info.hasArrow = true
info.menuList = "HUNTER_PETS"
+ info.func = changeClass
libDD:UIDropDownMenu_AddButton(info, level)
- -- Rogue.
- info.text = "Rogue"
- info.colorCode = CLASS_COLORS.ROGUE
- info.arg1 = "ROGUE"
- info.checked = isSelected("ROGUE")
+ -- Mage.
+ info.text = "Mage"
+ info.colorCode = CLASS_COLORS.MAGE
+ info.arg1 = "MAGE"
+ info.arg2 = "CLASS"
+ info.checked = isSelected("MAGE")
info.hasArrow = false
info.menuList = nil
+ info.func = changeClass
+ libDD:UIDropDownMenu_AddButton(info, level)
+ -- Paladin.
+ info.text = "Paladin"
+ info.colorCode = CLASS_COLORS.PALADIN
+ info.arg1 = "PALADIN"
+ info.arg2 = "CLASS"
+ info.checked = isSelected("PALADIN")
+ info.hasArrow = false
+ info.menuList = nil
+ info.func = changeClass
libDD:UIDropDownMenu_AddButton(info, level)
-- Priest.
info.text = "Priest"
info.colorCode = CLASS_COLORS.PRIEST
info.arg1 = "PRIEST"
+ info.arg2 = "CLASS"
info.checked = isSelected("PRIEST")
+ info.hasArrow = false
+ info.menuList = nil
+ info.func = changeClass
+ libDD:UIDropDownMenu_AddButton(info, level)
+ -- Rogue.
+ info.text = "Rogue"
+ info.colorCode = CLASS_COLORS.ROGUE
+ info.arg1 = "ROGUE"
+ info.arg2 = "CLASS"
+ info.checked = isSelected("ROGUE")
+ info.hasArrow = false
+ info.menuList = nil
+ info.func = changeClass
libDD:UIDropDownMenu_AddButton(info, level)
-- Shaman.
info.text = "Shaman"
info.colorCode = CLASS_COLORS.SHAMAN
info.arg1 = "SHAMAN"
+ info.arg2 = "CLASS"
info.checked = isSelected("SHAMAN")
- libDD:UIDropDownMenu_AddButton(info, level)
- -- Mage.
- info.text = "Mage"
- info.colorCode = CLASS_COLORS.MAGE
- info.checked = isSelected("MAGE")
- info.arg1 = "MAGE"
+ info.hasArrow = false
+ info.menuList = nil
+ info.func = changeClass
libDD:UIDropDownMenu_AddButton(info, level)
-- Warlock.
info.text = "Warlock"
info.colorCode = CLASS_COLORS.WARLOCK
info.arg1 = "WARLOCK"
+ info.arg2 = "CLASS"
info.checked = isSelected("WARLOCK")
info.hasArrow = true
info.menuList = "WARLOCK_PETS"
+ info.func = changeClass
libDD:UIDropDownMenu_AddButton(info, level)
- -- Druid.
- info.text = "Druid"
- info.colorCode = CLASS_COLORS.DRUID
- info.arg1 = "DRUID"
- info.checked = isSelected("DRUID")
+ -- Warrior.
+ info.text = "Warrior"
+ info.colorCode = CLASS_COLORS.WARRIOR
+ info.arg1 = "WARRIOR"
+ info.arg2 = "CLASS"
+ info.checked = isSelected("WARRIOR")
+ info.hasArrow = false
+ info.menuList = nil
+ info.func = changeClass
+ libDD:UIDropDownMenu_AddButton(info, level)
+ -- Riding skills.
+ info.text = "Riding"
+ info.colorCode = "|cFFDFDFDF"
+ info.arg1 = "RIDING"
+ info.arg2 = "GENERAL"
+ info.checked = isSelected("RIDING")
info.hasArrow = false
info.menuList = nil
+ info.func = changeClass
libDD:UIDropDownMenu_AddButton(info, level)
-- Weapon skills.
info.text = "Weapons"
info.colorCode = "|cFFDFDFDF"
info.arg1 = "WEAPONS"
+ info.arg2 = "GENERAL"
info.checked = isSelected("WEAPONS")
+ info.hasArrow = false
+ info.menuList = nil
+ info.func = changeClass
+ libDD:UIDropDownMenu_AddButton(info, level)
+ -- Professions.
+ info.text = "Professions"
+ info.colorCode = CLASS_COLORS.WEAPONS
+ info.arg1 = "PROFESSIONS"
+ info.checked = isSelected("PROFESSIONS")
+ info.hasArrow = true
+ info.menuList = "PROFESSIONS"
libDD:UIDropDownMenu_AddButton(info, level)
elseif menuList == "WARLOCK_PETS" then
info.text = "Demon spells"
info.colorCode = CLASS_COLORS.WARLOCK
info.arg1 = "WARLOCK_PETS"
+ info.arg2 = "WARLOCK"
info.checked = isSelected("WARLOCK_PETS")
- info.func = setClass
+ info.func = changeClass
libDD:UIDropDownMenu_AddButton(info, level)
elseif menuList == "HUNTER_PETS" then
info.text = "Pet skills"
info.colorCode = CLASS_COLORS.HUNTER
info.arg1 = "HUNTER_PETS"
+ info.arg2 = "HUNTER"
info.checked = isSelected("HUNTER_PETS")
- info.func = setClass
+ info.func = changeClass
+ libDD:UIDropDownMenu_AddButton(info, level)
+ elseif menuList == "PROFESSIONS" then
+ info.text = "Alchemy"
+ info.colorCode = CLASS_COLORS.WEAPONS
+ info.arg1 = string.upper(info.text)
+ info.arg2 = "PROFESSIONS"
+ info.checked = isSelected(info.arg1)
+ info.func = changeClass
+ libDD:UIDropDownMenu_AddButton(info, level)
+
+ info.text = "Blacksmithing"
+ info.colorCode = CLASS_COLORS.WEAPONS
+ info.arg1 = string.upper(info.text)
+ info.arg2 = "PROFESSIONS"
+ info.checked = isSelected(info.arg1)
+ info.hasArrow = false
+ info.menuList = nil
+ info.func = changeClass
+ libDD:UIDropDownMenu_AddButton(info, level)
+
+ info.text = "Cooking"
+ info.colorCode = CLASS_COLORS.WEAPONS
+ info.arg1 = string.upper(info.text)
+ info.arg2 = "PROFESSIONS"
+ info.checked = isSelected(info.arg1)
+ info.hasArrow = false
+ info.menuList = nil
+ info.func = changeClass
+ libDD:UIDropDownMenu_AddButton(info, level)
+
+ info.text = "Enchanting"
+ info.colorCode = CLASS_COLORS.WEAPONS
+ info.arg1 = string.upper(info.text)
+ info.arg2 = "PROFESSIONS"
+ info.checked = isSelected(info.arg1)
+ info.hasArrow = false
+ info.menuList = nil
+ info.func = changeClass
+ libDD:UIDropDownMenu_AddButton(info, level)
+
+ info.text = "Engineering"
+ info.colorCode = CLASS_COLORS.WEAPONS
+ info.arg1 = string.upper(info.text)
+ info.arg2 = "PROFESSIONS"
+ info.checked = isSelected(info.arg1)
+ info.hasArrow = false
+ info.menuList = nil
+ info.func = changeClass
+ libDD:UIDropDownMenu_AddButton(info, level)
+
+ info.text = "First Aid"
+ info.colorCode = CLASS_COLORS.WEAPONS
+ info.arg1 = "FIRSTAID"
+ info.arg2 = "PROFESSIONS"
+ info.checked = isSelected("FIRSTAID")
+ info.func = changeClass
+ libDD:UIDropDownMenu_AddButton(info, level)
+
+ info.text = "Fishing"
+ info.colorCode = CLASS_COLORS.WEAPONS
+ info.arg1 = string.upper(info.text)
+ info.arg2 = "PROFESSIONS"
+ info.checked = isSelected(info.arg1)
+ info.hasArrow = false
+ info.menuList = nil
+ info.func = changeClass
+ libDD:UIDropDownMenu_AddButton(info, level)
+
+ info.text = "Herbalism"
+ info.colorCode = CLASS_COLORS.WEAPONS
+ info.arg1 = string.upper(info.text)
+ info.arg2 = "PROFESSIONS"
+ info.checked = isSelected(info.arg1)
+ info.hasArrow = false
+ info.menuList = nil
+ info.func = changeClass
+ libDD:UIDropDownMenu_AddButton(info, level)
+
+ info.text = "Jewelcrafting"
+ info.colorCode = CLASS_COLORS.WEAPONS
+ info.arg1 = string.upper(info.text)
+ info.arg2 = "PROFESSIONS"
+ info.checked = isSelected(info.arg1)
+ info.hasArrow = false
+ info.menuList = nil
+ info.func = changeClass
+ libDD:UIDropDownMenu_AddButton(info, level)
+
+ info.text = "Leatherworking"
+ info.colorCode = CLASS_COLORS.WEAPONS
+ info.arg1 = string.upper(info.text)
+ info.arg2 = "PROFESSIONS"
+ info.checked = isSelected(info.arg1)
+ info.hasArrow = false
+ info.menuList = nil
+ info.func = changeClass
+ libDD:UIDropDownMenu_AddButton(info, level)
+
+ info.text = "Mining"
+ info.colorCode = CLASS_COLORS.WEAPONS
+ info.arg1 = string.upper(info.text)
+ info.arg2 = "PROFESSIONS"
+ info.checked = isSelected(info.arg1)
+ info.hasArrow = false
+ info.menuList = nil
+ info.func = changeClass
+ libDD:UIDropDownMenu_AddButton(info, level)
+
+ info.text = "Skinning"
+ info.colorCode = CLASS_COLORS.WEAPONS
+ info.arg1 = string.upper(info.text)
+ info.arg2 = "PROFESSIONS"
+ info.checked = isSelected(info.arg1)
+ info.hasArrow = false
+ info.menuList = nil
+ info.func = changeClass
+ libDD:UIDropDownMenu_AddButton(info, level)
+
+ info.text = "Tailoring"
+ info.colorCode = CLASS_COLORS.WEAPONS
+ info.arg1 = string.upper(info.text)
+ info.arg2 = "PROFESSIONS"
+ info.checked = isSelected(info.arg1)
+ info.hasArrow = false
+ info.menuList = nil
+ info.func = changeClass
libDD:UIDropDownMenu_AddButton(info, level)
end
end)
libDD:UIDropDownMenu_SetWidth(FieldGuideDropdownFrame, 100);
libDD:UIDropDownMenu_SetButtonWidth(FieldGuideDropdownFrame, 124)
libDD:UIDropDownMenu_JustifyText(FieldGuideDropdownFrame, "RIGHT")
- libDD:UIDropDownMenu_SetText(FieldGuideDropdownFrame, CLASS_COLORS[actualClass].. actualClass:sub(1, 1) .. actualClass:sub(2):lower())
+
+ if CLASS_COLORS[selectedClass] ~= nil then
+ libDD:UIDropDownMenu_SetText(FieldGuideDropdownFrame, CLASS_COLORS[playerClass] .. selectedClass:sub(1, 1) .. selectedClass:sub(2):lower())
+ else
+ libDD:UIDropDownMenu_SetText(FieldGuideDropdownFrame, CLASS_COLORS['WEAPONS'] .. selectedClass:sub(1, 1) .. selectedClass:sub(2):lower())
+ end
end
-- Initializes all frames, level strings, and textures for reuse.
-local function initFrames()
+local function initFrames ()
NBR_OF_SPELL_ROWS = floor(FieldGuideFrame:GetHeight() / 100)
- Y_SPACING = math.ceil(FieldGuideFrame:GetHeight() / NBR_OF_SPELL_ROWS) / 1.1625
- local nbrOfSpellBtns = floor((FieldGuideFrame:GetWidth() - BUTTON_X_START * 2) / BUTTON_X_SPACING) * NBR_OF_SPELL_ROWS
- NBR_OF_SPELL_COLUMNS = nbrOfSpellBtns / NBR_OF_SPELL_ROWS -- The number of buttons in x.
+ Y_SPACING = math.ceil(FieldGuideFrame:GetHeight() / NBR_OF_SPELL_ROWS) / 1.1
+ NBR_OF_SPELL_BTNS = floor((FieldGuideFrame:GetWidth() - BUTTON_X_START * 2) / BUTTON_X_SPACING) * NBR_OF_SPELL_ROWS
+ NBR_OF_SPELL_COLUMNS = NBR_OF_SPELL_BTNS / NBR_OF_SPELL_ROWS -- The number of buttons in x.
+
-- Create spell buttons.
- for frameIndex = 1, nbrOfSpellBtns do
+ for frameIndex = 1, NBR_OF_SPELL_BTNS do
local spellBtnX = BUTTON_X_START + BUTTON_X_SPACING * ((frameIndex - 1) % NBR_OF_SPELL_COLUMNS)
local spellBtnY = -Y_SPACING * math.ceil(frameIndex / NBR_OF_SPELL_COLUMNS) - BUTTON_Y_START
+
spellButtons[frameIndex] = CreateFrame("BUTTON", nil, FieldGuideFrame, "FieldGuideSpellButtonTemplate")
spellButtons[frameIndex]:SetPoint("TOPLEFT", spellBtnX, spellBtnY)
spellButtons[frameIndex].index = frameIndex
spellButtons[frameIndex].texture = spellButtons[frameIndex]:CreateTexture(nil, "BORDER")
end
+
-- Create level strings.
for stringIndex = 1, NBR_OF_SPELL_ROWS do
levelStrings[stringIndex] = FieldGuideFrame:CreateFontString(nil, "ARTWORK", "FieldGuideLevelStringTemplate")
levelStrings[stringIndex]:SetPoint("TOPLEFT", LEVEL_STRING_X_START, -LEVEL_STRING_Y_START - Y_SPACING * stringIndex)
end
+
-- The fact that this is even needed...
libDD:Create_UIDropDownMenu("FieldGuideDropdownFrame", FieldGuideFrame)
FieldGuideDropdownFrame:SetPoint("TOPRIGHT", -36, -28)
end
+function parseSpells ()
+ groups = {}
+ spells = {}
+
+ for group,list in pairsByKeys(FieldGuide[selectedClass]) do
+ local temp = {}
+
+ for index, spell in ipairs(list) do
+ local showSpell = true
+
+ if (spell.faction ~= nil and FieldGuideOptions.showEnemySpells == false and ((isAlliance() and spell.faction ~= 'Alliance') or (not isAlliance() and spell.faction ~= 'Horde'))) then
+ showSpell = false
+ end
+ if (spell.talent ~= nil and (FieldGuideOptions.showTalents == false or spell.talent == false)) then
+ showSpell = false
+ end
+ if (not FieldGuideOptions.showKnownSpells) then
+ if spell.id ~= nil then
+ if (IsPlayerSpell(spell.id)) then
+ showSpell = false
+ elseif (spell.id == 5487 and IsPlayerSpell(9634)) then --bear form check, to see if user has dire bear form
+ showSpell = false
+ else
+ for g,l in pairsByKeys(FieldGuide[selectedClass]) do
+ for i,v in ipairs(l) do
+ if v.name == spell.name and v.rank > spell.rank and IsPlayerSpell(v.id) then
+ showSpell = false
+ end
+ end
+ end
+ end
+ end
+ end
+
+ if showSpell then
+ table.insert(temp, spell)
+ end
+ end
+
+ if getTableSize(temp) > 0 then
+ table.insert(groups, group)
+ table.insert(spells, temp)
+ end
+ end
+end
+
-- Initializes everything.
-local function init()
+local function init ()
tinsert(UISpecialFrames, FieldGuideFrame:GetName()) -- Allows us to close the window with escape.
initFrames()
- setClass(nil, actualClass)
+ setClass(playerClass)
+ parseSpells()
initDropdown()
initCheckboxes()
initMinimapButton()
initSlash()
- FieldGuide_ToggleButtons() -- Need to call this, or spells won't be hidden regardless of saved variables.
- FieldGuideFrameVerticalSlider:SetValue(1)
- FieldGuideFrameVerticalSlider:SetValue(0)
- if not tomtom then
- for _, pin in pairs(FieldGuideOptions.pins) do
- addMapPin(pin.map, pin.x, pin.y, pin.name)
- end
- end
-end
-
--- Called whenever player clicks a pin.
-function FieldGuidePin_OnClick(self, button)
- removeMapPin(self)
-end
-
--- Called whenever player mouses over a pin.
-function FieldGuidePin_OnEnter(self)
- local distance = getDistance(self.x, self.y, self.map)
- GameTooltip:SetOwner(self, "ANCHOR_BOTTOMLEFT")
- GameTooltip:AddLine(self.name)
- local _, _, instance = hbd:GetPlayerWorldPosition()
- if self.instance ~= instance then
- GameTooltip:AddLine("Unknown distance", 1, 1, 1)
- else
- GameTooltip:AddLine(string.format("%s yards away", math.floor(distance)), 1, 1, 1)
- end
- GameTooltip:AddLine(self.mapName .. " (" .. self.coordString .. ")", 0.7, 0.7, 0.7)
- GameTooltip:Show()
+ FieldGuide_ToggleButtons()
end
-- Called whenever player mouses over an icon.
-function FieldGuideSpellButton_OnEnter(self)
+function FieldGuideSpellButton_OnEnter (self)
GameTooltip:SetOwner(self, "ANCHOR_RIGHT")
- local spell = Spell:CreateFromSpellID(self.spellId)
- local modifier = getCostModifier()
- spell:ContinueOnSpellLoad(function()
- local canAfford = GetMoney() < self.spellCost and "|cFFFF0000" or "|cFFFFFFFF" -- Modifies string to be red if player can't afford, white otherwise.
- local priceString = GetCoinTextureString(self.spellCost * modifier)
- GameTooltip:SetHyperlink("spell:" .. self.spellId)
- if selectedClass ~= "WEAPONS" then
- GameTooltip:AddLine(" ")
- if self.talent then
- GameTooltip:AddLine("Talent")
- end
- GameTooltip:AddLine("Rank: " .. "|cFFFFFFFF" .. self.rank)
- elseif self.spellId ~= 5009 then
- GameTooltip:AddLine(" ")
- GameTooltip:AddLine("Trained by:")
- for _, trainer in ipairs(FieldGuide.WEAPON_TRAINERS[faction:upper()]) do
- if trainer[self.spellId] then
- GameTooltip:AddLine(trainer.name .. ", " .. hbd:GetLocalizedMap(trainer.map), 1, 1, 1)
- end
- end
- end
- if self.spellId ~= 5009 then
- GameTooltip:AddLine(" ")
- GameTooltip:AddLine(self.spellCost ~= 0 and "Price: " .. canAfford .. priceString or "Learned via quest(s)")
- end
- GameTooltip:Show()
- end)
-end
--- Called whenever player clicks on a spell button.
-function FieldGuideSpellButton_OnClick(self, button)
- if button == "RightButton" and selectedClass ~= "WEAPONS" then
- local spellName = GetSpellInfo(self.spellId)
- FieldGuideOptions.unwantedSpells[self.spellId] = not FieldGuideOptions.unwantedSpells[self.spellId]
- if IsShiftKeyDown() then
- for _, spellIndex in pairs(FieldGuide[selectedClass]) do
- for spellIndex, spellInfo in ipairs(spellIndex) do
- if spellInfo.name == spellName then
- FieldGuideOptions.unwantedSpells[spellInfo.id] = FieldGuideOptions.unwantedSpells[self.spellId]
- end
+ if self.itemId ~= '' then
+ local tooltip = Item:CreateFromItemID(self.itemId)
+ tooltip:ContinueOnItemLoad(function()
+ GameTooltip:SetHyperlink("item:" .. self.itemId)
+
+ --GameTooltip:AddLine(" ")
+ --GameTooltip:AddLine("Talent") -- Sell price per unit
+ --GameTooltip:AddLine("Talent") -- Sell price per stack
+
+ -- Cost
+ if self.spellCost ~= nil and self.spellCost > 0 then
+ local adjustedPrice = self.spellCost
+ if self.cost_modifier == nil or self.cost_modifier ~= false then
+ adjustedPrice = adjustedPrice * getCostModifier()
+ end
+ local priceString = GetCoinTextureString(adjustedPrice)
+ local costColor = GetMoney() < adjustedPrice and "|cFFFF0000" or "|cFFFFFFFF" -- Modifies string to be red if player can't afford, white otherwise.
+ if self.spellId ~= nil then
+ GameTooltip:AddLine(" ")
+ GameTooltip:AddLine(self.spellCost ~= 0 and "Price: " .. costColor .. priceString or "Learned via quest(s)")
end
end
- end
- updateButtons()
- elseif button == "LeftButton" then
- if self.spellId ~= 5009 then
- local trainer = nil
- if self.name:find("Teleport") or self.name:find("Portal") then
- trainer = findPortalTrainer(self)
- else
- trainer = findClosestTrainer(self)
+
+ GameTooltip:Show()
+ end)
+ elseif self.spellId ~= '' then
+ local spell = Spell:CreateFromSpellID(self.spellId)
+ spell:ContinueOnSpellLoad(function()
+ GameTooltip:SetHyperlink("spell:" .. self.spellId)
+
+ -- Spell Rank
+ local rank = self.rank == nil and 0 or self.rank
+ if rank ~= 0 then
+ GameTooltip:AddLine(" ")
+ GameTooltip:AddLine("Rank: " .. "|cFFFFFFFF" .. rank)
end
- if trainer == nil then
- return
+
+ -- Is this ability a talent?
+ if self.talent then
+ GameTooltip:AddLine(" ")
+ GameTooltip:AddLine("Talent")
end
- if not doesPinExist(trainer.name) and self.spellCost ~= 0 then
- addMapPin(trainer.map, trainer.x, trainer.y, trainer.name)
- if not tomtom then
- FieldGuideOptions.pins[#FieldGuideOptions.pins + 1] = {
- ["map"] = trainer.map,
- ["x"] = trainer.x,
- ["y"] = trainer.y,
- ["name"] = trainer.name
- }
- print("|cFFFFFF00Field Guide:|r Added a marker to |cFFFF0000" .. trainer.name .. "|r in " .. hbd:GetLocalizedMap(trainer.map) ..
- " at |cFF00FF00(" .. trainer.x * 100 .. ", " .. trainer.y * 100 .. ")|r.")
+
+ -- Cost
+ if self.spellCost ~= nil and self.spellCost > 0 then
+ local adjustedPrice = self.spellCost
+ if self.cost_modifier == nil or self.cost_modifier ~= false then
+ adjustedPrice = adjustedPrice * getCostModifier()
+ end
+ local priceString = GetCoinTextureString(adjustedPrice)
+ local costColor = GetMoney() < adjustedPrice and "|cFFFF0000" or "|cFFFFFFFF" -- Modifies string to be red if player can't afford, white otherwise.
+ if self.spellId ~= nil then
+ GameTooltip:AddLine(" ")
+ GameTooltip:AddLine(self.spellCost ~= 0 and "Price: " .. costColor .. priceString or "Learned via quest(s)")
end
end
- end
+
+ GameTooltip:Show()
+ end)
end
end
-- Called whenever player drags a spell button.1
-function FieldGuideSpellButton_OnDragStart(self, button)
+function FieldGuideSpellButton_OnDragStart (self, button)
PickupSpell(self.spellId)
end
-- Called when each spell button has loaded.
-function FieldGuideSpellButton_OnLoad(self)
+function FieldGuideSpellButton_OnLoad (self)
self:RegisterForDrag("LeftButton")
end
-- Is called whenever the value of the vertical slider changes.
-function FieldGuide_OnVerticalValueChanged(self, value)
+function FieldGuide_OnVerticalValueChanged (self, value)
value = math.floor(value + 0.5)
- verticalOffset = value
+
if value ~= 0 then
- currentMinLevel = currentMinLevel + (value - lastVerticalValue) * 2
- while emptyLevels[currentMinLevel] do
- currentMinLevel = value - lastVerticalValue > 0 and currentMinLevel + 2 or currentMinLevel - 2
- end
- currentMinLevel = currentMinLevel < lowestLevel and lowestLevel or currentMinLevel > 52 and 52 or currentMinLevel
+ topShownRow = topShownRow + (value - lastVerticalValue)
else
- currentMinLevel = lowestLevel
+ topShownRow = bottomShownRow
end
lastVerticalValue = value
self:SetValue(value)
- if selectedClass ~= "WEAPONS" then
- updateButtons()
- else
- updateWeapons()
- end
+ updateButtons()
+
if value < 1 then
_G[self:GetName() .. "ScrollUpButton"]:Disable()
_G[self:GetName() .. "ScrollDownButton"]:Enable()
@@ -831,106 +841,71 @@ function FieldGuide_OnVerticalValueChanged(self, value)
end
end
--- Is called whenever the value of the horizontal slider changes.
-function FieldGuide_OnHorizontalValueChanged(self, value)
- lastHorizontalValue = value
- self:SetValue(value)
- horizontalOffset = value
- if selectedClass ~= "WEAPONS" then
- updateButtons()
- else
- updateWeapons()
- end
- if value < 1 then
- _G[self:GetName() .. "ScrollLeftButton"]:Disable()
- _G[self:GetName() .. "ScrollRightButton"]:Enable()
- elseif value >= select(2, self:GetMinMaxValues()) then
- _G[self:GetName() .. "ScrollRightButton"]:Disable()
- _G[self:GetName() .. "ScrollLeftButton"]:Enable()
- else
- _G[self:GetName() .. "ScrollLeftButton"]:Enable()
- _G[self:GetName() .. "ScrollRightButton"]:Enable()
- end
-end
-
-- Called whenever the player scrolls.
-function FieldGuide_Scroll(delta, horizontal)
- if not IsShiftKeyDown() and not horizontal then
- FieldGuideFrameVerticalSlider:SetValue(FieldGuideFrameVerticalSlider:GetValue() - delta)
- else
- FieldGuideFrameHorizontalSlider:SetValue(FieldGuideFrameHorizontalSlider:GetValue() - delta)
- end
+function FieldGuide_Scroll (delta)
+ FieldGuideFrameVerticalSlider:SetValue(FieldGuideFrameVerticalSlider:GetValue() - delta)
end
-- Shows or hides the talents (type == 1), enemy spells (type == 2), or known spells (type == 3).
-function FieldGuide_ToggleButtons(t)
+function FieldGuide_ToggleButtons (t)
PlaySound(SOUNDKIT.IG_MAINMENU_OPTION_CHECKBOX_ON)
if t == 3 then -- Known spells.
FieldGuideOptions.showKnownSpells = not FieldGuideOptions.showKnownSpells
+ parseSpells()
elseif t == 2 then -- Enemy spells.
FieldGuideOptions.showEnemySpells = not FieldGuideOptions.showEnemySpells
+ parseSpells()
elseif t == 1 then -- Talents.
FieldGuideOptions.showTalents = not FieldGuideOptions.showTalents
+ parseSpells()
end
- if selectedClass ~= "WEAPONS" then
- hideUnwantedSpells()
- currentMinLevel = lowestLevel
+
+ setScrollableHeight()
+ if t == 3 then --Show known skills, which needs to reset a while lot
+ topShownRow = bottomShownRow
resetScroll()
- updateButtons()
- else
- hideUnwantedWeapons()
- updateWeapons()
end
+
+ updateButtons()
end
-- Called when the frame has loaded.
-function FieldGuide_OnLoad(self)
+function FieldGuide_OnLoad (self)
self:RegisterForDrag("LeftButton")
self:RegisterEvent("ADDON_LOADED")
self:RegisterEvent("LEARNED_SPELL_IN_TAB")
self:RegisterEvent("PLAYER_ENTERING_WORLD")
self:RegisterEvent("SKILL_LINES_CHANGED")
self:RegisterEvent("UNIT_PET")
+ self:RegisterEvent("TRAINER_SHOW")
end
-- Called on each event the frame receives.
-function FieldGuide_OnEvent(self, event, ...)
+function FieldGuide_OnEvent (self, event, ...)
if event == "ADDON_LOADED" then
if ... == "FieldGuide" then
- tomtom = IsAddOnLoaded("TomTom") and _G["TomTom"]
FieldGuideOptions = FieldGuideOptions == nil and {} or FieldGuideOptions
- if tomtom then
- FieldGuideOptions.pins = {}
- end
- FieldGuideOptions.pins = FieldGuideOptions.pins == nil and {} or FieldGuideOptions.pins
FieldGuideOptions.showTalents = FieldGuideOptions.showTalents == nil and true or FieldGuideOptions.showTalents
FieldGuideOptions.showEnemySpells = FieldGuideOptions.showEnemySpells == nil and false or FieldGuideOptions.showEnemySpells
FieldGuideOptions.showKnownSpells = FieldGuideOptions.showKnownSpells == nil and false or FieldGuideOptions.showKnownSpells
FieldGuideOptions.unwantedSpells = FieldGuideOptions.unwantedSpells == nil and {} or FieldGuideOptions.unwantedSpells
FieldGuideOptions.minimapTable = FieldGuideOptions.minimapTable == nil and {} or FieldGuideOptions.minimapTable
- print(not tomtom and "|cFFFFFF00Field Guide|r loaded! Type /fg help for commands and controls. By the way, it is highly recommended to use TomTom with Field Guide." or "|cFFFFFF00Field Guide|r loaded! Type /fg help for commands and controls.")
+ FieldGuideOptions.showStartupMessage = FieldGuideOptions.showStartupMessage == nil and false or FieldGuideOptions.showStartupMessage
+
+ -- remove this when done
+ FieldGuideOptions.test = FieldGuideOptions.test == nil and {} or FieldGuideOptions.test
+ if FieldGuideOptions.showStartupMessage then
+ print("|cFFFFFF00Field Guide|r loaded! Type '/fg help' for commands and controls.")
+ end
+
self:UnregisterEvent("ADDON_LOADED")
end
elseif event == "LEARNED_SPELL_IN_TAB" then
- if selectedClass ~= "WEAPONS" then
- hideUnwantedSpells()
- updateButtons()
- resetScroll()
- end
- elseif event == "SKILL_LINES_CHANGED" then
- if selectedClass == "WEAPONS" then
- hideUnwantedWeapons()
- updateWeapons()
- end
- elseif event == "UNIT_PET" then
- if selectedClass == "HUNTER_PETS" or selectedClass == "WARLOCK_PETS" then
- hideUnwantedSpells()
- updateButtons()
- resetScroll()
- end
+ updateButtons()
+ resetScroll()
elseif event == "PLAYER_ENTERING_WORLD" then
init()
- FieldGuideFrame:Hide()
+ FieldGuideFrame:Hide() -- Comment this out to auto-show the frame when your UI loads
self:UnregisterEvent("PLAYER_ENTERING_WORLD")
end
end
diff --git a/FieldGuide.toc b/FieldGuide.toc
index 295dedb..8b9c65c 100644
--- a/FieldGuide.toc
+++ b/FieldGuide.toc
@@ -1,8 +1,8 @@
-## Interface: 11401
+## Interface: 20504
## Title: Field Guide
## Notes: Shows when spells are trainable and how much each spell costs to train, and other stuff.
-## Author: cloudbells
-## Version: @project-version@
+## Author: cloudbells, Serrol
+## Version: 2.5.4
## SavedVariablesPerCharacter: FieldGuideOptions
## OptionalDeps: TomTom
## X-WoWI-ID: 25176
@@ -12,27 +12,38 @@ Libraries\LibStub\LibStub.lua
Libraries\CallbackHandler-1.0\CallbackHandler-1.0.lua
Libraries\LibDataBroker-1.1\LibDataBroker-1.1.lua
Libraries\LibDBIcon-1.0\LibDBIcon-1.0.lua
-Libraries\HereBeDragons-2.0\HereBeDragons-2.0.lua
-Libraries\HereBeDragons-2.0\HereBeDragons-Pins-2.0.lua
Libraries\LibUIDropDownMenu\LibUIDropDownMenu.xml
# Load utilites.
Util.lua
# Load spell tables.
-Database\WeaponSkills.lua
-Database\Druid.lua
-Database\Hunter.lua
-Database\HunterPets.lua
-Database\Mage.lua
-Database\Paladin.lua
-Database\Priest.lua
-Database\Rogue.lua
-Database\Shaman.lua
-Database\Warlock.lua
-Database\WarlockPets.lua
-Database\Warrior.lua
-Database\Trainers.lua
+Database\classes\Druid.lua
+Database\classes\Hunter.lua
+Database\classes\HunterPets.lua
+Database\classes\Mage.lua
+Database\classes\Paladin.lua
+Database\classes\Priest.lua
+Database\classes\Rogue.lua
+Database\classes\Shaman.lua
+Database\classes\Warlock.lua
+Database\classes\WarlockPets.lua
+Database\classes\Warrior.lua
+Database\professions\Alchemy.lua
+Database\professions\Blacksmithing.lua
+Database\professions\Cooking.lua
+Database\professions\Enchanting.lua
+Database\professions\Engineering.lua
+Database\professions\FirstAid.lua
+Database\professions\Fishing.lua
+Database\professions\Herbalism.lua
+Database\professions\Jewelcrafting.lua
+Database\professions\Leatherworking.lua
+Database\professions\Mining.lua
+Database\professions\Skinning.lua
+Database\professions\Tailoring.lua
+Database\Riding.lua
+Database\Weapons.lua
# Load core files.
FieldGuide.lua
diff --git a/FieldGuide.xml b/FieldGuide.xml
index f7c5bf6..eaff8f8 100644
--- a/FieldGuide.xml
+++ b/FieldGuide.xml
@@ -25,34 +25,12 @@
GameTooltip:Hide()
-
- FieldGuideSpellButton_OnClick(self, button)
-
FieldGuideSpellButton_OnDragStart(self, button)
-
@@ -62,14 +40,11 @@
-
-
+
+
-
-
-
@@ -107,12 +82,6 @@
-
-
-
-
-
-
@@ -171,64 +140,6 @@
-
-
-
-
-
-
-
-
- FieldGuide_OnHorizontalValueChanged(self, value)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/Util.lua b/Util.lua
index 21b4068..13504e4 100644
--- a/Util.lua
+++ b/Util.lua
@@ -1,106 +1,27 @@
local _, FieldGuide = ...
-local GetNumSkillLines, GetSkillLineInfo = GetNumSkillLines, GetSkillLineInfo
-
-FieldGuide.factions = {
- ["darnassus"] = 69,
- ["darkspear_trolls"] = 530,
- ["stormwind"] = 72,
- ["ironforge"] = 47,
- ["gnomeregan_exiles"] = 54,
- ["orgrimmar"] = 76,
- ["thunder_bluff"] = 81,
- ["undercity"] = 68,
- ["cenarion_circle"] = 609,
- ["booty_bay"] = 21,
- ["theramore"] = 108
-}
-
-FieldGuide.maps = {
- ["stormwind"] = 1453,
- ["ironforge"] = 1455,
- ["darnassus"] = 1457,
- ["orgrimmar"] = 1454,
- ["thunder_bluff"] = 1456,
- ["undercity"] = 1458,
- ["elwynn_forest"] = 1429,
- ["dun_morogh"] = 1426,
- ["teldrassil"] = 1438,
- ["tirisfal_glades"] = 1420,
- ["durotar"] = 1411,
- ["swamp_of_sorrows"] = 1435,
- ["felwood"] = 1448,
- ["moonglade"] = 1450,
- ["mulgore"] = 1412,
- ["feralas"] = 1444,
- ["stranglethorn_vale"] = 1434,
- ["stonetalon_mountains"] = 1442,
- ["ashenvale"] = 1440,
- ["loch_modan"] = 1432,
- ["dustwallow_marsh"] = 1445
-}
-
-local continents = {
- [1453] = 0, -- Eastern Kingdoms.
- [1455] = 0,
- [1457] = 1, -- Kalimdor.
- [1454] = 1,
- [1456] = 1,
- [1458] = 0,
- [1429] = 0,
- [1426] = 0,
- [1438] = 1,
- [1420] = 0,
- [1411] = 1,
- [1435] = 0,
- [1448] = 1,
- [1450] = 1,
- [1412] = 1,
- [1444] = 1,
- [1434] = 0,
- [1442] = 1,
- [1440] = 1,
- [1432] = 0,
- [1445] = 1
-}
-
-FieldGuide.pinPool = {}
-
-function FieldGuide:getPin()
- for _, pin in pairs(FieldGuide.pinPool) do
- if not pin.used then
- pin.used = true
- return pin
- end
+function pairsByKeys (t, f)
+ local a = {}
+ for n in pairs(t) do table.insert(a, n) end
+ table.sort(a, f)
+ local i = 0 -- iterator variable
+ local iter = function () -- iterator function
+ i = i + 1
+ if a[i] == nil then return nil
+ else return a[i], t[a[i]]
+ end
end
- FieldGuide.pinPool[#FieldGuide.pinPool + 1] = CreateFrame("Button", nil, nil, "FieldGuidePinTemplate")
- local pin = FieldGuide.pinPool[#FieldGuide.pinPool]
- pin.used = true
- return pin
-end
+ return iter
+ end
--- Copies the given table and returns the copy. If no table is given, this returns nil.
-function FieldGuide.copy(original)
- local copy = {}
- if type(original) == "table" then
- for k, v in pairs(original) do
- copy[k] = v
- end
- else
- return nil
- end
- return copy
-end
+function getTableSize(t)
+ local count = 0
-function FieldGuide.getContinent(map)
- return continents[map]
-end
-
-function FieldGuide.isWeaponKnown(name)
- for i = 1, GetNumSkillLines() do
- if name == GetSkillLineInfo(i) then
- return true
+ if t ~= nil then
+ for a,b in pairsByKeys(t) do
+ count = count + 1
end
end
- return false
+
+ return count
end
diff --git a/docs/social-preview.png b/docs/social-preview.png
new file mode 100644
index 0000000..2f9df57
Binary files /dev/null and b/docs/social-preview.png differ