Thread Tools Display Modes
02-10-10, 01:08 PM   #1
nightcracker
A Molten Giant
 
nightcracker's Avatar
AddOn Author - Click to view addons
Join Date: Sep 2009
Posts: 716
ncSpellalert spells list

Hi all!

I need some help with the spell list used for ncSpellalert which I'm updating. It currently uses non-localized spell names causing it to only work with enUS and enGB. I have the list below, and I would like some help - because I'm really short on time ATM - to localize it in the following format:
Code:
ncSpellalertDB.HARMFUL_SPELLS = {
	[GetSpellInfo(60043)] = 1, -- Lava burst
}
In general terms:
Code:
[GetSpellInfo(ID)] = 1, -- spell name
So how do I do this? Go to this place and search for the name of the spell/buff you are localizing IN THE "matches exactly" FILTER FIELD. Then run this in the url bar and copy/paste what it the pop-up displays:

javascript:d=search_results_spell;s="";prompt("", ("[GetSpellInfo("+d[0]["id"]+")] = 1, -- "+d[0]["name"]));

Here is the list:
Code:
ncSpellalertDB = {}
ncSpellalertDB.HARMFUL_SPELLS = {
	-- Mage
	["Polymorph"] = 1,
	["Polymorph: Pig"] = 1,
	["Polymorph: Turtle"] = 1,
	["Frostbolt"] = 1,
	["Fireball"] = 1,
	["Arcane Blast"] = 1,
	["Pyroblast"] = 1,
	["Flamestrike"] = 1,
	["Frostfire Bolt"] = 1,
	["Slow"] = 1,
	["Summon Water Elemental"] = 1,
	["Scorch"] = 1,
	["Mirror Image"] = 1,
	
	-- Shaman
	["Lightning Bolt"] = 1,
	["Chain Lightning"] = 1,	
	["Lava Burst"] = 1,
	["Mana Tide Totem"] = 1,
	["Feral Spirit"] = 1,
	
	-- Warlock
	["Fear"] = 1,
	["Howl of Terror"] = 1,
	["Seduction"] = 1,
	["Shadow Bolt"] = 1,
	["Seed of Corruption"] = 1,
	["Ritual of Summoning"] = 1,
	["Soul Fire"] = 1,
	["Haunt"] = 1,
	["Searing Pain"] = 1,
	["Banish"] = 1,
	["Chaos Bolt"] = 1,
	["Immolate"] = 1,
	["Death Coil"] = 1,
	["Demonic Circle: Summon"] = 1,
	["Unstable Affliction"] = 1,
	["Incinerate"] = 1,
	["Shadowfury"] = 1,
	
	-- Paladin
	["Exorcism"] = 1,
}

ncSpellalertDB.HEALING_SPELLS = {
	-- Priest
	["Binding Heal"] = 1,
	["Circle of Healing"] = 1,
	["Lightwell"] = 1,
	["Mass Dispel"] = 1,
	["Flash Heal"] = 1,
	["Greater Heal"] = 1,
	["Heal"] = 1,
	["Lesser Heal"] = 1,	
	["Prayer of Healing"] = 1,
	["Resurrection"] = 1,
	["Divine Hymn"] = 1,
	["Hymn of Hope"] = 1,
	["Penance"] = 1,
	["Desperate Prayer"] = 1,
	
	-- Druid
	["Healing Touch"] = 1,
	["Regrowth"] = 1,
	["Revive"] = 1,
	["Rebirth"] = 1,
	["Nourish"] = 1,
	
	
	-- Paladin
	["Flash of Light"] = 1,
	["Holy Light"] = 1,
	["Redemption"] = 1,
	["Lay on Hands"] = 1,
	
	-- Shaman
	["Chain Heal"] = 1,	
	["Healing Wave"] = 1,
	["Lesser Healing Wave"] = 1,
	["Ancestral Spirit"] = 1,
	
	-- Rogue
	["Blind"] = 1,
	["Shadowstep"] = 1,
	["Preparation"] = 1,
}
__________________
Three things are certain,
Death, taxes and site not found,
You, victim of one.

Last edited by nightcracker : 02-11-10 at 09:07 AM.
  Reply With Quote
