· 9 years ago · Jan 22, 2017, 08:34 PM
1DROP TABLE IF EXISTS `spell_proc`;
2/*!40101 SET @saved_cs_client = @@character_set_client */;
3/*!40101 SET character_set_client = utf8 */;
4CREATE TABLE `spell_proc` (
5 `SpellId` int(11) NOT NULL DEFAULT '0',
6 `SchoolMask` tinyint(3) unsigned NOT NULL DEFAULT '0',
7 `SpellFamilyName` smallint(5) unsigned NOT NULL DEFAULT '0',
8 `SpellFamilyMask0` int(10) unsigned NOT NULL DEFAULT '0',
9 `SpellFamilyMask1` int(10) unsigned NOT NULL DEFAULT '0',
10 `SpellFamilyMask2` int(10) unsigned NOT NULL DEFAULT '0',
11 `ProcFlags` int(10) unsigned NOT NULL DEFAULT '0',
12 `SpellTypeMask` int(10) unsigned NOT NULL DEFAULT '0',
13 `SpellPhaseMask` int(10) unsigned NOT NULL DEFAULT '0',
14 `HitMask` int(10) unsigned NOT NULL DEFAULT '0',
15 `AttributesMask` int(10) unsigned NOT NULL DEFAULT '0',
16 `ProcsPerMinute` float NOT NULL DEFAULT '0',
17 `Chance` float NOT NULL DEFAULT '0',
18 `Cooldown` int(10) unsigned NOT NULL DEFAULT '0',
19 `Charges` tinyint(3) unsigned NOT NULL DEFAULT '0',
20 PRIMARY KEY (`SpellId`)
21) ENGINE=MyISAM DEFAULT CHARSET=utf8;
22/*!40101 SET character_set_client = @saved_cs_client */;