aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorHenry <henry925@gmail.com>2015-12-30 16:46:03 -0500
committerHenry <henry925@gmail.com>2016-02-16 17:07:09 -0500
commit5ee2be21bf5d6626a92763e28af491f413ce6163 (patch)
tree897166babe46e35b46ae1e921b4847cae5034ff0 /sql
parent13e509a622a6d88afe27d6cdda4cf9f402818745 (diff)
Scripts/Deadmines: Fix #6624 Mr. Smite's event text, and phase switching.
* Fixes Mr. Smite announcing to instance once doors have been destroyed. * Add missing dialogue to encounter phases. * Now properly runs in front of his chest, kneels down and equips items, stands, and reengages like he's supposed to. * Fix weapon model for first phase when he switched to double axes.
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/world/2016_02_16_00_world.sql7
1 files changed, 7 insertions, 0 deletions
diff --git a/sql/updates/world/2016_02_16_00_world.sql b/sql/updates/world/2016_02_16_00_world.sql
new file mode 100644
index 00000000000..c20196ddc80
--- /dev/null
+++ b/sql/updates/world/2016_02_16_00_world.sql
@@ -0,0 +1,7 @@
+-- Add missing creature text for Mr. Smite in Deadmines.
+DELETE FROM creature_text WHERE entry=646;
+INSERT INTO creature_text (`entry`, `groupid`, `id`, `text`, `type`, `language`, `probability`, `emote`, `duration`, `sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
+(646, 0, 0, 'You there, check out that noise!', 14, 0, 100, 0, 0, 5775, 1148, 2, 'smite SAY_ALARM1'),
+(646, 1, 0, 'We\'re under attack! Avast, ye swabs! Repel the invaders!', 14, 0, 100, 0, 0, 5777, 1149, 2, 'smite SAY_ALARM2'),
+(646, 2, 0, 'You landlubbers are tougher than I thought, I\'ll have to Improvise!', 12, 0, 100, 0, 0, 5778, 1344, 0, 'smite SAY_PHASE_1'),
+(646, 3, 0, 'D\'ah! Now you\'re making me angry!', 12, 0, 100, 0, 0, 5779, 1345, 0, 'smite SAY_PHASE_2');