From a809932f5017c98092a02694e86e276add03f8b9 Mon Sep 17 00:00:00 2001 From: Shauren Date: Sun, 28 Nov 2021 00:05:38 +0100 Subject: Core/Spells: Implemented spell effect 254 (SPELL_EFFECT_JUMP_CHARGE) --- sql/updates/world/master/2021_11_27_11_world.sql | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 sql/updates/world/master/2021_11_27_11_world.sql (limited to 'sql/updates') 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 -- cgit v1.2.3