mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-17 08:00:48 +01:00
14 lines
973 B
SQL
14 lines
973 B
SQL
CREATE TABLE `spell_enchant_proc_data` (
|
|
`entry` INT(10) UNSIGNED NOT NULL,
|
|
`customChance` INT(10) UNSIGNED NOT NULL DEFAULT '0',
|
|
`PPMChance` FLOAT UNSIGNED NOT NULL DEFAULT '0',
|
|
`procEx` FLOAT UNSIGNED NOT NULL DEFAULT '0'
|
|
) ENGINE=MYISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Spell enchant proc data';
|
|
|
|
INSERT INTO spell_enchant_proc_data (`entry`, `customChance`, `PPMChance`,`procEx`) VALUES (2, 0, 8.8,0);
|
|
INSERT INTO spell_enchant_proc_data (`entry`, `customChance`, `PPMChance`,`procEx`) VALUES (12, 0, 8.8,0);
|
|
INSERT INTO spell_enchant_proc_data (`entry`, `customChance`, `PPMChance`,`procEx`) VALUES (524, 0, 8.8,0);
|
|
INSERT INTO spell_enchant_proc_data (`entry`, `customChance`, `PPMChance`,`procEx`) VALUES (1667, 0, 8.8,0);
|
|
INSERT INTO spell_enchant_proc_data (`entry`, `customChance`, `PPMChance`,`procEx`) VALUES (1668, 0, 8.8,0);
|
|
INSERT INTO spell_enchant_proc_data (`entry`, `customChance`, `PPMChance`,`procEx`) VALUES (2635, 0, 8.8,0);
|