TDB 1200.26021 - 2026/02/06

This commit is contained in:
TDB Release
2026-02-06 12:50:58 +00:00
parent 5c8bf4dfea
commit 4489f8c786
96 changed files with 164 additions and 90 deletions

View File

@@ -24,7 +24,7 @@ DROP TABLE IF EXISTS `access_requirement`;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `access_requirement` (
`mapId` int unsigned NOT NULL,
`difficulty` tinyint unsigned NOT NULL DEFAULT '0',
`difficulty` int NOT NULL DEFAULT '0',
`level_min` tinyint unsigned NOT NULL DEFAULT '0',
`level_max` tinyint unsigned NOT NULL DEFAULT '0',
`item` int unsigned NOT NULL DEFAULT '0',
@@ -867,7 +867,7 @@ DROP TABLE IF EXISTS `creature_questitem`;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `creature_questitem` (
`CreatureEntry` int unsigned NOT NULL DEFAULT '0',
`DifficultyID` tinyint unsigned NOT NULL DEFAULT '0',
`DifficultyID` int NOT NULL DEFAULT '0',
`Idx` int unsigned NOT NULL DEFAULT '0',
`ItemId` int unsigned NOT NULL DEFAULT '0',
`VerifiedBuild` int NOT NULL DEFAULT '0',
@@ -899,7 +899,7 @@ DROP TABLE IF EXISTS `creature_static_flags_override`;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `creature_static_flags_override` (
`SpawnId` bigint unsigned NOT NULL,
`DifficultyId` tinyint unsigned NOT NULL DEFAULT '0',
`DifficultyId` int NOT NULL DEFAULT '0',
`StaticFlags1` int unsigned DEFAULT NULL,
`StaticFlags2` int unsigned DEFAULT NULL,
`StaticFlags3` int unsigned DEFAULT NULL,
@@ -1041,7 +1041,7 @@ DROP TABLE IF EXISTS `creature_template_difficulty`;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `creature_template_difficulty` (
`Entry` int unsigned NOT NULL,
`DifficultyID` tinyint unsigned NOT NULL DEFAULT '0',
`DifficultyID` int NOT NULL DEFAULT '0',
`LevelScalingDeltaMin` smallint NOT NULL DEFAULT '0',
`LevelScalingDeltaMax` smallint NOT NULL DEFAULT '0',
`ContentTuningID` int NOT NULL DEFAULT '0',
@@ -2540,6 +2540,7 @@ CREATE TABLE `player_classlevelstats` (
`agi` int NOT NULL COMMENT 'agility',
`sta` int NOT NULL COMMENT 'stamina',
`inte` int NOT NULL COMMENT 'intellect',
`spi` smallint NOT NULL COMMENT 'spirit',
`VerifiedBuild` int NOT NULL DEFAULT '0',
PRIMARY KEY (`class`,`level`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Stores levels stats.';
@@ -2630,6 +2631,7 @@ CREATE TABLE `player_racestats` (
`agi` smallint NOT NULL COMMENT 'agility',
`sta` smallint NOT NULL COMMENT 'stamina',
`inte` smallint NOT NULL COMMENT 'intellect',
`spi` smallint NOT NULL COMMENT 'spirit',
PRIMARY KEY (`race`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Stores race stats.';
/*!40101 SET character_set_client = @saved_cs_client */;
@@ -3171,7 +3173,7 @@ CREATE TABLE `quest_objectives` (
`StorageIndex` tinyint NOT NULL DEFAULT '0',
`ObjectID` int NOT NULL DEFAULT '0',
`Amount` int NOT NULL DEFAULT '0',
`SecondaryAmount` int NOT NULL DEFAULT '0',
`ConditionalAmount` int NOT NULL DEFAULT '0',
`Flags` int unsigned NOT NULL DEFAULT '0',
`Flags2` int unsigned NOT NULL DEFAULT '0',
`ProgressBarWeight` float NOT NULL DEFAULT '0',
@@ -3610,6 +3612,7 @@ CREATE TABLE `quest_template` (
`QuestCompletionLog` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`ResetByScheduler` tinyint NOT NULL DEFAULT '0',
`VerifiedBuild` int NOT NULL DEFAULT '0',
`RewardFavor` int NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Quest System';
/*!40101 SET character_set_client = @saved_cs_client */;
@@ -3838,7 +3841,7 @@ DROP TABLE IF EXISTS `scenarios`;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `scenarios` (
`map` int unsigned NOT NULL DEFAULT '0',
`difficulty` tinyint unsigned NOT NULL DEFAULT '0',
`difficulty` int NOT NULL DEFAULT '0',
`scenario_A` int unsigned NOT NULL DEFAULT '0',
`scenario_H` int unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`map`,`difficulty`)
@@ -3928,6 +3931,7 @@ CREATE TABLE `serverside_spell` (
`AttributesEx13` int unsigned NOT NULL DEFAULT '0',
`AttributesEx14` int unsigned NOT NULL DEFAULT '0',
`AttributesEx15` int unsigned NOT NULL DEFAULT '0',
`AttributesEx16` int unsigned NOT NULL DEFAULT '0',
`Stances` bigint unsigned NOT NULL DEFAULT '0',
`StancesNot` bigint unsigned NOT NULL DEFAULT '0',
`Targets` int unsigned NOT NULL DEFAULT '0',
@@ -5084,4 +5088,4 @@ CREATE TABLE `world_state` (
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2026-01-14 23:40:37
-- Dump completed on 2026-02-06 12:45:52