mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 04:37:00 +00:00
19 lines
1 KiB
SQL
19 lines
1 KiB
SQL
DROP TABLE IF EXISTS `spell_threat`;
|
|
CREATE TABLE `spell_threat` (
|
|
`entry` int(10) unsigned NOT NULL,
|
|
`Threat` int(11) NOT NULL,
|
|
PRIMARY KEY (`entry`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED;
|
|
|
|
--
|
|
-- Dumping data for table `spell_threat`
|
|
--
|
|
|
|
/*!40000 ALTER TABLE `spell_threat` DISABLE KEYS */;
|
|
INSERT INTO `spell_threat` (`entry`,`Threat`) VALUES
|
|
(1672,180),(9881,207),(11556,43),(11567,145),(11597,261),(11601,315),(11775,395),(14921,415),(24394,580),(24583,5),
|
|
(25286,175),(25288,355),(25289,60),(78,20),(284,39),(285,59),(1608,78),(11564,98),(11565,118),(11566,137),(7386,100),(7405,140),
|
|
(8380,180),(11596,220),(1715,61),(7372,101),(7373,141),(6572,155),(6574,195),(7379,235),(11600,275),(23922,160),(23923,190),
|
|
(23924,220),(23925,250),(6809,89),(8972,118),(9745,148),(9880,178),(770,108),(778,108),(9749,108),(9907,108),
|
|
(17735,200),(17750,300),(17751,450),(17752,600),(20736,100),(14274,200),(15629,300),(15630,400),(15631,500),(15632,600);
|
|
/*!40000 ALTER TABLE `spell_threat` ENABLE KEYS */;
|