From 2352fc7cdfff0e677f6516c0ab2b91d3efc9ab70 Mon Sep 17 00:00:00 2001 From: QAston Date: Sat, 24 Jul 2010 22:41:42 +0200 Subject: *Add base scripting interfce for spells - thanks to Brian for help in making it compile with GCC. *Add hook for handling spell effects in new scripting system. --HG-- branch : trunk --- sql/base/world_database.sql | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'sql/base') diff --git a/sql/base/world_database.sql b/sql/base/world_database.sql index 8b5f03706a8..03ce3ba57f2 100644 --- a/sql/base/world_database.sql +++ b/sql/base/world_database.sql @@ -14569,6 +14569,20 @@ INSERT INTO `spelldifficulty_dbc` VALUES /*!40000 ALTER TABLE `spelldifficulty_dbc` ENABLE KEYS */; UNLOCK TABLES; +-- +-- Table structure for table `spell_script_names` +-- + +DROP TABLE IF EXISTS `spell_script_names`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `spell_script_names` ( + `spell_id` mediumint(8) NOT NULL, + `ScriptName` char(64) NOT NULL, + UNIQUE (`spell_id`, `ScriptName`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + -- -- Table structure for table `transports` -- -- cgit v1.2.3