Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(db/loot): kara loot progression changes #343

Merged
merged 4 commits into from
Aug 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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);
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');
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');
2 changes: 2 additions & 0 deletions src/Bracket_80_2/sql/world/progression_80_2_creature.sql
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);
Loading