02-10-10, 01:30 PM   #2
Diagnostics
Medic!
 
Diagnostics's Avatar
Premium Member
Join Date: Jul 2009
Posts: 71
Different ranks are returning different ID's using wowhead. That still ok?
__________________
  Reply With Quote
02-10-10, 01:36 PM   #3
nightcracker
A Molten Giant
 
nightcracker's Avatar
AddOn Author - Click to view addons
Join Date: Sep 2009
Posts: 716
Originally Posted by Diagnostics View Post
Different ranks are returning different ID's using wowhead. That still ok?
Ranks doesn't matter. That's OK. But look in the first post, I have a new script which is WAAAAAAY easier.
__________________
Three things are certain,
Death, taxes and site not found,
You, victim of one.
  Reply With Quote
02-10-10, 01:48 PM   #4
Diagnostics
Medic!
 
Diagnostics's Avatar
Premium Member
Join Date: Jul 2009
Posts: 71
Code:
--Priest
[GetSpellInfo(605)] = 1, -- Mind Control
[GetSpellInfo(13860)] = 1, -- Mind Blast
[GetSpellInfo(7140)] = 1, -- Holy Fire
[GetSpellInfo(13704)] = 1, -- Psychic Scream
[GetSpellInfo(11444)] = 1, -- Shackle Undead
[GetSpellInfo(64044)] = 1, -- Psychic Horror
[GetSpellInfo(8129)] = 1, -- Mana Burn
[GetSpellInfo(35155)] = 1, -- Smite
[GetSpellInfo(34919)] = 1, -- Vampiric Touch
[GetSpellInfo(32000)] = 1, -- Mind Sear
[GetSpellInfo(11639)] = 1, -- Shadow Word Pain
There is the Priest done. I added Shadow Word: Pain, wasn't on your list. If its not needed you can just delete it, lol.
__________________
  Reply With Quote
02-10-10, 02:01 PM   #5
Diagnostics
Medic!
 
Diagnostics's Avatar
Premium Member
Join Date: Jul 2009
Posts: 71
Code:
	-- Druid
	[GetSpellInfo(11922)] = 1, -- Entangling Roots
	[GetSpellInfo(33786)] = 1, -- Cyclone
	[GetSpellInfo(9739)] = 1, -- Wrath
	[GetSpellInfo(21668)] = 1, -- Starfire

	-- Deathknight
	[GetSpellInfo(47528)] = 1, -- Mind Freeze
	[GetSpellInfo(42650)] = 1, -- Army of the Dead
	[GetSpellInfo(47476)] = 1, -- Strangulate
	[GetSpellInfo(53570)] = 1, -- Hungering Cold
	
	-- Hunter
	[GetSpellInfo(3034)] = 1, -- Viper Sting
	[GetSpellInfo(24335)] = 1, -- Wyvern Sting
	[GetSpellInfo(34490)] = 1, -- Silencing Shot
	[GetSpellInfo(19503)] = 1, -- Scatter Shot
__________________
  Reply With Quote
02-10-10, 04:59 PM   #6
Diagnostics
Medic!
 
Diagnostics's Avatar
Premium Member
Join Date: Jul 2009
Posts: 71
Ill work on some more later. Gotta study!
__________________
  Reply With Quote
02-10-10, 11:47 PM   #7
nightcracker
A Molten Giant
 
nightcracker's Avatar
AddOn Author - Click to view addons
Join Date: Sep 2009
Posts: 716
Originally Posted by Diagnostics View Post
Ill work on some more later. Gotta study!
Thanks man!

EDIT: Fixed a bug with the extraction script so it works with Firefox. Also, if you have a spell that you'd like to add, add it! Make sure to comment or something that you added it, because not all spells come in the list. I want really IMPORTANT spells(Bloodlust, Psychic Scream) and spells that are interruptable(Frostbolt, Haunt, Fear).
__________________
Three things are certain,
Death, taxes and site not found,
You, victim of one.

Last edited by nightcracker : 02-11-10 at 12:19 AM.
  Reply With Quote
02-11-10, 02:03 AM   #8
xandora
A Chromatic Dragonspawn
 
xandora's Avatar
Join Date: Feb 2009
Posts: 188
Was bored. :3 Also, I hope I'm doing this right. :P

