From 314a35f0cd912daed7c0663f4f13552b6747fd98 Mon Sep 17 00:00:00 2001 From: funjoker Date: Fri, 30 Nov 2018 17:57:32 +0100 Subject: Core/Creatures: Update creature scaling to use content tuning Closes #22831 --- sql/updates/world/master/2020_05_02_01_world.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 sql/updates/world/master/2020_05_02_01_world.sql (limited to 'sql/updates') diff --git a/sql/updates/world/master/2020_05_02_01_world.sql b/sql/updates/world/master/2020_05_02_01_world.sql new file mode 100644 index 00000000000..ba0f927c713 --- /dev/null +++ b/sql/updates/world/master/2020_05_02_01_world.sql @@ -0,0 +1,7 @@ +ALTER TABLE `creature_template_scaling` + ADD COLUMN `DifficultyID` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0' AFTER `Entry`, + ADD COLUMN `ContentTuningID` INT(10) NOT NULL DEFAULT '0' AFTER `LevelScalingDeltaMax`, + DROP PRIMARY KEY, + ADD PRIMARY KEY (`Entry`, `DifficultyID`); + +ALTER TABLE `creature_classlevelstats` DROP `basearmor`; -- cgit v1.2.3