73 lines
3.2 KiB
SQL
73 lines
3.2 KiB
SQL
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
|
/*!40103 SET TIME_ZONE='+00:00' */;
|
|
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
|
|
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
|
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
|
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
|
DROP TABLE IF EXISTS `prospecting_loot_template`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = UTF8MB4 */;
|
|
CREATE TABLE `prospecting_loot_template`
|
|
(
|
|
`Entry` MEDIUMINT unsigned NOT NULL DEFAULT 0,
|
|
`Item` MEDIUMINT unsigned NOT NULL DEFAULT 0,
|
|
`Reference` MEDIUMINT unsigned NOT NULL DEFAULT 0,
|
|
`Chance` float NOT NULL DEFAULT 100,
|
|
`QuestRequired` TINYINT NOT NULL DEFAULT 0,
|
|
`LootMode` SMALLINT unsigned NOT NULL DEFAULT 1,
|
|
`GroupId` TINYINT unsigned NOT NULL DEFAULT 0,
|
|
`MinCount` TINYINT unsigned NOT NULL DEFAULT 1,
|
|
`MaxCount` TINYINT unsigned NOT NULL DEFAULT 1,
|
|
`Comment` varchar(255) DEFAULT NULL,
|
|
PRIMARY KEY (`Entry`,`Item`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=UTF8MB4 ROW_FORMAT=FIXED COMMENT='Loot System';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
LOCK TABLES `prospecting_loot_template` WRITE;
|
|
/*!40000 ALTER TABLE `prospecting_loot_template` DISABLE KEYS */;
|
|
INSERT INTO `prospecting_loot_template` VALUES
|
|
(2770,774,0,0,0,1,1,1,1,'Malachite'),
|
|
(2770,818,0,0,0,1,1,1,1,'Tigerseye'),
|
|
(2770,1210,0,10,0,1,0,1,1,'Shadowgem'),
|
|
(2771,1,13000,10,0,1,0,1,1,'(ReferenceTable)'),
|
|
(2771,1206,0,0,0,1,1,1,2,'Moss Agate'),
|
|
(2771,1210,0,0,0,1,1,1,2,'Shadowgem'),
|
|
(2771,1705,0,0,0,1,1,1,2,'Lesser Moonstone'),
|
|
(2772,1529,0,30,0,1,1,1,2,'Jade'),
|
|
(2772,1705,0,30,0,1,1,1,2,'Lesser Moonstone'),
|
|
(2772,3864,0,30,0,1,1,1,2,'Citrine'),
|
|
(2772,7909,0,5,0,1,1,1,1,'Aquamarine'),
|
|
(2772,7910,0,5,0,1,1,1,1,'Star Ruby'),
|
|
(3858,3864,0,30,0,1,1,1,2,'Citrine'),
|
|
(3858,7909,0,30,0,1,1,1,2,'Aquamarine'),
|
|
(3858,7910,0,30,0,1,1,1,2,'Star Ruby'),
|
|
(3858,12361,0,2.5,0,1,1,1,1,'Blue Sapphire'),
|
|
(3858,12364,0,2.5,0,1,1,1,1,'Huge Emerald'),
|
|
(3858,12799,0,2.5,0,1,1,1,1,'Large Opal'),
|
|
(3858,12800,0,2.5,0,1,1,1,1,'Azerothian Diamond'),
|
|
(10620,1,13001,10,0,1,1,1,1,'(ReferenceTable)'),
|
|
(10620,7910,0,30,0,1,1,1,2,'Star Ruby'),
|
|
(10620,12361,0,15,0,1,1,1,2,'Blue Sapphire'),
|
|
(10620,12364,0,15,0,1,1,1,2,'Huge Emerald'),
|
|
(10620,12799,0,15,0,1,1,1,2,'Large Opal'),
|
|
(10620,12800,0,15,0,1,1,1,2,'Azerothian Diamond'),
|
|
(23424,1,1000,100,0,1,1,1,1,'(ReferenceTable)'),
|
|
(23425,1,13001,100,0,1,1,1,1,'(ReferenceTable)'),
|
|
(23425,2,13002,10,0,1,1,1,1,'(ReferenceTable)'),
|
|
(23425,24243,0,100,0,1,0,1,1,'Adamantite Powder'),
|
|
(36909,1,1001,100,0,1,1,1,1,'(ReferenceTable)'),
|
|
(36910,1,13005,20,0,1,0,1,1,'(ReferenceTable)'),
|
|
(36910,2,1002,100,0,1,1,1,1,'(ReferenceTable)'),
|
|
(36910,3,1003,75,0,1,1,1,1,'(ReferenceTable)'),
|
|
(36910,46849,0,75,0,1,0,1,1,'Titanium Powder'),
|
|
(36912,1,1003,85,0,1,0,1,1,'(ReferenceTable)'),
|
|
(36912,2,1004,100,0,1,1,1,1,'(ReferenceTable)');
|
|
/*!40000 ALTER TABLE `prospecting_loot_template` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
|
|
|
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
|
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
|
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
|
|
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
|
|