From 8faaad17639fb74cbe9d25a86462840a1ab428c7 Mon Sep 17 00:00:00 2001 From: ElderShell Date: Sat, 16 May 2026 00:41:13 -0600 Subject: [PATCH] changed enemy health from 3x to 1.5x for creatures that are a higher level than 10 --- data/sql/updates/db_world/2026_05_16_00.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 data/sql/updates/db_world/2026_05_16_00.sql diff --git a/data/sql/updates/db_world/2026_05_16_00.sql b/data/sql/updates/db_world/2026_05_16_00.sql new file mode 100644 index 000000000..8bf19c697 --- /dev/null +++ b/data/sql/updates/db_world/2026_05_16_00.sql @@ -0,0 +1,5 @@ +-- DB update 2026_05_15_00 -> 2026_05_16_00 +-- +UPDATE creature_template +SET HealthModifier = HealthModifier * 0.5 +WHERE maxlevel >= 10;