diff options
| author | megamage <none@none> | 2009-02-27 12:53:27 -0600 |
|---|---|---|
| committer | megamage <none@none> | 2009-02-27 12:53:27 -0600 |
| commit | adb19df4749ed0a9293a7c845c3883f02d093f17 (patch) | |
| tree | c949ad91aaf14f293a1c66d3a524150f295870e7 /sql/mangos.sql | |
| parent | 2dbe092d9f90721ddc3cbf30a4b755a5799ee9f8 (diff) | |
[7349] Implement spell cast depenences from area/quest.aura state store in new table `spell_area`. Author: VladimirMangos
* It allow store requirenments: area, active or rewarded quest (until possible another quest not rewarded),
aura present at character, character race/gender.
* Listed spell can marked as auto-casted when fit requirents. In this case spell requirements checked at
zone/subzone update (and then resurraction also), quest start/reward, dummy aura apply.
* Old hardcoded lines for similar check removed from sources and required DB support for work now.
--HG--
branch : trunk
Diffstat (limited to 'sql/mangos.sql')
| -rw-r--r-- | sql/mangos.sql | 29 |
1 files changed, 28 insertions, 1 deletions
diff --git a/sql/mangos.sql b/sql/mangos.sql index 0b46f3f9efd..829a7586d72 100644 --- a/sql/mangos.sql +++ b/sql/mangos.sql @@ -22,7 +22,7 @@ DROP TABLE IF EXISTS `db_version`; CREATE TABLE `db_version` ( `version` varchar(120) default NULL, - `required_7332_01_mangos_command` bit(1) default NULL + `required_7349_01_mangos_spell_area` bit(1) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Used DB version notes'; -- @@ -13289,6 +13289,33 @@ LOCK TABLES `spell_affect` WRITE; UNLOCK TABLES; -- +-- Table structure for table `spell_area` +-- + +DROP TABLE IF EXISTS `spell_area`; +CREATE TABLE `spell_area` ( + `spell` mediumint(8) unsigned NOT NULL default '0', + `area` mediumint(8) unsigned NOT NULL default '0', + `quest_start` mediumint(8) unsigned NOT NULL default '0', + `quest_start_active` tinyint(1) unsigned NOT NULL default '0', + `quest_end` mediumint(8) unsigned NOT NULL default '0', + `aura_spell` mediumint(8) unsigned NOT NULL default '0', + `racemask` mediumint(8) unsigned NOT NULL default '0', + `gender` tinyint(1) unsigned NOT NULL default '2', + `autocast` tinyint(1) unsigned NOT NULL default '0', + PRIMARY KEY (`spell`,`area`,`quest_start`,`quest_start_active`,`aura_spell`,`racemask`,`gender`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + +-- +-- Dumping data for table `spell_area` +-- + +LOCK TABLES `spell_area` WRITE; +/*!40000 ALTER TABLE `spell_area` DISABLE KEYS */; +/*!40000 ALTER TABLE `spell_area` ENABLE KEYS */; +UNLOCK TABLES; + +-- -- Table structure for table `spell_chain` -- |
