From c4d81aa42d4918fa6a9b86bfea017f36192155ed Mon Sep 17 00:00:00 2001 From: Orphus Date: Wed, 11 Feb 2015 16:46:58 +0000 Subject: DB/PlayerStats: Corrections to intellect between levels 10 and 19 --- sql/updates/world/2015_02_11_00_world.sql | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 sql/updates/world/2015_02_11_00_world.sql (limited to 'sql/updates') diff --git a/sql/updates/world/2015_02_11_00_world.sql b/sql/updates/world/2015_02_11_00_world.sql new file mode 100644 index 00000000000..4e855d6fa06 --- /dev/null +++ b/sql/updates/world/2015_02_11_00_world.sql @@ -0,0 +1,13 @@ +-- Update playerlevestats to fit retail values +-- some kind of initial intellect boost for all classes except Warriors, Hunters and Rogues +UPDATE `player_levelstats` SET `inte`=`inte`+12 WHERE `level` IN (1,2,3,4,5,6,7,8,9) AND `class` NOT IN (1,3,4); +UPDATE `player_levelstats` SET `inte`=`inte`+11 WHERE `level`=10 AND `class` NOT IN (1,3,4); +UPDATE `player_levelstats` SET `inte`=`inte`+10 WHERE `level`=11 AND `class` NOT IN (1,3,4); +UPDATE `player_levelstats` SET `inte`=`inte`+9 WHERE `level`=12 AND `class` NOT IN (1,3,4); +UPDATE `player_levelstats` SET `inte`=`inte`+8 WHERE `level`=13 AND `class` NOT IN (1,3,4); +UPDATE `player_levelstats` SET `inte`=`inte`+7 WHERE `level`=14 AND `class` NOT IN (1,3,4); +UPDATE `player_levelstats` SET `inte`=`inte`+6 WHERE `level`=15 AND `class` NOT IN (1,3,4); +UPDATE `player_levelstats` SET `inte`=`inte`+5 WHERE `level`=16 AND `class` NOT IN (1,3,4); +UPDATE `player_levelstats` SET `inte`=`inte`+4 WHERE `level`=17 AND `class` NOT IN (1,3,4); +UPDATE `player_levelstats` SET `inte`=`inte`+2 WHERE `level`=18 AND `class` NOT IN (1,3,4); +UPDATE `player_levelstats` SET `inte`=`inte`+1 WHERE `level`=19 AND `class` NOT IN (1,3,4); -- cgit v1.2.3