mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-03-24 16:10:14 +00:00
Load single-player NPC spawns from local AzerothCore SQL assets
This commit is contained in:
parent
5f519e77e3
commit
ae37e5592e
164 changed files with 1862344 additions and 60 deletions
108
assets/sql/base/player_xp_for_level.sql
Normal file
108
assets/sql/base/player_xp_for_level.sql
Normal file
|
|
@ -0,0 +1,108 @@
|
|||
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
||||
/*!40103 SET TIME_ZONE='+00:00' */;
|
||||
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
|
||||
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
||||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
||||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
||||
DROP TABLE IF EXISTS `player_xp_for_level`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `player_xp_for_level`
|
||||
(
|
||||
`Level` tinyint(3) unsigned NOT NULL,
|
||||
`Experience` int(10) unsigned NOT NULL,
|
||||
PRIMARY KEY (`Level`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
LOCK TABLES `player_xp_for_level` WRITE;
|
||||
/*!40000 ALTER TABLE `player_xp_for_level` DISABLE KEYS */;
|
||||
INSERT INTO `player_xp_for_level` VALUES
|
||||
(1,400),
|
||||
(2,900),
|
||||
(3,1400),
|
||||
(4,2100),
|
||||
(5,2800),
|
||||
(6,3600),
|
||||
(7,4500),
|
||||
(8,5400),
|
||||
(9,6500),
|
||||
(10,7600),
|
||||
(11,8700),
|
||||
(12,9800),
|
||||
(13,11000),
|
||||
(14,12300),
|
||||
(15,13600),
|
||||
(16,15000),
|
||||
(17,16400),
|
||||
(18,17800),
|
||||
(19,19300),
|
||||
(20,20800),
|
||||
(21,22400),
|
||||
(22,24000),
|
||||
(23,25500),
|
||||
(24,27200),
|
||||
(25,28900),
|
||||
(26,30500),
|
||||
(27,32200),
|
||||
(28,33900),
|
||||
(29,36300),
|
||||
(30,38800),
|
||||
(31,41600),
|
||||
(32,44600),
|
||||
(33,48000),
|
||||
(34,51400),
|
||||
(35,55000),
|
||||
(36,58700),
|
||||
(37,62400),
|
||||
(38,66200),
|
||||
(39,70200),
|
||||
(40,74300),
|
||||
(41,78500),
|
||||
(42,82800),
|
||||
(43,87100),
|
||||
(44,91600),
|
||||
(45,96300),
|
||||
(46,101000),
|
||||
(47,105800),
|
||||
(48,110700),
|
||||
(49,115700),
|
||||
(50,120900),
|
||||
(51,126100),
|
||||
(52,131500),
|
||||
(53,137000),
|
||||
(54,142500),
|
||||
(55,148200),
|
||||
(56,154000),
|
||||
(57,159900),
|
||||
(58,165800),
|
||||
(59,172000),
|
||||
(60,290000),
|
||||
(61,317000),
|
||||
(62,349000),
|
||||
(63,386000),
|
||||
(64,428000),
|
||||
(65,475000),
|
||||
(66,527000),
|
||||
(67,585000),
|
||||
(68,648000),
|
||||
(69,717000),
|
||||
(70,1523800),
|
||||
(71,1539600),
|
||||
(72,1555700),
|
||||
(73,1571800),
|
||||
(74,1587900),
|
||||
(75,1604200),
|
||||
(76,1620700),
|
||||
(77,1637400),
|
||||
(78,1653900),
|
||||
(79,1670800);
|
||||
/*!40000 ALTER TABLE `player_xp_for_level` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
||||
|
||||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
||||
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
||||
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
|
||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue