herb_droplist_groups.sql 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  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
  86. -- Sel Mahum training grounds - chief group
  87. (4,13028,1,1,0,3299), -- Vitality Replenishing Herb
  88. (4,8600,1,1,1,231000), -- Herb of Life
  89. (4,8601,1,1,1,159600), -- Greater Herb of Life
  90. (4,8602,1,1,1,29400), -- Superior Herb of Life
  91. (4,8603,1,1,2,44000), -- Herb of Mana
  92. (4,8604,1,1,2,57200), -- Greater Herb of Mana
  93. (4,8605,1,1,2,8800), -- Superior Herb of Mana
  94. (4,8612,1,1,3,3300), -- Herb of the Warrior
  95. (4,8613,1,1,3,3300), -- Herb of the Mystic
  96. (4,8614,1,1,3,3400), -- Herb of Recovery
  97. (4,8606,1,1,4,50000), -- Herb of Power
  98. (4,8608,1,1,4,50000), -- Herb of Atk. Spd.
  99. (4,8610,1,1,4,50000), -- Herb of Critical Attack - Probability
  100. (4,10655,1,1,4,50000), -- Herb of Vampiric Rage
  101. (4,10656,1,1,4,50000), -- Herb of Critical Attack - Power
  102. (4,8607,1,1,5,50000), -- Herb of Magic
  103. (4,8609,1,1,5,50000), -- Herb of Casting Spd.
  104. (4,8611,1,1,6,103400), -- Herb of Speed
  105. (4,10657,1,1,6,3299), -- Herb of Doubt
  106. -- Sel Mahum training grounds - soldier group
  107. (5,8600,1,1,1,275000), -- Herb of Life
  108. (5,8601,1,1,1,190000), -- Greater Herb of Life
  109. (5,8602,1,1,1,35000), -- Superior Herb of Life
  110. -- Sel Mahum training grounds - squad leader group
  111. (6,13028,1,1,0,3300), -- Vitality Replenishing Herb
  112. (6,8600,1,1,1,231000), -- Herb of Life
  113. (6,8601,1,1,1,159600), -- Greater Herb of Life
  114. (6,8602,1,1,1,29400), -- Superior Herb of Life
  115. (6,8603,1,1,2,44000), -- Herb of Mana
  116. (6,8604,1,1,2,57200), -- Greater Herb of Mana
  117. (6,8605,1,1,2,8800), -- Superior Herb of Mana
  118. (6,8606,1,1,3,50000), -- Herb of Power
  119. (6,8608,1,1,3,50000), -- Herb of Atk. Spd.
  120. (6,8610,1,1,3,50000), -- Herb of Critical Attack - Probability
  121. (6,10655,1,1,3,50000), -- Herb of Vampiric Rage
  122. (6,10656,1,1,3,50000), -- Herb of Critical Attack - Power
  123. (6,8607,1,1,4,50000), -- Herb of Magic
  124. (6,8609,1,1,4,50000), -- Herb of Casting Spd.
  125. (6,8612,1,1,5,3300), -- Herb of the Warrior
  126. (6,8613,1,1,5,3300), -- Herb of the Mystic
  127. (6,8614,1,1,5,3400), -- Herb of Recovery
  128. (6,8611,1,1,6,103400), -- Herb of Speed
  129. (6,10657,1,1,6,3300), -- Herb of Doubt
  130. (6,10655,1,1,7,450000), -- Herb of Vampiric Rage
  131. -- Antharas minions - Behemoth and Tarask Dragon
  132. (7,8952,10,20,1,1000000), -- Greater Herb of Life
  133. (7,8953,10,20,2,1000000), -- Greater Herb of Mana
  134. -- Antharas minions - Dragon Bomber
  135. (8,8952,10,20,1,1000000), -- Greater Herb of Life
  136. (8,8953,10,20,2,1000000); -- Greater Herb of Mana