mirror of
https://github.com/mangosfour/server.git
synced 2025-12-24 19:37:07 +00:00
* Add support > 64 bit spellFamily mask
* Remove not used fields in SpellModifier
* Remove not used (and not correct work vs charges) GetTotalFlatMods, GetTotalPctMods
* Use DBC based data for spell_affect
* More better work SPELL_AURA_ADD_TARGET_TRIGGER aura
Signed-off-by: DiSlord <dislord@nomail.com>
12 lines
No EOL
472 B
SQL
12 lines
No EOL
472 B
SQL
--
|
|
-- Table structure for table `spell_affect`
|
|
--
|
|
DROP TABLE IF EXISTS `spell_affect`;
|
|
CREATE TABLE `spell_affect` (
|
|
`entry` smallint(5) unsigned NOT NULL default '0',
|
|
`effectId` tinyint(3) unsigned NOT NULL default '0',
|
|
`SpellClassMask0` int(5) unsigned NOT NULL default '0',
|
|
`SpellClassMask1` int(5) unsigned NOT NULL default '0',
|
|
`SpellClassMask2` int(5) unsigned NOT NULL default '0',
|
|
PRIMARY KEY (`entry`,`effectId`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8; |