mob_item_ratio.txt 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. //===== rAthena Documentation ================================
  2. //= Mob Item Ratio Database Structure
  3. //===== By: ==================================================
  4. //= rAthena Dev Team
  5. //===== Last Updated: ========================================
  6. //= 20210624
  7. //===== Description: =========================================
  8. //= Explanation of the mob_item_ratio.yml file and structure.
  9. //============================================================
  10. Item base drop rates defined in mob_db.yml will not get multiplied by global item_rate* values (aka drop rates) from
  11. conf/battle/drops.conf and instead, Ratio will be used (100 = 1x).
  12. If no Mob is specified, all monsters will be affected, otherwise only the ones listed.
  13. Examples:
  14. Jellopies from monsters will drop with 1x drop rate regardless of global drop rate
  15. Body:
  16. - Item: Jellopy
  17. Ratio: 100
  18. Jellopies from monsters will drop with 10x drop rate regardless of global drop rate
  19. Body:
  20. - Item: Jellopy
  21. Ratio: 1000
  22. Removes Jellopies from monsters drop
  23. Body:
  24. - Item: Jellopy
  25. Ratio: 0
  26. Jellopies from Porings will drop with 1x drop rate. Other monsters that drop Jellopies are unaffected (use global drop rate).
  27. Body:
  28. - Item: Jellopy
  29. Ratio: 100
  30. List:
  31. PORING: true
  32. Notes:
  33. - Does not override item_drop_*_min/max settings.
  34. - Does not affect card/item-granted drops. To adjust card/item-granted drops, edit them in item_db.
  35. - Does affect MVP prizes and Treasure Boxes.
  36. - You can add only ONE Ratio per Item. If you need various ratios for different monsters, override drop rate with Ratio=100 and edit base drop rates in mob_db.
  37. - This file is reloaded by @reloadmobdb.