Advertisement
ReshiStar

Untitled

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