Advertisement
Guest User

Untitled

a guest
Mar 21st, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.96 KB | None | 0 0
  1. #
  2. # Modify this file to change the class structure.
  3. #
  4. # Classes in Magic are used to group player data together. Players may learn spells
  5. # or gain mana or other attributes within a specific class, rather than globally.
  6. #
  7. # Wands may also uses classes to determine where to store their data, if not stored
  8. # on the wand itself.
  9. #
  10. # Classes may be unlocked, meaning a player will automatically be put in that class
  11. # should they use a wand of that class. Or a class may be locked, meaning a player must
  12. # be added to a class (unlocking it for them) before they may use any wands of that class.
  13. #
  14. # A class may refer to a progression path (paths.yml) via path_start. This will allow the class to progress
  15. # as defined by that path.
  16. #
  17. # You can add new classes in this file or modify the builtin ones. Use load_default_classes: false
  18. # in config.yml to remove the default classes completely.
  19. #
  20. # You can also add individual files to the classes/ folder
  21. #
  22. # To see the current default builtin configs, look in this folder:
  23. # https://github.com/elBukkit/MagicPlugin/tree/master/Magic/src/main/resources/defaults/classes
  24. #
  25. # For customization help see:
  26. # https://github.com/elBukkit/MagicPlugin/wiki/Customization
  27. #
  28. #
  29.  
  30. Dragon:
  31. inherit: base
  32. locked: true
  33. skill_limit: 4
  34. quick_cast: false
  35. spells:
  36. - Drg_Shot
  37. - Drg_Dash
  38. - Drg_Breath
  39. - Drg_Nuke
  40.  
  41.  
  42. Wizard:
  43. inherit: base
  44. locked: true
  45. skill_limit: 4
  46. quick_cast: false
  47. spells:
  48. - Wiz_Reflect
  49. - Wiz_Fury
  50. - Wiz_Missile
  51. - Wiz_Blast
  52.  
  53. Smasher:
  54. inherit: base
  55. locked: true
  56. skill_limit: 4
  57. quick_cast: false
  58. spells:
  59. - Smsh_Strike
  60. - Smsh_Pillar
  61. - Smsh_Rift
  62. - Smsh_Earthquake
  63.  
  64. Warrior:
  65. inherit: base
  66. locked: true
  67. skill_limit: 4
  68. quick_cast: false
  69. spells:
  70. - War_Berserk
  71.  
  72. MOE:
  73. inherit: base
  74. locked: true
  75. skill_limit: 4
  76. quick_cast: false
  77. spells:
  78. - MOE_Fire
  79. - MOE_Tornado
  80. - MOE_Stream
  81. - MOE_Smite
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement