mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 13:37:05 +00:00
[8310] Implement item set 73/824 (4) bonus.
Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
parent
4e4a10312c
commit
0a534fda64
5 changed files with 18 additions and 3 deletions
|
|
@ -23,7 +23,7 @@ DROP TABLE IF EXISTS `db_version`;
|
||||||
CREATE TABLE `db_version` (
|
CREATE TABLE `db_version` (
|
||||||
`version` varchar(120) default NULL,
|
`version` varchar(120) default NULL,
|
||||||
`creature_ai_version` varchar(120) default NULL,
|
`creature_ai_version` varchar(120) default NULL,
|
||||||
`required_8294_01_mangos_playercreateinfo_action` bit(1) default NULL
|
`required_8310_01_mangos_spell_proc_event` bit(1) default NULL
|
||||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Used DB version notes';
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Used DB version notes';
|
||||||
|
|
||||||
--
|
--
|
||||||
|
|
@ -17953,7 +17953,8 @@ INSERT INTO `spell_proc_event` VALUES
|
||||||
(63108, 0x00000000, 5, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
|
(63108, 0x00000000, 5, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
|
||||||
(63156, 0x00000000, 0, 0x00000001, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
|
(63156, 0x00000000, 0, 0x00000001, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
|
||||||
(63245, 0x00000000, 5, 0x00000100, 0x00800000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
|
(63245, 0x00000000, 5, 0x00000100, 0x00800000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
|
||||||
(63730, 0x00000000, 6, 0x00000800, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0);
|
(63730, 0x00000000, 6, 0x00000800, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
|
||||||
|
(64928, 0x00000000, 11, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0);
|
||||||
/*!40000 ALTER TABLE `spell_proc_event` ENABLE KEYS */;
|
/*!40000 ALTER TABLE `spell_proc_event` ENABLE KEYS */;
|
||||||
UNLOCK TABLES;
|
UNLOCK TABLES;
|
||||||
|
|
||||||
|
|
|
||||||
5
sql/updates/8310_01_mangos_spell_proc_event.sql
Normal file
5
sql/updates/8310_01_mangos_spell_proc_event.sql
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
ALTER TABLE db_version CHANGE COLUMN required_8294_01_mangos_playercreateinfo_action required_8310_01_mangos_spell_proc_event bit;
|
||||||
|
|
||||||
|
DELETE FROM `spell_proc_event` WHERE `entry` IN (64928);
|
||||||
|
INSERT INTO `spell_proc_event` VALUES
|
||||||
|
(64928, 0x00000000, 11, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0);
|
||||||
|
|
@ -262,6 +262,7 @@ pkgdata_DATA = \
|
||||||
8253_02_mangos_spell_proc_event.sql \
|
8253_02_mangos_spell_proc_event.sql \
|
||||||
8254_01_mangos_spell_proc_event.sql \
|
8254_01_mangos_spell_proc_event.sql \
|
||||||
8294_01_mangos_playercreateinfo_action.sql \
|
8294_01_mangos_playercreateinfo_action.sql \
|
||||||
|
8310_01_mangos_spell_proc_event.sql \
|
||||||
README
|
README
|
||||||
|
|
||||||
## Additional files to include when running 'make dist'
|
## Additional files to include when running 'make dist'
|
||||||
|
|
@ -504,4 +505,5 @@ EXTRA_DIST = \
|
||||||
8253_02_mangos_spell_proc_event.sql \
|
8253_02_mangos_spell_proc_event.sql \
|
||||||
8254_01_mangos_spell_proc_event.sql \
|
8254_01_mangos_spell_proc_event.sql \
|
||||||
8294_01_mangos_playercreateinfo_action.sql \
|
8294_01_mangos_playercreateinfo_action.sql \
|
||||||
|
8310_01_mangos_spell_proc_event.sql \
|
||||||
README
|
README
|
||||||
|
|
|
||||||
|
|
@ -5910,6 +5910,13 @@ bool Unit::HandleDummyAuraProc(Unit *pVictim, uint32 damage, Aura* triggeredByAu
|
||||||
triggered_spell_id = 58879;
|
triggered_spell_id = 58879;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
// Shaman T8 Elemental 4P Bonus
|
||||||
|
case 64928:
|
||||||
|
{
|
||||||
|
basepoints0 = int32( triggerAmount * damage / 100 );
|
||||||
|
triggered_spell_id = 64930; // Electrified
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
// Storm, Earth and Fire
|
// Storm, Earth and Fire
|
||||||
if (dummySpell->SpellIconID == 3063)
|
if (dummySpell->SpellIconID == 3063)
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#ifndef __REVISION_NR_H__
|
#ifndef __REVISION_NR_H__
|
||||||
#define __REVISION_NR_H__
|
#define __REVISION_NR_H__
|
||||||
#define REVISION_NR "8309"
|
#define REVISION_NR "8310"
|
||||||
#endif // __REVISION_NR_H__
|
#endif // __REVISION_NR_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue