diff options
| author | Matan Shukry <matanshukry@gmail.com> | 2021-12-25 22:25:54 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-25 21:25:54 +0100 |
| commit | a3d06f2f329a6d21b9a79aed8b39f1d56fa933e6 (patch) | |
| tree | c45cb5cb06c1ced9e6a425b999da30ffe106e8b8 /sql | |
| parent | b221f4b37251db2206dd14d46c00f1b6f1f16480 (diff) | |
Scripts/Spells: Implemented various rogue spells (#26319)
* Ruthlessness
* Mastery: Main Gauche
* Venomous Wounds
* Symbols of Death
* Backstab
* Premeditation
* Grand Melee
* True Bearing
* Slice and Dice
* Roll the Bones
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/world/master/2021_12_25_03_world_spells_rogue.sql | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/sql/updates/world/master/2021_12_25_03_world_spells_rogue.sql b/sql/updates/world/master/2021_12_25_03_world_spells_rogue.sql new file mode 100644 index 00000000000..5563d75834c --- /dev/null +++ b/sql/updates/world/master/2021_12_25_03_world_spells_rogue.sql @@ -0,0 +1,29 @@ +-- Spell Proc +DELETE FROM `spell_script_names` WHERE `ScriptName` IN ( +'spell_rog_backstab', +'spell_rog_grand_melee', +'spell_rog_mastery_main_gauche', +'spell_rog_roll_the_bones', +'spell_rog_ruthlessness', +'spell_rog_sinister_strike', +'spell_rog_restless_blades', +'spell_rog_venomous_wounds', +'spell_rog_symbols_of_death', +'spell_rog_shadowstrike'); +INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES +(53, 'spell_rog_backstab'), +(193358, 'spell_rog_grand_melee'), +(76806, 'spell_rog_mastery_main_gauche'), +(315508, 'spell_rog_roll_the_bones'), +(14161, 'spell_rog_ruthlessness'), +(193315, 'spell_rog_sinister_strike'), +(79096, 'spell_rog_restless_blades'), +(79134, 'spell_rog_venomous_wounds'), +(212283, 'spell_rog_symbols_of_death'), +(185438, 'spell_rog_shadowstrike'); + +-- Spell Procs +DELETE FROM `spell_proc` WHERE `SpellId` IN (79134); +INSERT INTO `spell_proc` (`SpellId`,`SchoolMask`,`SpellFamilyName`,`SpellFamilyMask0`,`SpellFamilyMask1`,`SpellFamilyMask2`,`SpellFamilyMask3`,`ProcFlags`,`SpellTypeMask`,`SpellPhaseMask`,`HitMask`,`AttributesMask`,`DisableEffectsMask`,`ProcsPerMinute`,`Chance`,`Cooldown`,`Charges`) VALUES +(79134, 0, 8, 0x100100, 0x0, 0x0, 0x0, 0, 1, 2, 0x403, 0x0, 0, 0, 0, 0, 0), -- Venomous Wounds +(227151, 0, 8, 0x0, 0x0, 0x0, 0x0, 0, 7, 2, 0x403, 0x8, 0, 0, 0, 0, 0); -- Symbols of Death (Crit Aura) |
