diff options
author | offl <offl@users.noreply.github.com> | 2021-08-11 03:11:09 +0300 |
---|---|---|
committer | offl <offl@users.noreply.github.com> | 2021-08-11 03:11:09 +0300 |
commit | 22b70a281ab3e5222ea3dd4fe37a1a45b93d7615 (patch) | |
tree | 83ae4e429790ce9841af6af7a55390b6cdd08215 | |
parent | a704ecf817843cf41d7bdbb0ad34cb202dcf52aa (diff) |
DB/Creature: Restore original mana/health mod of some creatures
-rw-r--r-- | sql/updates/world/3.3.5/2021_08_11_02_world.sql | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2021_08_11_02_world.sql b/sql/updates/world/3.3.5/2021_08_11_02_world.sql new file mode 100644 index 00000000000..45e8aaa89e1 --- /dev/null +++ b/sql/updates/world/3.3.5/2021_08_11_02_world.sql @@ -0,0 +1,5 @@ +-- +UPDATE `creature_template` SET `ManaModifier` = 1 WHERE `entry` IN (3669,3670,3671); +UPDATE `creature_template` SET `ManaModifier` = 3 WHERE `entry` = 3673; +UPDATE `creature_template` SET `HealthModifier` = 6 WHERE `entry` = 25334; +UPDATE `creature_template` SET `HealthModifier` = 800, `ManaModifier` = 800, `exp` = 2 WHERE `entry` = 30838; |