Core/Quests: Implemented QUEST_OBJECTIVE_KILL_WITH_LABEL

This commit is contained in:
Shauren
2024-12-02 15:29:02 +01:00
parent 49699bc966
commit 1fb4acc25a
17 changed files with 162 additions and 3 deletions

View File

@@ -0,0 +1,23 @@
--
-- Table structure for table `creature_label`
--
DROP TABLE IF EXISTS `creature_label`;
CREATE TABLE `creature_label` (
`ID` int unsigned NOT NULL DEFAULT '0',
`LabelID` int NOT NULL DEFAULT '0',
`CreatureDifficultyID` int unsigned NOT NULL DEFAULT '0',
`VerifiedBuild` int NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`,`VerifiedBuild`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Table structure for table `gameobject_label`
--
DROP TABLE IF EXISTS `gameobject_label`;
CREATE TABLE `gameobject_label` (
`ID` int unsigned NOT NULL DEFAULT '0',
`LabelID` int NOT NULL DEFAULT '0',
`GameObjectID` int unsigned NOT NULL DEFAULT '0',
`VerifiedBuild` int NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`,`VerifiedBuild`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;