mirror of
https://github.com/mangosfour/server.git
synced 2025-12-15 01:37:00 +00:00
[7662] Spell power coefficients for talent 48505 and ranks.
Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
parent
f89c2052ea
commit
b143a300cb
5 changed files with 40 additions and 2 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_7643_02_mangos_mangos_string` bit(1) default NULL
|
`required_7662_02_mangos_spell_bonus_data` 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';
|
||||||
|
|
||||||
--
|
--
|
||||||
|
|
@ -15786,6 +15786,16 @@ INSERT INTO spell_chain VALUES
|
||||||
(53199,48505,48505,2,0),
|
(53199,48505,48505,2,0),
|
||||||
(53200,53199,48505,3,0),
|
(53200,53199,48505,3,0),
|
||||||
(53201,53200,48505,4,0),
|
(53201,53200,48505,4,0),
|
||||||
|
/*Starfall AOE*/
|
||||||
|
(50294,0,50294,1,0),
|
||||||
|
(53188,50294,50294,2,0),
|
||||||
|
(53189,53188,50294,3,0),
|
||||||
|
(53190,53189,50294,4,0),
|
||||||
|
/*Starfall Direct*/
|
||||||
|
(50288,0,50288,1,0),
|
||||||
|
(53191,50288,50288,2,0),
|
||||||
|
(53194,53191,50288,3,0),
|
||||||
|
(53195,53194,50288,4,0),
|
||||||
/*Starfire*/
|
/*Starfire*/
|
||||||
(2912,0,2912,1,0),
|
(2912,0,2912,1,0),
|
||||||
(8949,2912,2912,2,0),
|
(8949,2912,2912,2,0),
|
||||||
|
|
@ -17571,6 +17581,8 @@ INSERT INTO `spell_bonus_data` VALUES
|
||||||
('33763', '0', '0.09518', '0', 'Druid - Lifebloom'),
|
('33763', '0', '0.09518', '0', 'Druid - Lifebloom'),
|
||||||
('774', '0', '0.37604', '0', 'Druid - Rejuvenation'),
|
('774', '0', '0.37604', '0', 'Druid - Rejuvenation'),
|
||||||
('8936', '0.539', '0.188', '0', 'Druid - Regrowth'),
|
('8936', '0.539', '0.188', '0', 'Druid - Regrowth'),
|
||||||
|
('50288', '0.05', '0', '0', 'Druid - Starfall'),
|
||||||
|
('50294', '0.012', '0', '0', 'Druid - Starfall AOE'),
|
||||||
('18562', '0', '0', '0', 'Druid - Swiftmend'),
|
('18562', '0', '0', '0', 'Druid - Swiftmend'),
|
||||||
('44203', '0.538', '0', '0', 'Druid - Tranquility Triggered'),
|
('44203', '0.538', '0', '0', 'Druid - Tranquility Triggered'),
|
||||||
('48438', '0', '0.11505', '0', 'Druid - Wild Growth'),
|
('48438', '0', '0.11505', '0', 'Druid - Wild Growth'),
|
||||||
|
|
|
||||||
16
sql/updates/7662_01_mangos_spell_chain.sql
Normal file
16
sql/updates/7662_01_mangos_spell_chain.sql
Normal file
|
|
@ -0,0 +1,16 @@
|
||||||
|
ALTER TABLE db_version CHANGE COLUMN required_7643_02_mangos_mangos_string required_7662_01_mangos_spell_chain bit;
|
||||||
|
|
||||||
|
DELETE FROM `spell_chain` WHERE spell_id IN (50288, 53191, 53194, 53195);
|
||||||
|
INSERT INTO `spell_chain` VALUES
|
||||||
|
(50288, 0, 50288, 1, 0),
|
||||||
|
(53191, 50288, 50288, 2, 0),
|
||||||
|
(53194, 53191, 50288, 3, 0),
|
||||||
|
(53195, 53194, 50288, 4, 0);
|
||||||
|
|
||||||
|
DELETE FROM `spell_chain` WHERE spell_id IN (50294, 53188, 53189, 53190);
|
||||||
|
INSERT INTO `spell_chain` VALUES
|
||||||
|
(50294, 0, 50294, 1, 0),
|
||||||
|
(53188, 50294, 50294, 2, 0),
|
||||||
|
(53189, 53188, 50294, 3, 0),
|
||||||
|
(53190, 53189, 50294, 4, 0);
|
||||||
|
|
||||||
6
sql/updates/7662_02_mangos_spell_bonus_data.sql
Normal file
6
sql/updates/7662_02_mangos_spell_bonus_data.sql
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
ALTER TABLE db_version CHANGE COLUMN required_7662_01_mangos_spell_chain required_7662_02_mangos_spell_bonus_data bit;
|
||||||
|
|
||||||
|
DELETE FROM `spell_bonus_data` WHERE entry IN (50288, 50294);
|
||||||
|
INSERT INTO `spell_bonus_data` VALUES
|
||||||
|
(50288, 0.05, 0, 0, "Druid - Starfall"),
|
||||||
|
(50294, 0.012, 0, 0, "Druid - Starfall AOE");
|
||||||
|
|
@ -171,6 +171,8 @@ pkgdata_DATA = \
|
||||||
7643_01_mangos_db_version.sql \
|
7643_01_mangos_db_version.sql \
|
||||||
7643_02_mangos_mangos_string.sql \
|
7643_02_mangos_mangos_string.sql \
|
||||||
7644_01_characters_character_pet.sql \
|
7644_01_characters_character_pet.sql \
|
||||||
|
7662_01_mangos_spell_chain.sql \
|
||||||
|
7662_02_mangos_spell_bonus_data.sql \
|
||||||
README
|
README
|
||||||
|
|
||||||
## Additional files to include when running 'make dist'
|
## Additional files to include when running 'make dist'
|
||||||
|
|
@ -322,4 +324,6 @@ EXTRA_DIST = \
|
||||||
7643_01_mangos_db_version.sql \
|
7643_01_mangos_db_version.sql \
|
||||||
7643_02_mangos_mangos_string.sql \
|
7643_02_mangos_mangos_string.sql \
|
||||||
7644_01_characters_character_pet.sql \
|
7644_01_characters_character_pet.sql \
|
||||||
|
7662_01_mangos_spell_chain.sql \
|
||||||
|
7662_02_mangos_spell_bonus_data.sql \
|
||||||
README
|
README
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#ifndef __REVISION_NR_H__
|
#ifndef __REVISION_NR_H__
|
||||||
#define __REVISION_NR_H__
|
#define __REVISION_NR_H__
|
||||||
#define REVISION_NR "7661"
|
#define REVISION_NR "7662"
|
||||||
#endif // __REVISION_NR_H__
|
#endif // __REVISION_NR_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue