Thread Tools Display Modes
Prev Previous Post   Next Post Next
08-15-17, 02:48 AM   #1
MunkDev
A Scalebane Royal Guard
 
MunkDev's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2015
Posts: 431
Complete list of reticle spells

Essentially, I need a list of spellIDs for all reticle/ground target/AoE spells for all classes and specs with every talent choice considered. The current API does not seem to provide any function to identify these spells and any gimmicky solution I've tried so far hasn't worked in every case.

I could spend my time going over every talent and every ability in the game, but first and foremost I'm curious if this problem can be solved without doing that.
In the meantime, I managed to find a partial list here. Feel free to add to this list.
Lua Code:
  1. local AoESpellIDs = {
  2.     DEATHKNIGHT = {
  3.         43265, -- Death and Decay
  4.         152280, -- Defile
  5.     },
  6.     DEMONHUNTER = {
  7.         189110, -- Infernal Strike
  8.         191427, -- Metamorphosis (Havoc)
  9.         202137, -- Sigil of Silence
  10.         202138, -- Sigil of Chains
  11.         204596, -- Sigil of Flame
  12.         207684, -- Sigil of Misery
  13.     },
  14.     DRUID = {
  15.         102793, -- Ursol's Vortex
  16.         191034, -- Starfall
  17.         205636, -- Force of Nature
  18.         202770, -- Fury of Elune
  19.     },
  20.     HUNTER = {
  21.         1543, -- Flare
  22.         6197, -- Eagle Eye
  23.         109248, -- Binding Shot
  24.         162488, -- Steel Trap
  25.         206817, -- Sentinel
  26.     },
  27.     MAGE = {
  28.         2120, -- Flamestrike
  29.         33395, -- Freeze
  30.         113724, -- Ring of Frost
  31.         153561, -- Meteor
  32.         190356, -- Blizzard
  33.     },
  34.     MONK = {
  35.         115313, -- Summon Jade Serpent Statue
  36.         115315, -- Summon Black Ox Statue
  37.         116844, -- Ring of Peace
  38.     },
  39.     PALADIN = {
  40.         114158, -- Light's Hammer
  41.     },
  42.     PRIEST = {
  43.         32375, -- Mass Dispel
  44.         81782, -- Power Word: Barrier
  45.         121536, -- Angelic Feather
  46.     },
  47.     ROGUE = {
  48.         1725, -- Distract
  49.         185767, -- Cannonball Barrage
  50.         195457, -- Grappling Hook
  51.     },
  52.     SHAMAN = {
  53.         2484, -- Earthbind Totem
  54.         6196, -- Far Sight
  55.         61882, -- Earthquake
  56.         73920, -- Healing Rain
  57.         98008, -- Spirit Link Totem (Resto Shaman baseline)
  58.         51485, -- Earthgrab Totem (Shaman talent, replaces Earthbind Totem)
  59.         192058, -- Lightning Surge Totem (Shaman talent)
  60.         192222, -- Liquid Magma Totem (Elemental Shaman talent)
  61.         196932, -- Voodoo Totem (Shaman talent)
  62.         192077, -- Wind Rush Totem (Shaman talent)
  63.         204332, -- Windfury Totem (Shaman pvp talent)
  64.         207399, -- Ancestral Protection Totem (Resto Shaman Talent)
  65.         215864, -- Rainfall
  66.     },
  67.     WARLOCK = {
  68.         1122, -- Summon Infernal
  69.         5740, -- Rain of Fire
  70.         30283, -- Shadowfury
  71.         152108, -- Cataclysm
  72.     },
  73.     WARRIOR = {
  74.         6544, -- Heroic Leap
  75.         152277, -- Ravager (Arms)
  76.         228920, -- Ravager (Protection)
  77.     },
  78. }
__________________

Last edited by MunkDev : 08-15-17 at 06:39 PM.
  Reply With Quote
 

WoWInterface » Developer Discussions » General Authoring Discussion » Complete list of reticle spells

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off