From 39f901d5660136f69c6252f4a21153d9f5d0732b Mon Sep 17 00:00:00 2001 From: runningnak3d Date: Thu, 2 Sep 2010 08:56:18 -0600 Subject: SQL: add exploration base XP date for levels 71-79. Patch by Svannon --HG-- branch : trunk --- sql/updates/9722_world_exploration_basexp.sql | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 sql/updates/9722_world_exploration_basexp.sql (limited to 'sql/updates') diff --git a/sql/updates/9722_world_exploration_basexp.sql b/sql/updates/9722_world_exploration_basexp.sql new file mode 100644 index 00000000000..8baadf9e215 --- /dev/null +++ b/sql/updates/9722_world_exploration_basexp.sql @@ -0,0 +1,13 @@ +-- Base XP for Levels 71 to 79 +DELETE FROM `exploration_basexp` WHERE `level` IN (71,72,73,74,75,76,77,78,79); +INSERT INTO `exploration_basexp` (`level`,`basexp`) VALUES +(71,1330), +(72,1370), +(73,1410), +(74,1440), +(75,1470), +(76,1510), +(77,1530), +(78,1600), +(79,1630); + -- cgit v1.2.3