Code:
	-- Warrior
[GetSpellInfo(46924)] = 1, -- Bladestorm
[GetSpellInfo(12976)] = 1, -- Last Stand
[GetSpellInfo(13847)] = 1, -- Recklessness
[GetSpellInfo(20240)] = 1, -- Retaliation
[GetSpellInfo(15062)] = 1, -- Shield Wall
[GetSpellInfo(12292)] = 1, -- Death Wish
[GetSpellInfo(9943)] = 1, -- Spell Reflection
	
	-- Paladin
[GetSpellInfo(43430)] = 1, -- Avenging Wrath
[GetSpellInfo(66115)] = 1, -- Hand of Freedom
[GetSpellInfo(41450)] = 1, -- Blessing of Protection
[GetSpellInfo(13874)] = 1, -- Divine Shield
[GetSpellInfo(13007)] = 1, -- Divine Protection
[GetSpellInfo(6940)] = 1, -- Hand of Sacrifice
	
	-- Hunter
[GetSpellInfo(31567)] = 1, -- Deterrence	
[GetSpellInfo(34692)] = 1, -- The Beast Within
	
	-- Priest
[GetSpellInfo(44416)] = 1, -- Pain Suppression
[GetSpellInfo(37274)] = 1, -- Power Infusion
[GetSpellInfo(47585)] = 1, -- Dispersion
	
	-- Racial
[GetSpellInfo(69575)] = 1, -- Stoneform
[GetSpellInfo(24378)] = 1, -- Berserking
__________________
  Reply With Quote
02-11-10, 02:06 AM   #9
nightcracker
A Molten Giant
 
nightcracker's Avatar
AddOn Author - Click to view addons
Join Date: Sep 2009
Posts: 716
Originally Posted by xandora View Post
Was bored. :3 Also, I hope I'm doing this right. :P

Code:
	-- Warrior
[GetSpellInfo(46924)] = 1, -- Bladestorm
[GetSpellInfo(12976)] = 1, -- Last Stand
[GetSpellInfo(13847)] = 1, -- Recklessness
[GetSpellInfo(20240)] = 1, -- Retaliation
[GetSpellInfo(15062)] = 1, -- Shield Wall
[GetSpellInfo(12292)] = 1, -- Death Wish
[GetSpellInfo(9943)] = 1, -- Spell Reflection
	
	-- Paladin
[GetSpellInfo(43430)] = 1, -- Avenging Wrath
[GetSpellInfo(66115)] = 1, -- Hand of Freedom
[GetSpellInfo(41450)] = 1, -- Blessing of Protection
[GetSpellInfo(13874)] = 1, -- Divine Shield
[GetSpellInfo(13007)] = 1, -- Divine Protection
[GetSpellInfo(6940)] = 1, -- Hand of Sacrifice
	
	-- Hunter
[GetSpellInfo(31567)] = 1, -- Deterrence	
[GetSpellInfo(34692)] = 1, -- The Beast Within
	
	-- Priest
[GetSpellInfo(44416)] = 1, -- Pain Suppression
[GetSpellInfo(37274)] = 1, -- Power Infusion
[GetSpellInfo(47585)] = 1, -- Dispersion
	
	-- Racial
[GetSpellInfo(69575)] = 1, -- Stoneform
[GetSpellInfo(24378)] = 1, -- Berserking
Perfect! Is the script working fine?
__________________
Three things are certain,
Death, taxes and site not found,
You, victim of one.

Last edited by nightcracker : 02-11-10 at 02:09 AM.
  Reply With Quote
02-11-10, 03:13 AM   #10
xandora
A Chromatic Dragonspawn
 
xandora's Avatar
Join Date: Feb 2009
Posts: 188
Yea, working in Chrome at least.

EDIT: I just had a thought about this extraction script. On the mmo-champ database, are you looking for any spellID? Or for the ones specifically marked with a Skill, e.g. Enhancement for Bloodlust?
__________________

Last edited by xandora : 02-11-10 at 04:13 AM. Reason: general thoughts
  Reply With Quote
02-11-10, 05:07 AM   #11
nightcracker
A Molten Giant
 
nightcracker's Avatar
AddOn Author - Click to view addons
Join Date: Sep 2009
Posts: 716
Originally Posted by xandora View Post
Yea, working in Chrome at least.

EDIT: I just had a thought about this extraction script. On the mmo-champ database, are you looking for any spellID? Or for the ones specifically marked with a Skill, e.g. Enhancement for Bloodlust?
I'm just looking for everything with the EXACT NAME, and I get the ID of one of those spells. Now if I use GetSpellInfo on that ID I get the localized name, which I want.
__________________
Three things are certain,
Death, taxes and site not found,
You, victim of one.
  Reply With Quote
02-11-10, 05:23 AM   #12
xandora
A Chromatic Dragonspawn
 
xandora's Avatar
Join Date: Feb 2009
Posts: 188
Originally Posted by nightcracker View Post
I'm just looking for everything with the EXACT NAME, and I get the ID of one of those spells. Now if I use GetSpellInfo on that ID I get the localized name, which I want.
Ahh right, so you're not looking for the correct spell, just the correct name.

Code:
ncSpellalertDB.BUFF_SPELLS = {
	-- Druid
	[GetSpellInfo(16810)] = 1, -- Nature's Grasp,
	[GetSpellInfo(17116)] = 1, -- Nature's Swiftness,
	[GetSpellInfo(22842)] = 1, -- Frenzied Regeneration,
	[GetSpellInfo(29166)] = 1, -- Innervate,
	[GetSpellInfo(53191)] = 1, -- Starfall,
	[GetSpellInfo(43317)] = 1, -- Dash,
	
	-- Death Knight
	[GetSpellInfo(50514)] = 1, -- Summon Gargoyle,
	[GetSpellInfo(58130)] = 1, -- Icebound Fortitude,
	[GetSpellInfo(49028)] = 1, -- Dancing Rune Weapon,
	[GetSpellInfo(55213)] = 1, -- Hysteria,
	
	-- Mage
	[GetSpellInfo(29976)] = 1, -- Presence of Mind,
	[GetSpellInfo(36911)] = 1, -- Ice Block,
	[GetSpellInfo(25641)] = 1, -- Frost Ward,
	[GetSpellInfo(37844)] = 1, -- Fire Ward,
	[GetSpellInfo(54160)] = 1, -- Arcane Power,
	[GetSpellInfo(11392)] = 1, -- Invisibility,
	[GetSpellInfo(49264)] = 1, -- Blazing Speed,
	[GetSpellInfo(57761)] = 1, -- Fireball!,
	[GetSpellInfo(28682)] = 1, -- Combustion,
	
	-- Shaman
	[GetSpellInfo(6742)] = 1, -- Bloodlust,
	[GetSpellInfo(64701)] = 1, -- Elemental Mastery,
	[GetSpellInfo(23689)] = 1, -- Heroism,
	
	-- Warlock
	[GetSpellInfo(17941)] = 1, -- Shadow Trance,
	[GetSpellInfo(37673)] = 1, -- Metamorphosis,
	
	-- Rogue
	[GetSpellInfo(57840)] = 1, -- Killing Spree,
	[GetSpellInfo(28752)] = 1, -- Adrenaline Rush,
	[GetSpellInfo(33735)] = 1, -- Blade Flurry,
	[GetSpellInfo(51713)] = 1, -- Shadow Dance,
	[GetSpellInfo(61922)] = 1, -- Sprint,
	[GetSpellInfo(8822)] = 1, -- Stealth,
	[GetSpellInfo(15087)] = 1, -- Evasion,
	[GetSpellInfo(39666)] = 1, -- Cloak of Shadows,
}
__________________

Last edited by xandora : 02-11-10 at 05:27 AM. Reason: got some more done
  Reply With Quote
02-11-10, 05:25 AM   #13
nightcracker
A Molten Giant
 
nightcracker's Avatar
AddOn Author - Click to view addons
Join Date: Sep 2009
Posts: 716
Originally Posted by xandora View Post
Ahh right, so you're not looking for the correct spell, just the correct name.
Correct. That's why I use the "exact name" filter.
__________________
Three things are certain,
Death, taxes and site not found,
You, victim of one.
  Reply With Quote
02-11-10, 09:07 AM   #14
nightcracker
A Molten Giant
 
nightcracker's Avatar
AddOn Author - Click to view addons
Join Date: Sep 2009
Posts: 716
Thanks a lot, were almost there!
__________________
Three things are certain,
Death, taxes and site not found,
You, victim of one.
  Reply With Quote
02-11-10, 09:26 AM   #15
nightcracker
A Molten Giant
 
nightcracker's Avatar
AddOn Author - Click to view addons
Join Date: Sep 2009
Posts: 716
Ok, thanks all! I got them all! Updating ncSpellalert today or tomorrow.

EDIT: The new and updated ncSpellalert

Code:
ncSpellalertDB = {}
ncSpellalertDB.HARMFUL_SPELLS = {
	-- Priest
	[GetSpellInfo(605)] = 1, -- Mind Control
	[GetSpellInfo(13860)] = 1, -- Mind Blast
	[GetSpellInfo(7140)] = 1, -- Holy Fire
	[GetSpellInfo(13704)] = 1, -- Psychic Scream
	[GetSpellInfo(11444)] = 1, -- Shackle Undead
	[GetSpellInfo(64044)] = 1, -- Psychic Horror
	[GetSpellInfo(8129)] = 1, -- Mana Burn
	[GetSpellInfo(35155)] = 1, -- Smite
	[GetSpellInfo(34919)] = 1, -- Vampiric Touch
	[GetSpellInfo(32000)] = 1, -- Mind Sear

	-- Druid
	[GetSpellInfo(11922)] = 1, -- Entangling Roots
	[GetSpellInfo(33786)] = 1, -- Cyclone
	[GetSpellInfo(9739)] = 1, -- Wrath
	[GetSpellInfo(21668)] = 1, -- Starfire

	-- Deathknight
	[GetSpellInfo(47528)] = 1, -- Mind Freeze
	[GetSpellInfo(42650)] = 1, -- Army of the Dead
	[GetSpellInfo(47476)] = 1, -- Strangulate
	[GetSpellInfo(53570)] = 1, -- Hungering Cold
	
	-- Hunter
	[GetSpellInfo(3034)] = 1, -- Viper Sting
	[GetSpellInfo(24335)] = 1, -- Wyvern Sting
	[GetSpellInfo(34490)] = 1, -- Silencing Shot
	[GetSpellInfo(19503)] = 1, -- Scatter Shot
	
	-- Mage
	[GetSpellInfo(28285)] = 1, -- Polymorph
	[GetSpellInfo(29457)] = 1, -- Frostbolt
	[GetSpellInfo(20797)] = 1, -- Fireball
	[GetSpellInfo(58462)] = 1, -- Arcane Blast
	[GetSpellInfo(24995)] = 1, -- Pyroblast
	[GetSpellInfo(72169)] = 1, -- Flamestrike
	[GetSpellInfo(69570)] = 1, -- Frostfire Bolt
	[GetSpellInfo(11436)] = 1, -- Slow
	[GetSpellInfo(31687)] = 1, -- Summon Water Elemental
	[GetSpellInfo(10206)] = 1, -- Scorch
	[GetSpellInfo(36848)] = 1, -- Mirror Image

	-- Shaman
	[GetSpellInfo(15207)] = 1, -- Lightning Bolt
	[GetSpellInfo(25021)] = 1, -- Chain Lightning	
	[GetSpellInfo(53788)] = 1, -- Lava Burst
	[GetSpellInfo(39609)] = 1, -- Mana Tide Totem
	[GetSpellInfo(1350)] = 1, -- Feral Spirit

	-- Warlock
	[GetSpellInfo(30002)] = 1, -- Fear
	[GetSpellInfo(5484)] = 1, -- Howl of Terror
	[GetSpellInfo(6359)] = 1, -- Seduction
	[GetSpellInfo(22336)] = 1, -- Shadow Bolt
	[GetSpellInfo(32865)] = 1, -- Seed of Corruption
	[GetSpellInfo(7720)] = 1, -- Ritual of Summoning
	[GetSpellInfo(17924)] = 1, -- Soul Fire
	[GetSpellInfo(48210)] = 1, -- Haunt
	[GetSpellInfo(30358)] = 1, -- Searing Pain
	[GetSpellInfo(24466)] = 1, -- Banish
	[GetSpellInfo(69576)] = 1, -- Chaos Bolt
	[GetSpellInfo(348)] = 1, -- Immolate
	[GetSpellInfo(67931)] = 1, -- Death Coil
	[GetSpellInfo(48018)] = 1, -- Demonic Circle: Summon
	[GetSpellInfo(34438)] = 1, -- Unstable Affliction
	[GetSpellInfo(23308)] = 1, -- Incinerate
	[GetSpellInfo(39082)] = 1, -- Shadowfury

	-- Paladin
	[GetSpellInfo(17149)] = 1, -- Exorcism
}

