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 /sql/updates | |
| parent | d2edf39feb1796e2a0a73f68a8a64fc4466fb792 (diff) | |
SQL: add exploration base XP date for levels 71-79. Patch by Svannon
--HG--
branch : trunk
Diffstat (limited to 'sql/updates')
| -rw-r--r-- | sql/updates/9722_world_exploration_basexp.sql | 13 |
1 files changed, 13 insertions, 0 deletions
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); + |
