diff options
author | _manuel_ <manue.l@live.com.ar> | 2010-05-20 19:05:18 -0300 |
---|---|---|
committer | _manuel_ <manue.l@live.com.ar> | 2010-05-20 19:05:18 -0300 |
commit | eae2426f405b53bfe1ebd552195cfd409b3901c7 (patch) | |
tree | f8bc102fbbca01c50af3d0692a9d1ad5ab23e122 /sql | |
parent | 135f5bb35d0dba137a87b78745dcaa15b2034ebb (diff) |
The Nexus: Oculus.
- Implemented AI for Mage-Lord Urom.
--HG--
branch : trunk
Diffstat (limited to 'sql')
-rw-r--r-- | sql/FULL/world_script_texts.sql | 7 | ||||
-rw-r--r-- | sql/FULL/world_scripts_full.sql | 1 | ||||
-rw-r--r-- | sql/updates/8248_world_script_texts.sql | 7 | ||||
-rw-r--r-- | sql/updates/8248_world_scriptname.sql | 1 |
4 files changed, 16 insertions, 0 deletions
diff --git a/sql/FULL/world_script_texts.sql b/sql/FULL/world_script_texts.sql index 581d129a5a2..2aa238d5a84 100644 --- a/sql/FULL/world_script_texts.sql +++ b/sql/FULL/world_script_texts.sql @@ -1815,6 +1815,13 @@ INSERT INTO `script_texts` (`npc_entry`,`entry`,`content_default`,`content_loc1` (26723,-1576043,'Dragonqueen... Life-Binder... preserve... me.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13454,1,0,0,'keristrasza SAY_DEATH'), (26723,-1576044,'Stay. Enjoy your final moments.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13451,1,0,0,'keristrasza SAY_CRYSTAL_NOVA'), +-- -1 578 000 THE NEXUS: OCULUS + (27655,-1578000,'What do we have here... those that would defy the Spell-Weaver? Those without foresight our understanding. How can i make you see? Malygos is saving the world from itself! Bah! You are hardly worth my time!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,''), + (27655,-1578001,'Clearly my pets failed. Perhaps another demonstration is in order.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,''), + (27655,-1578002,'Still you fight. Still you cling to misguided principles. If you survive, you''ll find me in the center ring.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,''), + (27655,-1578003,'Poor blind fools!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,''), + (27655,-1578004,'A taste... just a small taste... of the Spell-Weaver''s power!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,''), + -- -1 580 000 SUNWELL PLATEAU (24850,-1580000,'Aggh! No longer will I be a slave to Malygos! Challenge me and you will be destroyed!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12422,1,0,0,'kalecgos SAY_EVIL_AGGRO'), (24850,-1580001,'I will purge you!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12423,1,0,0,'kalecgos SAY_EVIL_SPELL1'), diff --git a/sql/FULL/world_scripts_full.sql b/sql/FULL/world_scripts_full.sql index 227c8e881a7..e4299232a34 100644 --- a/sql/FULL/world_scripts_full.sql +++ b/sql/FULL/world_scripts_full.sql @@ -1010,6 +1010,7 @@ UPDATE `instance_template` SET `script`='instance_oculus' WHERE `map`=578; UPDATE `creature_template` SET `ScriptName`='boss_drakos' WHERE `entry`=27654; UPDATE `creature_template` SET `ScriptName`='npc_unstable_sphere' WHERE `entry`=28166; UPDATE `creature_template` SET `ScriptName`='npc_oculus_drake' WHERE `entry` IN (27657,27658,27659); +UPDATE `creature_template` SET `ScriptName`='boss_urom' WHERE `entry`=27655; /* OBSIDIAN SANCTUM */ UPDATE `instance_template` SET `script`='instance_obsidian_sanctum' WHERE `map`=615; diff --git a/sql/updates/8248_world_script_texts.sql b/sql/updates/8248_world_script_texts.sql new file mode 100644 index 00000000000..58a13a4cc92 --- /dev/null +++ b/sql/updates/8248_world_script_texts.sql @@ -0,0 +1,7 @@ +DELETE FROM `script_texts` WHERE `entry` IN (-1578000,-1578001,-1578002,-1578003,-1578004); +INSERT INTO `script_texts` (`npc_entry`,`entry`,`content_default`,`content_loc1`,`content_loc2`,`content_loc3`,`content_loc4`,`content_loc5`,`content_loc6`,`content_loc7`,`content_loc8`,`sound`,`type`,`language`,`emote`,`comment`) VALUES + (27655,-1578000,'What do we have here... those that would defy the Spell-Weaver? Those without foresight our understanding. How can i make you see? Malygos is saving the world from itself! Bah! You are hardly worth my time!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,''), + (27655,-1578001,'Clearly my pets failed. Perhaps another demonstration is in order.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,''), + (27655,-1578002,'Still you fight. Still you cling to misguided principles. If you survive, you''ll find me in the center ring.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,''), + (27655,-1578003,'Poor blind fools!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,''), + (27655,-1578004,'A taste... just a small taste... of the Spell-Weaver''s power!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'');
\ No newline at end of file diff --git a/sql/updates/8248_world_scriptname.sql b/sql/updates/8248_world_scriptname.sql new file mode 100644 index 00000000000..bd455ffd06a --- /dev/null +++ b/sql/updates/8248_world_scriptname.sql @@ -0,0 +1 @@ +UPDATE `creature_template` SET `ScriptName`='boss_urom' WHERE `entry`=27655;
\ No newline at end of file |