ncSpellalertDB.HEALING_SPELLS = {
	-- Priest
	[GetSpellInfo(48119)] = 1, -- Binding Heal
	[GetSpellInfo(61964)] = 1, -- Circle of Healing
	[GetSpellInfo(27870)] = 1, -- Lightwell
	[GetSpellInfo(32375)] = 1, -- Mass Dispel
	[GetSpellInfo(17138)] = 1, -- Flash Heal
	[GetSpellInfo(60003)] = 1, -- Greater Heal
	[GetSpellInfo(59195)] = 1, -- Heal
	[GetSpellInfo(29170)] = 1, -- Lesser Heal
	[GetSpellInfo(15585)] = 1, -- Prayer of Healing
	[GetSpellInfo(35599)] = 1, -- Resurrection
	[GetSpellInfo(70619)] = 1, -- Divine Hymn
	[GetSpellInfo(64904)] = 1, -- Hymn of Hope
	[GetSpellInfo(52984)] = 1, -- Penance
	[GetSpellInfo(19238)] = 1, -- Desperate Prayer

	-- Druid
	[GetSpellInfo(23381)] = 1, -- Healing Touch
	[GetSpellInfo(34361)] = 1, -- Regrowth
	[GetSpellInfo(51918)] = 1, -- Revive
	[GetSpellInfo(35369)] = 1, -- Rebirth
	[GetSpellInfo(57765)] = 1, -- Nourish


	-- Paladin
	[GetSpellInfo(33641)] = 1, -- Flash of Light
	[GetSpellInfo(647)] = 1, -- Holy Light
	[GetSpellInfo(7328)] = 1, -- Redemption
	[GetSpellInfo(633)] = 1, -- Lay on Hands

	-- Shaman
	[GetSpellInfo(15799)] = 1, -- Chain Heal
	[GetSpellInfo(547)] = 1, -- Healing Wave
	[GetSpellInfo(28850)] = 1, -- Lesser Healing Wave
	[GetSpellInfo(20609)] = 1, -- Ancestral Spirit

	-- Rogue
	[GetSpellInfo(21060)] = 1, -- Blind
	[GetSpellInfo(36563)] = 1, -- Shadowstep
	[GetSpellInfo(44521)] = 1, -- Preparation
}

