Core/Items: Implemented new item bonus and enchantment types

This commit is contained in:
Shauren
2017-05-07 16:47:49 +02:00
parent 8aa516528f
commit 6828c7bc2f
12 changed files with 132 additions and 27 deletions

View File

@@ -0,0 +1,10 @@
--
-- Table structure for table `artifact_power_picker`
--
DROP TABLE IF EXISTS `artifact_power_picker`;
CREATE TABLE `artifact_power_picker` (
`ID` int(10) unsigned NOT NULL DEFAULT '0',
`PlayerConditionID` int(10) unsigned NOT NULL DEFAULT '0',
`VerifiedBuild` smallint(6) NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;