mob_item_ratio.txt 1.4 KB

1234567891011121314151617181920212223242526272829
  1. // Overrides for global item_rate* values from conf/battle/drops.conf
  2. // Database format:
  3. // ItemID,Ratio{,MonsterID}
  4. // Result:
  5. // ItemID base drop rates defined in mob_db will not get multiplied
  6. // by global item_rate* values (aka drop rates) from
  7. // conf/battle/drops.conf. Instead Ratio will be used (100 = 1x).
  8. // If no MonsterID is specified, all monsters will be affected,
  9. // otherwise only listed ones.
  10. // Examples:
  11. // 909,100 // Jellopies from monsters will drop with 1x drop rate regardless of global drop rate
  12. // 909,1000 // Jellopies from monsters will drop with 10x drop rate regardless of global drop rate
  13. // 909,100,1002 // Jellopies from Porings will drop with 1x drop rate. Other monsters that drop Jellopies are unaffected (use global drop rate).
  14. // Notes:
  15. // - By default you can list up to 10 MonsterIDs per ItemID.
  16. // It can be changed in src/map/mob.c by adjusting MAX_ITEMRATIO_MOBS.
  17. // - Only ItemIDs up to MAX_ITEMDB are supported (default: 32768).
  18. // - Does not override item_drop_*_min/max settings.
  19. // - Does not affect card/item-granted drops. To adjust card/item-granted
  20. // drops, edit them in item_db.
  21. // - Does affect MVP prizes and Treasure Boxes.
  22. // - You can add only ONE line per ItemID. If you need various ratios
  23. // for different monsters, override drop rate with Ratio=100 and edit
  24. // base drop rates in mob_db.
  25. // - This file is reloaded by @reloadmobdb.