From 7b116422726070909e8a29bc7df0ca3b55a4054f Mon Sep 17 00:00:00 2001 From: Samsequel <20357406+Samsequel@users.noreply.github.com> Date: Sun, 30 Jul 2023 09:39:32 +0200 Subject: [PATCH 1/4] fix(db/loot): kara loot progression changes --- .../progression_0_creature_loot_template_kara_enchants.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src/Bracket_70_2_2/sql/world/progression_0_creature_loot_template_kara_enchants.sql diff --git a/src/Bracket_70_2_2/sql/world/progression_0_creature_loot_template_kara_enchants.sql b/src/Bracket_70_2_2/sql/world/progression_0_creature_loot_template_kara_enchants.sql new file mode 100644 index 00000000..a7786e2f --- /dev/null +++ b/src/Bracket_70_2_2/sql/world/progression_0_creature_loot_template_kara_enchants.sql @@ -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'); From b491894de51001201373525dc9cb6d44b9c3c475 Mon Sep 17 00:00:00 2001 From: Samsequel <20357406+Samsequel@users.noreply.github.com> Date: Sun, 30 Jul 2023 09:41:38 +0200 Subject: [PATCH 2/4] Create progression_71_74_creature_loot_template_kara_enchants_100.sql --- ...ession_71_74_creature_loot_template_kara_enchants_100.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src/Bracket_71_74/sql/world/progression_71_74_creature_loot_template_kara_enchants_100.sql diff --git a/src/Bracket_71_74/sql/world/progression_71_74_creature_loot_template_kara_enchants_100.sql b/src/Bracket_71_74/sql/world/progression_71_74_creature_loot_template_kara_enchants_100.sql new file mode 100644 index 00000000..173b8dc1 --- /dev/null +++ b/src/Bracket_71_74/sql/world/progression_71_74_creature_loot_template_kara_enchants_100.sql @@ -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'); From b87214d7bcc7e00c86af9bf3a7fc9950b79d0e32 Mon Sep 17 00:00:00 2001 From: Maria-sequel <20357406+Maria-sequel@users.noreply.github.com> Date: Fri, 4 Aug 2023 21:12:50 +0200 Subject: [PATCH 3/4] philantrophist --- .../sql/world/progression_0_creature_loot_template.sql | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 src/Bracket_70_2_2/sql/world/progression_0_creature_loot_template.sql diff --git a/src/Bracket_70_2_2/sql/world/progression_0_creature_loot_template.sql b/src/Bracket_70_2_2/sql/world/progression_0_creature_loot_template.sql new file mode 100644 index 00000000..98a87450 --- /dev/null +++ b/src/Bracket_70_2_2/sql/world/progression_0_creature_loot_template.sql @@ -0,0 +1,2 @@ +-- Philanthropist should drop gold +UPDATE `creature_template` SET `mingold` = 110000, `maxgold` = 130000 WHERE (`entry` = 16470); From 779d9d41a1fe40303fedf8f4379955125f716461 Mon Sep 17 00:00:00 2001 From: Maria-sequel <20357406+Maria-sequel@users.noreply.github.com> Date: Fri, 4 Aug 2023 21:14:09 +0200 Subject: [PATCH 4/4] restore --- src/Bracket_80_2/sql/world/progression_80_2_creature.sql | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Bracket_80_2/sql/world/progression_80_2_creature.sql b/src/Bracket_80_2/sql/world/progression_80_2_creature.sql index 013c556b..d7a3ae33 100644 --- a/src/Bracket_80_2/sql/world/progression_80_2_creature.sql +++ b/src/Bracket_80_2/sql/world/progression_80_2_creature.sql @@ -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);