Advertisement
kama6012

attr

Jan 24th, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.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. strength:
  16. display: '筋力'
  17. max: '999'
  18. icon: 'ink sack'
  19. icon-data: '14'
  20. icon-lore:
  21. - '&6筋力 &7(&2{amount}&7)'
  22. - ''
  23. - '&7すべてのダメージとスキルの範囲を'
  24. - '&71ポイントごとに'
  25. - '&72.5%増やす。'
  26. global:
  27. condition: {}
  28. mechanic:
  29. Damage-value: 'a*0.025+1*v'
  30. target:
  31. Cone-range: 'a*0.025+1*v'
  32. Linear-range: 'a*0.025+1*v'
  33. Location-range: 'a*0.025+1*v'
  34. Nearest-radius: 'a*0.025+1*v'
  35. Single-range: 'a*0.025+1*v'
  36. stats:
  37. physical-damage: 'a*0.025+1*v'
  38. vitality:
  39. display: '気力'
  40. max: '150'
  41. icon: 'ink sack'
  42. icon-data: '4'
  43. icon-lore:
  44. - '&6気力 &7(&2{amount}&7)'
  45. - ''
  46. - '&7ダメージを'
  47. - '&71ポイントごとに'
  48. - '&70.5%減らす。'
  49. global:
  50. condition: {}
  51. mechanic: {}
  52. target: {}
  53. stats:
  54. physical-defense: 'a*-0.05+v'
  55. spirit:
  56. display: '精神力'
  57. max: '999'
  58. icon: 'ink sack'
  59. icon-data: '1'
  60. icon-lore:
  61. - '&6精神力 &7(&2{amount}&7)'
  62. - ''
  63. - '&7HPとマナの最大量、'
  64. - '&7マナの回復量を1ポイントごとに'
  65. - '&7それぞれ1,1,2.5%増やす。'
  66. global:
  67. condition: {}
  68. mechanic: {}
  69. target: {}
  70. stats:
  71. health: 'a+v'
  72. mana: 'a+v'
  73. mana-regen: 'a*0.025+1*v'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement