Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.90 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: '&dHP'
  17. max: '999'
  18. icon: 'ink sack'
  19. icon-data: '9'
  20. icon-lore:
  21. - '&e-=-=-=-=-=-&dHP &6[{amount}]&e-=-=-=-=-=-'
  22. - '&b防御力や体力に関係するステータス'
  23. - '&b防御力や最大体力が上昇する'
  24. - '&e-=-=-=-=-=-&6Effect&e-=-=-=-=-=-'
  25. - '&d最大体力 +10'
  26. - '&7防御力 +0.25%'
  27. global:
  28. condition: {}
  29. mechanic: {}
  30. target: {}
  31. stats:
  32. health: 'a+10*v'
  33. physical-defense: 'a*0.0025+1*v'
  34. spirit:
  35. display: '&bMP'
  36. max: '999'
  37. icon: 'ink sack'
  38. icon-data: '6'
  39. icon-lore:
  40. - '&e-=-=-=-=-=-&bMP &6[{amount}]&e-=-=-=-=-=-'
  41. - '&bマナに関係するステータス'
  42. - '&bマナ回復速度や最大マナが上昇する'
  43. - '&e-=-=-=-=-=-&6Effect&e-=-=-=-=-=-'
  44. - '&3最大マナ +10'
  45. - '&3マナ回復速度 +2.5%'
  46. global:
  47. condition: {}
  48. mechanic: {}
  49. target: {}
  50. stats:
  51. mana: 'a+10*v'
  52. mana-regen: 'a*0.025+1*v'
  53. intelligence:
  54. display: '&3知力'
  55. max: '999'
  56. icon: 'ink sack'
  57. icon-data: '5'
  58. icon-lore:
  59. - '&e-=-=-=-=-=-&5INT &6[{amount}]&e-=-=-=-=-=-'
  60. - '&b魔法に関係するステータス'
  61. - '&b魔法攻撃力や魔法防御力が上昇する'
  62. - '&e-=-=-=-=-=-&6Effect&e-=-=-=-=-=-'
  63. - '&5魔法攻撃力 +5%'
  64. - '&5魔法防御力 +1%'
  65. global:
  66. condition: {}
  67. mechanic: {}
  68. target: {}
  69. stats:
  70. skill-damage: 'a*0.05+1*v'
  71. skill-defense: 'a*0.01+1*v'
  72. dexterity:
  73. display: '&9敏捷力'
  74. max: '999'
  75. icon: 'ink sack'
  76. icon-data: '12'
  77. icon-lore:
  78. - '&e-=-=-=-=-=-&9SPI[{amount}]&e-=-=-=-=-=-'
  79. - '&b移動速度に関係するステータス'
  80. - '&b移動速度が上昇する'
  81. - '&e-=-=-=-=-=-&6Effect&e-=-=-=-=-=-'
  82. - '&9移動速度 +0.5%'
  83. global:
  84. condition: {}
  85. mechanic: {}
  86. target: {}
  87. stats:
  88. move-speed: 'a*0.005+1*v'
  89. strength:
  90. display: '&c筋力'
  91. max: '999'
  92. icon: 'ink sack'
  93. icon-data: '1'
  94. icon-lore:
  95. - '&e-=-=-=-=-=-&cSTR [{amount}]&e-=-=-=-=-=-'
  96. - '&b武器の使用や近接攻撃力に関係するステータス'
  97. - '&b筋力値と近接攻撃力が上昇する'
  98. - '&e-=-=-=-=-=-&6Effect&e-=-=-=-=-=-'
  99. - '&c近接攻撃力 +2.5%'
  100. global:
  101. condition: {}
  102. mechanic: {}
  103. target: {}
  104. stats:
  105. physical-damage: 'a*0.025+1*v'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement