diff options
| author | Seyden <saiifii@live.de> | 2017-07-29 21:40:28 +0200 |
|---|---|---|
| committer | joschiwald <joschiwald.trinity@gmail.com> | 2017-07-29 21:40:28 +0200 |
| commit | 567590248592494adabd0ffa8cbb3c9daed983f4 (patch) | |
| tree | 5c4cb413a560aaaa3b3356d28524e4b50804bf69 /sql | |
| parent | 7e4f6078512cd42f606b513f0a2597cc5f06dcc0 (diff) | |
Core/Creatures: Implemented Basic Creature Scaling (#20026)
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/world/master/2017_07_29_00_world.sql | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sql/updates/world/master/2017_07_29_00_world.sql b/sql/updates/world/master/2017_07_29_00_world.sql new file mode 100644 index 00000000000..9307960390f --- /dev/null +++ b/sql/updates/world/master/2017_07_29_00_world.sql @@ -0,0 +1,9 @@ +DROP TABLE IF EXISTS `creature_template_scaling`; +CREATE TABLE `creature_template_scaling` ( + `Entry` MEDIUMINT (8) UNSIGNED NOT NULL, + `LevelScalingMin` SMALLINT (5) UNSIGNED NOT NULL DEFAULT 0, + `LevelScalingMax` SMALLINT (5) UNSIGNED NOT NULL DEFAULT 0, + `LevelScalingDelta` SMALLINT (5) NOT NULL DEFAULT 0, + `VerifiedBuild` SMALLINT (5) DEFAULT NULL, + PRIMARY KEY (`Entry`) +); |
