diff --git a/database/sql/2-db_drops.sql b/database/sql/2-db_drops.sql index 77697d0362..bdff853075 100644 --- a/database/sql/2-db_drops.sql +++ b/database/sql/2-db_drops.sql @@ -3,15 +3,6 @@ USE `cosmic`; - -- missing content for Bob found thanks to drmdsr & Thora - # normalize item drops for Bob the Snail - INSERT INTO temp_data (`dropperid`, `itemid`, `minimum_quantity`, `maximum_quantity`, `questid`, `chance`) - SELECT 9400551, temp_data.itemid, temp_data.minimum_quantity, temp_data.maximum_quantity, temp_data.questid, LEAST(temp_data.chance * 80, 999999) - FROM temp_data - WHERE temp_data.dropperid = 100100; - - UPDATE IGNORE temp_data SET minimum_quantity=1000, maximum_quantity=5000 WHERE dropperid=9400551 AND itemid=0; - # normalize item drops for left-side Pianus DELETE FROM temp_data WHERE dropperid=8520000; diff --git a/src/main/resources/db/152-drop-data.sql b/src/main/resources/db/152-drop-data.sql index 582c723d8a..8ff0aaca26 100644 --- a/src/main/resources/db/152-drop-data.sql +++ b/src/main/resources/db/152-drop-data.sql @@ -12268,6 +12268,7 @@ VALUES (5100004, 2383034, 1, 1, 0, 10000), (2100108, 2381030, 1, 1, 0, 10000), (3230300, 2382021, 1, 1, 0, 10000), (3230301, 2382021, 1, 1, 0, 10000), + -- TODO: fix duplicate drops for Snail (and likely other mobs too) (100100, 4000019, 1, 1, 0, 200000), (100100, 2000000, 1, 1, 0, 40000), (100100, 2040002, 1, 1, 0, 750), @@ -31029,6 +31030,22 @@ VALUES (5100004, 2383034, 1, 1, 0, 10000), (6130103, 2022001, 1, 1, 0, 20000), (2220000, 1322001, 1, 1, 0, 8000), (9400551, 4031447, 1, 1, 0, 999999), + (9400551, 2000000, 1, 1, 0, 20000), + (9400551, 2040002, 1, 1, 0, 300), + (9400551, 2041001, 1, 1, 0, 300), + (9400551, 2060000, 1, 1, 0, 30000), + (9400551, 4010000, 1, 1, 0, 9000), + (9400551, 4020000, 1, 1, 0, 9000), + (9400551, 2061000, 1, 1, 0, 30000), + (9400551, 1002067, 1, 1, 0, 1500), + (9400551, 2010009, 1, 1, 0, 20000), + (9400551, 2380000, 1, 1, 0, 1000), + (9400551, 0, 1000, 5000, 0, 400000), + (9400551, 2041045, 1, 1, 0, 750), + (9400551, 2041043, 1, 1, 0, 750), + (9400551, 1302000, 1, 1, 0, 700), + (9400551, 1040002, 1, 1, 0, 700), + (9400551, 1052095, 1, 1, 0, 700), (8150000, 2280013, 1, 1, 0, 40000), (8200005, 2280014, 1, 1, 0, 1000), (9300028, 2280015, 1, 1, 0, 100000),