Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #========================================================================================================
  2.  
  3. #Everything to do with the totem feature. /fish totem and the placeable one.
  4. Totems:
  5.  
  6. #All passives on the totem
  7. #Only the first one is commented as it should be pretty self explanatory from there.
  8. Passives:
  9.  
  10. #The name of the passive
  11. MYTHICAL_WATERS:
  12. #If the passive should be enabled or not
  13. enabled: true
  14.  
  15. #The level the user can activate the passive
  16. unlock_level: 60
  17.  
  18. #The amount of passive slots needed to use this
  19. #Note: changing this will not disable/check totems that have it active.
  20. # this will only take effect when it is re-enabled on a totem.
  21. slots_needed: 5
  22.  
  23. #The percentage this skill has. In this case - 20 is 20%.
  24. value: 20
  25.  
  26. EXPERIENCED_FISHERMAN:
  27. enabled: true
  28. unlock_level: 20
  29. slots_needed: 1
  30. value: 1.5
  31.  
  32. FISH_SCHOOL:
  33. enabled: true
  34. unlock_level: 40
  35. slots_needed: 3
  36. value: 35
  37.  
  38. ENTROPY_HORDER:
  39. enabled: true
  40. unlock_level: 60
  41. slots_needed: 6
  42. value: 1.25
  43.  
  44. LITTLE_CRITTERS:
  45. enabled: true
  46. unlock_level: 40
  47. slots_needed: 2
  48. value: 20
  49.  
  50. TREASURE_HUNTER:
  51. enabled: true
  52. unlock_level: 60
  53. slots_needed: 3
  54. value: 3
  55.  
  56. STAR_FALL:
  57. enabled: true
  58. unlock_level: 100
  59. slots_needed: 10
  60. value: 0.5
  61.  
  62. RANDOM_DROPS:
  63. enabled: true
  64. unlock_level: 55
  65. slots_needed: 4
  66. value: 15
  67.  
  68.  
  69. #========================================================================================================