mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 13:37:05 +00:00
26 lines
1,020 B
SQL
26 lines
1,020 B
SQL
--
|
|
-- Table structure for table `reference_loot_template`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `reference_loot_template`;
|
|
CREATE TABLE `reference_loot_template` (
|
|
`entry` mediumint(8) unsigned NOT NULL default '0',
|
|
`item` mediumint(8) unsigned NOT NULL default '0',
|
|
`ChanceOrQuestChance` float NOT NULL default '100',
|
|
`groupid` tinyint(3) unsigned NOT NULL default '0',
|
|
`mincountOrRef` mediumint(9) NOT NULL default '1',
|
|
`maxcount` tinyint(3) unsigned NOT NULL default '1',
|
|
`lootcondition` tinyint(3) unsigned NOT NULL default '0',
|
|
`condition_value1` mediumint(8) unsigned NOT NULL default '0',
|
|
`condition_value2` mediumint(8) unsigned NOT NULL default '0',
|
|
PRIMARY KEY (`entry`,`item`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
|
|
|
|
--
|
|
-- Dumping data for table `reference_loot_template`
|
|
--
|
|
|
|
LOCK TABLES `reference_loot_template` WRITE;
|
|
/*!40000 ALTER TABLE `reference_loot_template` DISABLE KEYS */;
|
|
/*!40000 ALTER TABLE `reference_loot_template` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|