aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sql/updates/world/2015_02_11_00_world.sql13
1 files changed, 13 insertions, 0 deletions
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);