ncSpellalertDB.BUFF_SPELLS = {
	-- Druid
	[GetSpellInfo(16810)] = 1, -- Nature's Grasp,
	[GetSpellInfo(17116)] = 1, -- Nature's Swiftness,
	[GetSpellInfo(22842)] = 1, -- Frenzied Regeneration,
	[GetSpellInfo(29166)] = 1, -- Innervate,
	[GetSpellInfo(53191)] = 1, -- Starfall,
	[GetSpellInfo(43317)] = 1, -- Dash,
	
	-- Death Knight
	[GetSpellInfo(50514)] = 1, -- Summon Gargoyle,
	[GetSpellInfo(58130)] = 1, -- Icebound Fortitude,
	[GetSpellInfo(49028)] = 1, -- Dancing Rune Weapon,
	[GetSpellInfo(55213)] = 1, -- Hysteria,
	
	-- Mage
	[GetSpellInfo(29976)] = 1, -- Presence of Mind,
	[GetSpellInfo(36911)] = 1, -- Ice Block,
	[GetSpellInfo(25641)] = 1, -- Frost Ward,
	[GetSpellInfo(37844)] = 1, -- Fire Ward,
	[GetSpellInfo(54160)] = 1, -- Arcane Power,
	[GetSpellInfo(11392)] = 1, -- Invisibility,
	[GetSpellInfo(49264)] = 1, -- Blazing Speed,
	[GetSpellInfo(57761)] = 1, -- Fireball!,
	[GetSpellInfo(28682)] = 1, -- Combustion,
	
	-- Shaman
	[GetSpellInfo(6742)] = 1, -- Bloodlust,
	[GetSpellInfo(64701)] = 1, -- Elemental Mastery,
	[GetSpellInfo(23689)] = 1, -- Heroism,
	
	-- Warlock
	[GetSpellInfo(17941)] = 1, -- Shadow Trance,
	[GetSpellInfo(37673)] = 1, -- Metamorphosis,
	
	-- Rogue
	[GetSpellInfo(57840)] = 1, -- Killing Spree,
	[GetSpellInfo(28752)] = 1, -- Adrenaline Rush,
	[GetSpellInfo(33735)] = 1, -- Blade Flurry,
	[GetSpellInfo(51713)] = 1, -- Shadow Dance,
	[GetSpellInfo(61922)] = 1, -- Sprint,
	[GetSpellInfo(8822)] = 1, -- Stealth,
	[GetSpellInfo(15087)] = 1, -- Evasion,
	[GetSpellInfo(39666)] = 1, -- Cloak of Shadows,
	
	-- Warrior
	[GetSpellInfo(46924)] = 1, -- Bladestorm
	[GetSpellInfo(12976)] = 1, -- Last Stand
	[GetSpellInfo(13847)] = 1, -- Recklessness
	[GetSpellInfo(20240)] = 1, -- Retaliation
	[GetSpellInfo(15062)] = 1, -- Shield Wall
	[GetSpellInfo(12292)] = 1, -- Death Wish
	[GetSpellInfo(9943)] = 1, -- Spell Reflection

	-- Paladin
	[GetSpellInfo(43430)] = 1, -- Avenging Wrath
	[GetSpellInfo(66115)] = 1, -- Hand of Freedom
	[GetSpellInfo(41450)] = 1, -- Blessing of Protection
	[GetSpellInfo(13874)] = 1, -- Divine Shield
	[GetSpellInfo(13007)] = 1, -- Divine Protection
	[GetSpellInfo(6940)] = 1, -- Hand of Sacrifice

	-- Hunter
	[GetSpellInfo(31567)] = 1, -- Deterrence	
	[GetSpellInfo(34692)] = 1, -- The Beast Within

	-- Priest
	[GetSpellInfo(44416)] = 1, -- Pain Suppression
	[GetSpellInfo(37274)] = 1, -- Power Infusion
	[GetSpellInfo(47585)] = 1, -- Dispersion

	-- Racial
	[GetSpellInfo(69575)] = 1, -- Stoneform
	[GetSpellInfo(24378)] = 1, -- Berserking
}
__________________
Three things are certain,
Death, taxes and site not found,
You, victim of one.

Last edited by nightcracker : 02-11-10 at 09:32 AM.
  Reply With Quote
02-11-10, 10:14 AM   #16
Rilgamon
Premium Member
 
Rilgamon's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Sep 2009
Posts: 822
Just a question
You use a really unreadable fontsize and fontcolor in your
addon descriptions when you look at them with "WoWI Light"-Theme
enabled. Is there a chance you pick at least different colors ?

http://www.wowinterface.com/community.php?styleid=9
__________________
The cataclysm broke the world ... and the pandas could not fix it!
  Reply With Quote
02-11-10, 10:33 AM   #17
nightcracker
A Molten Giant
 
nightcracker's Avatar
AddOn Author - Click to view addons
Join Date: Sep 2009
Posts: 716
Originally Posted by Rilgamon View Post
Just a question
You use a really unreadable fontsize and fontcolor in your
addon descriptions when you look at them with "WoWI Light"-Theme
enabled. Is there a chance you pick at least different colors ?

http://www.wowinterface.com/community.php?styleid=9
Yeah I will change them, tomorrow I think(bizzy currently).
__________________
Three things are certain,
Death, taxes and site not found,
You, victim of one.
  Reply With Quote

WoWInterface » AddOns, Compilations, Macros » Released AddOns » ncSpellalert spells list


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