Advertisement
ReshiStar

Untitled

Dec 11th, 2019
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.34 KB | None | 0 0
  1. # Display options
  2. name: Fishing
  3.  
  4. # Experience given to the main level
  5. # when leveling up this profession
  6. experience:
  7. base: 20
  8. per-level: 3
  9.  
  10. exp-sources: {}
  11.  
  12. # Fishing drop tables which override MC default.
  13. # When fishing, the plugin reads through all the drop tables
  14. # and picks THE first one which all conditions are met!!
  15. # You must put at first place the drop tables which
  16. # have the most conditions/which are the most important.
  17. # Number of tugs = number of times you need to click to fish.
  18. on-fish:
  19. overriding-drop-table:
  20. conditions:
  21. - 'region{name=deep_ocean}'
  22.  
  23. # When drop table is read, one of these
  24. # items will be selected randomly.
  25. items:
  26.  
  27. # Tugs needed: 4 to 5
  28. # Fishing EXP earned: 1 to 6
  29. - 'mmoitem{type=CONSUMABLE;id=Koi;tugs=10;experience=30-45;coef=80}'
  30.  
  31. # Tugs needed: 10 to 20
  32. # Fishing EXP earned: 20 to 30
  33. - 'mmoitem{type=GEM_STONE;id=SPITEFUL_OPAQUE_DIAMOND;tugs=30;experience=20-30;coef=10}'
  34. - 'mmoitem{type=MISCELLANEOUS;id=JUNK;tugs=30;experience=2;coef=10}'
  35.  
  36. # Default drop table which always apply.
  37. # When removing every drop table, the vanilla
  38. # fishing mecanism is back.
  39. default:
  40. items:
  41. - 'vanilla{type=SALMON;tugs=4-5;experience=1-6}'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement