Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2017
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. DROP TABLE IF EXISTS `spell_proc`;
  2. /*!40101 SET @saved_cs_client = @@character_set_client */;
  3. /*!40101 SET character_set_client = utf8 */;
  4. CREATE 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 */;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement