diff options
| author | runningnak3d <none@none> | 2010-09-02 08:56:18 -0600 |
|---|---|---|
| committer | runningnak3d <none@none> | 2010-09-02 08:56:18 -0600 |
| commit | 39f901d5660136f69c6252f4a21153d9f5d0732b (patch) | |
| tree | 96d1e2e984f84703c9b8254f765e7ac83a46f9f3 | |
| parent | d2edf39feb1796e2a0a73f68a8a64fc4466fb792 (diff) | |
SQL: add exploration base XP date for levels 71-79. Patch by Svannon
--HG--
branch : trunk
| -rw-r--r-- | sql/base/world_database.sql | 11 | ||||
| -rw-r--r-- | sql/updates/9722_world_exploration_basexp.sql | 13 |
2 files changed, 23 insertions, 1 deletions
diff --git a/sql/base/world_database.sql b/sql/base/world_database.sql index 84f83a4cf87..f74f8bbbcab 100644 --- a/sql/base/world_database.sql +++ b/sql/base/world_database.sql @@ -1998,7 +1998,16 @@ INSERT INTO `exploration_basexp` VALUES (67,1160), (68,1200), (69,1230), -(70,1300); +(70,1300), +(71,1330), +(72,1370), +(73,1410), +(74,1440), +(75,1470), +(76,1510), +(77,1530), +(78,1600), +(79,1630); /*!40000 ALTER TABLE `exploration_basexp` ENABLE KEYS */; UNLOCK TABLES; 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); + |
