View Single Post
09/25/16, 08:08 AM   #1
Ayantir
 
Ayantir's Avatar
AddOn Author - Click to view addons
Join Date: Jul 2014
Posts: 1,019
Ability ID applied by potions

Hello,

I needed them, so here are abilityID given by crafted potions :

(I maybe forget few, but it should cover 99% of the needs).

Please note :
  • Looted potions give different abilityID
  • Crown Store potions give different abilityID
  • Each ability (skill / passive) give a different abilityID


Lua Code:
  1. craftedPotionsBuffs = {
  2.     [46208] = "Minor Fracture",
  3.     [46113] = "Health Potion Poison",
  4.     [46210] = "Hindrance",
  5.     [47203] = "Minor Enervation",
  6.     [45222] = "Major Fortitude",
  7.     [79848] = "Major Vitality",
  8.     [45226] = "Major Endurance",
  9.     [64555] = "Major Brutality",
  10.     [45224] = "Major Intellect",
  11.     [64558] = "Major Sorcery",
  12.     [45236] = "Increase Detection",
  13.     [46206] = "Minor Breach",
  14.     [46193] = "Ravage Magicka",
  15.     [64562] = "Major Ward",
  16.     [79712] = "Minor Protection",
  17.     [79860] = "Minor Defile",
  18.     [45237] = "Vanish",
  19.     [64566] = "Major Expedition",
  20.     [45239] = "Unstoppable",
  21.     [64568] = "Major Savagery",
  22.     [79705] = "Lingering Restore Health",
  23.     [46202] = "Minor Cowardice",
  24.     [46199] = "Ravage Stamina",
  25.     [46204] = "Minor Maim",
  26.     [79709] = "Creeping Ravage Health",
  27.     [64570] = "Major Prophecy",
  28. }



There is multiple ID here, because each potion give a different abilityID. (this list regroup looted potions and buyable ones from NPC's).
Lua Code:
  1. nonCraftedPotionsBuffs = {
  2.     [78080] = "Major Endurance",
  3.     [78081] = "Major Expedition",
  4.     [72930] = "Unstoppable",
  5.     [63683] = "Major Endurance",
  6.     [72932] = "Major Intellect",
  7.     [72933] = "Major Sorcery",
  8.     [78054] = "Major Endurance",
  9.     [72935] = "Major Endurance",
  10.     [72936] = "Major Brutality",
  11.     [78058] = "Vanish",
  12.     [63672] = "Major Fortitude",
  13.     [72928] = "Major Fortitude",
  14.     [63678] = "Major Intellect",
  15. }

There is multiple ID here, because each potion give a different abilityID.
Lua Code:
  1. crownStorePotionsBuffs = {
  2.     [86693] = "Major Endurance",
  3.     [86694] = "Major Savagery",
  4.     [86695] = "Major Brutality",
  5.     [86697] = "Major Fortitude",
  6.     [86698] = "Unstoppable",
  7.     [86699] = "Invisibility",
  8.     [68405] = "Major Fortitude",
  9.     [68406] = "Major Intellect",
  10.     [68408] = "Major Endurance",
  11.     [86683] = "Major Intellect",
  12.     [86684] = "Major Prophecy",
  13.     [86685] = "Major Sorcery",
  14.     [86780] = "Invisibility",
  15. }

Last edited by Ayantir : 09/25/16 at 08:39 AM.
  Reply With Quote