Core/Items: Add loot scaling support

This commit is contained in:
hondacrx
2018-04-28 11:38:00 -04:00
parent 1106aa3659
commit fc237004f2
8 changed files with 886 additions and 23 deletions
@@ -0,0 +1,12 @@
--
-- Table structure for table `quest_greeting_locale`
--
DROP TABLE IF EXISTS `quest_greeting_locale`;
CREATE TABLE `quest_greeting_locale` (
`ID` int(10) unsigned NOT NULL DEFAULT '0',
`type` tinyint(3) unsigned NOT NULL DEFAULT '0',
`locale` varchar(4) NOT NULL,
`Greeting` text,
`VerifiedBuild` smallint(6) NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`,`type`,`locale`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;