mirror of
https://github.com/mangosfour/server.git
synced 2025-12-24 19:37:07 +00:00
Add exemplarily support for spells 21387(used with Ragnaros) and 62388(related to Demonic Circle) Further table columns can be added as required. Signed-off-by: Schmoozerd <schmoozerd@scriptdev2.com>
22 lines
1.2 KiB
SQL
22 lines
1.2 KiB
SQL
ALTER TABLE db_version CHANGE COLUMN required_0065_12087_02_mangos_command required_0081_12000_01_mangos_spell_template bit;
|
|
|
|
DROP TABLE IF EXISTS `spell_template`;
|
|
CREATE TABLE `spell_template` (
|
|
`id` int(11) unsigned NOT NULL DEFAULT '0',
|
|
`proc_flags` int(11) unsigned NOT NULL DEFAULT '0',
|
|
`proc_chance` int(11) unsigned NOT NULL DEFAULT '0',
|
|
`duration_index` int(11) unsigned NOT NULL DEFAULT '0',
|
|
`effect0` int(11) unsigned NOT NULL DEFAULT '0',
|
|
`effect0_implicit_target_a` int(11) unsigned NOT NULL DEFAULT '0',
|
|
`effect0_radius_idx` int(11) unsigned NOT NULL DEFAULT '0',
|
|
`effect0_apply_aura_name` int(11) unsigned NOT NULL DEFAULT '0',
|
|
`effect0_misc_value` int(11) unsigned NOT NULL DEFAULT '0',
|
|
`effect0_trigger_spell` int(11) unsigned NOT NULL DEFAULT '0',
|
|
`comments` varchar(255) NOT NULL,
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='MaNGOS server side spells';
|
|
|
|
INSERT INTO spell_template VALUES
|
|
-- ID proc_flags chnce dur ef0 tarA0 rad aur misc trigger
|
|
(21387, 0x00000028, 15, 21, 6, 1, 0, 42, 0, 21388, 'Melt-Weapon trigger aura related used by Ragnaros'),
|
|
(62388, 0x00000000, 101, 21, 6, 1, 0, 4, 0, 0, 'Aura required for Demonic Circle 48020');
|