mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-21 12:47:07 +00:00
fix(DB/Reputation): Cenarion Circle (#7732)
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1630832577462717951');
|
||||
|
||||
-- Set 10 rep until end of exalted for Vile Scarab, Silicate Feeder, Qiraji (Swarmguard, Warrior), Swarmguard Needler, Scarab (Shrieker, Spitting), Vyral the Vile, Templar (Azure Hoary, Earthen).
|
||||
UPDATE `creature_onkill_reputation` SET `RewOnKillRepValue1` = 10 WHERE `creature_id` IN (15168, 15333, 15343, 15344, 15387, 15461, 15642, 15202, 15211, 15212, 15307);
|
||||
|
||||
-- Set 30 rep until end of exalted for Twilight Prophet
|
||||
UPDATE `creature_onkill_reputation` SET `RewOnKillRepValue1` = 30 WHERE `creature_id` = 15308;
|
||||
|
||||
-- Set 100 rep until end of exalted for High Marshal Whirlaxis, Baron Kazum, Lord Skwol
|
||||
UPDATE `creature_onkill_reputation` SET `RewOnKillRepValue1` = 100 WHERE `creature_id` IN (15204, 15205, 15305);
|
||||
|
||||
-- Set -300 rep until end of exalted for Moam, General Rajaxx, Kurinnaxx, Ayamiss the Hunter, Buru The Gorger
|
||||
UPDATE `creature_onkill_reputation` SET `RewOnKillRepValue2` = -300 WHERE `creature_id` IN (15340, 15341, 15348, 15369, 15370);
|
||||
|
||||
-- Set -600 rep until end of exalted for Ossirian the Unscarred
|
||||
UPDATE `creature_onkill_reputation` SET `RewOnKillRepValue2` = -600 WHERE `creature_id` = 15339;
|
||||
|
||||
-- Set -10 rep until end of exalted for Vekniss (Soldier, Warrior, Stinger, Wasp, Hive Crawler), Qiraji Lasher, Obsidian Eradicator, Anubisath (Sentinel, Defender).
|
||||
UPDATE `creature_onkill_reputation` SET `RewOnKillRepValue2` = -10 WHERE `creature_id` IN (15229, 15230, 15235, 15236, 15240, 15249, 15262, 15264, 15277);
|
||||
Reference in New Issue
Block a user