aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sql/base/world_database.sql11
-rw-r--r--sql/updates/9722_world_exploration_basexp.sql13
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);
+