Advertisement
ReshiStar

Untitled

Dec 11th, 2019
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1.  
  2. # Display options
  3. name: Fishing
  4.  
  5. # Experience given to the main level
  6. # when leveling up this profession
  7. experience:
  8. base: 20
  9. per-level: 3
  10.  
  11. exp-sources: {}
  12.  
  13. # Fishing drop tables which override MC default.
  14. # When fishing, the plugin reads through all the drop tables
  15. # and picks THE first one which all conditions are met!!
  16. # You must put at first place the drop tables which
  17. # have the most conditions/which are the most important.
  18. # Number of tugs = number of times you need to click to fish.
  19. on-fish:
  20. overriding-drop-table:
  21. conditions:
  22. - 'region{name=swamp}'
  23.  
  24. # When drop table is read, one of these
  25. # items will be selected randomly.
  26. items:
  27.  
  28. # Tugs needed: 4 to 5
  29. # Fishing EXP earned: 1 to 6
  30. - 'mmoitem{type=CONSUMABLE;id=SUSHI_ROLL;tugs=30-40;experience=1-6}'
  31.  
  32. # Tugs needed: 10 to 20
  33. # Fishing EXP earned: 20 to 30
  34. - 'mmoitem{type=GEM_STONE;id=SPITEFUL_OPAQUE_DIAMOND;tugs=10-15;experience=20-30}'
  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