diff options
| author | DevRival <dev.rival@mail.ru> | 2015-11-15 02:00:18 +0100 |
|---|---|---|
| committer | MitchesD <majklprofik@seznam.cz> | 2016-01-15 20:06:01 +0100 |
| commit | 93952b77e22a509fcd2b07c6af1680c00a9b4ec1 (patch) | |
| tree | 5ff2a1f23b0fe8cc90e790ac1c572ead268b1309 /sql | |
| parent | 43d5d118b280b8a7daee3eec9c67d1018d059a3d (diff) | |
Scripts/Spells: Hallow's End item Hallowed Wand
Hallowed Wand items should cast a transformation on party members.
by @DevRival, closes #3574
Before this patch, the following spells do not have any effect at all:
- 24717, Pirate Costume
- 24718, Ninja Costume
- 24719, Leper Gnome Costume
- 24720, Random Costume
- 24737, Ghost Costume
Details from testing on the current 3.3.5 branch (commit ecbbcc8):
- 24724 (Skeleton Costume) seems to work as intended
- 24733 (Bat Costume) only lasts 10 seconds instead of 60 minutes
- 24741 (Wisp Costume) also seems to work as intended
All the spells listed above are included in this PR.
(cherry picked from commit 3fdbcf18ae2eeb7a965a9b2dc4b7e22796aaceae)
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/world/2016_01_15_03_world_2015_12_01_00.sql | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sql/updates/world/2016_01_15_03_world_2015_12_01_00.sql b/sql/updates/world/2016_01_15_03_world_2015_12_01_00.sql new file mode 100644 index 00000000000..6945c99d468 --- /dev/null +++ b/sql/updates/world/2016_01_15_03_world_2015_12_01_00.sql @@ -0,0 +1,12 @@ +-- +-- Hallowed wand spell script names +DELETE FROM `spell_script_names` WHERE `ScriptName`= 'spell_hallow_end_wand'; +INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES +(24717, 'spell_hallow_end_wand'), -- Pirate Costume +(24718, 'spell_hallow_end_wand'), -- Ninja Costume +(24719, 'spell_hallow_end_wand'), -- Leper Gnome Costume +(24720, 'spell_hallow_end_wand'), -- Random Costume +(24724, 'spell_hallow_end_wand'), -- Skeleton Costume +(24733, 'spell_hallow_end_wand'), -- Bat Costume +(24737, 'spell_hallow_end_wand'), -- Ghost Costume +(24741, 'spell_hallow_end_wand'); -- Wisp Costume; |
