added SQL migrations
Some checks are pending
nopch-build / ubuntu-22.04-clang-15-nopch (push) Waiting to run
nopch-build / ubuntu-24.04-clang-18-nopch (push) Waiting to run
nopch-build / ubuntu-24.04-gcc-14-nopch (push) Waiting to run
pch-build / ubuntu-22.04-clang-15-pch (push) Waiting to run
pch-build / ubuntu-24.04-clang-18-pch (push) Waiting to run
nopch-module-build / ubuntu-24.04-clang-18-nopch-modules (push) Waiting to run
Dashboard CI / Test Bash Scripts (push) Waiting to run
Dashboard CI / Test Bash Scripts-1 (push) Waiting to run
Dashboard CI / Build and Integration Test (push) Waiting to run
Dashboard CI / Build and Integration Test-1 (push) Waiting to run
docker-build / build-containers (push) Waiting to run
import-pending / import-pending (push) Waiting to run
macos-build / macos-14 (push) Waiting to run
tools / ubuntu-24.04-clang-18 (push) Waiting to run
windows-build / windows-latest (push) Waiting to run
Some checks are pending
nopch-build / ubuntu-22.04-clang-15-nopch (push) Waiting to run
nopch-build / ubuntu-24.04-clang-18-nopch (push) Waiting to run
nopch-build / ubuntu-24.04-gcc-14-nopch (push) Waiting to run
pch-build / ubuntu-22.04-clang-15-pch (push) Waiting to run
pch-build / ubuntu-24.04-clang-18-pch (push) Waiting to run
nopch-module-build / ubuntu-24.04-clang-18-nopch-modules (push) Waiting to run
Dashboard CI / Test Bash Scripts (push) Waiting to run
Dashboard CI / Test Bash Scripts-1 (push) Waiting to run
Dashboard CI / Build and Integration Test (push) Waiting to run
Dashboard CI / Build and Integration Test-1 (push) Waiting to run
docker-build / build-containers (push) Waiting to run
import-pending / import-pending (push) Waiting to run
macos-build / macos-14 (push) Waiting to run
tools / ubuntu-24.04-clang-18 (push) Waiting to run
windows-build / windows-latest (push) Waiting to run
This commit is contained in:
parent
e6af1065e4
commit
6454c737da
2 changed files with 137 additions and 0 deletions
92
data/sql/updates/db_world/2026_05_15_00.sql
Normal file
92
data/sql/updates/db_world/2026_05_15_00.sql
Normal file
|
|
@ -0,0 +1,92 @@
|
|||
-- DB update 2026_04_30_03 -> 2026_05_15_00
|
||||
--
|
||||
UPDATE creature_template
|
||||
SET HealthModifier = HealthModifier * 3,
|
||||
DamageModifier = DamageModifier * 3;
|
||||
|
||||
UPDATE player_xp_for_level
|
||||
SET Experience = Experience * 1.5;
|
||||
|
||||
INSERT INTO creature_template (
|
||||
entry, name, subname,
|
||||
minlevel, maxlevel,
|
||||
faction, npcflag, unit_class, type
|
||||
) VALUES (
|
||||
90000,
|
||||
'Chromie',
|
||||
'Timewalker Guide',
|
||||
80, 80,
|
||||
35, 0, 1, 7
|
||||
);
|
||||
|
||||
INSERT INTO creature_template_model (
|
||||
CreatureID,
|
||||
CreatureDisplayID,
|
||||
DisplayScale,
|
||||
Probability
|
||||
) VALUES (
|
||||
90000,
|
||||
24877,
|
||||
1,
|
||||
1
|
||||
);
|
||||
|
||||
INSERT INTO creature (
|
||||
id1,
|
||||
map,
|
||||
position_x,
|
||||
position_y,
|
||||
position_z,
|
||||
orientation,
|
||||
spawntimesecs,
|
||||
wander_distance,
|
||||
curhealth,
|
||||
curmana,
|
||||
MovementType
|
||||
) VALUES (
|
||||
90000,
|
||||
0,
|
||||
-8844.938,
|
||||
617.47314,
|
||||
95.53623,
|
||||
5.0512466,
|
||||
120,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0
|
||||
);
|
||||
|
||||
INSERT INTO creature (
|
||||
id1,
|
||||
map,
|
||||
position_x,
|
||||
position_y,
|
||||
position_z,
|
||||
orientation,
|
||||
spawntimesecs,
|
||||
wander_distance,
|
||||
curhealth,
|
||||
curmana,
|
||||
MovementType
|
||||
) VALUES (
|
||||
90000,
|
||||
1,
|
||||
1546.3574,
|
||||
-4447.2905,
|
||||
12.005171,
|
||||
1.002923,
|
||||
120,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0
|
||||
);
|
||||
|
||||
INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES (90001, 'spell_custom_recover_corpse_items');
|
||||
|
||||
INSERT INTO trainer_spell VALUES (11, 90000, 10000, 0, 0, 0, 0, 0, 12, 0);
|
||||
INSERT INTO trainer_spell VALUES (12, 90000, 10000, 0, 0, 0, 0, 0, 12, 0);
|
||||
|
||||
INSERT INTO trainer_spell VALUES (33, 90001, 10000, 0, 0, 0, 0, 0, 12, 0);
|
||||
INSERT INTO trainer_spell VALUES (34, 90001, 10000, 0, 0, 0, 0, 0, 12, 0);
|
||||
Loading…
Add table
Add a link
Reference in a new issue