First version of Transmog Module for AC

This commit is contained in:
Yehonal
2016-11-17 10:25:43 +01:00
commit e341965797
17 changed files with 1943 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
-- Dumping structure for table tc_c.custom_transmogrification
CREATE TABLE IF NOT EXISTS `custom_transmogrification` (
`GUID` int(10) unsigned NOT NULL COMMENT 'Item guidLow',
`FakeEntry` int(10) unsigned NOT NULL COMMENT 'Item entry',
`Owner` int(10) unsigned NOT NULL COMMENT 'Player guidLow',
PRIMARY KEY (`GUID`),
KEY `Owner` (`Owner`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='6_2';
-- Data exporting was unselected.
-- Dumping structure for table tc_c.custom_transmogrification_sets
CREATE TABLE IF NOT EXISTS `custom_transmogrification_sets` (
`Owner` int(10) unsigned NOT NULL COMMENT 'Player guidlow',
`PresetID` tinyint(3) unsigned NOT NULL COMMENT 'Preset identifier',
`SetName` text COMMENT 'SetName',
`SetData` text COMMENT 'Slot1 Entry1 Slot2 Entry2',
PRIMARY KEY (`Owner`,`PresetID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='6_1';