Replaced Augmentation with Variation data.
Adapted from: L2jUnity free files.
This commit is contained in:
@@ -1,6 +0,0 @@
|
||||
DROP TABLE IF EXISTS `item_attributes`;
|
||||
CREATE TABLE IF NOT EXISTS `item_attributes` (
|
||||
`itemId` int(11) NOT NULL DEFAULT 0,
|
||||
`augAttributes` int(11) NOT NULL DEFAULT -1,
|
||||
PRIMARY KEY (`itemId`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
7
L2J_Mobius_1.0_Ertheia/dist/db_installer/sql/game/item_variations.sql
vendored
Normal file
7
L2J_Mobius_1.0_Ertheia/dist/db_installer/sql/game/item_variations.sql
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
CREATE TABLE IF NOT EXISTS `item_variations` (
|
||||
`itemId` INT(11) NOT NULL,
|
||||
`mineralId` INT(11) NOT NULL DEFAULT 0,
|
||||
`option1` INT(11) NOT NULL,
|
||||
`option2` INT(11) NOT NULL,
|
||||
PRIMARY KEY (`itemId`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
Reference in New Issue
Block a user