mirror of
https://github.com/mangosfour/server.git
synced 2025-12-12 01:37:00 +00:00
[0082] Add to vanilla spells as server-side spells (23263, 25192)
This commit is contained in:
parent
e82f08f6f2
commit
b0dd58e0f3
4 changed files with 11 additions and 3 deletions
|
|
@ -24,7 +24,7 @@ CREATE TABLE `db_version` (
|
|||
`version` varchar(120) default NULL,
|
||||
`creature_ai_version` varchar(120) default NULL,
|
||||
`cache_id` int(10) default '0',
|
||||
`required_0081_12000_01_mangos_spell_template` bit(1) default NULL
|
||||
`required_0082_12012_01_mangos_spell_template` bit(1) default NULL
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Used DB version notes';
|
||||
|
||||
--
|
||||
|
|
@ -21908,6 +21908,8 @@ LOCK TABLES `spell_template` WRITE;
|
|||
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'),
|
||||
(23363, 0x00000000, 101, 21, 76, 18, 0, 0, 179804, 0, 'Summon Drakonid Corpse Trigger'),
|
||||
(25192, 0x00000000, 101, 21, 76, 18, 0, 0, 180619, 0, 'Summon Ossirian Crystal'),
|
||||
(62388, 0x00000000, 101, 21, 6, 1, 0, 4, 0, 0, 'Aura required for Demonic Circle 48020');
|
||||
/*!40000 ALTER TABLE `spell_template` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
|
|
|||
6
sql/updates/0082_12012_01_mangos_spell_template.sql
Normal file
6
sql/updates/0082_12012_01_mangos_spell_template.sql
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
ALTER TABLE db_version CHANGE COLUMN required_0081_12000_01_mangos_spell_template required_0082_12012_01_mangos_spell_template bit;
|
||||
|
||||
DELETE FROM spell_template WHERE id IN (23363, 25192);
|
||||
INSERT INTO spell_template VALUES
|
||||
(23363, 0x00000000, 101, 21, 76, 18, 0, 0, 179804, 0, 'Summon Drakonid Corpse Trigger'),
|
||||
(25192, 0x00000000, 101, 21, 76, 18, 0, 0, 180619, 0, 'Summon Ossirian Crystal');
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
#ifndef __REVISION_NR_H__
|
||||
#define __REVISION_NR_H__
|
||||
#define REVISION_NR "0081"
|
||||
#define REVISION_NR "0082"
|
||||
#endif // __REVISION_NR_H__
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
#ifndef __REVISION_SQL_H__
|
||||
#define __REVISION_SQL_H__
|
||||
#define REVISION_DB_CHARACTERS "required_0028_xxxxx_01_characters_character_phase_data"
|
||||
#define REVISION_DB_MANGOS "required_0081_12000_01_mangos_spell_template"
|
||||
#define REVISION_DB_MANGOS "required_0082_12012_01_mangos_spell_template"
|
||||
#define REVISION_DB_REALMD "required_0014_xxxxx_01_realmd_account_access"
|
||||
#endif // __REVISION_SQL_H__
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue