fix(DB/Spell): Fix Killing Machine PPM values for ranks 3-5 (#24866)

Co-authored-by: blinkysc <blinkysc@users.noreply.github.com>
Co-authored-by: Ariel Bastos <ariel@arielbastos.com>
This commit is contained in:
blinkysc
2026-02-24 21:55:13 -06:00
committed by GitHub
parent e28881d0b8
commit 37416f0fa0

View File

@@ -0,0 +1,8 @@
-- Fix Killing Machine PPM values for ranks 3-5
-- Previous values (1, 2, 4, 6, 8) used non-linear scaling
-- Correct values (1, 2, 3, 4, 5) use linear scaling matching tooltip
-- Formula: attackSpeed * talentRank / 60, yielding talentRank PPM
UPDATE `spell_proc` SET `ProcsPerMinute` = 3 WHERE `SpellId` = 51128; -- Killing Machine Rank 3
UPDATE `spell_proc` SET `ProcsPerMinute` = 4 WHERE `SpellId` = 51129; -- Killing Machine Rank 4
UPDATE `spell_proc` SET `ProcsPerMinute` = 5 WHERE `SpellId` = 51130; -- Killing Machine Rank 5