herb_droplist_groups.sql 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. -- This table holds data definitions for different herb dropping groups.
  2. -- These groups once they're bound with mobs in the npc table, define which mobs
  3. -- drop which herbs (with a certain chance to drop none, one or more of them).
  4. --
  5. -- If a mob appertain to group 0 (table default), it won't drop herbs at all.
  6. -- For any other group larger than zero, herbs will be drop same way as droplists works
  7. -- You can add any type of items here even not herbs, but players will auto loot it if
  8. -- AUTO_LOOT_HERBS config is true.
  9. --
  10. -- About categries:
  11. -- 0: is for Vitality herbs
  12. -- 1: is for Life herbs
  13. -- 2: is for Mana herbs
  14. -- 3: is for special herbs
  15. -- all other: is for Common herbs
  16. DROP TABLE IF EXISTS `herb_droplist_groups`;
  17. CREATE TABLE `herb_droplist_groups` (
  18. `groupId` tinyint(1) unsigned NOT NULL DEFAULT '0',
  19. `itemId` smallint(5) unsigned NOT NULL DEFAULT '0',
  20. `min` smallint(2) unsigned NOT NULL DEFAULT '0',
  21. `max` smallint(2) unsigned NOT NULL DEFAULT '0',
  22. `category` smallint(3) NOT NULL DEFAULT '0',
  23. `chance` mediumint(7) unsigned NOT NULL DEFAULT '0',
  24. PRIMARY KEY (`groupId`,`itemId`,`category`),
  25. KEY `key_mobId` (`groupId`)
  26. );
  27. INSERT INTO `herb_droplist_groups` VALUES
  28. -- default group
  29. (1,13028,1,1,0,20000), -- Vitality Replenishing Herb
  30. (1,8600,1,1,1,100000), -- Herb of Life
  31. (1,8601,1,1,1,40000), -- Greater Herb of Life
  32. (1,8602,1,1,1,8000), -- Superior Herb of Life
  33. (1,8603,1,1,2,100000), -- Herb of Mana
  34. (1,8604,1,1,2,40000), -- Greater Herb of Mana
  35. (1,8605,1,1,2,8000), -- Superior Herb of Mana
  36. (1,8612,1,1,3,2000), -- Herb of the Warrior
  37. (1,8613,1,1,3,2000), -- Herb of the Mystic
  38. (1,8614,1,1,3,2000), -- Herb of Recovery
  39. (1,8606,1,1,4,150000), -- Herb of Power
  40. (1,8607,1,1,5,150000), -- Herb of Magic
  41. (1,8608,1,1,6,150000), -- Herb of Atk. Spd.
  42. (1,8609,1,1,7,150000), -- Herb of Casting Spd.
  43. (1,8610,1,1,8,150000), -- Herb of Critical Attack - Probability
  44. (1,8611,1,1,9,150000), -- Herb of Speed
  45. (1,10655,1,1,10,150000), -- Herb of Vampiric Rage
  46. (1,10656,1,1,11,150000), -- Herb of Critical Attack - Power
  47. (1,10657,1,1,12,50000), -- Herb of Doubt
  48. -- primeval island mobs. Guessed chances
  49. (2,13028,1,1,0,20000), -- Vitality Replenishing Herb
  50. (2,8600,1,1,1,200000), -- Herb of Life
  51. (2,8601,1,1,1,80000), -- Greater Herb of Life
  52. (2,8602,1,1,1,16000), -- Superior Herb of Life
  53. (2,8603,1,1,2,150000), -- Herb of Mana
  54. (2,8604,1,1,2,60000), -- Greater Herb of Mana
  55. (2,8605,1,1,2,12000), -- Superior Herb of Mana
  56. (2,8613,1,1,3,4000), -- Herb of the Mystic
  57. (2,8614,1,1,3,4000), -- Herb of Recovery
  58. (2,8607,1,1,4,150000), -- Herb of Magic
  59. (2,8609,1,1,5,150000), -- Herb of Casting Spd.
  60. (2,8611,1,1,6,150000), -- Herb of Speed
  61. (2,10657,1,1,7,75000), -- Herb of Doubt
  62. -- Field of Silence & Field of Whisper mobs
  63. (3,13028,1,1,0,5000), -- Vitality Replenishing Herb
  64. (3,8600,1,1,1,210000), -- Herb of Life
  65. (3,8601,1,1,1,150000), -- Greater Herb of Life
  66. (3,8602,1,1,1,35000), -- Superior Herb of Life
  67. (3,8603,1,1,2,190000), -- Herb of Mana
  68. (3,8604,1,1,2,180000), -- Greater Herb of Mana
  69. (3,8605,1,1,2,50000), -- Superior Herb of Mana
  70. (3,8612,1,1,3,2000), -- Herb of the Warrior
  71. (3,8613,1,1,3,10000), -- Herb of the Mystic
  72. (3,8614,1,1,3,2000), -- Herb of Recovery
  73. (3,8606,1,1,4,60000), -- Herb of Power
  74. (3,8607,1,1,5,60000), -- Herb of Magic
  75. (3,8608,1,1,6,80000), -- Herb of Atk. Spd.
  76. (3,8609,1,1,7,40000), -- Herb of Casting Spd.
  77. (3,8610,1,1,8,20000), -- Herb of Critical Attack - Probability
  78. (3,8611,1,1,9,90000), -- Herb of Speed
  79. (3,10655,1,1,10,60000), -- Herb of Vampiric Rage
  80. (3,10656,1,1,11,30000), -- Herb of Critical Attack - Power
  81. (3,10657,1,1,12,5000), -- Herb of Doubt
  82. (3,14824,1,1,13,9000),-- Ancient Herb - Slayer
  83. (3,14825,1,1,13,9000),-- Ancient Herb - Immortal
  84. (3,14826,1,1,13,25000), -- Ancient Herb - Terminator
  85. (3,14827,1,1,13,30000); -- Ancient Herb - Guide