0123Atsuse

attr

Dec 4th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.75 KB | None | 0 0
  1. # Attributes.yml
  2.  
  3. # For full details, visit
  4. # http://dev.bukkit.org/bukkit-plugins/skillapi/pages/attributes/
  5.  
  6. # List of available stats to modify:
  7. # health - the max health of the player
  8. # mana - the amount of mana the player has
  9. # mana-regen - how much mana the player regenerates over time
  10. # physical-damage - damage dealt without using skills
  11. # physical-defense - damage taken from non-skill attacks
  12. # skill-damage - damage dealt with skills
  13. # skill-defense - damage taken from skills
  14. # move-speed - movement speed of the player
  15. vitality:
  16. display: 'VIT'
  17. max: '50'
  18. icon: 'ink sack'
  19. icon-data: '14'
  20. icon-lore:
  21. - '&6VIT &7(&2{amount}&7)'
  22. - ''
  23. - '&6体力2.5%'
  24. - '&7point invested.'
  25. global:
  26. condition: {}
  27. mechanic: {}
  28. target: {}
  29. stats:
  30. health: 'a*0.025+1*v'
  31. skill-defense: 'a+v'
  32. spirit:
  33. display: 'SPI'
  34. max: '50'
  35. icon: 'ink sack'
  36. icon-data: '6'
  37. icon-lore:
  38. - '&bSPI &7(&2{amount}&7)'
  39. - ''
  40. - '&bマナ生成速度3%'
  41. - '&7point invested.'
  42. global:
  43. condition: {}
  44. mechanic: {}
  45. target: {}
  46. stats:
  47. mana-regen: 'a*0.03+1*v'
  48. intelligence:
  49. display: 'INT'
  50. max: '50'
  51. icon: 'ink sack'
  52. icon-data: '11'
  53. icon-lore:
  54. - '&eINT &7(&2{amount}&7)'
  55. - ''
  56. - '&eスキルダメージ2%'
  57. - '&7point invested.'
  58. global:
  59. condition: {}
  60. mechanic:
  61. Damage-value: 'a*0.02+1*v'
  62. target: {}
  63. strength:
  64. display: 'STR'
  65. max: '50'
  66. icon: 'ink sack'
  67. icon-data: '1'
  68. icon-lore:
  69. - '&cSTR &7(&2{amount}&7)'
  70. - ''
  71. - '&c近接攻撃1.5%'
  72. - '&7point invested.'
  73. global:
  74. condition: {}
  75. mechanic: {}
  76. target: {}
  77. stats:
  78. physical-damage: 'a*0.015+1*v'
Add Comment
Please, Sign In to add comment