diff options
author | Malcrom <malcromdev@gmail.com> | 2013-11-07 23:50:44 -0330 |
---|---|---|
committer | Malcrom <malcromdev@gmail.com> | 2013-11-07 23:50:44 -0330 |
commit | 8370f70f2646fdc76da7d74a3c3adb2a49ca57a5 (patch) | |
tree | 2bd0043ef3d4bbdbfe66cef64b2913973b8d685b | |
parent | 494ea7373a49db35d893b8ed8936d4bfa338f12c (diff) |
DB/Creature_text: Creature text for Mennu the Betrayer
Creature needs scripting moved from EAI to cpp.
-rw-r--r-- | sql/updates/world/2013_11_07_04_world_creature_text.sql | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sql/updates/world/2013_11_07_04_world_creature_text.sql b/sql/updates/world/2013_11_07_04_world_creature_text.sql new file mode 100644 index 00000000000..f75f42f6a7a --- /dev/null +++ b/sql/updates/world/2013_11_07_04_world_creature_text.sql @@ -0,0 +1,10 @@ +-- Creature text for Mennu the Betrayer +SET @ENTRY = 17941; +DELETE FROM `creature_text` WHERE `entry`=@ENTRY; +INSERT INTO `creature_text` (`entry`,`groupid`,`id`,`text`,`type`,`language`,`probability`,`emote`,`duration`,`sound`,`comment`) VALUES +(@ENTRY, 0, 0, 'The work must continue.', 14, 0, 100, 0, 0, 10376, 'Mennu the Betrayer - Aggro'), +(@ENTRY, 0, 1, 'You brought this on yourselves.', 14, 0, 100, 0, 0, 10378, 'Mennu the Betrayer - Aggro'), +(@ENTRY, 0, 2, 'Don''t make me kill you!', 14, 0, 100, 0, 0, 10379, 'Mennu the Betrayer - Aggro'), +(@ENTRY, 1, 0, 'It had to be done.', 14, 0, 100, 0, 0, 10380, 'Mennu the Betrayer - Kill'), +(@ENTRY, 1, 1, 'You should not have come.', 14, 0, 100, 0, 0, 10381, 'Mennu the Betrayer - Kill'), +(@ENTRY, 2, 0, 'I... Deserve this.', 14, 0, 100, 0, 0, 10382, 'Mennu the Betrayer - Death'); |