From 1b523559136180d561ff15a56aa1c80d8cbb24a8 Mon Sep 17 00:00:00 2001 From: "Johnny C. Lam" Date: Wed, 10 Apr 2013 07:20:39 +0000 Subject: [PATCH] Fix ticket #235 - Ret Paladin spell IDs Execution Sentence has a different spell ID for the ability (114157) and the debuff (114156). Guardian of Ancient Kings has spell ID 86698 for retribution paladins. Thanks to @stonecow for the correct spell IDs. git-svn-id: svn://svn.curseforge.net/wow/ovale/mainline/trunk@898 d5049fe3-3747-40f7-a4b5-f36d6801af5f --- defaut/Paladin.lua | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/defaut/Paladin.lua b/defaut/Paladin.lua index 4bb252b..a10f934 100644 --- a/defaut/Paladin.lua +++ b/defaut/Paladin.lua @@ -15,9 +15,11 @@ Define(crusader_strike 35395) SpellInfo(crusader_strike holy=-1 cd=4.5 ) Define(divine_storm 53385) SpellInfo(divine_storm holy=3 ) -Define(execution_sentence 114916) - SpellInfo(execution_sentence duration=10 tick=1 haste=spell ) - SpellAddTargetDebuff(execution_sentence execution_sentence=1) +Define(execution_sentence_aura 114916) + SpellInfo(execution_sentence_aura duration=10 tick=1 haste=spell ) +Define(execution_sentence 114157) + SpellInfo(execution_sentence cd=60) + SpellAddTargetDebuff(execution_sentence execution_sentence_aura=1) Define(exorcism 879) SpellInfo(exorcism holy=-1 cd=15 ) Define(exorcism_glyphed 122032) @@ -25,8 +27,8 @@ Define(exorcism_glyphed 122032) Define(glyph_of_double_jeopardy 121027) SpellInfo(glyph_of_double_jeopardy duration=10 ) SpellAddBuff(glyph_of_double_jeopardy glyph_of_double_jeopardy=1) -Define(guardian_of_ancient_kings 86659) - SpellInfo(guardian_of_ancient_kings duration=12 cd=180 ) +Define(guardian_of_ancient_kings 86698) + SpellInfo(guardian_of_ancient_kings duration=30 cd=300 ) SpellAddBuff(guardian_of_ancient_kings guardian_of_ancient_kings=1) Define(hammer_of_the_righteous 53595) SpellInfo(hammer_of_the_righteous holy=-1 cd=4.5 ) -- 1.7.9.5