Ensoul system implementation.

Contributed by Mathael.
This commit is contained in:
MobiusDev
2016-03-05 16:25:48 +00:00
parent 7a9de77047
commit 240332641f
23 changed files with 1680 additions and 2 deletions

View File

@ -0,0 +1,8 @@
DROP TABLE IF EXISTS `item_soulcrystal`;
CREATE TABLE `item_soulcrystal` (
`object_id` int(11) NOT NULL,
`slot_id` int(1) NOT NULL,
`is_special` bit(1) NOT NULL,
`effect_id` int(4) NOT NULL,
PRIMARY KEY (`object_id`,`slot_id`,`is_special`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;