diff options
-rw-r--r-- | sql/updates/world/2011_04_03_08_world_creatures.sql | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sql/updates/world/2011_04_03_08_world_creatures.sql b/sql/updates/world/2011_04_03_08_world_creatures.sql new file mode 100644 index 00000000000..c640926b631 --- /dev/null +++ b/sql/updates/world/2011_04_03_08_world_creatures.sql @@ -0,0 +1,15 @@ +UPDATE `creature_template` SET `speed_run`=1,`spell2`=30708 WHERE `entry`=17539; -- Totem of Wrath I +UPDATE `creature_template` SET `faction_A`=35,`faction_H`=35,`speed_run`=1,`spell2`=30708 WHERE `entry`=30652; -- Totem of Wrath II +UPDATE `creature_template` SET `spell2`=30708 WHERE `entry`=30653; -- Totem of Wrath III +UPDATE `creature_template` SET `faction_A`=35,`faction_H`=35,`spell2`=30708 WHERE `entry`=30654; -- Totem of Wrath IV + +UPDATE `creature_model_info` SET `bounding_radius`=1,`combat_reach`=0,`gender`=2 WHERE `modelid`=4589; + +DELETE FROM `creature_template_addon` WHERE `entry` IN (17539,30652,30653,30654); +INSERT INTO `creature_template_addon` (`entry`,`mount`,`bytes1`,`bytes2`,`emote`,`auras`) VALUES +(17539,0,0,257,0,NULL), -- Totem of Wrath I +(30652,0,0,257,0,NULL), -- Totem of Wrath II +(30653,0,0,257,0,NULL), -- Totem of Wrath III +(30654,0,0,1,0,NULL); -- Totem of Wrath IV + +DELETE FROM `spell_group` WHERE `spell_id`=30708; -- Unneeded stack rules |