mirror of
https://github.com/vmangos/core
synced 2026-08-14 16:29:10 -04:00
12 lines
671 B
SQL
12 lines
671 B
SQL
INSERT INTO `migrations` VALUES ('20170916141953');
|
|
|
|
-- Horde
|
|
REPLACE INTO reputation_spillover_template (faction, faction1, rate_1, rank_1, faction2, rate_2, rank_2, faction3, rate_3, rank_3, faction4, rate_4, rank_4)
|
|
VALUES (67, 68, 0.25, 7, 76, 0.25, 7, 81, 0.25, 7, 530, 0.25, 7);
|
|
|
|
-- Alliance
|
|
REPLACE INTO reputation_spillover_template (faction, faction1, rate_1, rank_1, faction2, rate_2, rank_2, faction3, rate_3, rank_3, faction4, rate_4, rank_4)
|
|
VALUES (469, 47, 0.25, 7, 54, 0.25, 7, 69, 0.25, 7, 72, 0.25, 7);
|
|
|
|
-- Poisoned Water reputation
|
|
UPDATE quest_template SET RewRepFaction1=67, RewRepFaction2=469, RewRepValue1=250, RewRepValue2=250 WHERE entry=6804;
|