aboutsummaryrefslogtreecommitdiff
path: root/sql/updates
diff options
context:
space:
mode:
authormalcrom <malcromdev@gmail.com>2012-01-08 11:47:41 +0100
committerZxBiohazardZx <zxbiohazardzx@gmail.com>2012-01-08 11:47:41 +0100
commit2ba7cfacca22a00db7c3647f29249f6b742ded0c (patch)
tree975b6881ad6e8e004e844a3565c7695da9b6c7cc /sql/updates
parentb6f9caff6bb0c5ad0262a5e9a1db2b988bff65ce (diff)
Core/Script: update creature_text for Galvangar from sniffs
closes #4694
Diffstat (limited to 'sql/updates')
-rw-r--r--sql/updates/world/2012_01_08_07_world_creature_text.sql11
1 files changed, 11 insertions, 0 deletions
diff --git a/sql/updates/world/2012_01_08_07_world_creature_text.sql b/sql/updates/world/2012_01_08_07_world_creature_text.sql
new file mode 100644
index 00000000000..c929866f4f1
--- /dev/null
+++ b/sql/updates/world/2012_01_08_07_world_creature_text.sql
@@ -0,0 +1,11 @@
+-- Remove old script text for boss_galvangar.cpp "Not sure if the text actually exist"
+DELETE FROM `script_texts` WHERE `entry` IN (-1810021,-1810022);
+-- Add new creature_text for Captain Galvangar
+DELETE FROM `creature_text` WHERE `entry` IN (11947);
+INSERT INTO `creature_text` (`entry`,`groupid`,`id`,`text`,`type`,`language`,`probability`,`emote`,`duration`,`sound`,`comment`) VALUES
+-- Aggro
+(11947,0,0, 'Die! Your kind has no place in Alterac Valley!',14,0,100,0,0,0, 'Captain Galvangar'),
+-- Reset
+(11947,1,0, 'I''ll never fall for that, fool! If you want a battle it will be on my terms and in my lair!',14,0,100,0,0,0, 'Captain Galvangar'),
+-- Casting Fury of the Frostwolf
+(11947,2,0, 'Now is the time to attack! For the Horde!',14,0,100,0,0,0, 'Captain Galvangar');