diff options
| author | jestermaniac <88903576+jestermaniac@users.noreply.github.com> | 2021-10-14 13:21:54 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-14 13:21:54 +0200 |
| commit | 01d3747efd6105cee118083189f6f9912d92cf00 (patch) | |
| tree | 737f9c2ea98bd6253f0e9300a4d0d34a302f6cdf | |
| parent | da69fec3453dcc1063b5338d2060417f54eb884f (diff) | |
fix(DB/Loot): changed sum RLT fo Blackrom Champion (#8055)
* fix(DB/Loot): changed sum RLT fo Blackrom Champion
* Update rev_1632423232437840216.sql
| -rw-r--r-- | data/sql/updates/pending_db_world/rev_1632423232437840216.sql | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/data/sql/updates/pending_db_world/rev_1632423232437840216.sql b/data/sql/updates/pending_db_world/rev_1632423232437840216.sql new file mode 100644 index 0000000000..423f2d4a96 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1632423232437840216.sql @@ -0,0 +1,38 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1632423232437840216'); + +DELETE FROM `reference_loot_template` WHERE (`Entry` = 44011); +INSERT INTO `reference_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES +(44011, 935, 0, 0, 0, 1, 1, 1, 1, 'Night Watch Shortsword'), +(44011, 12975, 0, 0, 0, 1, 1, 1, 1, 'Prospector Axe'), +(44011, 12976, 0, 0, 0, 1, 1, 1, 1, 'Ironpatch Blade'), +(44011, 12978, 0, 0, 0, 1, 1, 1, 1, 'Stormbringer Belt'), +(44011, 12979, 0, 0, 0, 1, 1, 1, 1, 'Firebane Cloak'), +(44011, 12982, 0, 0, 0, 1, 1, 1, 1, 'Silver-linked Footguards'), +(44011, 12983, 0, 0, 0, 1, 1, 1, 1, 'Rakzur Club'), +(44011, 12984, 0, 0, 0, 1, 1, 1, 1, 'Skycaller'), +(44011, 13136, 0, 0, 0, 1, 1, 1, 1, 'Lil Timmy\'s Peashooter'); + + +DELETE FROM `creature_loot_template` WHERE (`Entry` = 435) AND (`Item` IN (24061)) AND (`Reference` IN (24061)); +DELETE FROM `creature_loot_template` WHERE (`Entry` = 435) AND (`Item` IN (44011)) AND (`Reference` IN (44011)); +INSERT INTO `creature_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES +(435, 44011, 44011, 0.5, 0, 1, 1, 1, 1, 'Blackrock Champion - (ReferenceTable)'); + + +DELETE FROM `reference_loot_template` WHERE (`Entry` = 44012); +INSERT INTO `reference_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES +(44012, 720, 0, 0, 0, 1, 1, 1, 1, 'Brawler Gloves'), +(44012, 3203, 0, 0, 0, 1, 1, 1, 1, 'Dense Triangle Mace'), +(44012, 13005, 0, 0, 0, 1, 1, 1, 1, 'Amy\'s Blanket'), +(44012, 13031, 0, 0, 0, 1, 1, 1, 1, 'Orb of Mistmantle'), +(44012, 13057, 0, 0, 0, 1, 1, 1, 1, 'Bloodpike'), +(44012, 13097, 0, 0, 0, 1, 1, 1, 1, 'Thunderbrow Ring'), +(44012, 13099, 0, 0, 0, 1, 1, 1, 1, 'Moccasins of the White Hare'), +(44012, 13131, 0, 0, 0, 1, 1, 1, 1, 'Sparkleshell Mantle'); + + +DELETE FROM `creature_loot_template` WHERE (`Entry` = 435) AND (`Item` IN (24069, 24069)); +DELETE FROM `creature_loot_template` WHERE (`Entry` = 435) AND (`Item` IN (44012, 44012)); +INSERT INTO `creature_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES +(435, 44012, 44012, 0.5, 0, 1, 1, 1, 1, 'Blackrock Champion - (ReferenceTable)'); + |
