mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-03-26 00:40:15 +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
66
assets/sql/base/reputation_spillover_template.sql
Normal file
66
assets/sql/base/reputation_spillover_template.sql
Normal file
|
|
@ -0,0 +1,66 @@
|
|||
/*!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 `reputation_spillover_template`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `reputation_spillover_template`
|
||||
(
|
||||
`faction` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'faction entry',
|
||||
`faction1` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'faction to give spillover for',
|
||||
`rate_1` float NOT NULL DEFAULT '0' COMMENT 'the given rep points * rate',
|
||||
`rank_1` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT 'max rank,above this will not give any spillover',
|
||||
`faction2` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`rate_2` float NOT NULL DEFAULT '0',
|
||||
`rank_2` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`faction3` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`rate_3` float NOT NULL DEFAULT '0',
|
||||
`rank_3` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`faction4` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`rate_4` float NOT NULL DEFAULT '0',
|
||||
`rank_4` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`faction`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Reputation spillover reputation gain';
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
LOCK TABLES `reputation_spillover_template` WRITE;
|
||||
/*!40000 ALTER TABLE `reputation_spillover_template` DISABLE KEYS */;
|
||||
INSERT INTO `reputation_spillover_template` VALUES
|
||||
(21,369,0.5,7,470,0.5,7,577,0.5,7,0,0,0),
|
||||
(47,72,0.25,7,54,0.25,7,69,0.25,7,930,0.25,7),
|
||||
(54,47,0.25,7,72,0.25,7,69,0.25,7,930,0.25,7),
|
||||
(68,76,0.25,7,81,0.25,7,530,0.25,7,911,0.25,7),
|
||||
(69,47,0.25,7,54,0.25,7,72,0.25,7,930,0.25,7),
|
||||
(72,47,0.25,7,54,0.25,7,69,0.25,7,930,0.25,7),
|
||||
(76,68,0.25,7,81,0.25,7,530,0.25,7,911,0.25,7),
|
||||
(81,76,0.25,7,68,0.25,7,530,0.25,7,911,0.25,7),
|
||||
(369,21,0.5,7,470,0.5,7,577,0.5,7,0,0,0),
|
||||
(470,369,0.5,7,21,0.5,7,577,0.5,7,0,0,0),
|
||||
(530,76,0.25,7,81,0.25,7,68,0.25,7,911,0.25,7),
|
||||
(577,369,0.5,7,470,0.5,7,21,0.5,7,0,0,0),
|
||||
(911,76,0.25,7,81,0.25,7,530,0.25,7,68,0.25,7),
|
||||
(930,47,0.25,7,54,0.25,7,69,0.25,7,72,0.25,7),
|
||||
(932,934,-1.1,7,935,0.5,4,0,0,0,0,0,0),
|
||||
(934,932,-1.1,7,935,0.5,4,0,0,0,0,0,0),
|
||||
(1050,1037,0.5,7,1068,0.5,7,1094,0.5,7,1126,0.5,7),
|
||||
(1064,1052,0.5,7,1067,0.5,7,1085,0.5,7,1124,0.5,7),
|
||||
(1067,1052,0.5,7,1064,0.5,7,1085,0.5,7,1124,0.5,7),
|
||||
(1068,1037,0.5,7,1050,0.5,7,1094,0.5,7,1126,0.5,7),
|
||||
(1085,1052,0.5,7,1064,0.5,7,1067,0.5,7,1124,0.5,7),
|
||||
(1094,1037,0.5,7,1050,0.5,7,1068,0.5,7,1126,0.5,7),
|
||||
(1104,1105,-2.2,7,0,0,0,0,0,0,0,0,0),
|
||||
(1105,1104,-2.2,7,0,0,0,0,0,0,0,0,0),
|
||||
(1124,1052,0.5,7,1064,0.5,7,1067,0.5,7,1085,0.5,7),
|
||||
(1126,1037,0.5,7,1050,0.5,7,1068,0.5,7,1094,0.5,7);
|
||||
/*!40000 ALTER TABLE `reputation_spillover_template` 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