-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(DB/Loot): kara loot progression changes (#343)
* fix(db/loot): kara loot progression changes * Create progression_71_74_creature_loot_template_kara_enchants_100.sql * philantrophist * restore --------- Co-authored-by: Samsequel <20357406+Samsequel@users.noreply.github.com>
- Loading branch information
1 parent
8d1e15d
commit 3924e45
Showing
4 changed files
with
14 additions
and
0 deletions.
There are no files selected for viewing
2 changes: 2 additions & 0 deletions
2
src/Bracket_70_2_2/sql/world/progression_0_creature_loot_template.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
-- Philanthropist should drop gold | ||
UPDATE `creature_template` SET `mingold` = 110000, `maxgold` = 130000 WHERE (`entry` = 16470); |
5 changes: 5 additions & 0 deletions
5
src/Bracket_70_2_2/sql/world/progression_0_creature_loot_template_kara_enchants.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
DELETE FROM `creature_loot_template` WHERE (`Entry` IN (15688, 15687, 16524) AND (`Item` IN (22560, 22561, 22559)); | ||
INSERT INTO `creature_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES | ||
(15687, 22559, 0, 4, 0, 1, 0, 1, 1, 'Moroes - Formula: Enchant Weapon - Mongoose'), | ||
(16524, 22560, 0, 5, 0, 1, 0, 1, 1, 'Shade of Aran - Formula: Enchant Weapon - Sunfire'), | ||
(15688, 22561, 0, 5, 0, 1, 0, 1, 1, 'Terestian Illhoof - Formula: Enchant Weapon - Soulfrost'); |
5 changes: 5 additions & 0 deletions
5
src/Bracket_71_74/sql/world/progression_71_74_creature_loot_template_kara_enchants_100.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
DELETE FROM `creature_loot_template` WHERE (`Entry` IN (15688, 15687, 16524) AND (`Item` IN (22560, 22561, 22559)); | ||
INSERT INTO `creature_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES | ||
(15687, 22559, 0, 100, 0, 1, 0, 1, 1, 'Moroes - Formula: Enchant Weapon - Mongoose'), | ||
(16524, 22560, 0, 100, 0, 1, 0, 1, 1, 'Shade of Aran - Formula: Enchant Weapon - Sunfire'), | ||
(15688, 22561, 0, 100, 0, 1, 0, 1, 1, 'Terestian Illhoof - Formula: Enchant Weapon - Soulfrost'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
-- 80 level range - Tier 8 & Furious Gladiator | ||
-- restore Emalon at Vaulth of Archavon | ||
UPDATE `creature` SET `phaseMask` = 1 WHERE `id1` = 33993; | ||
-- restore no gold from kara philantropist | ||
UPDATE `creature_template` SET `mingold` = 0, `maxgold` = 0 WHERE (`entry` = 16470); |