diff options
| author | Shauren <shauren.trinity@gmail.com> | 2021-11-28 00:05:38 +0100 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2021-11-28 00:05:38 +0100 |
| commit | a809932f5017c98092a02694e86e276add03f8b9 (patch) | |
| tree | 1ba76f989a3082339832c2e50ad40d138f8d386d /sql | |
| parent | 684cd9d9681466019dcd06ad6f994890cff8cb2e (diff) | |
Core/Spells: Implemented spell effect 254 (SPELL_EFFECT_JUMP_CHARGE)
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/world/master/2021_11_27_11_world.sql | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sql/updates/world/master/2021_11_27_11_world.sql b/sql/updates/world/master/2021_11_27_11_world.sql new file mode 100644 index 00000000000..0e2a2c81842 --- /dev/null +++ b/sql/updates/world/master/2021_11_27_11_world.sql @@ -0,0 +1,15 @@ +DROP TABLE IF EXISTS `jump_charge_params`; +CREATE TABLE `jump_charge_params` ( + `id` int(11) NOT NULL, + `speed` float NOT NULL DEFAULT 42, + `treatSpeedAsMoveTimeSeconds` tinyint(1) NOT NULL DEFAULT 0, + `jumpGravity` float NOT NULL DEFAULT 19.29110527038574, + `spellVisualId` int(11) DEFAULT NULL, + `progressCurveId` int(11) DEFAULT NULL, + `parabolicCurveId` int(11) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + +INSERT INTO `jump_charge_params` (`id`, `speed`, `treatSpeedAsMoveTimeSeconds`, `jumpGravity`, `progressCurveId`) VALUES +(2, 0.65, 1, 0.018818924203515052, 1636), -- Infernal Strike +(9, 0.88, 1, 0.010237299837172031, 1717); -- Metamorphosis |
