diff options
| author | ccrs <ccrs@users.noreply.github.com> | 2021-08-20 03:41:49 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-20 03:41:49 +0200 |
| commit | 3e886c55611357581ecb69c671d021d29b715e64 (patch) | |
| tree | 6ce73038b0778656f44617bc7a4cd0a529a151f4 /sql | |
| parent | 1ddd9dc19cc1df1a1ab8c6123283999f9dea6760 (diff) | |
Scripts/Pet: implement Dance Rune Weapon + minor tweaks to npc_pet_mage_mirror_image script
damage is now halved, years ago it wasn't, so we got that going at least
stat scaling missing - the low damage might even come from this instead of the aura
periodic auras still unknown
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/world/3.3.5/2021_08_19_03_world.sql | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2021_08_19_03_world.sql b/sql/updates/world/3.3.5/2021_08_19_03_world.sql new file mode 100644 index 00000000000..e7aaba311e1 --- /dev/null +++ b/sql/updates/world/3.3.5/2021_08_19_03_world.sql @@ -0,0 +1,6 @@ +DELETE FROM `smart_scripts` WHERE `entryorguid`=27893 AND `source_type`=0; +UPDATE `creature_template` SET `speed_walk`=2.5, `speed_run`=2.5, `unit_flags` = 33554432, `flags_extra`=0,`AIName`='', `ScriptName`='npc_pet_dk_rune_weapon' WHERE `entry`=27893; + +DELETE FROM `spell_script_names` where `spell_id` IN (49028); +INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES +(49028, 'spell_dk_dancing_rune_weapon'); |
