diff options
author | ModoX <moardox@gmail.com> | 2021-10-05 22:50:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-05 22:50:40 +0200 |
commit | 45b4910c96d4f706a02944f9777190ef9a499fd0 (patch) | |
tree | a466134d0838ce6cfe0f17d540f427da72de55fe /sql | |
parent | 00dd4629bd6c8de4466925bb4a3d2a0e82e4f004 (diff) |
Scripts/Spells: Core/Spells: Fixed Consecration damage, implemented Hammer of the Righteous, partly implemented Consecrated Ground talent (#27005)
Diffstat (limited to 'sql')
-rw-r--r-- | sql/updates/world/master/2021_10_05_04_world_pala_consecration.sql | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sql/updates/world/master/2021_10_05_04_world_pala_consecration.sql b/sql/updates/world/master/2021_10_05_04_world_pala_consecration.sql new file mode 100644 index 00000000000..4623f92c283 --- /dev/null +++ b/sql/updates/world/master/2021_10_05_04_world_pala_consecration.sql @@ -0,0 +1,11 @@ +-- +UPDATE `areatrigger_template` SET `ScriptName`='areatrigger_pal_consecration', `VerifiedBuild`=40120 WHERE `Id`=9228; + +DELETE FROM `areatrigger_create_properties` WHERE `Id`=4488; +INSERT INTO `areatrigger_create_properties` (`Id`,`AreaTriggerId`,`MoveCurveId`,`ScaleCurveId`,`MorphCurveId`,`FacingCurveId`,`AnimId`,`AnimKitId`,`DecalPropertiesId`,`TimeToTarget`,`TimeToTargetScale`,`Shape`,`ShapeData0`,`ShapeData1`,`ShapeData2`,`ShapeData3`,`ShapeData4`,`ShapeData5`,`VerifiedBuild`) VALUES +(4488,9228,0,0,0,0,0,0,0,0,12000,0,8,8,0,0,0,0,40120); -- SpellId : 26573 + +DELETE FROM `spell_script_names` WHERE `ScriptName` IN ('spell_pal_consecration','spell_pal_hammer_of_the_righteous'); +INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES +(26573,'spell_pal_consecration'), +(53595,'spell_pal_hammer_of_the_righteous'); |